SAP NEW CONSTRUCTOR PARAMS LSPC
Get Example source ABAP code based on a different SAP table
• LINES OF NEW itab
• FROM NEW itab
• TO NEW itab
• STEP NEW itab
• USING KEY NEW itab
ABAP_SYNTAX
$| ${LINES OF jtab $[FROM idx1$] $[TO idx2$] $[STEP n$] $[USING KEY keyname$]$} ...>
ABAP_ALTERNATIVES:
1
2
What does it do?
Specification of one or more lines to be inserted when constructing an internal table with the instance operator
ABAP Alternative 1