‎2010 Feb 08 5:23 AM
Can i know if there is a function in ABAP to set a negative value to zero instead of using the code
if field < 0.
field = 0.
endif.
‎2010 Feb 08 5:30 AM
Hi,
There is a general perception that we should always use FMs instead of own logic.
But my feeling is, if the logic is very simple (As in this example) why do you want to load the whole function group when ever you run your program. (if you are not aware, This happens for the function call during runtime ).
Thanks,
Vinod.
‎2010 Feb 08 5:30 AM
Hi,
There is a general perception that we should always use FMs instead of own logic.
But my feeling is, if the logic is very simple (As in this example) why do you want to load the whole function group when ever you run your program. (if you are not aware, This happens for the function call during runtime ).
Thanks,
Vinod.