<?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 symbol problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065562#M726423</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Matt,&lt;/P&gt;&lt;P&gt;Thhannks a tooon.&lt;/P&gt;&lt;P&gt;My issue has been resolved.&lt;/P&gt;&lt;P&gt;Actually before modifying i had not read the previous values into TEMP.&lt;/P&gt;&lt;P&gt;So they were getting wiped off..&lt;/P&gt;&lt;P&gt;Now its all in Place.Purfect!!&lt;/P&gt;&lt;P&gt;Full points rewarded to u!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Dec 2007 10:01:34 GMT</pubDate>
    <dc:creator>rahul2000</dc:creator>
    <dc:date>2007-12-05T10:01:34Z</dc:date>
    <item>
      <title>field symbol problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065559#M726420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;I am facing a problem wherein i want to modify &amp;lt;FS_DYN_TABLE&amp;gt; from &amp;lt;FS_DYN_TABLE_TEMP&amp;gt;.It is getting modified,i.e the column for which i want it modified is getting modified but remaining values of that corresponding row are not being displayed.&lt;/P&gt;&lt;P&gt;my declaration for above two are as follows:-&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;FS_DYN_TABLE&amp;gt; TYPE STANDARD TABLE,"Dynamic table&lt;/P&gt;&lt;P&gt;&amp;lt;FS_DYN_TABLE_TEMP&amp;gt; TYPE ANY ,.Temporary Dynamic table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My syntax was&lt;/P&gt;&lt;P&gt;MODIFY &amp;lt;FS_DYN_TABLE&amp;gt; FROM &amp;lt;FS_DYN_TABLE_TEMP&amp;gt; INDEX W_INDEX TRANSPORTING PERCN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i give&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY &amp;lt;FS_DYN_TABLE&amp;gt; FROM &amp;lt;FS_DYN_TABLE_TEMP&amp;gt; TRANSPORTING PERCN ,it gives an error saying :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"The specified type has no structure and therefore no component called&lt;/P&gt;&lt;P&gt;"PERCN". component called "PERCN".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to resolve this problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 06:13:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065559#M726420</guid>
      <dc:creator>rahul2000</dc:creator>
      <dc:date>2007-12-05T06:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065560#M726421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's not entirely clear to me what your problem is.  &amp;lt;FS_DYN_TABLE_TEMP&amp;gt; is not a table.  It is a work area/structure with the same structure as a record in &amp;lt;FS_DYN_TABLE&amp;gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess somehow you've set the PERCN field in &amp;lt;FS_DYN_TABLE_TEMP&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
READ TABLE &amp;lt;fs_dyn_table&amp;gt; INTO &amp;lt;fs_dyn_table_temp&amp;gt; INDEX w_index.
...then set the PERCN field of &amp;lt;fs_dyn_table_temp&amp;gt;.
MODIFY &amp;lt;fs_dyn_table&amp;gt; FROM &amp;lt;fs_dyn_table_temp&amp;gt; INDEX w_index.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 09:03:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065560#M726421</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2007-12-05T09:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065561#M726422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Matt,&lt;/P&gt;&lt;P&gt;Thanks a lot.u have got my point exactly.&lt;/P&gt;&lt;P&gt;the only problem here is how do i  set the PERCN field of &amp;lt;fs_dyn_table_temp&amp;gt;.&lt;/P&gt;&lt;P&gt;What is the syntax?&lt;/P&gt;&lt;P&gt;&amp;lt;fs_dyn_table_temp&amp;gt;-percn wil throw me an error.&lt;/P&gt;&lt;P&gt;what to do regarding this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 09:49:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065561#M726422</guid>
      <dc:creator>rahul2000</dc:creator>
      <dc:date>2007-12-05T09:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065562#M726423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Matt,&lt;/P&gt;&lt;P&gt;Thhannks a tooon.&lt;/P&gt;&lt;P&gt;My issue has been resolved.&lt;/P&gt;&lt;P&gt;Actually before modifying i had not read the previous values into TEMP.&lt;/P&gt;&lt;P&gt;So they were getting wiped off..&lt;/P&gt;&lt;P&gt;Now its all in Place.Purfect!!&lt;/P&gt;&lt;P&gt;Full points rewarded to u!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 10:01:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065562#M726423</guid>
      <dc:creator>rahul2000</dc:creator>
      <dc:date>2007-12-05T10:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065563#M726424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Rahul.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One point.  You asked "the only problem here is how do i set the PERCN field of &amp;lt;fs_dyn_table_temp&amp;gt;."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The answer is, for future reference, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS: &amp;lt;l_percn&amp;gt; TYPE ANY. " Or you can specify the type
ASSIGN COMPONENT 'PERCN' OF STRUCTURE &amp;lt;fs_dyn_table_temp&amp;gt; TO &amp;lt;l_percn&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then any changes you make to &amp;lt;l_percn&amp;gt; will also be in &amp;lt;fs_dyn_table_temp&amp;gt;.&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;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 10:14:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065563#M726424</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2007-12-05T10:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065564#M726425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Matt,&lt;/P&gt;&lt;P&gt;Thanks a ton again nd keep posting&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 10:30:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-problem/m-p/3065564#M726425</guid>
      <dc:creator>rahul2000</dc:creator>
      <dc:date>2007-12-05T10:30:02Z</dc:date>
    </item>
  </channel>
</rss>

