SAP NetWeaver AS ABAP Release 740, ©Copyright 2014 SAP AG. All rights reserved.
SYSTEM-CALL CHECK FOR SEQUENCE OF C
This statement is intended solely for
*** Internal use within SAP Basis Development ***
Even within SAP Basis, it may be used only in programs within the ABAP+GUI dvelopment groups.
Its use is subject to various restrictions, some of which may not be described in the documentation
. This documentation is intended for internal SAP use within the Basis development group ABAP+GUI.
Changes and further developments, which may be incompatible, can occur at any time without prior notice!
Variants:
1. SYSTEM-CALL CHECK f1 FOR SEQUENCE OF C CLASS f2 METHOD f3 PARAMETER f4.
2. SYSTEM-CALL CHECK f1 FOR SEQUENCE OF C FUNCTION f2 PARAMETER f3.
3. SYSTEM-CALL CHECK f1 FOR SEQUENCE OF C FORM f2 PARAMETER f3.
SYSTEM-CALL CHECK f1 FOR SEQUENCE OF C CLASS f2 METHOD f3 PARAMETER f4.
Effect
Enter this system call in the first line of the method. The system checks that f1
is of type c or string. If not, the system returns
the short dump METH_PARM_IS_NOT_SEQUENCE_OF_C using the character fields f2, f3 and f4.
SYSTEM-CALL CHECK f1 FOR SEQUENCE OF C FUNCTION f2 PARAMETER f3.
Effect
Enter this system call in the first line of the function. The system checks that f1 is of type c or string. If not, the system returns the
short dump FUNC_PARM_IS_NOT_SEQUENCE_OF_C
using the character fields f2 and f3.
SYSTEM-CALL CHECK f1 FOR SEQUENCE OF C FORM f2 PARAMETER f3.
Effect
Enter this system call in the first line of the form. The system checks that f1 is of type c or string. If not, the system returns the short dump Form_PARM_IS_NOT_SEQUENCE_OF_C using the character fields f2 and f3.