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: 

Screen field not getting populated from f4 Help

Former Member
0 Kudos

Hi Friends,

I am working on Transaction code IW51. Requirement is to get a customized screen field in second screen of IW51 tranascation

in one of the tabstrip.

I have succesfully created the Sub screen for it through Screen Exit and now the subscreen is visible to me in IW51 with my customized field in it.

Problem is that when i am putting a break point in my Subscreens PBO or PAI or POV, and executing IW51

transaction, Systems is not stoping there at break point.

My requirement is to get a F4 Help on my Customized screen field.

Please suggest me urgently on this.

Many Thanks,

Chitrakant Deshmukh

2 REPLIES 2

venkat_o
Active Contributor
0 Kudos

Hi, Try this way. <li>Use static break point directly wherever you want.

BREAK-POINT.
<li>Use BREAK, followed by a user name.
BREAK CSCVENKAT. "Where CSCVENKAT user id
<li>Any of those not worked, Use MESSAGE statment, so that you can come to know where you are .
DATA:text TYPE string.
text = 'Cursor is here'.
MESSAGE text  TYPE 'I'.
Thanks Venkat.O

Former Member
0 Kudos

Answered