I have seen SAP ABAP support inline declaration after release ABAP 7.4.I have declare the inline statement inside the loop.
loop at it_data.
data(lv_val) = 5.
endloop.
In another exampleI have declared the statement without inline declaration i...
I am still confused, Why are you converting binary to string and string to table.Just change the declaration of table gt_pdfitab as mention below.DATA: gt_pdfitab TYPE STANDARD TABLE OF BAPICONTENT255Pass result table of binary data to method directl...
Copied from SAP help document.Releases a change lock (write or update lock) on the current area handle and confirms the changes that were made. The area handle is then inactive. The prerequisite for this is that the current area instance version must...
Hey, Strcutuer of source and target is different. Example:Table xyz: contain the following fields: F1, F2,F3 F4 F5 and define the work area lw_xyz of type table xyz.Now your fetching data of fields F2 and F4 fields from table xyz. When reasult move i...