Code: Alles auswählen.
ranges : testa for zmlpl_fabest-lgpbe.
selection = '*A*'.
clear testa.
refresh testa.
testa-sign = 'I'.
testa-option = 'CP'.
testa-low = selection.
append testa.
select * from zmlpl_fabest into corresponding fields of table it_fabest
where lgpbe in testa.
Code: Alles auswählen.
DATA: testa TYPE RANGE OF zmlpl_fabest-lgpbe.
DATA: testa_line LIKE LINE OF testa.
selection = '*A*'.
testa_line-sign = 'I'.
testa_line-option = 'CP'.
testa_line-low = selection
APPEND testa_line TO testa.
select * from zmlpl_fabest into corresponding fields of table it_fabest
where lgpbe in testa.