Skip to content

SYSTEM-CALL CHECK FOR SEQUENCE OF C

Other versions: 7.31 | 7.40 | 7.54

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!SAP Basis, it may be used only in programs within the ABAP+GUI dvelopment groups. . This documentation is intended for internal SAP use within the Basis development group ABAP+GUI.

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.

Variant 1

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.

Variant 2

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.

Variant 3

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.