In interactive reporting, suppose i go to N'th list from
basic list(primary data) & i wanna come back directly to
basic list. So how can i achieve this without using ESC or
back button?? Is it possible using set screen 0??
Answers were Sorted based on User's Feedback
Answer / jayati saha
By using sy-lsind = 0 we can return to the basic list.
Actually the basic list has lsind field set as 0 and all
other detail list may have index starting from 1 to 20. As
we may have 20 detailed list for one basic list.
Is This Answer Correct ? | 17 Yes | 1 No |
Answer / manoranjan
Hi,
try this code to come back directly from nth(say 18th) list
to basic list:
At Line-selection.
case sy-lsind.
when 18,
sy-lsind = 0.
endcase.
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / naveen
using sy-lsind we can move from one list another list as
sequence only not posibble come back from nth list to basic
list.
using at-user command event only possible.
if it is wrong correct me.
Is This Answer Correct ? | 4 Yes | 2 No |
Answer / naveen
no it is not possible to use set screen. if want to go back
from any list number may be nth list then we can use at
user-command event.using this event we can create our own
function keys so where we we want to go back without using
back button and esc there we can use our own function keys.
Is This Answer Correct ? | 0 Yes | 6 No |
How did you test the form u developed? How did you taken print?
What are internal tables? How do you get the number of lines in an internal table?
difference between bapi and lsmw
can i use data element or domain in the program and how
By default SAP provides locking mechanism if db is being used by a user ,then what is the use of writing enque method in your code?
What is the SD Flow in SAP.Can you explain with Transaction codes...
What are the functional modules used in sequence in BDC?
what will happen if called program is not executable ?
which commands are allowed if you are working with an internal table of type sorted?
How can I get the default values (like date, company code) in module pool programming before the screen is displayed?? I dont wanna use VARIENTS...
what is the Difference between Scripts and Smart Forms?
What are the select-option fields?