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 did you handle errors in Call Transaction?
What two statements would be used to exchange data between programs using abap memory?
What is logical database? : abap hr
In the function module for reading text from the S.O header what needs to be specified?
In a transaction there are 5 screens (say) but while recording you could see only 3 screens.what will u do to avoid such situation?will u save it like that?
What are dml commands in abap?
what are the table controls in BDC ?
which select statement is used in script?
Can i Have Some Realtime Examples on Bapi ?
where are the passwords for ITS stores?
What is the use of a pretty printer?
tell me about NGT?