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

fm field not initial

Former Member
0 Likes
839

exists a function module that checks if the fields are not initial?

nick reyan,

Why do you need an FM for an that, apart from the methods mentioned above you can also use below code.

If Field is not Initial.
endif.
2 REPLIES 2
Read only

FredericGirod
Active Contributor
726

Why ?

check my_field is initial

check my_field is not initial.

check lines( my_table ) ne 0.

check line_exists( my_table[ column = my_value ] ).

....

Read only

former_member1716
Active Contributor
0 Likes
726

nick reyan,

Why do you need an FM for an that, apart from the methods mentioned above you can also use below code.

If Field is not Initial.
endif.