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 is the use of start-of-selection.,if not use in report what will happen,?

1155


What are the function module in bdc?

635


what is the purpose of BAPI BAPI_CUSTMATINFO_GETLIST What is input and output of this BAPI.

2094


What is the structure of the bdc table? : abap bdc

723


What are the problems in processing batch input sessions?

601






What is pretty printer?

591


Fallback class

1743


Explain get pernr concept when we use logical data base? : abap hr

744


Can a constructor be declared private? If yes then in which scenario?

918


Which objects are independent transport objects? : abap data dictionary

570


What are the relational operations that can be performed on view in sap? : abap data dictionary

506


What are the steps to execute session method?

594


How do you find if a logical database exists for your program requrements?

601


Is logo in script 1st stored as tiff format before uploading or in jpeg format?and where is that stored after uploading?

1592


Difference between Read and Get cursor?

1601