<?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 TRANSPORTING in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540097#M577107</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;1.READ for any Internal Table&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reads a line of an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;READ TABLE &amp;lt;itab&amp;gt;  FROM &amp;lt;wa&amp;gt;
                  |WITH TABLE KEY &amp;lt;k1&amp;gt; = &amp;lt;f1&amp;gt;... &amp;lt;kn&amp;gt; = &amp;lt;fn&amp;gt; 
                  |WITH KEY = &amp;lt;f&amp;gt;
                  |WITH KEY &amp;lt;k1&amp;gt; = &amp;lt;f1&amp;gt;... &amp;lt;kn&amp;gt; = &amp;lt;fn&amp;gt; 
      INTO &amp;lt;wa&amp;gt; [COMPARING &amp;lt;f1&amp;gt; &amp;lt;f2&amp;gt;... |ALL FIELDS]
                [TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f2&amp;gt;... |ALL FIELDS|NO FIELDS]
     |ASSIGNING &amp;lt;FS&amp;gt;
     |REFERENCE INTO &amp;lt;dref&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement reads either the line of the internal table with the same key as specified in the work area &amp;lt;wa&amp;gt;, the line with the key specified in the TABLE KEY addition, the line that corresponds fully to &amp;lt;f&amp;gt;, or the one corresponding to the freely-defined key in the KEY addition. The contents of the line are either written to the work area &amp;lt;wa&amp;gt;, or the line is assigned to the field symbol &amp;lt;FS&amp;gt;. If you assign the line to a work area, you can compare field contents and specify the fields that you want to transport.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;2.MODIFY for any Internal Table&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes the content of lines in internal tables of any type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODIFY TABLE &amp;lt;itab&amp;gt; FROM &amp;lt;wa&amp;gt; [TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f 2&amp;gt;...] 
                              [ASSIGNING &amp;lt;FS&amp;gt; | REFERENCE INTO &amp;lt;dref&amp;gt;].&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copies the work area &amp;lt;wa&amp;gt; into the line of the internal table with the same table key as &amp;lt;wa&amp;gt;. If you use ASSIGNING or INTO REFERENCE, field symbol &amp;lt;FS&amp;gt; refers to the modified line or the relevant data reference is stored in &amp;lt;dref&amp;gt; after the statement. You can use the TRANSPORTING addition to specify the exact components that you want to change. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODIFY &amp;lt;itab&amp;gt; FROM &amp;lt;wa&amp;gt; TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f 2&amp;gt;... WHERE &amp;lt;logexp&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copies the work area &amp;lt;wa&amp;gt; into the line of the internal table for which the logical expression is true. In each comparison of the logical expression, the first operand must be a component of the line structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;3.MODIFY for Index Tables&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes the content of lines in index tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODIFY &amp;lt;itab&amp;gt; FROM &amp;lt;wa&amp;gt; [INDEX &amp;lt;idx&amp;gt;] [TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f 2&amp;gt;...] 
                        [ASSIGNING &amp;lt;FS&amp;gt; | REFERENCE INTO &amp;lt;dref&amp;gt;].&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copies the work area &amp;lt;wa&amp;gt; into the line of the internal table with the index &amp;lt;idx&amp;gt;. If you omit the INDEX addition, you can only use the statement within a LOOP. In this case, you change the current loop line If you use ASSIGNING or INTO REFERENCE, field symbol &amp;lt;FS&amp;gt; refers to the modified line or the relevant data reference is stored in &amp;lt;dref&amp;gt; after the statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; 4.LOOP THROUGH internal tables&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Starts a loop through an extract dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;itab&amp;gt; INTO &amp;lt;wa&amp;gt; WHERE &amp;lt;logexp&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;itab&amp;gt; ASSIGNING &amp;lt;FS&amp;gt; WHERE &amp;lt;logexp&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;itab&amp;gt; REFERENCE INTO &amp;lt;dref&amp;gt; WHERE &amp;lt;logexp&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;LOOP AT &amp;lt;itab&amp;gt; TRANSPORTING NO FIELDS WHERE &amp;lt;logexp&amp;gt;.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop through any Internal Table The loop ends with an ENDLOOP statement. If the logical expression &amp;lt;logexp&amp;gt; is true, each loop pass either assigns the current line content to the work area &amp;lt;wa&amp;gt;; assigns the current line to a field symbol &amp;lt;FS&amp;gt;; creates a reference to the current line by &amp;lt;dref&amp;gt;; or does not assign the line content at all. The first operand in each part of &amp;lt;logexp&amp;gt; must be a component of the internal table. Pointed brackets are part of the syntax for field symbol names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With index tables, you can use the additions FROM &amp;lt;n&amp;gt; and TO &amp;lt;n&amp;gt; to restrict the lines that are read by specifying an index range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward   points if it is usefull .....&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jul 2007 05:15:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-16T05:15:06Z</dc:date>
    <item>
      <title>MOVE TRANSPORTING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540091#M577101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WHAT IS THE USE OF MOVE ...TRANSPORTING STATEMENT.WHAT IS THE EFFECT IN THE HEADER AND BODY OF AN INTERNAL TABLE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2007 16:53:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540091#M577101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-15T16:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE TRANSPORTING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540092#M577102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Go thro' below link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3260358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3260358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Reward if useful!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 05:08:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540092#M577102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T05:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE TRANSPORTING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540093#M577103</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;When you use MOVE along with TRANSPORTING additon fields that you mention after the TRANSPORTING, only those fields values are move to the target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are moving Table to table entire table gets effected else only the headerline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 05:10:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540093#M577103</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-16T05:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE TRANSPORTING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540094#M577104</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;It is MODIFY &amp;amp; not MOVE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY wa_tab to i_tab Transporting matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here internal table i_tab content is modified only for the field MATNR. &lt;/P&gt;&lt;P&gt;All the fields mentioned after TRANSPORTING are modified in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 05:12:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540094#M577104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T05:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE TRANSPORTING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540095#M577105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Veera,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SAP currently provide two standard programs for you to transport the standard texts. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RSTXSCRP - SAPscript Export to Dataset/ SAPscript Import from Dataset &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RSTXTRAN - Transfer of SAPscriptTexts to a Correction &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.6c &lt;/P&gt;&lt;P&gt;In SE10, tick the followings :- &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Customizing requests &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Workbench requests &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transport of copies &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modifiable &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Released &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hit Enter and a changed request lists will be displayed (click Releaseddirectly button or press F9) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STMS - Transport request from Developerto Production (depending on your company settings) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Import Overview &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Double the Target System &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select the request to transport and click Import request or Ctrl + F11 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transport ABAP Report from Developer to Production &lt;/P&gt;&lt;P&gt;Assuming that you wrote an abap report in developer 300 and would like to transport it to production 900. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Step by step procedure to transport from developer to production :- &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)   Go to Se80 &lt;/P&gt;&lt;P&gt;2)   Select the radio button for Program and give the program name in the input box &lt;/P&gt;&lt;P&gt;3)   Press display &lt;/P&gt;&lt;P&gt;4)   Now it will go to another screen, then place the cursor on program name and press &lt;/P&gt;&lt;P&gt;      Shift+F6 OR Click transport Button. &lt;/P&gt;&lt;P&gt;5)   Save the program in Existing request or Create a new request. After Saving the &lt;/P&gt;&lt;P&gt;      Program in Transport request and come out of the screen &lt;/P&gt;&lt;P&gt;6)   Goto se38, type the program name and activate it, press Control+F4 &lt;/P&gt;&lt;P&gt;7)   it will go to next screen, showing all your transport request. &lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt;   Select your request and click on folder to expand it, after expanding it will show &lt;/P&gt;&lt;P&gt;      another request inside. &lt;/P&gt;&lt;P&gt;9)   Expand  that request also and check your program exist or not, &lt;/P&gt;&lt;P&gt;10) select the inner request and press Right click, it will show a list, plz select release &lt;/P&gt;&lt;P&gt;11) it will goto another screen there press save button and press back button. &lt;/P&gt;&lt;P&gt;12) now the color of the inner request is changed, and relese the outer request, it will take &lt;/P&gt;&lt;P&gt;      some seconds . please wait.. &lt;/P&gt;&lt;P&gt;13) once this is over, please tell this outer request no. to basis guys and ask them to move quality &lt;/P&gt;&lt;P&gt;      or production server. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Pls reward pts if found usefull:)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sathish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 05:12:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540095#M577105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T05:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE TRANSPORTING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540096#M577106</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;If you use move statement, it will transfer the values to the varaible.But it is temporarily.&lt;/P&gt;&lt;P&gt;If you use modify statement with transporting in addition, the value will be permanently be written in the internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 05:13:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540096#M577106</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-07-16T05:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE TRANSPORTING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540097#M577107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;1.READ for any Internal Table&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reads a line of an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;READ TABLE &amp;lt;itab&amp;gt;  FROM &amp;lt;wa&amp;gt;
                  |WITH TABLE KEY &amp;lt;k1&amp;gt; = &amp;lt;f1&amp;gt;... &amp;lt;kn&amp;gt; = &amp;lt;fn&amp;gt; 
                  |WITH KEY = &amp;lt;f&amp;gt;
                  |WITH KEY &amp;lt;k1&amp;gt; = &amp;lt;f1&amp;gt;... &amp;lt;kn&amp;gt; = &amp;lt;fn&amp;gt; 
      INTO &amp;lt;wa&amp;gt; [COMPARING &amp;lt;f1&amp;gt; &amp;lt;f2&amp;gt;... |ALL FIELDS]
                [TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f2&amp;gt;... |ALL FIELDS|NO FIELDS]
     |ASSIGNING &amp;lt;FS&amp;gt;
     |REFERENCE INTO &amp;lt;dref&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement reads either the line of the internal table with the same key as specified in the work area &amp;lt;wa&amp;gt;, the line with the key specified in the TABLE KEY addition, the line that corresponds fully to &amp;lt;f&amp;gt;, or the one corresponding to the freely-defined key in the KEY addition. The contents of the line are either written to the work area &amp;lt;wa&amp;gt;, or the line is assigned to the field symbol &amp;lt;FS&amp;gt;. If you assign the line to a work area, you can compare field contents and specify the fields that you want to transport.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;2.MODIFY for any Internal Table&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes the content of lines in internal tables of any type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODIFY TABLE &amp;lt;itab&amp;gt; FROM &amp;lt;wa&amp;gt; [TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f 2&amp;gt;...] 
                              [ASSIGNING &amp;lt;FS&amp;gt; | REFERENCE INTO &amp;lt;dref&amp;gt;].&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copies the work area &amp;lt;wa&amp;gt; into the line of the internal table with the same table key as &amp;lt;wa&amp;gt;. If you use ASSIGNING or INTO REFERENCE, field symbol &amp;lt;FS&amp;gt; refers to the modified line or the relevant data reference is stored in &amp;lt;dref&amp;gt; after the statement. You can use the TRANSPORTING addition to specify the exact components that you want to change. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODIFY &amp;lt;itab&amp;gt; FROM &amp;lt;wa&amp;gt; TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f 2&amp;gt;... WHERE &amp;lt;logexp&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copies the work area &amp;lt;wa&amp;gt; into the line of the internal table for which the logical expression is true. In each comparison of the logical expression, the first operand must be a component of the line structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;3.MODIFY for Index Tables&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes the content of lines in index tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODIFY &amp;lt;itab&amp;gt; FROM &amp;lt;wa&amp;gt; [INDEX &amp;lt;idx&amp;gt;] [TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f 2&amp;gt;...] 
                        [ASSIGNING &amp;lt;FS&amp;gt; | REFERENCE INTO &amp;lt;dref&amp;gt;].&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copies the work area &amp;lt;wa&amp;gt; into the line of the internal table with the index &amp;lt;idx&amp;gt;. If you omit the INDEX addition, you can only use the statement within a LOOP. In this case, you change the current loop line If you use ASSIGNING or INTO REFERENCE, field symbol &amp;lt;FS&amp;gt; refers to the modified line or the relevant data reference is stored in &amp;lt;dref&amp;gt; after the statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; 4.LOOP THROUGH internal tables&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Starts a loop through an extract dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;itab&amp;gt; INTO &amp;lt;wa&amp;gt; WHERE &amp;lt;logexp&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;itab&amp;gt; ASSIGNING &amp;lt;FS&amp;gt; WHERE &amp;lt;logexp&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;itab&amp;gt; REFERENCE INTO &amp;lt;dref&amp;gt; WHERE &amp;lt;logexp&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;LOOP AT &amp;lt;itab&amp;gt; TRANSPORTING NO FIELDS WHERE &amp;lt;logexp&amp;gt;.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop through any Internal Table The loop ends with an ENDLOOP statement. If the logical expression &amp;lt;logexp&amp;gt; is true, each loop pass either assigns the current line content to the work area &amp;lt;wa&amp;gt;; assigns the current line to a field symbol &amp;lt;FS&amp;gt;; creates a reference to the current line by &amp;lt;dref&amp;gt;; or does not assign the line content at all. The first operand in each part of &amp;lt;logexp&amp;gt; must be a component of the internal table. Pointed brackets are part of the syntax for field symbol names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With index tables, you can use the additions FROM &amp;lt;n&amp;gt; and TO &amp;lt;n&amp;gt; to restrict the lines that are read by specifying an index range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward   points if it is usefull .....&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2007 05:15:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-transporting/m-p/2540097#M577107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-16T05:15:06Z</dc:date>
    </item>
  </channel>
</rss>

