ABAP Keyword Documentation → ABAP - Short Reference
CALL DIALOG - Short Reference
Other versions: 7.31 | 7.40 | 7.54
Syntax
CALL DIALOG dialog [ {AND SKIP FIRST SCREEN}
| {USING bdc_tab [MODE mode]} ]
[EXPORTING p1 FROM a1 p2 FROM a2 ...]
[IMPORTING p1 TO a1 p2 TO a2 ...].
Effect
Obsolete
Additions
-
AND SKIP FIRST SCREEN
Suppresses the initial screen. -
USING bdc_tab [MODE mode]
Executes the dialog module using a batch input session in the internal tablebdc_tab
. The processing mode can be specified inmode
. -
EXPORTING p1 FROM a1 p2 FROM a2 ...
Passes actual parametersa1
,a2
, ... to input parametersp1
,p2
, ... -
IMPORTING p1 TO a1 p2 TO a2 ...
Inherits output parametersp1
,p2
, ... in actual parametersa1
,a2
, ...