Application Development and Automation 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: 
Read only

pop up

Former Member
0 Likes
438

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
400

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

2 REPLIES 2
Read only

Former Member
0 Likes
400

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

Read only

Former Member
0 Likes
401

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