Answer Posted / chinna pavuloori
With SET SCREEN, the current screen simply specifies the next screen in the chain. control branches to this next screen as soon as the current screen has been processed. Return from next screen to current screen is not automatic. It does not interrupt processing of the current screen. If we want to branch to the next screen without finishing the current one, use LEAVE SCREEN.
With CALL SCREEN, the current (calling) chain is suspended, and a next screen (or screen chain) is called in. The called screen can then return to the suspended chain with the statement LEAVE SCREEN TO SCREEN 0. Sometimes we might want to let an user call a popup screen from the main application screen to let them enter secondary information. After they have completed their entries, the users should be able to close the popup and return directly to the place where they left off in the main screen. Here comes CALL SCREEN into picture. This statement lets us insert such a sequence into the current one.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Explain buffering concept usage?
Hi, I have a requirement for locking the fax field in user master records. As you know user can edit the details using the System>profile>own data (SU3), it is causing some security threat to our model. What i want is users should not be able to change the fax field under communications when they get into su3.I have heard of user Exist functionality but don't know how to implement it. Can you suggest something, it will be greatly appreciated.
What does nw 7.4 sp 05/nw 7.5 sp 02 offers in abap?
What are logical databases?
Can you assign a matchcode object to a parameter? If so how?
Explain what is the significance of hide?
What is a view in sap? : abap data dictionary
Can we control the sequence in which multiple implementations of a multiple use BADI are called? If yes, how?
What will you code in start-of-selection & end-of-selecton & why?
Explain the session method? : abap bdc
What is the purpose of at first and at last?
What are the different window types in sapscript?
Can matchcode object contain ids with different update types? : abap data dictionary
What is pakey structure, pshd1 structure and what type of fields it contains? : abap hr
How to create a check box/option button in a list?