<?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: internal table shows '*' values... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301346#M1222599</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there is no problem with the table field. both tables have the same structure so dont worry abt values....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 07 Mar 2009 10:09:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-07T10:09:53Z</dc:date>
    <item>
      <title>internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301336#M1222589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im doing one report in which after using at new conditions the internal table shows ********** values like this in some of fileds ....&lt;/P&gt;&lt;P&gt;plzzz help me out to solve this problem...&lt;/P&gt;&lt;P&gt;thank uuuuu......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 09:33:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301336#M1222589</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-07T09:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301337#M1222590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If You are using AT NEW  Control Break statement all the fields on the right of the specified table&lt;/P&gt;&lt;P&gt;will appear as *(for Char) and space(for Numeric).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So either Get the Value of sy-tabix for AT NEW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or Get the row value into a work area everytime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or USE alternate to At NEW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Itab has three Fields F1,F2,F3.
At new is on F3 Say.

Data:W_f3 like Itab-F3
sort Itab by F3.

Loop at itab.
If  W_f3 Ne Itab-F3.                    " Similar to AT NEW
Write : f1,f2,f3.
else.
Write:f1,f2.
endif.
W_f3 = Itab-F3.
Endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gurpreet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 09:38:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301337#M1222590</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-07T09:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301338#M1222591</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 at new, then * is printed coz the field on which you use at new command contains some other field with multiple entries. And if the row is printed once (for field used in at new) then * is printed for the other field value.&lt;/P&gt;&lt;P&gt;Example:-&lt;/P&gt;&lt;P&gt;field1  field2&lt;/P&gt;&lt;P&gt;10      2&lt;/P&gt;&lt;P&gt;10      3&lt;/P&gt;&lt;P&gt;10      4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you print simply then it will the same the data in specified as above.&lt;/P&gt;&lt;P&gt;But if using AT NEW, if only one row is printed, then it will print as:&lt;/P&gt;&lt;P&gt;field1  field2&lt;/P&gt;&lt;P&gt;10      *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;So make sure that you sort the internal table before using AT NEW command&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you get it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 09:42:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301338#M1222591</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-07T09:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301339#M1222592</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;use sort on that field and read it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sort itab by field.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;read table itab1 with key field = itab-field.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 09:42:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301339#M1222592</guid>
      <dc:creator>former_member203501</dc:creator>
      <dc:date>2009-03-07T09:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301340#M1222593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; When you use at new, then * is printed coz the field on which you use at new command contains some other field with multiple entries. And if the row is printed once (for field used in at new) then * is printed for the other field value.&lt;/P&gt;&lt;P&gt;&amp;gt; Example:-&lt;/P&gt;&lt;P&gt;&amp;gt; field1  field2&lt;/P&gt;&lt;P&gt;&amp;gt; 10      2&lt;/P&gt;&lt;P&gt;&amp;gt; 10      3&lt;/P&gt;&lt;P&gt;&amp;gt; 10      4&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; If you print simply then it will the same the data in specified as above.&lt;/P&gt;&lt;P&gt;&amp;gt; But if using AT NEW, if only one row is printed, then it will print as:&lt;/P&gt;&lt;P&gt;&amp;gt; field1  field2&lt;/P&gt;&lt;P&gt;&amp;gt; 10      *&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;STRONG&gt;So make sure that you sort the internal table before using AT NEW command&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Hope you get it.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Regards,&lt;/P&gt;&lt;P&gt;&amp;gt; Tarun&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is already sorted.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 09:51:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301340#M1222593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-07T09:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301341#M1222594</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;Can you please paste your code and internal table data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 09:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301341#M1222594</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-07T09:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301342#M1222595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i dont remember exactly but i think i have tried &lt;/P&gt;&lt;P&gt;Move itab1 to itab2.&lt;/P&gt;&lt;P&gt;and it worked but i dont remember along with this what i have done..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:00:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301342#M1222595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-07T10:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301343#M1222596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Can you please paste your code and internal table data.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Regards,&lt;/P&gt;&lt;P&gt;&amp;gt; Tarun&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab1.&lt;/P&gt;&lt;P&gt;at end of vbeln.&lt;/P&gt;&lt;P&gt;   SUM.&lt;/P&gt;&lt;P&gt;APPEND itab1 TO itab3.&lt;/P&gt;&lt;P&gt; CLEAR itab3.&lt;/P&gt;&lt;P&gt;    ENDAT.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:01:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301343#M1222596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-07T10:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301344#M1222597</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 problem with this code, and&lt;/P&gt;&lt;P&gt;what values is it appending to itab3?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Tarun Gambhir on Mar 7, 2009 3:35 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:02:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301344#M1222597</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-07T10:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301345#M1222598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; loop at itab1.&lt;/P&gt;&lt;P&gt;&amp;gt; at end of vbeln.&lt;/P&gt;&lt;P&gt;&amp;gt;    SUM.&lt;/P&gt;&lt;P&gt;&amp;gt; APPEND itab1 TO itab3.  &lt;/P&gt;&lt;P&gt;&amp;gt;  CLEAR itab3.&lt;/P&gt;&lt;P&gt;&amp;gt;     ENDAT.&lt;/P&gt;&lt;P&gt;&amp;gt; endloop.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; check in debugging the value of itab1 inside the at end of... endat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="16" __jive_macro_name="size"&gt;кu03B1ятu03B9к&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kartik tarla on Mar 7, 2009 3:35 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:04:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301345#M1222598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-07T10:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301346#M1222599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there is no problem with the table field. both tables have the same structure so dont worry abt values....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:09:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301346#M1222599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-07T10:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301347#M1222600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;gt; &amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &amp;gt; loop at itab1.&lt;/P&gt;&lt;P&gt;&amp;gt; &amp;gt; at end of vbeln.&lt;/P&gt;&lt;P&gt;&amp;gt; &amp;gt;    SUM.&lt;/P&gt;&lt;P&gt;&amp;gt; &amp;gt; APPEND itab1 TO itab3.  &lt;/P&gt;&lt;P&gt;&amp;gt; &amp;gt;  CLEAR itab3.&lt;/P&gt;&lt;P&gt;&amp;gt; &amp;gt;     ENDAT.&lt;/P&gt;&lt;P&gt;&amp;gt; &amp;gt; endloop.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;  check in debugging the value of itab1 inside the at end of... endat&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;SPAN __default_attr="16" __jive_macro_name="size"&gt;кu03B1ятu03B9к&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Edited by: kartik tarla on Mar 7, 2009 3:35 PM&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when it goes into at end of , some values becomes *********&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:15:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301347#M1222600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-07T10:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301348#M1222601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use sy-tabix value at 'AT END'.Try to use READ TABLE ITAB1 into ITAB3 INDEX SY-TABIX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gurpreet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:19:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301348#M1222601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-07T10:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301349#M1222602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,  Nilesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBELN Must be on the LEFT Most side other wise it show all the value as * which appear on the left side of VBELN, Hope will help you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301349#M1222602</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-03-07T10:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301350#M1222603</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;Say you have data in internal table as:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EBELN EBELP MATNR MENGE&lt;/P&gt;&lt;P&gt;100001 00010    MAT1    20&lt;/P&gt;&lt;P&gt;100001 00020    MAT2    30&lt;/P&gt;&lt;P&gt;100001 00030    MAT1    40&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you use at end of ebeln and use SUM, then it will sum the field MENGE for a group of EBELN and inside this at end..endat, you will have EBELP = ***** and MATNR = ****.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you understand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:19:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301350#M1222603</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-07T10:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301351#M1222604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Say you have data in internal table as:-&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; EBELN EBELP MATNR MENGE&lt;/P&gt;&lt;P&gt;&amp;gt; 100001 00010    MAT1    20&lt;/P&gt;&lt;P&gt;&amp;gt; 100001 00020    MAT2    30&lt;/P&gt;&lt;P&gt;&amp;gt; 100001 00030    MAT1    40&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Now if you use at end of ebeln and use SUM, then it will sum the field MENGE for a group of EBELN and inside this at end..endat, you will have EBELP = ***** and MATNR = ****.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Hope you understand.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Regards,&lt;/P&gt;&lt;P&gt;&amp;gt; Tarun&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so wats the soltion for this...????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:21:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301351#M1222604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-07T10:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301352#M1222605</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;Actually I am not able to understand your requirement, that why are you moving data from itab1 to itab3 in &lt;STRONG&gt;at end...endat&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:22:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301352#M1222605</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-07T10:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301353#M1222606</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;Define a WA like you internal table and just before going to AT END of assign the values to that WA and than you will find all values present in the AT END BODY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Reply if any Issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:23:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301353#M1222606</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-03-07T10:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301354#M1222607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Actually I am not able to understand your requirement, that why are you moving data from itab1 to itab3 in &lt;STRONG&gt;at end...endat&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Can you explain.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Regards,&lt;/P&gt;&lt;P&gt;&amp;gt; Tarun&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bcoz it has all item data and i want only the sum of all the item data's gross value. &lt;/P&gt;&lt;P&gt;now i hope u'll solve my problem..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:26:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301354#M1222607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-07T10:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: internal table shows '*' values...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301355#M1222608</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;In that case try using &lt;STRONG&gt;AT END OF...ENDAT&lt;/STRONG&gt; with two fields i.e, order and item and then calculate sum and move data to another internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2009 10:29:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-shows-values/m-p/5301355#M1222608</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-07T10:29:00Z</dc:date>
    </item>
  </channel>
</rss>

