<?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: general in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103697#M438771</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi naga,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can understand Conversion exit by see this example .....IN SPFL table the field FLTIME is using a Conversion exit.This is navigation ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. GOTO se11&lt;/P&gt;&lt;P&gt;2. Open SPFLI table&lt;/P&gt;&lt;P&gt;3.GOTO the Domain of field FLTIME.&lt;/P&gt;&lt;P&gt;4.You can see the Conversion exit SDURA&lt;/P&gt;&lt;P&gt;5.Double click on it, yop can see two function modules &lt;/P&gt;&lt;P&gt;    a. CONVERSION_EXIT_SDURA_INPUT&lt;/P&gt;&lt;P&gt;    b. CONVERSION_EXIT_SDURA_INPUT&lt;/P&gt;&lt;P&gt;6.Now GOTO se37 and see the code of these two FMs&lt;/P&gt;&lt;P&gt;7.See the selection screen of the table SPFLI, you can see format of time &lt;/P&gt;&lt;P&gt;   in 03:30.&lt;/P&gt;&lt;P&gt;   But it actually stores the Mins in memory as 90 mins.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Now start writing your own Conversion exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is all for &amp;lt;b&amp;gt;user Friendlyness.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Hope this is very helpful for you.&lt;/P&gt;&lt;P&gt;Reward all helpful answers.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;V.Raghavender.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Apr 2007 10:35:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-16T10:35:00Z</dc:date>
    <item>
      <title>general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103694#M438768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is conversion exit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 10:26:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103694#M438768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T10:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103695#M438769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mrudula,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A conversion exit is a called routine that formats the output. An edit mask that begins with == followed by a four-character ID calls a function module that formats the output. That four-character ID is known as a conversion exit, or conversion routine. (Function modules are covered in a subsequent chapter, but, for now, think of a function module as a subroutine within another program.) The name of the function module will be CONVERSION_EXIT_XXXX_OUTPUT, where XXXX is the four-character id that follows ==. For example, write '00001000' using edit mask '==ALPHA' calls the function module CONVERSION_EXIT_ALPHA_OUTPUT. The write statement passes the value first to the function module, which changes it in any desired way and then returns the changed value, and that value is written out. This particular exit (ALPHA) examines the value to determine whether it consists entirely of numbers. If it does, leading zeros are stripped and the number is left-justified. Values containing non-numerics are not changed by ALPHA. SAP supplies about 60 conversion exits for various formatting tasks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversion exits are particularly useful for complex formatting tasks that are needed in more than one program. To illustrate, the conversion exit CUNIT automatically converts the code representing a unit of measure into a description meaningful in the current logon language. For example, within R/3, the code for a crate of materials is KI. (KI is an abbreviation of kiste, the German word for "box.") However, CUNIT converts KI to the English mnemonic CR. Therefore, when logged on in English, write: '1', 'KI' using edit mask '==CUNIT'. writes 1 CR. For a user signed on in German, the output would be 1 KI. Using such a conversion exit enables a standard set of codes stored in the database to be automatically converted to be meaningful to the current logon language whenever output to a report. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversion Routines within a Domain&lt;/P&gt;&lt;P&gt;A conversion exit can also be placed into the Convers. Routine field in a domain. The exit is inherited by all fields that use that domain, and will be automatically applied when the value is written out. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these abour conversion exits from SAP help.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee19446011d189700000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee19446011d189700000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/33/206bc8012e11d3b495006094192fe3/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/33/206bc8012e11d3b495006094192fe3/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapfans.com/sapfans/forum/devel/messages/31053.html" target="test_blank"&gt;http://www.sapfans.com/sapfans/forum/devel/messages/31053.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 10:27:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103695#M438769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T10:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103696#M438770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi naga,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. It is nothing but a simple Function Module&lt;/P&gt;&lt;P&gt;   attached to a domain/data element/field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Simple example if of MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. SCREEEN&amp;lt;----&lt;/P&gt;&lt;HR originaltext="--------------" /&gt;&lt;P&gt;&amp;gt;Database&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; On screen we just enter 1&lt;/P&gt;&lt;P&gt;  But in database it is stored as 0000000000000000000001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. So this CONVERSION&lt;/P&gt;&lt;P&gt;   from Screen&amp;lt;----&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&amp;gt;database&lt;/P&gt;&lt;P&gt;   and Vice-Versa,&lt;/P&gt;&lt;P&gt;   is done by this FM (conversion exit),&lt;/P&gt;&lt;P&gt;   automatically, &lt;/P&gt;&lt;P&gt;  behind the scenes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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>Mon, 16 Apr 2007 10:28:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103696#M438770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T10:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103697#M438771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi naga,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can understand Conversion exit by see this example .....IN SPFL table the field FLTIME is using a Conversion exit.This is navigation ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. GOTO se11&lt;/P&gt;&lt;P&gt;2. Open SPFLI table&lt;/P&gt;&lt;P&gt;3.GOTO the Domain of field FLTIME.&lt;/P&gt;&lt;P&gt;4.You can see the Conversion exit SDURA&lt;/P&gt;&lt;P&gt;5.Double click on it, yop can see two function modules &lt;/P&gt;&lt;P&gt;    a. CONVERSION_EXIT_SDURA_INPUT&lt;/P&gt;&lt;P&gt;    b. CONVERSION_EXIT_SDURA_INPUT&lt;/P&gt;&lt;P&gt;6.Now GOTO se37 and see the code of these two FMs&lt;/P&gt;&lt;P&gt;7.See the selection screen of the table SPFLI, you can see format of time &lt;/P&gt;&lt;P&gt;   in 03:30.&lt;/P&gt;&lt;P&gt;   But it actually stores the Mins in memory as 90 mins.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Now start writing your own Conversion exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is all for &amp;lt;b&amp;gt;user Friendlyness.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Hope this is very helpful for you.&lt;/P&gt;&lt;P&gt;Reward all helpful answers.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;V.Raghavender.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 10:35:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103697#M438771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T10:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103698#M438772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In some cases like when Passing the data to function modules or to some programs or from Screen to Program or Program to screen or from Program to script we have to pass the exact values without conversion.&lt;/P&gt;&lt;P&gt;for example Material No is 18 Char field. it its value is 456578, then to some fun modules it has to be passed like 000000000000456578 instead of 456578.&lt;/P&gt;&lt;P&gt;similary fields like KUNNR, LIFNR etc has to be passed with complete 10 digit values.&lt;/P&gt;&lt;P&gt;this will be achieved using the fun modules&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_OUTPUT&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 10:36:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103698#M438772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T10:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103699#M438773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CONVERSION  from Screen value to value stored in database&lt;/P&gt;&lt;P&gt;and Vice-Versa, is done by this FM (conversion exit),&lt;/P&gt;&lt;P&gt;automatically, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On screen we just enter 1234&lt;/P&gt;&lt;P&gt;But in database it is stored as 0000000000000001234&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not only numeric. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On screen we just enter OR for standard orders&lt;/P&gt;&lt;P&gt;But in database it is stored as TA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is maintained in the domain level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rusidar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 11:02:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2103699#M438773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T11:02:35Z</dc:date>
    </item>
  </channel>
</rss>

