‎2008 Jun 03 9:53 PM
Hello Gurus,
I have a select option for Partner number which is char 10.
I need to apply conversion exit output to all the values in the select option.
How do I do this. Please suggest..
Thanks in advance.
Smita
‎2008 Jun 03 10:03 PM
You need to loop through all the entries in the select-options and apply the conversion exit to LOW and HIGH values.
Like:
LOOP AT S_KUNNR.
* Call Conversion FM for S_KUNNR-LOW
* Call Conversion FM for S_KUNNR-HIGH
MODIFY S_KUNNR.
ENDLOOP.
Regards,
Naimesh Patel