<?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 &amp; assign in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228048#M769990</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manjula,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the following statement :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign (x) to &amp;lt;datain&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will assign the value which is contained in x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use assign x to &amp;lt;datain&amp;gt;, then x would be assigned to &amp;lt;datain&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this clarifies your doubt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE statement :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR w_faxtn.&lt;/P&gt;&lt;P&gt;MOVE 'OGGETTO: pagamento fatture diverse'(f21) TO w_faxtn-fax_line(34)&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;APPEND w_faxtn.&lt;/P&gt;&lt;P&gt;CLEAR w_faxtn.&lt;/P&gt;&lt;P&gt;MOVE&lt;/P&gt;&lt;P&gt;'A fronte delle fatture sotto elencate, abbiamo provvveduto a (f22)&lt;/P&gt;&lt;P&gt;bonificarVi' TO w_faxtn-fax_line+9(60).&lt;/P&gt;&lt;P&gt;APPEND w_faxtn.&lt;/P&gt;&lt;P&gt;CLEAR w_faxtn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Hema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jan 2008 03:44:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-17T03:44:08Z</dc:date>
    <item>
      <title>.Move &amp; assign</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228044#M769986</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;What is the difference between Move &amp;amp; assign statement? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Manjula.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 03:33:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228044#M769986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T03:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: .Move &amp; assign</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228045#M769987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manjula&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Move is used to transfer data from one variable to other like &lt;/P&gt;&lt;P&gt;&amp;gt;data: lv_f1 type char10,&lt;/P&gt;&lt;P&gt;&amp;gt;        lv_f2 type char2.&lt;/P&gt;&lt;P&gt;&amp;gt;move lv_f1 to lv_f2.&lt;/P&gt;&lt;P&gt;     Assign will be generally used with field-symbols.&lt;/P&gt;&lt;P&gt;&amp;gt;field-symbols:&amp;lt;fs&amp;gt; type char10.&lt;/P&gt;&lt;P&gt;&amp;gt;data: lv_f1 type char10.&lt;/P&gt;&lt;P&gt;&amp;gt; assign lv_f1 to &amp;lt;fs&amp;gt;. initially the &amp;lt;fs&amp;gt; will be initial and we need to &amp;gt;assign a value to it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 03:39:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228045#M769987</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-01-17T03:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: .Move &amp; assign</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228046#M769988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No diffrerence between both. Both will  assign value from one variable to another&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE w_data1 to w_data2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_data2  =  w_data1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second statements we generally use for numeric values where as first we can use for any type of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards if useful.&lt;/P&gt;&lt;P&gt;Minal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 03:41:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228046#M769988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T03:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: .Move &amp; assign</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228047#M769989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Move&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MOVE &amp;lt;f1&amp;gt; TO &amp;lt;f2&amp;gt;&lt;/STRONG&gt;  Equals      &lt;STRONG&gt;&amp;lt;f2&amp;gt; = &amp;lt;f1&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of using the move-corresponding clause it is advisable to use the move statement instead. Attempt should be made to move entire internal table headers in a single shot, rather than moving the fields one by one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Assign&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Assign Works only with Field Symbol&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ASSIGN &amp;lt;f&amp;gt; TO &amp;lt;FS&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you assign the data object, the system checks whether the technical attributes of the data object &amp;lt;f&amp;gt; correspond to any type specifications for the field symbol &amp;lt;FS&amp;gt;. The field symbol adopts any generic attributes of &amp;lt;f&amp;gt; that are not contained in its own type specification. After the assignment, it points to &amp;lt;f&amp;gt; in memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinodh Balakrishnan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 03:42:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228047#M769989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T03:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: .Move &amp; assign</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228048#M769990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manjula,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the following statement :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign (x) to &amp;lt;datain&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will assign the value which is contained in x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use assign x to &amp;lt;datain&amp;gt;, then x would be assigned to &amp;lt;datain&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this clarifies your doubt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE statement :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR w_faxtn.&lt;/P&gt;&lt;P&gt;MOVE 'OGGETTO: pagamento fatture diverse'(f21) TO w_faxtn-fax_line(34)&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;APPEND w_faxtn.&lt;/P&gt;&lt;P&gt;CLEAR w_faxtn.&lt;/P&gt;&lt;P&gt;MOVE&lt;/P&gt;&lt;P&gt;'A fronte delle fatture sotto elencate, abbiamo provvveduto a (f22)&lt;/P&gt;&lt;P&gt;bonificarVi' TO w_faxtn-fax_line+9(60).&lt;/P&gt;&lt;P&gt;APPEND w_faxtn.&lt;/P&gt;&lt;P&gt;CLEAR w_faxtn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Hema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 03:44:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228048#M769990</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T03:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: .Move &amp; assign</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228049#M769991</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;&lt;U&gt;&lt;STRONG&gt;Move&lt;/STRONG&gt;&lt;/U&gt; :- To assign the value of a data object to a variable &amp;lt; f2 &amp;gt;, use the following statement:&lt;/P&gt;&lt;P&gt;MOVE &amp;lt; f1 &amp;gt; TO &amp;lt; f2 &amp;gt;.&lt;/P&gt;&lt;P&gt;or the equivalent statement&lt;/P&gt;&lt;P&gt;&amp;lt; f2 &amp;gt; = &amp;lt; f1 &amp;gt;.&lt;/P&gt;&lt;P&gt;The contents of &amp;lt; f1 &amp;gt; remain unchanged. &amp;lt; f1 &amp;gt; does not have to be a variable &amp;#150; it can also be a literal, a text symbol, or a constant. You must always specify decimal points with a period (.), regardless of the user&amp;#146;s personal settings.&lt;/P&gt;&lt;P&gt;Multiple value assignments in the form&lt;/P&gt;&lt;P&gt;&amp;lt; f4 &amp;gt; = &amp;lt; f3 &amp;gt; = = &amp;lt; f1 &amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      To assign the value of a data object to a variable , use the following statement: MOVE TO . or the equivalent statement = . The contents of remain unchanged. does not have to be a variable &amp;#150; it can also be a literal, a text symbol, or a constant. You must always specify decimal points with a period (.), regardless of the user&amp;#146;s personal settings. Multiple value assignments in the form = = = .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Assign :-&lt;/STRONG&gt;&lt;/U&gt; ASSIGN &amp;lt; f &amp;gt; TO &amp;lt; FS &amp;gt;.&lt;/P&gt;&lt;P&gt;When you assign the data object, the system checks whether the technical attributes of the data object &amp;lt; f &amp;gt; correspond to any type specifications for the field symbol &amp;lt; FS &amp;gt;. The field symbol adopts any generic attributes of &amp;lt; f &amp;gt; that are not contained in its own type specification. Following the assignment, it points to &amp;lt; f &amp;gt; in memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN TO . When you assign the data object, the system checks whether the technical attributes of the data object correspond to any type specifications for the field symbol . The field symbol adopts any generic attributes of that are not contained in its own type specification. Following the assignment, it points to in memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move---&lt;/P&gt;&lt;P&gt;  To move a value from one field to another, use the move statement. The entire contents or a portion thereof can be moved. Instead of move, you can use the assignment operator =, as shown below. They are both referred to as a move statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    The following is the syntax for the move statement. Operators and operands must be separated by spaces. Multiple assignment occurs from right to left. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move v1 to v2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v2 = v1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v2 = v1 = vm = vn . . ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move v1[&lt;EM&gt;N(L)] to v2[&lt;/EM&gt;N(L)].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v2[&lt;EM&gt;N(L)] = v1[&lt;/EM&gt;N(L)].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v1 is the sending variable or field string. &lt;/P&gt;&lt;P&gt;v2 is the receiving variable or field string. &lt;/P&gt;&lt;P&gt;N is an offset from the beginning of the variable or field string. &lt;/P&gt;&lt;P&gt;L is the number of bytes to move. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Static ASSIGN&lt;/P&gt;&lt;P&gt;If you already know the name of the field that you want to assign to the field symbol when you write a program, use the static ASSIGN statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN dobj TO &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you assign the data object, the system checks whether the technical attributes of the data object dobj  correspond to the type specifications for the field symbol &amp;lt;fs&amp;gt;. The field symbol adopts any generic attributes of dobj that are not contained in its own type specification. After the assignment, it points to this field in the memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_field_symbols_stat_ASSIGN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;f1&amp;gt; TYPE ANY, &amp;lt;f2&amp;gt; TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: text(20)  TYPE c VALUE 'Hello, how are you?',&lt;/P&gt;&lt;P&gt;      num       TYPE i VALUE 5,&lt;/P&gt;&lt;P&gt;      BEGIN OF line1,&lt;/P&gt;&lt;P&gt;        col1 TYPE f VALUE '1.1e+10',&lt;/P&gt;&lt;P&gt;        col2 TYPE i VALUE '1234',&lt;/P&gt;&lt;P&gt;      END OF line1,&lt;/P&gt;&lt;P&gt;      line2 LIKE line1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN text TO &amp;lt;f1&amp;gt;.&lt;/P&gt;&lt;P&gt;ASSIGN num TO  &amp;lt;f2&amp;gt;.&lt;/P&gt;&lt;P&gt;DESCRIBE FIELD &amp;lt;f1&amp;gt; LENGTH &amp;lt;f2&amp;gt;.&lt;/P&gt;&lt;P&gt;WRITE: / &amp;lt;f1&amp;gt;, 'has length', num.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN line1 TO &amp;lt;f1&amp;gt;.&lt;/P&gt;&lt;P&gt;ASSIGN line2-col2 TO &amp;lt;f2&amp;gt;.&lt;/P&gt;&lt;P&gt;MOVE &amp;lt;f1&amp;gt; TO line2.&lt;/P&gt;&lt;P&gt;ASSIGN 'LINE2-COL2 =' TO &amp;lt;f1&amp;gt;.&lt;/P&gt;&lt;P&gt;WRITE: / &amp;lt;f1&amp;gt;, &amp;lt;f2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The list output is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello, how are you?  has length         20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-COL2 =      1,234&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example declares two field symbols &amp;lt;f1&amp;gt; and &amp;lt;f2&amp;gt;. &amp;lt;f2&amp;gt; may only have fields of type I since it has been typed accordingly. &amp;lt;f1&amp;gt; and &amp;lt;f2&amp;gt; both point to different fields during the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/fc/eb38d5358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/fc/eb38d5358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please reward points if helpful,&lt;/P&gt;&lt;P&gt;shylaja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 03:46:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228049#M769991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T03:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: .Move &amp; assign</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228050#M769992</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 :- To assign the value of a data object &amp;lt;fl&amp;gt; to a variable &amp;lt; f2 &amp;gt;, use the following &lt;/P&gt;&lt;P&gt;statement:&lt;/P&gt;&lt;P&gt;MOVE &amp;lt; f1 &amp;gt; TO &amp;lt; f2 &amp;gt;.&lt;/P&gt;&lt;P&gt;or the equivalent statement&lt;/P&gt;&lt;P&gt;&amp;lt; f2 &amp;gt; = &amp;lt; f1 &amp;gt;.&lt;/P&gt;&lt;P&gt;The contents of &amp;lt; f1 &amp;gt; remain unchanged.  &amp;lt; f1 &amp;gt; does not have to be a variable - it can also &lt;/P&gt;&lt;P&gt;be a literal, a text symbol, or a constant.  You must always specify decimal points with a period &lt;/P&gt;&lt;P&gt;(.), regardless of the user's personal settings.&lt;/P&gt;&lt;P&gt;Multiple value assignments in the form&lt;/P&gt;&lt;P&gt;&amp;lt; f4 &amp;gt; = &amp;lt; f3 &amp;gt; = &amp;lt;f2 &amp;gt; = &amp;lt; f1 &amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign :- ASSIGN &amp;lt; f &amp;gt; TO &amp;lt; FS &amp;gt;.&lt;/P&gt;&lt;P&gt;When you assign the data object, the system checks whether the technical attributes of the &lt;/P&gt;&lt;P&gt;data object &amp;lt; f &amp;gt; correspond to any type specifications for the field symbol &amp;lt; FS &amp;gt;.  The field &lt;/P&gt;&lt;P&gt;symbol adopts any generic attributes of &amp;lt; f &amp;gt; that are not contained in its own type &lt;/P&gt;&lt;P&gt;specification.  Following the assignment, it points to &amp;lt; f &amp;gt; in memory.&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;STRONG&gt;Reward points if found helpfull...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;siva.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 07:09:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-assign/m-p/3228050#M769992</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T07:09:15Z</dc:date>
    </item>
  </channel>
</rss>

