BW_GET_INFOPACKAGES
Use the BW_GET_INFOPACK[AGES] script element to read InfoPackages from the BW system and write the results to the activation report or a file. Before using this element, select the InfoPackages with the BW_SET_INFOPACKAGE_SELECTION script element. The output file is structured: the first column holds the technical name of the InfoPackage (up to 31 characters) and the second column holds the long text (up to 61 characters). All selection tables are deleted after the script element is processed.
Transaction: RSA1
Syntax
BW_GET_INFOPACK[AGES] [FILE=...][,JOB_STATUS=...]
Parameters
| Parameter | Description | Format | Allowed Values |
|---|---|---|---|
| FILE=
(Optional) |
Full path and name of the file in which the available InfoPackages are stored | n.a. | n.a. |
| JOB_STATUS=
(Optional) |
Filter for the status of jobs started by InfoPackages | n.a. |
|
Examples
The following example selects all InfoPackages whose long text matches "Land*", excludes InfoPackages with the InfoSource name "0COUNTRY", and writes the results to a file.
BW_SET_INFOPACKAGE_SELECTION SELNAME="TEXTLONG",LOW="Land*",OPTION=CP
BW_SET_INFOPACKAGE_SELECTION SELNAME="INFOSOURCE",LOW="0COUNTRY",SIGN=E
BW_GET_INFOPACKAGES FILE="c:\temp\infopackages.txt"