SAP CALL DIALOG - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for CALL_DIALOG

CALL DIALOG

ABAP Reference
ABAP Code Snippet


ABAP 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 ...].
ABAP Code Snippet

What does it do? Obsolete: Calls the dialog module specified in dialog.

ABAP Addition 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 table bdc_tab. The processing mode can be specified in mode.
EXPORTING p1 FROM a1 p2 FROM a2 ...
Passes actual parameters a1, a2, ... to input parameters p1, p2, ...
IMPORTING p1 TO a1 p2 TO a2 ...
Inherits output parameters p1, p2, ... in actual parameters a1, a2, ...

Return to menu