‎2007 Jul 17 6:49 AM
hi
in Interaactive reporting how to move from basis list to 17th list directly?
‎2007 Jul 17 6:54 AM
hi,
sy-lsind = 17.
ex:
if sy-lsind = 2.
sy-lsind = 17.
endif.
thanks
jaideep
*reward points if useful..
‎2007 Jul 17 6:50 AM
‎2007 Jul 17 6:50 AM
‎2007 Jul 17 6:52 AM
hi,
First you need to generate the 17th list then only it is possible to move from 1st list to 17th list, you just assign the SY-LSIND to 17 then the 17th list will be genarated
Regards
Sudheer
‎2007 Jul 17 6:52 AM
Hi,
write sy-lsind = 17.
check this...
http://help.sap.com/saphelp_erp2004/helpdata/en/9f/dba2eb35c111d1829f0000e829fbfe/frameset.htm
http://help.sap.com/saphelp_erp2004/helpdata/en/d2/cb41a0455611d189710000e8322d00/frameset.htm
http://help.sap.com/saphelp_erp2004/helpdata/en/d2/cb408a455611d189710000e8322d00/frameset.htm
Regards,
Priyanka.
‎2007 Jul 17 6:52 AM
HI,
do like this.
at line selection.
case sy-lsind.
when 1.
sy-lsind = 17.
when 17.
write:/ 'this is from 17th secondary list'.
endcase.
<b>reward all helpful answers</b>
rgds,
bharat.
‎2007 Jul 17 6:54 AM
hi,
sy-lsind = 17.
ex:
if sy-lsind = 2.
sy-lsind = 17.
endif.
thanks
jaideep
*reward points if useful..
‎2007 Jul 17 6:55 AM
Hi,
Try like this:
At Line selection.
if sy-lsind=0. "basic list
sy-lsind=17.
endif.
Regards,
Bhaskar