BW_SET_INFOPACKAGE_SELECTION

This script element sets selection parameters that should be used for reading the InfoPackages from the BW system. BW_SET_INFOPACKAGE_SELECTION does not call an SAP function, it prepares for the subsequent reading of the InfoPackages from the BW system. You can select InfoPackages in four different ways, according to long text, InfoSource, source system and data source. When you start, the selection tables of each AE job for the target system SAP BW are empty. If you use this script element several times, the selection tables are filled with values.

Note: BW_SET_INFOPACKAGE_SELECTION replaces the old SET_INFOPACKAGE_SELECTION script element. You can still use the old name.

Transaction: RSA1

Syntax

BW_SET_INFOPACKAGE_SELECTION

    SELNAME=...
    ,LOW
    =...
    [,HIGH=...]
    [,SIGN=...]
    [,OPTION=...]
    [,MODE=...]

Parameters

  • SELNAME=
    Name of a selection table for the InfoPackages
    Allowed values:
    • TEXTLONG
      Selection for long texts
    • INFOSOURCE
      Selection for InfoSources
    • SOURCESYSTEM
      Selection for source systems
    • DATASOURCE
      Selection for data sources
  • LOW=
    Lower limit for the chosen selection table
    Allowed values: the wildcards * and ?. * stands for any and ? stands for exactly one character.
    Example: When you have specified TXTLONG, LOW= selects the long text of the available InfoPackages.
  • HIGH=
    (Optional) Upper limit for the chosen selection table
    Allowed values: the wildcards * and ?. * stands for any and ? stands for exactly one character.
    Note: An upper limit is only useful when the parameters BT or NB are specified as a selection option.
  • SIGN=
    (Optional) The indicator for the selection.
    Allowed values:
    • I (default)
      Found InfoPackages are included
    • E
      Found InfoPackages are excluded
  • OPTION=
    (Optional) The selection option
    Allowed values:
    • EQ (default)
      Equal
    • NE
      Unequal
    • GT
      Larger
    • GE
      Larger or equal
    • LT
      Smaller
    • LE
      Smaller or equal
    • CP
      Model comparison (with wildcards)
    • NP
      Exclude model
    • BT
      Interval (specify HIGH also)
    • NB
      Exclude Interval (specify HIGH also) 
  • MODE=
    (Optional) The processing mode for the selection.
    Allowed values:
    • R (default)
      The selection will be replaced in the selection table.
    • B
      The selection will be added to the selection table.

Examples

The following example selects all InfoPackages that include the long text "Land*". Not included in the search are InfoPackages that include the InfoSource name "0COUNTRY".

BW_SET_INFOPACKAGE_SELECTION SELNAME="TEXTLONG",OPTION="CP",LOW="Land*"
BW_SET_INFOPACKAGE_SELECTION SELNAME="INFOSOURCE",LOW="0COUNTRY",SIGN=E