<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to create custom conversion exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416325#M1408577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read the SAP online documentation at [Conversion Routines |http://help.sap.com/abapdocu_70/en/ABENCONVERSION_EXITS.htm] everything you need to know is there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Dec 2009 12:53:58 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2009-12-01T12:53:58Z</dc:date>
    <item>
      <title>How to create custom conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416322#M1408574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a custom domain for my custom table. There I want to use one conversion exit for a requirement. Can you guys&lt;/P&gt;&lt;P&gt;help me out step by step how to create a custom conversion exit and assign it to my domain?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mainak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2009 11:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416322#M1408574</guid>
      <dc:creator>former_member224404</dc:creator>
      <dc:date>2009-12-01T11:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to create custom conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416323#M1408575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ur req, U can assign a 5 length unique characters to ur domain [Example: ZABC1].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create 2 function modules in a custom function grp.&lt;/P&gt;&lt;P&gt;Here ZABC1 is key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ZABC1_INPUT    &lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ZABC1_OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;More help on this from documentation&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversion Routine&lt;/P&gt;&lt;P&gt;Conversion takes place when converting the contents of a screen field from display format to SAP-internal format and vice versa and when outputting with the ABAP statement WRITE, depending on the data type of the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If standard conversion is not suitable, it can be overridden by specifying a conversion routine in the underlying domain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A conversion routine is identified by its five-place name and is stored as a group of two function modules. The function modules have a fixed naming convention. The following function modules are assigned to conversion routine xxxxx:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_xxxxx_INPUT&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_xxxxx_OUTPUT&lt;/P&gt;&lt;P&gt;The INPUT module performs the conversion from display format to internal format. The OUTPUT module performs the conversion from internal format to display format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a screen field refers to a domain with a conversion routine, this conversion routine is executed automatically each time an entry is made in this screen field or when values are displayed with this screen field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Bhargava&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2009 12:03:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416323#M1408575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-01T12:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to create custom conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416324#M1408576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First Create the two funcation modules example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ZMAT1_INPUT&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ZMAT1_OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implement u r logic in this FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once the FM are created, go to Domain in that assign ZMAT1 to Convers. Routine field.&lt;/P&gt;&lt;P&gt;Now double click on the ZMAT1 the above two created FM will appear,Select that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2009 12:08:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416324#M1408576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-01T12:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to create custom conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416325#M1408577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read the SAP online documentation at [Conversion Routines |http://help.sap.com/abapdocu_70/en/ABENCONVERSION_EXITS.htm] everything you need to know is there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2009 12:53:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416325#M1408577</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-12-01T12:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to create custom conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416326#M1408578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mainak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why do you ask? Just do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2009 13:09:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416326#M1408578</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2009-12-01T13:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to create custom conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416327#M1408579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks very much. I have done this. But when I see any standard conversion routine, I find one statement like-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL 'CONVERSION_EXIT_ALPHA_INPUT'  ID 'INPUT'  FIELD INPUT&lt;/P&gt;&lt;P&gt;                                      ID 'OUTPUT' FIELD OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me what this command does. Or can you provide the documentation for this command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mainak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2009 13:35:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416327#M1408579</guid>
      <dc:creator>former_member224404</dc:creator>
      <dc:date>2009-12-01T13:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to create custom conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416328#M1408580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not every conversion exit look like ALPHA, this one use a "C" program to convert data from internal to external format and reverse. (Look at [CALL - Call a System Function|http://help.sap.com/abapdocu_70/en/ABAPCALL-.htm])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2009 13:59:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-custom-conversion-exit/m-p/6416328#M1408580</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-12-01T13:59:38Z</dc:date>
    </item>
  </channel>
</rss>

