Get Table data Dynamically from Standard Program to Internal Table
field-symbols : <zrseg> type table.
assign ('(SAPLMR1M)YDRSEG[]') to <zrseg>.
if <zrseg> is not assigned.
exit.
endif.
assign ('(SAPLMR1M)YDRSEG[]') to <zrseg>.
if <zrseg> is not assigned.
exit.
endif.
Comments
Post a Comment