2007 Jun 07 6:02 AM
1) if i am in LIST 20 ...How to code to get back directly to 5 LIST.
2007 Jun 07 6:34 AM
Use system field
IF SY-LSIND = 20.
sy-lsind = 5.
ENDIF.
Rgds,
SaiRam
case sy-lsind.
when '20'.
sy-lsind = 5.
endcase.
2007 Jun 07 6:04 AM
2007 Jun 07 6:04 AM
hI,
in the event at line selection.
if sy-lsind = '20'
set the variable sy-lsind = 5.
endif.
sudheer.A
2007 Jun 07 6:04 AM
hi,
If sy-lsind = 20.
sy-lsind = 5.
endif.
Reward points if it is helpful.
Regards,
Sangeetha.A
2007 Jun 07 6:05 AM
2007 Jun 07 6:12 AM
2007 Jun 07 6:23 AM
2007 Jun 07 6:34 AM
Use system field
IF SY-LSIND = 20.
sy-lsind = 5.
ENDIF.
Rgds,
SaiRam
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |