<?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: Converstion routine in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/converstion-routine/m-p/5283911#M1219366</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is ur requirement exactly?&lt;/P&gt;&lt;P&gt;what are those numbers?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="16" __jive_macro_name="size"&gt;кu03B1ятu03B9к&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Mar 2009 17:48:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-11T17:48:21Z</dc:date>
    <item>
      <title>Converstion routine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converstion-routine/m-p/5283910#M1219365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any one have Idea about the &lt;STRONG&gt;Conversation routine&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should be conver the data into 2-2-3-3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose I have data like 1010200212 it should be conver in to 10-10-200-212&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any &lt;STRONG&gt;standard Conversation routine&lt;/STRONG&gt; is avilable please let me know I will use the same in ny Z domain&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnx in Advance,&lt;/P&gt;&lt;P&gt;Sam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2009 17:42:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converstion-routine/m-p/5283910#M1219365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-11T17:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Converstion routine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converstion-routine/m-p/5283911#M1219366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is ur requirement exactly?&lt;/P&gt;&lt;P&gt;what are those numbers?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="16" __jive_macro_name="size"&gt;кu03B1ятu03B9к&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2009 17:48:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converstion-routine/m-p/5283911#M1219366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-11T17:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: Converstion routine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converstion-routine/m-p/5283912#M1219367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it will be much more faster to create your own CONVERSION routine (not conversation)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2009 23:03:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converstion-routine/m-p/5283912#M1219367</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2009-03-11T23:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Converstion routine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converstion-routine/m-p/5283913#M1219368</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;Sorry but I can't get your requireemnt ....as these number not seems to be date or something.....bettre to write the code yourself it will be simple.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the code snippet that might help you out:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Data:var1(10) type c,
        var2(2) type c,
        var3(3) type c,
        var4(3) type c,
        var5(3) type c,
        FinalResult(14) type c.

var1 = '1010200212'.
var2 = var1+0(2)
var3 = var1+2(2).
var4 = var1+4(3).
var5 = var1+7(3).
concatenate var2 '-' var3 '-' var4 '-' var5 into FinalResult.
write:/ FinalResult.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 05:53:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converstion-routine/m-p/5283913#M1219368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T05:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: Converstion routine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converstion-routine/m-p/5283914#M1219369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Their are various conversion routines attached with your field at table level,&lt;/P&gt;&lt;P&gt;you can check them by:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
-&amp;gt; Going to the table whose field is used,
-&amp;gt; Then double click on the data element of the field whose conversion routine is required,
-&amp;gt;Then double click on the domain attached to that field,
-&amp;gt;There in the output characteristics,there will be one parameter-Conversion routine,
-&amp;gt;double click on it ,it will fetch you all the routines attached with your field,
-&amp;gt;You can try using the various routines from there as per your requirement.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Mar 2009 06:02:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converstion-routine/m-p/5283914#M1219369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-12T06:02:32Z</dc:date>
    </item>
  </channel>
</rss>

