‎2008 Aug 27 12:38 PM
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
‎2008 Aug 27 12:51 PM
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.
‎2008 Aug 27 1:11 PM
‎2008 Aug 27 1:26 PM
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.