<?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: single line code is hard coded, can be fixed using CONCATENATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4138003#M989499</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very Good afternoon! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sorry for the late response!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for all your suggestions and help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your suggestions were really helpful. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points rewarded!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Developer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Jul 2008 10:21:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-21T10:21:10Z</dc:date>
    <item>
      <title>single line code is hard coded, can be fixed using CONCATENATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137993#M989489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very Good Morning!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This part of the line is hard coded...we need to use CONCATENATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;st_txt-cnm9 = 'CNPJ ' + CGC_NUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This line is hardcoded in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We need to convert it to character/string and concatenate with the CNPJ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one show me the way that i need to do this.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions would be appreciated......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Developer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 06:12:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137993#M989489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T06:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: single line code is hard coded, can be fixed using CONCATENATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137994#M989490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do you want to Concatenate CNPJ to the CGC_NUMBER and put it into st_txt-cnm9??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constants: c_cnpJ type char4 value 'CNPJ'.&lt;/P&gt;&lt;P&gt; Data: v_cgcnumber type char (any length).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_cgcnumber = CGC_NUMBER.&lt;/P&gt;&lt;P&gt;concatenate c_cnpj v_CGCNUMBER into st_txt-cnm9.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 06:17:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137994#M989490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T06:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: single line code is hard coded, can be fixed using CONCATENATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137995#M989491</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;Do like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate 'CNPJ' CGC_NUMBER into st_txt-cmm9 separated by space.&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;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 06:19:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137995#M989491</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2008-07-11T06:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: single line code is hard coded, can be fixed using CONCATENATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137996#M989492</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 simplr write a CONCATENATE statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'CNPJ' CGC_NUMBER into st_txt-cnm9.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will solve the problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sumit Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 06:20:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137996#M989492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T06:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: single line code is hard coded, can be fixed using CONCATENATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137997#M989493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF the CGC_NUMBER is character type then...&lt;/P&gt;&lt;P&gt;concatenate 'CNPJ '&lt;/P&gt;&lt;P&gt;                   CGC_NUMBER&lt;/P&gt;&lt;P&gt;            into st_txt-cnm9.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF it is not character type &lt;/P&gt;&lt;P&gt; data w_char(requiredlength) type c.&lt;/P&gt;&lt;P&gt; move  CGC_NUMBER  to w_char.&lt;/P&gt;&lt;P&gt; concatenate 'CNPJ '&lt;/P&gt;&lt;P&gt;                   w_char&lt;/P&gt;&lt;P&gt;            into st_txt-cnm9.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 06:21:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137997#M989493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T06:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: single line code is hard coded, can be fixed using CONCATENATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137998#M989494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate 'CNPJ' CGC_NUMBER into st_txt-cmm9 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u want sapce inbetween then give sperated by sapce at the end of this statement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 06:22:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137998#M989494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T06:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: single line code is hard coded, can be fixed using CONCATENATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137999#M989495</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;Your question should be more clear... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Any way Understand this code...,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; data: f1(10),&lt;/P&gt;&lt;P&gt;&amp;gt;         f2(4) value 'CNBJ',&lt;/P&gt;&lt;P&gt;&amp;gt;         f3(14).&lt;/P&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;gt; move sy-datum to f1.&lt;/P&gt;&lt;P&gt;&amp;gt; concatenate f2 f1 into f3.&lt;/P&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;gt; write:/ f3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 06:24:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4137999#M989495</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-07-11T06:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: single line code is hard coded, can be fixed using CONCATENATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4138000#M989496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very Good Morning! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your response. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to adjust the line of code st_txt-cnm9 = 'CNPJ ' + CGC_NUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As CGC_NUMBER cannot be added to a character or a string. Please convert the number to a character/string and concatenate with CNPJ, else the program will fail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will the suggestions that you had provided satisfy the condition  'CNPJ ' + CGC_NUMBER. ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, it will be inserted into  st_txt-cnm9. Can any body explain. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;P&gt;Developer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 06:28:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4138000#M989496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T06:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: single line code is hard coded, can be fixed using CONCATENATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4138001#M989497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi try this code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA var(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'CNPJ'  'CGC_NUMBER' INTO var.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;st_txt-cnm9 = var.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 06:40:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4138001#M989497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T06:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: single line code is hard coded, can be fixed using CONCATENATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4138002#M989498</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;Try the following and  check....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:  myString(50) TYPE  C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;myString = CGC_NUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'CNPJ '  myString  INTO st_txt-cnm9.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murthy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 07:09:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4138002#M989498</guid>
      <dc:creator>former_member787646</dc:creator>
      <dc:date>2008-07-11T07:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: single line code is hard coded, can be fixed using CONCATENATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4138003#M989499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very Good afternoon! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sorry for the late response!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for all your suggestions and help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your suggestions were really helpful. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points rewarded!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Developer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jul 2008 10:21:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-line-code-is-hard-coded-can-be-fixed-using-concatenate/m-p/4138003#M989499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-21T10:21:10Z</dc:date>
    </item>
  </channel>
</rss>

