13) How to get POPUP SCREEN in a program?

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


Please Help Members By Posting Answers For Below Questions

What are the restrictions on subscreens?

913


Explain the differences between se01, se09 and se10?

791


Difference between transparent tables and pooled tables? : abap hr

795


how to combine the transparent table with cluster table.

1362


How do you move on to the next screen in interactive reporting?

889


What are the differences between sap memory and abap memory?

767


What is the differrences between structure and table in data dictionary in abap? : abap hr

926


after creating lock object if does n't access record by second user what should we do?

1749


Proxy Programming with ABAP - How to develop the Proxy identification through programming

2082


What is the purpose of at first and at last?

806


Have you set up a back ground job ? How to create a background job without a variant ?

830


What are interactive reports?

829


What is the use of table maintenance allowed?

745


What are roles and authorization objects?

1422


What are Pull and Push Methods?

1957