BW_GET_INFOPACKAGES

This script element reads InfoPackages from the BW system. The available InfoPackages are saved in the activation report or a file.

To use this script element, you must have selected the InfoPackages with the BW_SET_INFOPACKAGE_SELECTION script element. All the available InfoPackages are written to the activation report or to a specified file. The file is structured, its first column can include up to 31 characters and contains the technical name of the InfoPackage. The second column can include up to 61 characters and includes the long text.

Transaction: RSA1

Syntax

BW_GET_INFOPACK[AGES]

    [FILE=...]
    [,JOB_STATUS=...]

Parameters

  • BW_GET_INFOPACK[AGES]
    Reads InfoPackages from the BW system

  • FILE=
    (Optional) Name of a file with complete path specification in which the available InfoPackages are stored
  • JOB_STATUS=
    (Optional) Filter for the status of jobs that have been started by InfoPackages
    Allowed values:
    • S
      The job is scheduled.
    • R
      The job is running.
    • F
      The job has ended.
    • A
      The job has aborted.

All selection tables will be deleted when the script elements have been processed in the script.

Examples

The following example selects all InfoPackages that include the long text "Land*". Not selected are InfoPackages that include the InfoSource name "0COUNTRY". The results are written 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"