13) How to get POPUP SCREEN in a program?
Answers were Sorted based on User's Feedback
Answer / bharath
1.If you want to get a popup in normal report program, call
function module POPUP_TO_CONFIRM.
2.If you want to get a popup in ALV program, then call
function 'REUSE_ALV_POPUP_TO_SELECT'.
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / subodh s. gholkar
If you want to display alv in POP UP window then use
parameters I_SCREEN_START_COLUMN , I_SCREEN_START_LINE ,
I_SCREEN_END_COLUMN , I_SCREEN_END_LINE .
eg :-
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
I_CALLBACK_PROGRAM = V_REPID
IS_LAYOUT = WA_LAYOUT
IT_FIELDCAT = T_FCAT
* IT_EVENTS = T_EVENT
I_SCREEN_START_COLUMN = 10
I_SCREEN_START_LINE = 2
I_SCREEN_END_COLUMN = 100
I_SCREEN_END_LINE = 20
TABLES
T_OUTTAB = ITAB
EXCEPTIONS
PROGRAM_ERROR = 1
OTHERS = 2. .
IF SY-SUBRC <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / kaushik
use :1. call screen if u have any screen program by CALL
screen 100 starting at 25 25.
2. use any popup related FM.
Is This Answer Correct ? | 2 Yes | 1 No |
How do you take care of performance issues in your ABAP programs?
Explain the difference between domain and data element?
What will happen if we write “WRITE” statement in the TOP_OF_PAGE? Can we write?
How can one distinguish between different kinds of parameters? : abap modularization
what is abstract classes
what are the loop events and what is the difference between them
What are the different methods of passing data? : abap modularization
In real time how we get the tickets? whether it is through email or any thing else.
Suppose in the BDC call transaction we updated one record into the database. In the message log it is showing successful, but it was not updated into the data base? How can we handle?
How can we decide weather we can enhance the standard infotype or not ? : abap hr
What is a predefined type in abap?
What is the function of the transport system and workbench organizer? : abap data dictionary