<?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: doubt in 2 structure assignment. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550833#M580807</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;move corresponding wa_str2 to wa_str1.&lt;/P&gt;&lt;P&gt;append wa_str2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jul 2007 09:39:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-10T09:39:48Z</dc:date>
    <item>
      <title>doubt in 2 structure assignment.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550831#M580805</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;im getting error in assgnment of two structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex: &lt;/P&gt;&lt;P&gt;data: begin of str1,&lt;/P&gt;&lt;P&gt;        a type c,&lt;/P&gt;&lt;P&gt;       b(1500 type c,&lt;/P&gt;&lt;P&gt;end of str1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of str1,&lt;/P&gt;&lt;P&gt;       ss type c,&lt;/P&gt;&lt;P&gt;      aa type c,&lt;/P&gt;&lt;P&gt;end of str2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_str1 type str1.&lt;/P&gt;&lt;P&gt;data: wa_str2 type str2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_str1  = wa_str2-b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here  wa_str1 = wa+str2-b are not mutually compatible in unicode conversion.&lt;/P&gt;&lt;P&gt;please gv me how to assign this type  structure..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 09:33:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550831#M580805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T09:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in 2 structure assignment.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550832#M580806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here you have to specify the field name &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_str1-ss = wa_str2-b.or&lt;/P&gt;&lt;P&gt;wa_str1-bb = wa_str2-b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 09:36:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550832#M580806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T09:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in 2 structure assignment.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550833#M580807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;move corresponding wa_str2 to wa_str1.&lt;/P&gt;&lt;P&gt;append wa_str2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 09:39:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550833#M580807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T09:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in 2 structure assignment.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550834#M580808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't assign a field to the structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_str1 = wa_str2-b is wrong.&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;wa_str1-ss = wa_str2-a.or&lt;/P&gt;&lt;P&gt;wa_str1-aa = wa_str2-a.&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;Pavan P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 09:40:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550834#M580808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T09:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in 2 structure assignment.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550835#M580809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but in sec structure tehre is no  component which is present in structure2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these two structures are  having different flds with different lenght&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then how to assign  between them?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 09:40:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550835#M580809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T09:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in 2 structure assignment.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550836#M580810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually what is your requirement? as per your code the first cahr of wstr1-b will transfer to the wstr2 bb or ss field.... Pls let us clear about your rquirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 09:45:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550836#M580810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T09:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in 2 structure assignment.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550837#M580811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my req is to make unicode enabled ..in ecc6.10.&lt;/P&gt;&lt;P&gt;code is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF            xs_pa0007,&lt;/P&gt;&lt;P&gt;        country(2),&lt;/P&gt;&lt;P&gt;        national_id(20),&lt;/P&gt;&lt;P&gt;        schkz         type pa0007-schkz,     "work schd rule&lt;/P&gt;&lt;P&gt;        teilk(3),    "type pa0007-teilk       Part time EE yes/no&lt;/P&gt;&lt;P&gt;        empct         type pa0007-empct,     "Emp percent&lt;/P&gt;&lt;P&gt;        wostd(6).                            "Weekly work hours&lt;/P&gt;&lt;P&gt;TYPES: END OF              xs_pa0007.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES:  BEGIN OF gs_paxxxx,&lt;/P&gt;&lt;P&gt;          fill1,&lt;/P&gt;&lt;P&gt;          begda              TYPE pa0000-begda,&lt;/P&gt;&lt;P&gt;          fill2,&lt;/P&gt;&lt;P&gt;          seqnr              TYPE pa0000-seqnr,&lt;/P&gt;&lt;P&gt;          infty(4),&lt;/P&gt;&lt;P&gt;          fill3,&lt;/P&gt;&lt;P&gt;          subty              TYPE pa0000-subty,&lt;/P&gt;&lt;P&gt;          fill4,&lt;/P&gt;&lt;P&gt;          pernr              TYPE pa0000-pernr,&lt;/P&gt;&lt;P&gt;          fill5,&lt;/P&gt;&lt;P&gt;          copied,&lt;/P&gt;&lt;P&gt;          fill6,&lt;/P&gt;&lt;P&gt;          rec(1500),&lt;/P&gt;&lt;P&gt;        END OF gs_paxxxx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: gw_pa0007 type xs_pa0007,&lt;/P&gt;&lt;P&gt;ga_paxxxx type gs_paxxxx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gw_pa0007 = ga_paxxxx-rec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this libne im getting error that&lt;/P&gt;&lt;P&gt;gw_pa0007 and ga_paxxxx-rec are not  mutualy compatible in unicode program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please tell me how to solve this ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2007 03:40:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550837#M580811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-11T03:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in 2 structure assignment.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550838#M580812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;anybody please help me in this ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2007 05:01:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550838#M580812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-11T05:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: doubt in 2 structure assignment.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550839#M580813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Try like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: BEGIN OF xs_pa0007,
country(2),
national_id(20),
schkz type pa0007-schkz, "work schd rule
teilk(3), "type pa0007-teilk Part time EE yes/no
empct type pa0007-empct, "Emp percent
wostd(6). "Weekly work hours
TYPES: END OF xs_pa0007.



TYPES: BEGIN OF gs_paxxxx,
fill1,
begda TYPE pa0000-begda,
fill2,
seqnr TYPE pa0000-seqnr,
infty(4),
fill3,
subty TYPE pa0000-subty,
fill4,
pernr TYPE pa0000-pernr,
fill5,
copied,
fill6,
rec(1500),
END OF gs_paxxxx.

data: gw_pa0007 type xs_pa0007,
ga_paxxxx type gs_paxxxx.

Read table gw_pa0007. 
append ga_paxxxx to gw_pa0007.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpfull answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2007 07:52:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-2-structure-assignment/m-p/2550839#M580813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-11T07:52:47Z</dc:date>
    </item>
  </channel>
</rss>

