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
10 days agoBenedict
12 days agoColeen
13 days agoTamekia
15 days agoFelicia
18 days agoHerman
18 days agoMarg
19 days agoScarlet
20 days agoFelicia
24 days ago