In module pool program how to pass the one screen input value to another screen input value?
Answer Posted / prosoft
Create a global variable to hold value of first screen input value after PAI of screen one pass screen one input to the global variable. Then in PBO of second screen pass value of global variable to screen two input field.
Eg: in PAI module of screen 1.
input1 = 'Value of Screen 1'.
gv_var = input1.
in PBO module of screen2.
input2 = gv_var.
Now input2 contains screen 1 input value which is 'Value of Screen 1'.
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What is the use of message command in a report? What are the different message types?
What is the function of a data element?
How do you activate a function exit?
Explain Singleton class
Hat are the different types of mode (run code) in call transaction method?
Explain about the tables exists in a data dictionary and what are they? : abap data dictionary
What are the different types of locks? : abap data dictionary
Name the function module used to convert logical file names to physical file names in abap/4 programs?
What are the two different ways of building a match code object? : abap data dictionary
What is the difference between Exit and Stop?
What are base tables of an aggregate object?
In delivery processing which step comes first picking, packing, posting goods issue ?
Explain the disadvantage of using exec sql statement in abap?
Can we display a list in a pop-up screen other than full-size stacked list?
What will you code in start-of-selection & end-of-selecton & why?