<?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: Error in extended syntax check in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294444#M500858</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do the declarations like this it will work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants: c_str1(20) value 'abcdefg,,,,,',&lt;/P&gt;&lt;P&gt;c_str2(4) value 'xyz',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: c_str(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate c_str1 c_str2 into c_str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: constant values cannot be modified during runtime. So, you declare target as type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points to all useful answers.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SaiRam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 May 2007 02:58:54 GMT</pubDate>
    <dc:creator>former_member196280</dc:creator>
    <dc:date>2007-05-31T02:58:54Z</dc:date>
    <item>
      <title>Error in extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294438#M500852</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;&lt;/P&gt;&lt;P&gt;I have declared some constants like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants: c_str1(20) value 'abcdefg,,,,,',&lt;/P&gt;&lt;P&gt;                c_str2(4) value 'xyz',&lt;/P&gt;&lt;P&gt;                c_str(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate c_str1 c_str2 into c_str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting an error for c_str1 in extended syntax check that 'charetecter strings without text elements will not be translated'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not writing c_str1 anywhere and I just need it for concatenation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I tried like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants: c_str1(20) value 'abcdefg,,,,,,,'(000).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is showing a sysntax error that offset is not allowed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide me the answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mungala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 01:37:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294438#M500852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T01:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Error in extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294439#M500853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try declaring like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants: c_str1(20) type c value 'abcdefg,,,,,',&lt;/P&gt;&lt;P&gt;c_str2(4) type c value 'xyz',&lt;/P&gt;&lt;P&gt;c_str(30) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;SKJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 01:51:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294439#M500853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T01:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Error in extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294440#M500854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about if you simply add the switch to turn the message off.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;constants: c_str1(20) value 'abcdefg,,,,,'.    "#EC&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 01:53:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294440#M500854</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-05-31T01:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error in extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294441#M500855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you declare text elements? ie&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: w_str(30).
concatenate  'abcdefg,,,,,'(t01) 'xyz'(t02) into w_str.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;double click on t01 &amp;amp; t02 save &amp;amp; activate the text elements.&lt;/P&gt;&lt;P&gt;Activate the program &amp;amp; do the SLIN.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 01:58:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294441#M500855</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-05-31T01:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Error in extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294442#M500856</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;Instead of constants you can declare a variable..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: v_data type char30.

v_data = text-001. 

* Double click on text-001 to create a text element..And give the text there..

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 02:02:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294442#M500856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T02:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Error in extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294443#M500857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Praveena,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;concatenate text-001 text-002 into c_str.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;double click on text-001 and text-002 and create text elements with abcdefg,,,,,' and 'xyz' values. In 4.6 and above versions .. you got to save and activate ...else just save to remove that error .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 02:55:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294443#M500857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T02:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: Error in extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294444#M500858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do the declarations like this it will work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants: c_str1(20) value 'abcdefg,,,,,',&lt;/P&gt;&lt;P&gt;c_str2(4) value 'xyz',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: c_str(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate c_str1 c_str2 into c_str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: constant values cannot be modified during runtime. So, you declare target as type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points to all useful answers.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SaiRam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 02:58:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294444#M500858</guid>
      <dc:creator>former_member196280</dc:creator>
      <dc:date>2007-05-31T02:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: Error in extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294445#M500859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Define one text element with id 001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants: c_str1(20) value text-001,&lt;/P&gt;&lt;P&gt;c_str2(4) value 'xyz',&lt;/P&gt;&lt;P&gt;c_str(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;By the way observed 2 more errors:&lt;/P&gt;&lt;P&gt;1) Constant must have a value.&lt;/P&gt;&lt;P&gt;2) you can not change value of constant by statement:&lt;/P&gt;&lt;P&gt;concatenate c_str1 c_str2 into c_str.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to define a variable and concatenate contents in that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 03:03:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/2294445#M500859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T03:03:46Z</dc:date>
    </item>
  </channel>
</rss>

