<?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 prefix zero to alphanumeric characters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/prefix-zero-to-alphanumeric-characters/m-p/1681068#M300132</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;    Can anyone suggest me any Function module is there to prefix zero to an alphanumeric charcter. I have been trying conversion_exit_alpha_input FM for this purpose but it works fine only for numerics. plaese let me know any FM exists for alphanumeric characters which serves the purpose.&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;P&gt;Rijish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Oct 2006 12:40:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-23T12:40:36Z</dc:date>
    <item>
      <title>prefix zero to alphanumeric characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prefix-zero-to-alphanumeric-characters/m-p/1681068#M300132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;    Can anyone suggest me any Function module is there to prefix zero to an alphanumeric charcter. I have been trying conversion_exit_alpha_input FM for this purpose but it works fine only for numerics. plaese let me know any FM exists for alphanumeric characters which serves the purpose.&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;P&gt;Rijish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2006 12:40:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prefix-zero-to-alphanumeric-characters/m-p/1681068#M300132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-23T12:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: prefix zero to alphanumeric characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prefix-zero-to-alphanumeric-characters/m-p/1681069#M300133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_size2 = strlen( w_data )&lt;/P&gt;&lt;P&gt;w_size = size - w_size2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate w_zero+0(w_size) w_data into w_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;something like that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2006 12:42:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prefix-zero-to-alphanumeric-characters/m-p/1681069#M300133</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-10-23T12:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: prefix zero to alphanumeric characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prefix-zero-to-alphanumeric-characters/m-p/1681070#M300134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can use the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : lcons(18) type c value '000000000000000000',&lt;/P&gt;&lt;P&gt;lstring(36) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;==&amp;gt;lval is your value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate lcons lval to lstring.&lt;/P&gt;&lt;P&gt;write lstring(18) to lval.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2006 12:45:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prefix-zero-to-alphanumeric-characters/m-p/1681070#M300134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-23T12:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: prefix zero to alphanumeric characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prefix-zero-to-alphanumeric-characters/m-p/1681071#M300135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i make it in this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZGRO_TEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: test(18).&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;data: test1(18).&lt;/P&gt;&lt;P&gt;data: strlen type i.&lt;/P&gt;&lt;P&gt;data: i type i.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;test1 = '12wer'.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;strlen = strlen( test1 ).&lt;/P&gt;&lt;P&gt;I      = 18 - strlen.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;test   = '000000000000000000'.&lt;/P&gt;&lt;P&gt;test+i = test1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;leading zero.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;write: / test.&lt;/P&gt;&lt;P&gt;write: / test1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2006 12:50:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prefix-zero-to-alphanumeric-characters/m-p/1681071#M300135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-23T12:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: prefix zero to alphanumeric characters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prefix-zero-to-alphanumeric-characters/m-p/1681072#M300136</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;You can use the below code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_size1(2) type n,&lt;/P&gt;&lt;P&gt;      v_size2(2) type n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants: c_zeroes(18) type c value '000000000000000000'.&lt;/P&gt;&lt;P&gt;parameters: p1(18) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shift p1 left deleting leading space.&lt;/P&gt;&lt;P&gt;v_size1 = strlen( p1 ).&lt;/P&gt;&lt;P&gt;if v_size1 lt 18.&lt;/P&gt;&lt;P&gt;v_size2 = 18 - v_size1.&lt;/P&gt;&lt;P&gt;shift p1 right deleting trailing space.&lt;/P&gt;&lt;P&gt;p1+0(v_size2) = c_zeroes.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;write p1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, note that the v_size2 is to be calculated as per your requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2006 12:56:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prefix-zero-to-alphanumeric-characters/m-p/1681072#M300136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-23T12:56:00Z</dc:date>
    </item>
  </channel>
</rss>

