13) How to get POPUP SCREEN in a program?
Answers were Sorted based on User's Feedback
Answer / bharath
1.If you want to get a popup in normal report program, call
function module POPUP_TO_CONFIRM.
2.If you want to get a popup in ALV program, then call
function 'REUSE_ALV_POPUP_TO_SELECT'.
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / 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 |
Answer / kaushik
use :1. call screen if u have any screen program by CALL
screen 100 starting at 25 25.
2. use any popup related FM.
Is This Answer Correct ? | 2 Yes | 1 No |
10> Can u give me one example where we should use only CALL TRANSACTION method in BDC?
How the Sy-Mandt value gets updated in the table and Is this having any foreign key relationship.
field symbol work as a pointer,but it store address of value.my question is ,it got address from sap memory or abap memory or in database server ? i mean that address indicate to which memory ?
1 Answers Infosys, Tata Technologies, TCS,
what do u mean by one to one relationship in the database of transparent and many to one relation in pooled table could please tell me the answers i couldnt understand the concepts
how to cal driver program in smart forms??
how can i find which report(abap program) assign to which sap script? or how can we find sap script is assign to which progam?
What are the steps in creating screen ?
Name 5 custom objects that dont start with Z or Y ?
When a program is created and need to be transported to prodn does selection texts always go with it? If not how do you make sure? Can you change the cts entries? How do you do it?
How many types of views are there? : abap data dictionary
What are two methods of modifying sap standard tables? : abap data dictionary
Can i Have Some Realtime Examples on Idocs ?