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

Converison Exit

Former Member
0 Likes
276

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

1 REPLY 1
Read only

naimesh_patel
Active Contributor
0 Likes
254

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