Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Pop up window in module pool prg

Former Member
0 Kudos

Hi

i have developed a module-pool prg..

at end of screen i have a requirement where i have to display contains of internal table in pop up window

which is having a fields color_code , color_desc,

conc,color_qty so that user can enter ...

after pressing ctrl w. the window should close &

the color with qty = 0 should be delete and update database table..

can any one help me.

5 REPLIES 5

Former Member
0 Kudos

Hi

try these fm, they are all for pop up windows..

BP_POPUP_DIALOG

BUAVC_SHOW_ALDNR_ALL

CM_AENNR_EDIT

CMS_UI_COPY

FMAVC_SHOW_ALDNR_ALL

FMAVC_SHOW_ALSRC_ALL

FM_FIPOS_SUBSTRING_POPUP_C

FM_FISTL_SUBSTRING_POPUP_C

FM_FUND_SUBSTRING_POPUP_CA

GMAVC_SHOW_ALDNR_ALL

K_GROUP_SELECT

RKE_CHANGE_ASPECT

RKE_CHARACTERISTIC_SELECTI

LTSKM_MENU_ENABLE_CHECK

OIJ_BERTH_PL_GET_FCODE

OIJ_LT_DISPLAY_ACTUAL_LAYT

OIRA_ANALYSIS_CURRENCY_GET

RP_POP_UP_FOR_NEW_STATUS

RTP_US_API_CONFIRM_POP_UP

RTP_US_API_POP_UP_GET_DATE

Reward if useful.

Regards

Divya

Former Member
0 Kudos

maybe you can use this script to create pop-up window.....

CALL SCREEN 0300 STARTING AT 15 05

ENDING AT 70 15.

when u call that coding, they will appear the pop-up screen..

Link:[Abap tIps & Notes|abap4beginner.blogspot.com]

Former Member
0 Kudos

hi,

USE THIS fm POPUP_TO_DECIDE_INFO .

Parameters required for this FM is the Text you require to display on the popup window.

Two buttons automatically comes on this window a Tick and a x sign if you click tick the output varaible ANSWER is J else it is A .

Regards,

Anirban

Former Member
0 Kudos

Hi,

Check Tcode TZ70 ( program SAPMTZ70 )

Former Member
0 Kudos

Hi,

Plz try with below code , we an use command call screen for this purpose.

MODULE user_command_9001 INPUT.

  • check if the data is changed in ALV.

CALL METHOD g_alv_grid_9001->check_changed_data.

CASE g_ok_code .

WHEN 'SUBM'.

PERFORM f0601_save.

WHEN 'SHOW'.

CLEAR : g_wa_outtab_1,

g_wa_outtab_1.

REFRESH : g_t_outtab_1,

g_t_outtab_1[].

PERFORM f0600_show_selections.

CALL SCREEN 9002 STARTING AT 1 1 ENDING AT 130 20.

ENDCASE.

ENDMODULE. " USER_COMMAND_9001 INPUT

hope this will solve your problem.

plz reward if useful.

thanks,

dhanashri.