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

F4 Listing from database table dtab

Former Member
0 Likes
763

Hi Experts,

I want for my F4 Help in a Dynpro just these datas, who have the worth 1 in field f_xy. All other input (even manuell) in the Dynpro, who have not the worth 1 in field f_xy have to be deleted from the dynpro.

What have I do to?

Regards,

Mike

3 REPLIES 3
Read only

former_member200872
Active Participant
0 Likes
741

Hi,

I feel that your query is not clear (ambiguous).

Do you mean that when the field f_xy doesn't have the value 1, other field contents should be deleted?

Regards,

Wajid Hussain P.

Read only

0 Likes
741

Yes.

Read only

0 Likes
741

Hi,

Try the code given below.

Regards,

Wajid Hussain P.

  • * * * *

" In PBO or At selection-screen " event

if f_xy <> '1'.

clear: f_other_field1, f_other_field2, f_other_field_N.

endif.