‎2009 Jul 21 2:52 PM
in my selection screen if i enter matnr and execute then a pop up should come which will contain all the specification of this material.
I have got the list of specification in gt_estmj.
gt_estmj contains material and subid list.
now pls let me how to bring that pop up.
‎2009 Jul 21 2:59 PM
Hi,
This might be helpful
col = sy-cucol + 40.
lin = sy-curow + 2.
WINDOW STARTING AT sy-cucol sy-curow
ENDING AT col lin.
WRITE: Your details here......
Regards
Milan
‎2009 Jul 21 2:55 PM
also from this list i have to select a specification and that particular specification's details should get printed. the logic for retrieving specification details is working fine.
Kindly help me with this pop up finctionality logic
‎2009 Jul 21 2:59 PM
Hi,
This might be helpful
col = sy-cucol + 40.
lin = sy-curow + 2.
WINDOW STARTING AT sy-cucol sy-curow
ENDING AT col lin.
WRITE: Your details here......
Regards
Milan