What does an EXEC SQL stmt do in ABAP? What is the disadvantage of using it?
By on Apr 2, 2007 in SAP-ABAP Interview Questions
To use a Native SQL statement, you must precede it with the EXEC SQL statement, and follow it with the ENDEXEC statement as follows:
EXEC SQL [PERFORMING
].
ENDEXEC.
There is no period after Native SQL statements. Furthermore, using inverted commas (”) or an asterisk (*) at the beginning of a line in a native SQL statement does not [...]


