<?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: Conversion exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183441#M126362</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just befor mapping, u call the conversion exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare a char variable with the number of characters u want and in the converion_exit fn module, pass the unit which u want to convert as importing and the variable u declared with required length as exporting&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Feb 2006 08:43:27 GMT</pubDate>
    <dc:creator>hymavathi_oruganti</dc:creator>
    <dc:date>2006-02-16T08:43:27Z</dc:date>
    <item>
      <title>Conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183436#M126357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have written a BDC program.it is working fine.but for some units it is not working.when i checked the original table of units t006.the values stored are different internally.now how can i pass unit values in bdc.i know to write conversion exit module.but wwhere to call plz help me with some code and solution,imm points are awarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2006 08:28:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183436#M126357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-16T08:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183437#M126358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can convert these data to internally stored data like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: m(7) TYPE c.
DESCRIBE FIELD field EDIT MASK m.
WRITE: field USING EDIT MASK m.
(or)
WRITE field TO field USING EDIT MASK m.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2006 08:32:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183437#M126358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-16T08:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183438#M126359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai,&lt;/P&gt;&lt;P&gt;    for the units to convert you should use the conversion exit in the Following way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: unit(3) type c 'kg'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; write unit to unit using edit mask '==&amp;lt;name of conversion exit&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2006 08:33:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183438#M126359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-16T08:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183439#M126360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Call CONVERSION_EXIT_CUNIT_OUTPUT&lt;/P&gt;&lt;P&gt;and pass the unit and import a plain 4 character field. This will make sure that the 4 character field contains data in output format. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then pass it to BDC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2006 08:34:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183439#M126360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-16T08:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183440#M126361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi babita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. We don't have to worry about the&lt;/P&gt;&lt;P&gt;   internal format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. JUST AS IT IS ENTERED ON THE SCREEN,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IN THE SAME WAY (in the same format)&lt;/P&gt;&lt;P&gt;  we need to pass the value&lt;/P&gt;&lt;P&gt;   to the bdc field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Rest the system will take care.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. FOR EG.&lt;/P&gt;&lt;P&gt;   DATES ARE STORED IN TABLE IN - YYYYMMDD FORMAT&lt;/P&gt;&lt;P&gt;   BUT IN BDC WE GIVE. DD.MM.YYYY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2006 08:34:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183440#M126361</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-16T08:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183441#M126362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just befor mapping, u call the conversion exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare a char variable with the number of characters u want and in the converion_exit fn module, pass the unit which u want to convert as importing and the variable u declared with required length as exporting&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2006 08:43:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/1183441#M126362</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-02-16T08:43:27Z</dc:date>
    </item>
  </channel>
</rss>

