ABAP Keyword Documentation → ABAP − Short Reference
CALL TRANSACTION - Short Reference
Other versions: 7.31 | 7.40 | 7.54
Syntax
CALL TRANSACTION ta WITH|WITHOUT AUTHORITY-CHECK
{ [AND SKIP FIRST SCREEN]
| [USING bdc_tab
{{[MODE mode]
[UPDATE upd]}
|[OPTIONS FROM opt]}
[MESSAGES INTO itab] ] }.
Effect
Calls the transaction of the transaction code entered in ta
and returns to the calling point.
Additions
-
WITH|WITHOUT AUTHORITY-CHECK
Executes or suppresses an authorization check. -
AND SKIP FIRST SCREEN
Suppresses the initial screen. -
USING bdc_tab
Executes the transaction using a batch input tablebdc_tab
.
Inmode
afterMODE
, you specify the processing mode for the processing.
Inupd
afterUPDATE
, you specify the update mode for processing.
Inopt
after OPTIONS FROM, you specify the processing mode and the update mode for the processing.
In the internal taleitab
afterMESSAGES INTO
, the messages for the processing are collected.