SAP OO OBS CALL TA 1

Get Example source ABAP code based on a different SAP table
  


ABAP Code Snippet
ARTICLE

Incorrect Transaction Call
The additions USING and AND SKIP FIRST SCREEN for the statement CALL TRANSACTION are mutually exclusive.

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.