‎2007 Mar 01 11:23 AM
hai experts ,
is there any possibulity to go upto 30th sublist , is there possibility means pls send the code .
Regards ,
Nagendra.
‎2007 Mar 01 11:32 AM
hi,
sap offers you only 21 secondary lists.
so what u do is when u r 20th list comes
<b>check for sy-lsind</b>
code;;;
if sy-lsind = 20.
submit report <report_21(21st report ) >.
endif.
then use this report and assign next coming lists and reach 30th list in this way .
cheers!
‎2007 Mar 01 11:24 AM
Hello,
Only 21 secondary list is allowed . If u try to move to 22 list u will get the ABAP runtime error.
Vasanth
‎2007 Mar 01 11:25 AM
we can have only 21 (including the basic list).
Once you reach the 20th secondary list, you have to call another report to have 21 more .
at line-selection.
if sy-lsind = 20.
submit zprog2. "Create zprog2 program before
endif.
‎2007 Mar 01 11:26 AM
No... it is not possible..
U cannot have more than 20 detailed lists....
if u try to go further runtime error occurs...
‎2007 Mar 01 11:32 AM
hi,
sap offers you only 21 secondary lists.
so what u do is when u r 20th list comes
<b>check for sy-lsind</b>
code;;;
if sy-lsind = 20.
submit report <report_21(21st report ) >.
endif.
then use this report and assign next coming lists and reach 30th list in this way .
cheers!