Answer Posted / 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 |
Post New Answer View All Answers
What are the restrictions on subscreens?
Explain the differences between se01, se09 and se10?
Difference between transparent tables and pooled tables? : abap hr
how to combine the transparent table with cluster table.
How do you move on to the next screen in interactive reporting?
What are the differences between sap memory and abap memory?
What is the differrences between structure and table in data dictionary in abap? : abap hr
after creating lock object if does n't access record by second user what should we do?
Proxy Programming with ABAP - How to develop the Proxy identification through programming
What is the purpose of at first and at last?
Have you set up a back ground job ? How to create a background job without a variant ?
What are interactive reports?
What is the use of table maintenance allowed?
What are roles and authorization objects?
What are Pull and Push Methods?