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

Explain how data is stored in cluster table?

677


What is your approach for writing a bdc program? : abap bdc

592


How do you use tab sets in layout sets?

665


When you prefer lsmw?

594


How do you validate the selection criteria of a report? And how do you display initialvalues in a selection screen?

621






What are the contents in technical specifications?

606


can i use table key and key in an internal table and explain the functionalities of each one and what functionality does it give if both are used for same internal table

1800


What is partner selection?

622


What are dml commands in abap?

656


Explain the difference between a dialog program and a report?

559


It is possible to assign a local data object defined in a subroutine or function module to a field group. State true or false. : abap modularization

782


What are the various events associated with screen programming?

697


What will you code in start-of-selection & end-of-selecton & why?

590


please any one can tell me How to validate the data in Table maintinance generator?how can u validate the table field values if u r entering the data into fields .it shows record is wrong?wher we can done validation in table maitenance generator before getting the data as out ?

1589


How many types of views are there ?

652