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 is exception class and test class. How to use it?
What is value table?
How to transfer data into line items using batch input session method? : abap bdc
What are the disadvantages of different types of bdc's?
What is an update type with reference to a match code id? : abap data dictionary
What is sql trace? : abap data dictionary
if u take one worst program,in this program user write the logic is session method.in that program user can get some errors ,that errors we will see in call transaction method,how it is possible.?
What abap statement will trigger list generation?
The loop-endloop on extract datasets can be used without any kind of errors. State true or false. : abap modularization
What is logo in sap script?
What are smart forms?
How can we declare a table control in the abap/4 program?
What is ps structure? : abap hr
How do you use structures in the abap programs?
what is the purpose of BAPI BAPI_CUSTMATINFO_GETLIST What is input and output of this BAPI.