<?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: plz help me structure incompatible issue. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-me-structure-incompatible-issue/m-p/2198743#M469554</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Anit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table COSP has 161 fields and table COSS 145 fields, most of which are common to both tables.&lt;/P&gt;&lt;P&gt;The TABLES parameter is of (line) type COSP. In order to get around the Unicode error you have to move the data from I_COSS to an itab having line type COSP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:
  lt_cosp_tmp   TYPE cosp OCCURS 0 WITH HEADER LINE.

  LOOP AT i_coss INTO ls_coss.
    clear: ls_cosp.
    MOVE-CORRESPONDING ls_coss TO ls_cosp.
   APPEND ls_cosp TO lt_cosp_tmp.
  ENDLOOP.

" PERFORM accepted TABLES i_coss USING zcoss quantity hour.  " Replace by:
PERFORM accepted TABLES lt_cosp_tmp USING zcosp quantity hour.
PERFORM accepted TABLES i_cosp USING zcosp quantity hour.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, it is up to you to find out whether this coding is semantically correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 May 2007 10:12:16 GMT</pubDate>
    <dc:creator>uwe_schieferstein</dc:creator>
    <dc:date>2007-05-09T10:12:16Z</dc:date>
    <item>
      <title>plz help me structure incompatible issue.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-me-structure-incompatible-issue/m-p/2198740#M469551</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;while doing upgrade from 4.6c to ecc 6.0 i am gettig this error &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"I_COSS" cannot be converted to the line incompatible. The line type &lt;/P&gt;&lt;P&gt;must have the same structure layout as "I_COSS" regardless of the &lt;/P&gt;&lt;P&gt;length of a Unicode . Unicode character. Unicode character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and this error is coming in this line of code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM accepted TABLES i_coss USING zcoss quantity hour.&lt;/P&gt;&lt;P&gt;  PERFORM accepted TABLES i_cosp USING zcosp quantity hour.&lt;/P&gt;&lt;P&gt;FYI:&lt;/P&gt;&lt;P&gt;these two perform calling a single form&lt;/P&gt;&lt;P&gt;FORM accepted TABLES w_table STRUCTURE i_cosp USING char6 char3 typ.&lt;/P&gt;&lt;P&gt;also&lt;/P&gt;&lt;P&gt;DATA: i_coss TYPE coss OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: i_cosp TYPE cosp OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;please help me in resolving this issue &lt;/P&gt;&lt;P&gt;thanks in advance .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 09:57:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-me-structure-incompatible-issue/m-p/2198740#M469551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T09:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: plz help me structure incompatible issue.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-me-structure-incompatible-issue/m-p/2198741#M469552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;apparantly your form accepted uses a tabel type COSP and you pass type COSS, in the new version this is not accepted anymore. What is the difference between type COSS COSP?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 10:02:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-me-structure-incompatible-issue/m-p/2198741#M469552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T10:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: plz help me structure incompatible issue.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-me-structure-incompatible-issue/m-p/2198742#M469553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i know in 4.6 this structure incompatibility issue was not dere but in 6.0 it is not acceptable.&lt;/P&gt;&lt;P&gt;these coss and cosp are table &lt;/P&gt;&lt;P&gt;in 4.6c coss have 161 feilds &lt;/P&gt;&lt;P&gt;cosp have around 145 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in 6.0 coss have 167 feilds&lt;/P&gt;&lt;P&gt;cosp have 151 fields&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 10:08:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-me-structure-incompatible-issue/m-p/2198742#M469553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T10:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: plz help me structure incompatible issue.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-me-structure-incompatible-issue/m-p/2198743#M469554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Anit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table COSP has 161 fields and table COSS 145 fields, most of which are common to both tables.&lt;/P&gt;&lt;P&gt;The TABLES parameter is of (line) type COSP. In order to get around the Unicode error you have to move the data from I_COSS to an itab having line type COSP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:
  lt_cosp_tmp   TYPE cosp OCCURS 0 WITH HEADER LINE.

  LOOP AT i_coss INTO ls_coss.
    clear: ls_cosp.
    MOVE-CORRESPONDING ls_coss TO ls_cosp.
   APPEND ls_cosp TO lt_cosp_tmp.
  ENDLOOP.

" PERFORM accepted TABLES i_coss USING zcoss quantity hour.  " Replace by:
PERFORM accepted TABLES lt_cosp_tmp USING zcosp quantity hour.
PERFORM accepted TABLES i_cosp USING zcosp quantity hour.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, it is up to you to find out whether this coding is semantically correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 10:12:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-me-structure-incompatible-issue/m-p/2198743#M469554</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2007-05-09T10:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: plz help me structure incompatible issue.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-me-structure-incompatible-issue/m-p/2198744#M469555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi uwe,&lt;/P&gt;&lt;P&gt;thanks 4 d reply&lt;/P&gt;&lt;P&gt;this code seems to b correct means it is nt giving error &lt;/P&gt;&lt;P&gt;i havnt checked its output bcoz i dnt hav test data rite nw&lt;/P&gt;&lt;P&gt;but i thnk this move corresponding will create some problem while activating&lt;/P&gt;&lt;P&gt;bcoz in coss and cosp there are two feilds which are totally different apart from that difference in no of feilds.&lt;/P&gt;&lt;P&gt;means&lt;/P&gt;&lt;P&gt;coss vbund                   cosp   parob&lt;/P&gt;&lt;P&gt;        pargb                             vspob&lt;/P&gt;&lt;P&gt;these field differs &lt;/P&gt;&lt;P&gt;so wen i ill use move corresponding i think it will create som data loss.&lt;/P&gt;&lt;P&gt;wat say??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 06:27:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-me-structure-incompatible-issue/m-p/2198744#M469555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T06:27:21Z</dc:date>
    </item>
  </channel>
</rss>

