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
How to get that a secondary index is attached to a select query?
hi,i worked mostly in core abap.know iam assigned to XI utility project.can u experts let me know what r the basic things i need to learn to work in XI utility project.i already searched in forum.thanks in advance.
On ABAP, Did you set up a workflow? Are you familiar with all steps for setting up a workflow?
What are the major steps will you use for tuning?
What is the difference between the function module and a normal abap/4 subroutine?
When a function module is activated syntax checking is performed automatically. State yes or no. : abap modularization
What are the different functions used in sap script? What are the parameters used in each function?
any one can tell me which is the tables can store in ddic plese dont say db02l,please give me different ways of resideing the tables ?
function modules are also external subroutines. State true or false. : abap modularization
What is a type-pool?
What are the rules to create a BAPI?
What is the difference between call transaction and session method? : abap bdc
What are the different function modules used in sapscript?
What is the purpose of creating symbolic a/c, what is transaction code for same? Can we assign one symbolic a/c to multiple wage types? : sap abap hr
What will you code in start-of-selection & end-of-selection ?