‎2010 Feb 05 2:38 PM
Hello experts,
I have a Zfunction module with input paramteres i_matnr, i_posnr and i_kwmeng.
My requirement is to call a pop-up screen with following fields.
Material - Inputbox for material (Read Only) " v_matnr
Item - Inputbox for Item (Read Only) " v_posnr
Quantity - Inputbox for Qty (Read Only) " v_kwmwng
Price - Inputbox for Qty (Change only) " v_price
Submit button.
I created function ZSD_MAT_DATA.
Added statement CALL SCREEN 0005
In PBO_0005, (include Prog)
v_matnr = i_matnr
v_posnr = i_posnr
v_kwmeng = i_kwmeng
1. But it gives me error for not declaration i_matnr. What I am missing here?
2. Is there anything to make window as pop-up with some specific size?
Regards,
RH
‎2010 Feb 05 2:58 PM
Hi,
Where are you populating the values for i_matnr, i_posnr and i_kwmeng ?
Regards,
Shiny
‎2010 Feb 05 3:03 PM
‎2010 Feb 05 4:28 PM
‎2010 Feb 05 3:25 PM
Hi,
You can use the stanadard FM K_KKB_POPUP_RADIO3
else like same you can craete a new function accordind to your requirement.
Hope it helps you.
Reagrds
Arbind
‎2010 Feb 05 3:41 PM
You need to declare all your screen fields that you use in the program as global variables.
Rob
‎2010 Mar 29 7:30 AM