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

NEW, line_spec

ABAP_SYNTAX
... line
$| ${LINES OF jtab $[FROM idx1$] $[TO idx2$] $[STEP n$] $[USING KEY keyname$]$} ...

ABAP_ALTERNATIVES:
1 ... line
2 ... LINES OF jtab $[FROM idx1$] $[TO idx2$] $[STEP n$] $[USING KEY keyname$]

What does it do?
Specification of one or more lines to be inserted when constructing an internal table with the instance operator NEW.

ABAP Alternative 1 ... line