<?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: Code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/code/m-p/2003293#M408023</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data : v_char(13).

Concatenate 'IMP'  Itab-vbeln  into v_char.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to remove the zeroes and concatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this&lt;/P&gt;&lt;P&gt;data : v_char(13).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    INPUT         = itab-vbeln&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUTPUT        = itab-vbeln.&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate 'IMP'  Itab-vbeln  into v_char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Chandrasekhar Jagarlamudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Mar 2007 15:37:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-19T15:37:06Z</dc:date>
    <item>
      <title>Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code/m-p/2003291#M408021</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 a field value in the Itab like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Itab-vbeln = 2000283&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to add 3 characters &amp;#145;IMP&amp;#146; in front of each value of this field ..How do I write the concatenate code for this requirement?&lt;/P&gt;&lt;P&gt;Output must be &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Itab-vbeln = IMP2000283&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is &amp;#133; I cannot simply guess at what place I need to add this string.&lt;/P&gt;&lt;P&gt;I mean Itab-vbeln value might be 2000283 sometimes and  0020083 sometimes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone please help with the code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 15:27:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code/m-p/2003291#M408021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T15:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code/m-p/2003292#M408022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramana,&lt;/P&gt;&lt;P&gt;   Do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shift itab-vbeln left deleting leading '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate 'IMP itab-vbeln into itab-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 15:36:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code/m-p/2003292#M408022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T15:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code/m-p/2003293#M408023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data : v_char(13).

Concatenate 'IMP'  Itab-vbeln  into v_char.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to remove the zeroes and concatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this&lt;/P&gt;&lt;P&gt;data : v_char(13).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    INPUT         = itab-vbeln&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUTPUT        = itab-vbeln.&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate 'IMP'  Itab-vbeln  into v_char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Chandrasekhar Jagarlamudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 15:37:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code/m-p/2003293#M408023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T15:37:06Z</dc:date>
    </item>
  </channel>
</rss>

