Get Example source ABAP code based on a different SAP table
• AND SKIP FIRST SCREEN CALL TRANSACTION
CALL TRANSACTION, standard Short Reference
ABAP_SYNTAX CALL TRANSACTION ta WITH$|WITHOUT AUTHORITY-CHECK $[AND SKIP FIRST SCREEN$].
ABAP Addition ... AND SKIP FIRST SCREEN
What does it do? This variant calls the version specified in ta as described under the statement CALL TRANSACTION. The additions WITH$|WITHOUT AUTHORITY-CHECK are used to control the authorization check. AND SKIP FIRST SCREEN can be used to suppress the initial screen.
Latest notes: This variant does not set the system field sy-subrc. ABAP_HINT_END
ABAP Addition
What does it do? This addition can be used to suppress the display of a screen layout of the initial dynpro of a called dialog transaction. The addition AND SKIP FIRST SCREEN suppresses the first screen only under the following prerequisites:
For the initial dynpro, its own dynpro number must not be entered as the static next dynpro in Screen Painter .
All mandatory input fields of the initial dynpro must be filled completely and with the correct values by the SPA/GPA parameters. If these prerequisites are met, the screen of the dynpro is displayed that is specified in the Screen Painter as the next dynpro of the initial dynpro.
Example ABAP Coding
If the static next dynpro of the initial dynpro of the called dialog transaction FLIGHT_TA is not the initial dynpro itself, its screen is suppressed because its input fields are filled using the SPA/GPA parameters CAR and CON. ABEXA 00083 ABAP_EXAMPLE_END