sapdev logo background
sapdev logo sapdev logo
Comments

SAP TYPING LITERALS documentation, setup help and example usage



Return to SAP documentation index


ARTICLE

Literals as Actual Parameters
Special rules apply to the assignment of literals to formal parameters. They allow you to assign character literals of type c and
string or numeric literals of type i and p to formal parameters whose type would not normally allow it.
If the formal parameter has a generic type, the non-specified type attributes are defined by the contents of the specified literal (see table 1). When a literal is bound, the pass is always executed as a pass by value , even if pass by reference is defined for the formal parameter.
If a literal meets the type requirements of the parameter, its contents are assigned to the formal parameter according to the relevant conversion rules for elementary data types . However, in contrast to the normal application of these rules, a non-catchable exception is raised if the
value range of the target is exceeded.

Checking Character Literals
Table 1 shows the requirements that a character literal must meet in order to be assigned to a formal parameter. These rules apply to both text field literals and text string literals.

Table 1
Typing Requirement
c If the formal parameter has a fixed length, the length of the literal may not exceed this length. If the length is generic, the formal parameter inherits the length of the literal.
d The literal must be eight characters long.
decfloat , decfloat16 , decfloat34 The literal must contain a number in
mathematical , commercial , or scientific notation . If generic typing with decfloat is used, the formal parameter contains the data type decfloat34 .
f The literal must contain a number in scientific notation .
i ,
int8 , ( b , s )The literal must contain a number in mathematical or commercial notation . The literal must not contain any decimal places
.
n The literal may only contain digits. If the formal parameter has a fixed length, the length of the literal may not exceed this length. If the length is generic, the formal parameter inherits the length of the literal.
numeric The literal must contain a number in mathematical or commercial notation . The formal parameter inherits the data type p, length 16, and the decimal spaces specified in the literal.
p The literal must contain a number in mathematical or commercial notation . If a generic formal parameter is used, the length is set to 16. The number of decimal spaces is set to the number of spaces specified in the literal. If the program attribute Fixed Point Arithmetic is activated in the called procedure, the number of decimal places in the literal for a completely typed formal parameter must be less than or equal to the number of decimal places in the formal parameter. If the attribute Fixed Point Arithmetic is deactivated in the called procedure, the number in the literal must have exactly the same number of decimal places as the formal parameter.
string The literal can have any length.
t The literal must be six characters long.
x The literal may only contain valid hexadecimal characters, that is the digits "0" to "9" and the letters "A" to "F". If the formal parameter has a fixed length, the length of the literal may not be more than twice this length. If the length is generic, the number of bytes specified in the literal determines the length of the formal parameter.
xstring The literal may only contain valid hexadecimal characters, that is the digits "0" to "9" and the letters "A" to "F".
xsequence The literal may only contain valid hexadecimal characters, that is the digits "0" to "9" and the letters "A" to "F". The formal parameter inherits the data type x . Its length is the number of bytes in the literal.
All other types have the same requirements of character literals as apply to other actual parameters. Generic formal parameters inherit the type of the actual parameter. With the exception of formal parameters listed in table 1, character literals can only be passed to formal parameters with types c or string .

Note
Character literals that are passed to actual parameters can be linked using the literal operator
. The rules described above apply here. However, if you use a link with the chaining operator , the actual parameter is a string expression of type
string and the formal parameter must be typed accordingly.

Checking Numeric Literals
Table 2 shows the requirements for numeric literals that are to be passed to typed formal parameters.

Table 2
Typing Requirement
f All numeric literals are allowed.
decfloat , decfloat16 , decfloat34 All numeric literals are allowed. If generic typing with decfloat is used, the formal parameter contains the data type decfloat34 .
i ,
int8 , b , s All numeric literals are allowed.
n The value of the literal must not be negative. If the formal parameter has a fixed length, the number of digits may not exceed this length. If the formal parameter is generic, its length is set to 10, if the literal has the data type i ; its length is set to 31 if the literal has the data type p .
p If a generic formal parameter is used, the length is set to 16 and the number of decimal spaces is set to 0. If the program attribut
e Fixed Point Arithmetic is deactivated, the formal parameter cannot have any decimal places or the literal must have the value 0.
All other types have the same requirements of numeric literals as of other actual parameters. Generic formal parameters inherit the type of the actual parameters. With the exception of formal parameters of the types listed in table 2, numeric literals can only be passed to formal parameters with data types i or p .
Documentation extract taken from SAP system, � Copyright SAP AG. All rights reserved




TYPING_GLOSRY
TYPING_RETURN_VALUES




comments powered by Disqus