SAP NetWeaver AS ABAP Release 740, ©Copyright 2014 SAP AG. All rights reserved.
Incorrect Transaction Call
In ABAP Objects and, as of release 7.0, outside of classes, the following statement causes an error message:
CALL TRANSACTION ... USING itab AND SKIP FIRST SCREEN.
Correct syntax:
CALL TRANSACTION ... USING itab.
Reason:
The content of the
batch input table specified in the addition USING controls the entire transaction flow including the display of
screens. The addition
AND SKIP FIRST SCREEN is to be used only in connection with filling the mandatory input fields via SPA/GPA parameters.