BW_ACTIVATE_INFOPACKAGE
Use the BW_ACTIVATE_INFOPACKAGE script element to schedule one or more InfoPackages for immediate start. The InfoPackage must not already be scheduled.
Note: If you use BW 7.x DataSources and Transformation Services (as of SAP NetWeaver 04s), you must transfer the data after loading it. Define suitable process chains in your BW system and handle them with the BW_ACTIVATE_CHAIN script element.
Transaction: RSA1
Syntax
BW_ACTIVATE_INFOPACKAGE [NAME=...][,ERROR=...][,NOFOUND=...][,MAXRUNTIME=...][,LOG=...]
Parameters
| Parameter | Description | Format | Allowed Values | Default Value |
|---|---|---|---|---|
| NAME=
(Optional) |
Technical name of the InfoPackage to activate. Notes:
|
Script literal | n.a. | n.a. |
| ERROR=
(Optional) |
Specifies the AE reaction if the InfoPackage ends abnormally | Script literal |
|
ABEND |
| NOFOUND=
(Optional) |
Specifies the AE reaction if the InfoPackage cannot be found | Script literal |
|
NORMAL |
| MAXRUNTIME=
(Optional) |
Maximum time in seconds during which the scheduled InfoPackages are monitored. Use this parameter when InfoPackages are manually set to quality status Y (yellow) in the administrator workbench, to prevent the AE job from waiting indefinitely. Use ERROR= to define whether the job should abort or continue when MAXRUNTIME= is exceeded. | Number | n.a. | 86400 |
| LOG=
(Optional) |
Controls whether log messages of InfoPackages are included in the job report | n.a. |
|
NO |
Examples
The following example schedules an InfoPackage for immediate start, with a maximum monitoring time of one hour.
BW_ACTIVATE_INFOPACKAGE NAME="ZPAK_6LX4XTMC3RJ2DF4F09NFIJW98",MAXRUNTIME=3600
The following example selects all InfoPackages whose long text matches "AE:*Text*" and schedules them for immediate start. Any error causes the AE job to abort.
BW_SET_INFOPACKAGE_SELECTION SELNAME='TEXTLONG',SIGN='I',OPTION='CP',LOW='AE:*Text*'
BW_ACTIVATE_INFOPACKAGES NOFOUND='ABEND',ERROR='ABEND'