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

Focus in a DynPro

Former Member
0 Likes
906

Hi all ABAPers!

I need to put on the focus in a filed type "Control Custom", but i dont know how to do it.

Can you help me?

Thnx a lot.

Hi all ABAPers!

I need to put on the focus in a filed type "Control Custom", but i dont know how to do it.

Can you help me?

Thnx a lot.

4 REPLIES 4
Read only

Former Member
0 Likes
843

Hi,

use set cursor

set cursor field 'S_MATNR'.

Regards

amole

Read only

0 Likes
843

Where I have tput that? I Put on PBO Module and it doesn´t work

Read only

Former Member
0 Likes
843

Hi,

you can put in PBO or PAI it depends upon your screen

flow .

while using set cursor field <b>'S_MATNR'</b>

bold should be in caps.

paste your code

Regards

amole

Read only

0 Likes
843

This is my code.

Thanks!

MODULE status_1001 OUTPUT.

SET CURSOR FIELD 'CONTAINER'.

SET PF-STATUS 'ZMM002_STATUS1'.

  • SET TITLEBAR '1001'.

ENDMODULE.