Hi Folks,
My select-option field(material) i want the value without leading zeros for that I want to use conversion routine OUTPUT.
how can i convert the values from low to high values.From my below code I can able to do only low values not complete range.
my current code
loop at s_new.
CALL FUNCTION 'CONVERSION_EXIT_PRODU_OUTPUT'
EXPORTING
input = s_new-low
IMPORTING
OUTPUT = s_new-low
.
modify s_new.
endloop.
I want all the values in s_new[] should be without leading zeros.
Please advice me.
Thanks,
Smriti