<?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: correction in code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/correction-in-code/m-p/7062872#M1503568</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you very much mr.keshav   you are helping me a lot .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually i am new to this upgrading and iam the only developer in the team i need support from you very much&lt;/P&gt;&lt;P&gt; I will be posting questions regularly i hope u r the one with good knowledge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you once again  see u next thread.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Jul 2010 11:35:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-06T11:35:08Z</dc:date>
    <item>
      <title>correction in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/correction-in-code/m-p/7062870#M1503566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have old syntax in my program like 'TRANSLATE header-id FROM CODE PAGE file_tab-codepage'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am replacing the above syntax with the follwing code and can u correct me if i am wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;buffer1 type xstring,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;conv type ref to cl_abap_conv_in_ce,&lt;/P&gt;&lt;P&gt;int type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;conv = cl_abap_conv_in_ce=&amp;gt;create(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;encoding = 'file_tab-codepage'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endian = 'L' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;buffer1 = '41424320'.&lt;/P&gt;&lt;P&gt;conv-&amp;gt;convert(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exporting input = buffer1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;importing data = header-id ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jul 2010 11:56:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/correction-in-code/m-p/7062870#M1503566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-05T11:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: correction in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/correction-in-code/m-p/7062871#M1503567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;encoding = 'file_tab-codepage'  "--single quotes not required here&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jul 2010 19:18:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/correction-in-code/m-p/7062871#M1503567</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-07-05T19:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: correction in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/correction-in-code/m-p/7062872#M1503568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you very much mr.keshav   you are helping me a lot .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually i am new to this upgrading and iam the only developer in the team i need support from you very much&lt;/P&gt;&lt;P&gt; I will be posting questions regularly i hope u r the one with good knowledge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you once again  see u next thread.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jul 2010 11:35:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/correction-in-code/m-p/7062872#M1503568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-06T11:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: correction in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/correction-in-code/m-p/7062873#M1503569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am upgrading a old report i got a unicode error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually the report has the followig structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: arc_buffer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF class_package OCCURS 0.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE arch_packa.&lt;/P&gt;&lt;P&gt;DATA: END OF class_package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the report has following syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND arc_buffer-segment TO class_package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i try to execute it it gives error that&lt;/P&gt;&lt;P&gt;'a line of class_package and arc_buffer-segment are not mutually convertible in a unicode program.'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one help me to resolve this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 00:07:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/correction-in-code/m-p/7062873#M1503569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-07T00:07:28Z</dc:date>
    </item>
  </channel>
</rss>

