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 do you mean by cluster tables in sap abap? Also explain what do you mean by table cluster? : abap data dictionary

519


Can we handle two transaction codes in the same program using call transaction bdc input method? : abap bdc

648


What are the events in abap/4 language? : abap hr

616


how can you display data say "your name"in sap script without print program or driver program??

1724


WHAT ARE THE INPUT PARAMETERS TO BE PASSED FOR THE BAPIS 'BAPI_CUSTMATINFO_GETDETAILM' AND 'BAPI_CUSTMATINFO_GETLIST'

1771






How are the function code handles in flow logic?

612


Does the call transaction method allow multiple transactions to be processed by sap? : abap bdc

523


What are the different types of locks? : abap data dictionary

633


Describe the data classes?

610


Why grouping of fields is required? What is the max no of modification groups for each field?

558


How to creat transactions? : abap data dictionary

649


What is the difference between collect and append statements?

565


What is luw or data base transaction ?

579


can any one answer these questions 1)How do you convert non-character field to character field? 2)How do you work with semi colon separated files? 3)why cant we use normal function module for data transfer? 4)what is the structure of CTU-PARAMS? 5)can we use transfer dataset to transfer data in internal table?

1544


Have you worked with support? How ticket comes to you? What were the timings for resolving tickets types of severity?

1614