<?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: MOVE AND MOVE CORRESPONDING in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594715#M267217</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;module pool is more structured.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in report programming we are writing the whole code in a single page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but module pool , its like house.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kitchne for cookimg.&lt;/P&gt;&lt;P&gt;bathrrom for bathing&lt;/P&gt;&lt;P&gt;bed room for sleeping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like that evry code is assaigned to its room.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so here rooms are PBO,PAI,SUBROUTINE,TOP INCLUDE..like that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here debuging is easy.&lt;/P&gt;&lt;P&gt;error handing is more easy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope u got an idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rhgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Sep 2006 06:33:16 GMT</pubDate>
    <dc:creator>anversha_s</dc:creator>
    <dc:date>2006-09-19T06:33:16Z</dc:date>
    <item>
      <title>MOVE AND MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594707#M267209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI EVERYBODY,&lt;/P&gt;&lt;P&gt; WHAT IS THE DIFF BETWEEN MOVE AND MOVECORRESPONDING?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 06:16:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594707#M267209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T06:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE AND MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594708#M267210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MOVE is used to tranfer values of one field at a time.MOVE-CORRESPONDING is used to transfer values of an entire structure containing several fields to fields of another similar structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 06:19:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594708#M267210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T06:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE AND MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594709#M267211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kanny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Move assigns the value to the specified field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   It is just like a = b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Whereas&lt;/P&gt;&lt;P&gt;3. MOVE-CORRESPONDING STRUCT1 TO STRUCT2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  means,&lt;/P&gt;&lt;P&gt;  ALL FIELDS HAVING THE SAME NAME,&lt;/P&gt;&lt;P&gt;  WILL BECOME EQUAL.&lt;/P&gt;&lt;P&gt;  (Rest fields, which do not have same name,&lt;/P&gt;&lt;P&gt;   will be ignored)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Suppose have a struct1 has 5 fields,&lt;/P&gt;&lt;P&gt;   struct 2 has 9 fields,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   so instead of giving 5 different lines,&lt;/P&gt;&lt;P&gt;  STRUCT2-FIEDL1 =  STRUCT1-FIELD1&lt;/P&gt;&lt;P&gt;  STRUCT2-FIEDL2 =  STRUCT1-FIELD2&lt;/P&gt;&lt;P&gt;  STRUCT2-FIEDL3 =  STRUCT1-FIELD3&lt;/P&gt;&lt;P&gt;  STRUCT2-FIEDL4 =  STRUCT1-FIELD4&lt;/P&gt;&lt;P&gt;  STRUCT2-FIEDL5 =  STRUCT1-FIELD5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; We just use MOVE-CORRESPONDING STRUCT1 TO STRUCT2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 06:20:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594709#M267211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T06:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE AND MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594710#M267212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MOVE just move the values without looking at the field names. Meaning it just the moves the number of characters from the source to the target structure OR variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING looks for the corresponding field names in the target structure and move those values only..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF source,
matnr type matnr,
end of source.

DATA: BEGIN OF target,
vbeln type vbeln,
matnr type matnr,
end of target.

source-matnr = 'asdfasf'.

MOVE-CORRESPONDING source to target.

write: / 'vbeln- ', target-vbeln.
write: / 'matnr- ', target-matnr.

clear: target.

skip 1.

MOVE source to target.
write: / 'vbeln- ', target-vbeln.
write: / 'matnr- ', target-matnr.

* If you see the second output the value in matnr is moved to
* vbeln in target.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 06:20:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594710#M267212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T06:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE AND MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594711#M267213</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;for MOVE the both structures should be same, becasue it startring copy first field of first structure to first field of second structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING will look for fields with similar names in both the structures and move only those fields which have same name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 06:20:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594711#M267213</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-09-19T06:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE AND MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594712#M267214</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;MOVE: Moves the contents of field  a to b &lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING : MOVE-CORRESPONDING  from struc1 TO struc2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 06:21:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594712#M267214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T06:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE AND MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594713#M267215</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;move means same like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a = b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move b to a. ( shuld be type matched)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move corressponding means.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move corressponing struct1 to struct2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here all the fields shuld be in same order and type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;performance wise nvr use move corresponding.&lt;/P&gt;&lt;P&gt;it will take more time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 06:27:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594713#M267215</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-09-19T06:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE AND MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594714#M267216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANKS EVERYBODY,&lt;/P&gt;&lt;P&gt; MAY I KNOW WHY WE ARE USING THIS MODULE POOL EVENTHOUGH WE ARE HAVING THE FACILITY TO WRITE THE SAME CODE IN REPORTING?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REGARDS&lt;/P&gt;&lt;P&gt;  KANNY&lt;/P&gt;&lt;P&gt;  (WHEN THE GOING GETS TOUGH, TOUGH GETS GOING)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 06:29:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594714#M267216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T06:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE AND MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594715#M267217</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;module pool is more structured.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in report programming we are writing the whole code in a single page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but module pool , its like house.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kitchne for cookimg.&lt;/P&gt;&lt;P&gt;bathrrom for bathing&lt;/P&gt;&lt;P&gt;bed room for sleeping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like that evry code is assaigned to its room.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so here rooms are PBO,PAI,SUBROUTINE,TOP INCLUDE..like that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here debuging is easy.&lt;/P&gt;&lt;P&gt;error handing is more easy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope u got an idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rhgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 06:33:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594715#M267217</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-09-19T06:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE AND MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594716#M267218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YEA THANKS ANVERSHA!&lt;/P&gt;&lt;P&gt; AND MAY I KNOW ABOUT WORKFLOW IN DETAIL ESP CHANGING BINDING MANUALLY?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REGARDS&lt;/P&gt;&lt;P&gt;  KANNY&lt;/P&gt;&lt;P&gt;  (WHEN THE GOING GETS TOUGH, TOUGH GETS GOING)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 06:46:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594716#M267218</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T06:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE AND MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594717#M267219</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;Please start a new thread in the case of work flow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u will get more rplies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly close this thread after marking helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped amrk points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 06:48:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1594717#M267219</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-09-19T06:48:46Z</dc:date>
    </item>
  </channel>
</rss>

