What are dynamic modifications of a screen? explain in detail?
Answers were Sorted based on User's Feedback
Answer / ashokabap
Change Screen based on user actions....this can be done by using AT SELECTION-SCREEN OUT PUT event....
Referance:
http://www.sapnuts.com/courses/core-abap/classical-reports/classical-report-events.html
Is This Answer Correct ? | 13 Yes | 0 No |
Answer / sm
based on the user action the screen should be changed.
eg. let us take a scenario there is a check box and five field in a screen. my requirement is when the check box is checked first two fields should be disabled and other field should be enabled.
so to achieve this action function code should be written to the check box. when the user checks the check box. the function code will be triggered.
if the function code is triggered then the screen field of the first two field should be set as 0.and other screen field should be set input as 1.this is a way if dynamic modification of screen
Is This Answer Correct ? | 7 Yes | 1 No |
What are number ranges?
What is the difference between select single and select upto 1 rows?
what is the difference between session ,call Transaction?
What are the commands used for interactive reports?
What are the diferent types of internal table available? How can we know the size of the internal tables?
A field containing currency amounts (data type curr) must be assigned to a reference table and a reference field. Explain.? : abap data dictionary
what are the tools in lsmw?
when are this three events fired and tell me whuich event is fired first ,second and third --- at selection - screen, at selection -screen output, and at selection- screen on value request.
What is an Open Item in SAP? How will you find an Open Item in SAP?
Can i Have Some Realtime Examples on Bapi ?
what comes in Timkein written test I hope some body can tell me at this id plz tell it before 9 pm 19 march
loop at itab. IF <cond>. Continue. Endif. Endloop. If continue triggers what will happen, it comes out of loop and endloop for further loop pass or just comes out of IF and Endif.