Which ABAP SQL clause allows the use of inline declarations?
The following code snippet uses the INTO clause with an inline declaration to declare a local variable itab and store the result of the SELECT query into it:
SELECT * FROM scarr INTO TABLE @DATA (itab).
The following code snippet uses the INTO clause with an inline declaration to declare a field symbol <fs> and store the result of the SELECT query into it:
SELECT SINGLE * FROM scarr INTO @<fs>.
You cannot do any of the following:
Xenia
19 days agoClaudio
1 days agoBenedict
21 days agoColeen
22 days agoTamekia
24 days agoFelicia
27 days agoHerman
28 days agoMarg
29 days agoScarlet
29 days agoBecky
5 days agoFelicia
1 months ago