<?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: Is it MOVE-CORRESPONDING? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193456#M1981010</link>
    <description>&lt;P&gt;Please use the COMMENT button for comments, questions, adding details, etc., ANSWER is only to propose a solution, dixit SAP text at the right of the answer area.&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2020 18:31:19 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2020-02-24T18:31:19Z</dc:date>
    <item>
      <title>Is it MOVE-CORRESPONDING?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193452#M1981006</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
  &lt;P&gt;Pl. advise me what is doing the the below code because its not giving desired results, thank you&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA it_vbak_database TYPE STANDARD TABLE OF vbak. 
FIELD-SYMBOL &amp;lt;fs_vbak_database&amp;gt; TYPE vbak.


LOOP AT it_vbak_database ASSIGNING &amp;lt;fs_vbak_database&amp;gt;.
  DATA(wa_vbak) = CORRESPONDING z_tbl_vbak( &amp;lt;fs_vbak_database&amp;gt; ).
  APPEND wa_vbak TO tt_vbak.
ENDLOOP.

z_tbl_vbak has 21 fields from VBAK table&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Feb 2020 17:25:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193452#M1981006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-02-24T17:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Is it MOVE-CORRESPONDING?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193453#M1981007</link>
      <description>&lt;P&gt;What are the desired results, and what do you currently get?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2020 17:44:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193453#M1981007</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-02-24T17:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Is it MOVE-CORRESPONDING?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193454#M1981008</link>
      <description>&lt;P&gt;I'm guessing, that Z_TBL_VBAK, is a table type, not an structure type, so the wa_vbak is a table. &lt;/P&gt;&lt;P&gt;I think that this will do the trick:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;tt_vbak = CORRESPONDING #( it_vbak_database )&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Assuming the tt_vbak has z_tbl_vbak type.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;    Adolfo&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2020 18:03:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193454#M1981008</guid>
      <dc:creator>alopezv74</dc:creator>
      <dc:date>2020-02-24T18:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Is it MOVE-CORRESPONDING?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193455#M1981009</link>
      <description>&lt;P&gt;Thank you for the answers. Pl. let me know does the below code,&lt;/P&gt;&lt;P&gt;1) Creates automatically the WA_VBAK structure of &lt;U&gt;&lt;STRONG&gt;type&lt;/STRONG&gt;&lt;/U&gt; Z_TBL_VBAK, which has 21 fields from VBAK?&lt;/P&gt;&lt;P&gt;2) Then moved the data from &amp;lt;FS_VBAK_DATABASE&amp;gt; to WA_VBAK for the fields which has &lt;STRONG&gt;&lt;U&gt;SAME NAME&lt;/U&gt;&lt;/STRONG&gt; in both source and target?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA(wa_vbak) = CORRESPONDING z_tbl_vbak(&amp;lt;fs_vbak_database&amp;gt;).&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Feb 2020 18:18:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193455#M1981009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-02-24T18:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: Is it MOVE-CORRESPONDING?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193456#M1981010</link>
      <description>&lt;P&gt;Please use the COMMENT button for comments, questions, adding details, etc., ANSWER is only to propose a solution, dixit SAP text at the right of the answer area.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2020 18:31:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193456#M1981010</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-02-24T18:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Is it MOVE-CORRESPONDING?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193457#M1981011</link>
      <description>&lt;P&gt;What are the desired results, and what do you currently get?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2020 18:33:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193457#M1981011</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-02-24T18:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Is it MOVE-CORRESPONDING?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193458#M1981012</link>
      <description>&lt;P&gt;This is how I did it...&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES:
BEGIN OF tv_plaf,
plnum TYPE plaf-plnum,
rsnum TYPE plaf-rsnum,
xdel TYPE flag,
END OF tv_plaf.

DATA:
lt_plaf_temp TYPE STANDARD TABLE OF tv_plaf
WITH NON-UNIQUE SORTED KEY xdel
COMPONENTS xdel.

*MOVE CORRESPONDING
lt_plaf_temp = CORRESPONDING #( lt_plaf ).
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Feb 2020 19:57:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-move-corresponding/m-p/12193458#M1981012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-02-24T19:57:20Z</dc:date>
    </item>
  </channel>
</rss>

