<?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: field symbolsc code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315202#M507560</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Sapna I had already rewarded the points did't you get them pls let me know?&lt;/P&gt;&lt;P&gt;Sujoy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 09 Jun 2007 06:29:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-09T06:29:13Z</dc:date>
    <item>
      <title>field symbolsc code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315195#M507553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the following difficulties in the following code:-&lt;/P&gt;&lt;P&gt;&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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;q1]]               How does the "2" types of statements differentiates&lt;/P&gt;&lt;P&gt;i]ASSIGN &amp;lt;V&amp;gt; TO &amp;lt;FS&amp;gt;.     Where &amp;lt;v &amp;gt; refers to any variable &amp;amp; &amp;lt;fs&amp;gt; to any field     symbols&lt;/P&gt;&lt;P&gt;ii] MOVE &amp;lt;fs&amp;gt; TO &amp;lt;V&amp;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;q2]]           How does the "NUM" variable's presence affect the output in the write statement----what I mean by the question  is what would have haooened if we had written &amp;lt;F2&amp;gt; instead of NUM ; min the following statements:-&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2007 06:32:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315195#M507553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-25T06:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: field symbolsc code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315196#M507554</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 through the documnetation and correct it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field Symbols &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field symbols are placeholders or symbolic names for other fields. They do not physically reserve space for a field, but point to its contents. A field symbol cam point to any data object. The data object to which a field symbol points is assigned to it after it has been declared in the program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever you address a field symbol in a program, you are addressing the field that is assigned to the field symbol. After successful assignment, there is no difference in ABAP whether you reference the field symbol or the field itself. You must assign a field to each field symbol before you can address the latter in programs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field symbols are similar to dereferenced pointers in C (that is, pointers to which the content operator * is applied). However, the only real equivalent of pointers in ABAP, that is, variables that contain a memory address (reference) and that can be used without the contents operator, are reference variables in ABAP Objects. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All operations programmed with field symbols are applied to the field assigned to it. For example, a MOVE statement between two field symbols moves the contents of the field assigned to the first field symbol to the field assigned to the second field symbol. The field symbols themselves point to the same fields after the MOVE statement as they did before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create field symbols either without or with type specifications. If you do not specify a type, the field symbol inherits all of the technical attributes of the field assigned to it. If you do specify a type, the system checks the compatibility of the field symbol and the field you are assigning to it during the ASSIGN statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field symbols provide greater flexibility when you address data objects: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to process sections of fields, you can specify the offset and length of the field dynamically. &lt;/P&gt;&lt;P&gt;You can assign one field symbol to another, which allows you to address parts of fields. &lt;/P&gt;&lt;P&gt;Assignments to field symbols may extend beyond field boundaries. This allows you to address regular sequences of fields in memory efficiently. &lt;/P&gt;&lt;P&gt;You can also force a field symbol to take different technical attributes from those of the field assigned to it. &lt;/P&gt;&lt;P&gt;The flexibility of field symbols provides elegant solutions to certain problems. On the other hand, it does mean that errors can easily occur. Since fields are not assigned to field symbols until runtime, the effectiveness of syntax and security checks is very limited for operations involving field symbols. This can lead to runtime errors or incorrect data assignments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While runtime errors indicate an obvious problem, incorrect data assignments are dangerous because they can be very difficult to detect. For this reason, you should only use field symbols if you cannot achieve the same result using other ABAP statements. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, you may want to process part of a string where the offset and length depend on the contents of the field. You could use field symbols in this case. However, since the MOVE statement also supports variable offset and length specifications, you should use it instead. The MOVE statement (with your own auxiliary variables if required) is much safer than using field symbols, since it cannot address memory beyond the boundary of a field. However, field symbols may improve performance in some cases. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the below links u will get the answers for your questions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3860358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3860358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/field_sy.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/field_sy.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/tip/1,289483,sid21_gci920484,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/tip/1,289483,sid21_gci920484,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax Diagram &lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic form &lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;fs&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extras: &lt;/P&gt;&lt;P&gt;1. ... TYPE type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... TYPE REF TO cif &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. ... TYPE REF TO DATA &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. ... TYPE LINE OF type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. ... LIKE s &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. ... LIKE LINE OF s &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. ... TYPE tabkind &lt;/P&gt;&lt;P&gt;8. ... STRUCTURE s DEFAULT wa &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax check performed in an ABAP Objects context is stricter than in other ABAP areas. See Cannot Use Untyped Field Symbols ad Cannot Use Field Symbols as Components of Classes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This statement declares a symbolic field called &amp;lt;fs&amp;gt;. At runtime, you can assign a concrete field to the field symbol using ASSIGN. All operations performed with the field symbol then directly affect the field assigned to it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can only use one of the additions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Output aircraft type from the table SFLIGHT using a field symbol: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;PT&amp;gt; TYPE ANY. &lt;/P&gt;&lt;P&gt;DATA SFLIGHT_WA TYPE SFLIGHT. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;ASSIGN SFLIGHT_WA-PLANETYPE TO &amp;lt;PT&amp;gt;. &lt;/P&gt;&lt;P&gt;WRITE &amp;lt;PT&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1 &lt;/P&gt;&lt;P&gt;... TYPE type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2 &lt;/P&gt;&lt;P&gt;... TYPE REF TO cif &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 3 &lt;/P&gt;&lt;P&gt;... TYPE REF TO DATA &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 4 &lt;/P&gt;&lt;P&gt;... TYPE LINE OF type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 5 &lt;/P&gt;&lt;P&gt;... LIKE s &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 6 &lt;/P&gt;&lt;P&gt;... LIKE LINE OF s &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 7 &lt;/P&gt;&lt;P&gt;... TYPE tabkind &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;You can define the type of the field symbol using additions 2 to 7 (just as you can for FORM parameters (compare Defining the Type of Subroutine Parameters). When you use the ASSIGN statement, the system carries out the same type checks as for USING parameters of FORMs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This addition is not allowed in an ABAP Objects context. See Cannot Use Obsolete Casting for FIELD SYMBOLS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In some cases, the syntax rules that apply to Unicode programs are different than those for non-Unicode programs. See Defining Types Using STRUCTURE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Assigns any (internal) field string or structure to the field symbol from the ABAP Dictionary (s). All fields of the structure can be addressed by name: &amp;lt;fs&amp;gt;-fieldname. The structured field symbol points initially to the work area wa specified after DEFAULT. &lt;/P&gt;&lt;P&gt;The work area wa must be at least as long as the structure s. If s contains fields of the type I or F, wa should have the structure s or at least begin in that way, since otherwise alignment problems may occur. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Address components of the flight bookings table SBOOK using a field symbol: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA SBOOK_WA LIKE SBOOK. &lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;SB&amp;gt; STRUCTURE SBOOK &lt;/P&gt;&lt;P&gt;DEFAULT SBOOK_WA. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;WRITE: &amp;lt;SB&amp;gt;-BOOKID, &amp;lt;SB&amp;gt;-FLDATE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Related &lt;/P&gt;&lt;P&gt;ASSIGN, DATA &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additional help &lt;/P&gt;&lt;P&gt;Declaring Field Symbols &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2007 06:37:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315196#M507554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-25T06:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: field symbolsc code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315197#M507555</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;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;if you had put &amp;lt;F2&amp;gt; instead of NUM ,&lt;/P&gt;&lt;P&gt;basically the output would have been :&lt;/P&gt;&lt;P&gt;Hello, how are you? has length 19&lt;/P&gt;&lt;P&gt;bcoz f1 contains 19 characters .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2007 06:56:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315197#M507555</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2007-05-25T06:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: field symbolsc code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315198#M507556</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;Here are your answers referring your code -&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;1.&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt; &lt;/P&gt;&lt;P&gt;q1]] How does the "2" types of statements differentiates&lt;/P&gt;&lt;P&gt;i]ASSIGN &amp;lt;V&amp;gt; TO &amp;lt;FS&amp;gt;. Where &amp;lt;v &amp;gt; refers to any variable &amp;amp; &amp;lt;fs&amp;gt; to any field symbols&lt;/P&gt;&lt;P&gt;ii] MOVE &amp;lt;fs&amp;gt; TO &amp;lt;V&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;Answer: The basic difference between the MOVE &amp;amp; ASSIGN statements is as follows - In the MOVE statement, it is not possible to specify the field names dynamically as the contents of other fields. If you need to do this, you must use field symbols .&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;2.&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt; &lt;/P&gt;&lt;P&gt;q2]] How does the "NUM" variable's presence affect the output in the write statement----what I mean by the question is what would have happened if we had written &amp;lt;F2&amp;gt; instead of NUM ; min the following statements:-&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;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;Answer: Here the output would be same evenif you change the &amp;lt;u&amp;gt;num&amp;lt;/u&amp;gt; to &amp;lt;u&amp;gt;&amp;lt;f2&amp;gt;&amp;lt;/u&amp;gt;. The reason is that in the second line, you assigned the memory of num to &amp;lt;f2&amp;gt;. And in the third statement &amp;lt;f2&amp;gt; contains the output of describe field statement as length. So &amp;lt;f2&amp;gt; has value as length.&lt;/P&gt;&lt;P&gt;As &amp;lt;f2&amp;gt; is pointing to the memory location, address, of num and the value of num is same as the value contained in &amp;lt;f2&amp;gt;.&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS If the answer solves your query, plz close the thread by rewarding each reply and marking it &amp;lt;i&amp;gt;&amp;lt;b&amp;gt;Solved.&amp;lt;/b&amp;gt;&amp;lt;/i&amp;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>Fri, 25 May 2007 07:14:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315198#M507556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-25T07:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: field symbolsc code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315199#M507557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the answers of Swapna Modi&amp;amp; Mr.Munogee are contradictory&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 May 2007 07:24:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315199#M507557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-26T07:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: field symbolsc code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315200#M507558</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;Kindly verify the results mentioned in the thread reply by trying it out practically. This will help you in understanding the thread reply responded correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS As you verify, plz close the thread by marking it Sovled and rewarding the useful reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Sapna Modi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 06:32:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315200#M507558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T06:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: field symbolsc code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315201#M507559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Sapna I had already rewarded the points did't you get them&lt;/P&gt;&lt;P&gt;Sujoy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jun 2007 06:28:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315201#M507559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-09T06:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: field symbolsc code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315202#M507560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Sapna I had already rewarded the points did't you get them pls let me know?&lt;/P&gt;&lt;P&gt;Sujoy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jun 2007 06:29:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315202#M507560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-09T06:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: field symbolsc code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315203#M507561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Sapna I had already rewarded the points did't you get them pls let me know?&lt;/P&gt;&lt;P&gt;Sujoy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jun 2007 06:29:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbolsc-code/m-p/2315203#M507561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-09T06:29:41Z</dc:date>
    </item>
  </channel>
</rss>

