<?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: reg write statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246825#M485101</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sailaja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur info.&lt;/P&gt;&lt;P&gt;but i cant understand.plz b clear&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 May 2007 10:13:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-22T10:13:54Z</dc:date>
    <item>
      <title>reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246817#M485093</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;the below code produes d output as ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: name(10) TYPE c VALUE 'SOURCE',&lt;/P&gt;&lt;P&gt;      source(10) TYPE c VALUE 'ABAP',&lt;/P&gt;&lt;P&gt;      target(10) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE (name) TO target.&lt;/P&gt;&lt;P&gt;WRITE target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is d logic behind d code? &lt;/P&gt;&lt;P&gt;write (name) to target. what this line of code does?.plz let me know&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Feb 2024 06:17:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246817#M485093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2024-02-04T06:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246818#M485094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;varaible 'name' is containg value 'source'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so the first write statement transfers the vaiable with name 'source' to the variable target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;second write statement writes the variable target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;operator - () acts like referencing operator thats all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will solve ur problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;u&amp;gt;Dont forget to reward all the useful replies&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:02:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246818#M485094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246819#M485095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its like assignment.&lt;/P&gt;&lt;P&gt;target = name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:02:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246819#M485095</guid>
      <dc:creator>alex_m</dc:creator>
      <dc:date>2007-05-22T10:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246820#M485096</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;its same as this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: name(10) TYPE c VALUE 'SOURCE',
source(10) TYPE c VALUE 'ABAP',
target(10) TYPE c.


*MOVE name TO target
*target = name.

WRITE (name) TO target.
WRITE target.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Reshma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:03:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246820#M485096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246821#M485097</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;  whenever we want to write dynamic code, we make use of such statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  In your case,&amp;lt;b&amp;gt; name&amp;lt;/b&amp;gt; can hold the name of any variable by the time it reached the statement. &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WRITE (name) TO target.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  At runtime, the value in the variable name is replaced by (name) when we place the variable in parantheses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:04:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246821#M485097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246822#M485098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The output will be SOURCE not ABAP.&lt;/P&gt;&lt;P&gt;How did you get ABAP  as output?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:05:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246822#M485098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246823#M485099</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;/P&gt;&lt;P&gt;Here a dynamic source field specification (name) is being used. In this case, the contents of the field name is interpreted as the source field name at runtime and the contents are formatted accordingly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;sandeep&lt;/P&gt;&lt;P&gt;Reward if helpful &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:08:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246823#M485099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246824#M485100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi reshma.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*MOVE name TO target&lt;/P&gt;&lt;P&gt;*target = name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the variable name contains d value source. if v MOVE name to target means,source is moved.then how abap?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:12:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246824#M485100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246825#M485101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sailaja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur info.&lt;/P&gt;&lt;P&gt;but i cant understand.plz b clear&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:13:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246825#M485101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246826#M485102</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;im getting output as ABAP.&lt;/P&gt;&lt;P&gt;Plz type d code and execute it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:15:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246826#M485102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246827#M485103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sandeep told you already,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using dynamic field source.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will have ABAP ,so displayed ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:15:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246827#M485103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246828#M485104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you specify braces (name) , this will hole the value of name which is SOURCE, so the first is equavalent to &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE (name) TO target.  =====  WRITE SOURCE TO target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SOURCE contains the value ABAP , so ABAP is moved to target&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE target.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:16:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246828#M485104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246829#M485105</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;name is the source field which has value SOURCE.&lt;/P&gt;&lt;P&gt;WRITE (name) TO target.&lt;/P&gt;&lt;P&gt;means transferring data from source to target.&lt;/P&gt;&lt;P&gt;so that new value can be loaded to source.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward with points if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246829#M485105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246830#M485106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   When we are placing a variable in parantheses, it means that we expect it to be replaced by its value at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  write (name) to target.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  At runtime, it is considered as &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;   write source to target.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  This is because, name is having value 'SOURCE'. So, it got changed as above.&lt;/P&gt;&lt;P&gt;  Now, value in source variable is moved to target variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Suppose, if we have not used parantheses and directly written the variable.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  write name to target.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Then value in name variable is moved to target variable.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:21:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246830#M485106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246831#M485107</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;My heartiest thanks for ur timely help.&lt;/P&gt;&lt;P&gt;ur answer has cleared my doubts.now im clear in that.&lt;/P&gt;&lt;P&gt;So thank u once again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:26:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246831#M485107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246832#M485108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read this you will get EXACT info..(You will get this info when you press F1 on "Write To " in ABAP editor)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of specifying a static source field f, you can also specify a source field (name) dynamically. In this case, the content of the field name is interpreted as the source field name at runtime. The content of this named field is then formatted accordingly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can identify the target field g more precisely by specifying the offset and/or length in the form g+off(len). Both the offset and the length specifications off and len can also be dynamic. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the WRITE name TO g variant, the return code is set as follows: &lt;/P&gt;&lt;P&gt;SY-SUBRC = 0:&lt;/P&gt;&lt;P&gt;Contents of name are valid, statement executed. &lt;/P&gt;&lt;P&gt;SY-SUBRC = 4:&lt;/P&gt;&lt;P&gt;Contents of name are invalid, statement could not be executed, and contents of g remain unchanged. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In other cases, the return code is undefined. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;WRITE ... TO with dynamic source field specification and dynamic offset and length specification for the target field: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: NAME(5)  VALUE 'FIELD', &lt;/P&gt;&lt;P&gt;      FIELD(5) VALUE 'Harry', &lt;/P&gt;&lt;P&gt;      DEST(18) VALUE 'Robert James Smith', &lt;/P&gt;&lt;P&gt;      OFF      TYPE I, &lt;/P&gt;&lt;P&gt;      LEN      TYPE I. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OFF = 7. &lt;/P&gt;&lt;P&gt;LEN = 8. &lt;/P&gt;&lt;P&gt;WRITE (NAME) TO DEST+OFF(LEN). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field DEST now contains the value "Robert Harry   ith". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it Helps..Mark if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tushar Mundlik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:27:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246832#M485108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246833#M485109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kumar,i guess other than sailaja&lt;/P&gt;&lt;P&gt;chandrasekhar,tushar and sandeep also had given correct answers ,i think they also deserve points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246833#M485109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246834#M485110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its just like assignment statement as&lt;/P&gt;&lt;P&gt;target = name or move name target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the o/p is target : source.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;suresh babu aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246834#M485110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: reg write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246835#M485111</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 acting as a dereferencing pointer in c language.&lt;/P&gt;&lt;P&gt;As per the result u r getting .......&lt;/P&gt;&lt;P&gt;name is the placeholder for SOURCE                  name---&amp;gt;SOURCE&lt;/P&gt;&lt;P&gt;source is holding value ABAP&lt;/P&gt;&lt;P&gt;Now analyse the statement&lt;/P&gt;&lt;P&gt;WRITE (name) TO target.&lt;/P&gt;&lt;P&gt;source--&lt;DEL&gt;Contains&lt;/DEL&gt;----&amp;gt; ABAP&lt;/P&gt;&lt;P&gt;name----&lt;DEL&gt;Contains&lt;/DEL&gt;----&amp;gt;SOURCE&lt;/P&gt;&lt;P&gt;name refers to source&lt;/P&gt;&lt;P&gt;(name) refers to the content containing in the source address . This concept is called dereferencing in C language.&lt;/P&gt;&lt;P&gt;(name) refers to address source it inturn refers to the content of source ie ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     name                    source&lt;/P&gt;&lt;P&gt;    [SOURCE]            [ABAP]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   name -- [SOURCE]&lt;/P&gt;&lt;P&gt;   (name) -- ([SOURCE])        ([SOURCE]) refers to 'source' ie content of source....ABAP&lt;/P&gt;&lt;P&gt;   Therefore (name) becomes ABAP .&lt;/P&gt;&lt;P&gt;Reward points if found useful...&lt;/P&gt;&lt;P&gt;regards......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 10:52:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-write-statement/m-p/2246835#M485111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T10:52:22Z</dc:date>
    </item>
  </channel>
</rss>

