<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360230#M806263</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;By using the Append statement i can put my word into that internal table but there are so many fields in that internal table how to specify that this variable should be go to that particular field of that table??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; comp name , comp id, emp name, emp id &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now my internal table is having the data as shown above and i tried to code like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append 'NANDA' to emp. " internal table for emp details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i checked in debugging the value nanda is going to comp name where i want to show this in emp name how to change this??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Feb 2008 17:16:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-04T17:16:50Z</dc:date>
    <item>
      <title>Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360223#M806256</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;I'm having data in myinternal table. Now i want to hard code my internal table as what ever may be the data it shows in output before all the entries it should show an entry as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;empname                empid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nanda                     2008&lt;/P&gt;&lt;P&gt;raja                         2009&lt;/P&gt;&lt;P&gt;samrat                    2010&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want output like this in which nanda is the value hard coded by me and the remaining values are fetched by select statements it self. Now i'm getting the data starting from raja but i want an extra name to be added how to perform this??&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;Nanda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 16:41:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360223#M806256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T16:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360224#M806257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Plz reply me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 16:46:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360224#M806257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T16:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360225#M806258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi nanda,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is easy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before you get data into your itab do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-empname = 'NANDA'.&lt;/P&gt;&lt;P&gt;itab-empno = '2008'.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will solve your problem if your itab has a header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not you'll have to get the data into a work area.&lt;/P&gt;&lt;P&gt;and then append it to your itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append work-area to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;~goldie.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 16:58:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360225#M806258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T16:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360226#M806259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chk this code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT ztest_123.

DATA: BEGIN OF itab OCCURS 0,
        ename TYPE char30,
        eid   TYPE i,
      END OF itab.

DATA: wa_tab  LIKE LINE OF itab,
      wa_tab2 LIKE LINE OF itab.
DATA: gv_lines TYPE i.

CLEAR wa_tab.
wa_tab-ename = 'RAJA'.
wa_tab-eid = 2009.
APPEND wa_tab TO itab.

CLEAR wa_tab.
wa_tab-ename = 'SAMRAT'.
wa_tab-eid = 2010.
APPEND wa_tab TO itab.

CLEAR wa_tab.
LOOP AT itab INTO wa_tab.
  WRITE:/ wa_tab-ename,
          wa_tab-eid.
ENDLOOP.

WRITE:/ '*******************************************'.

CLEAR wa_tab.
wa_tab-ename = 'NANDA'.
wa_tab-eid = 2008.
APPEND wa_tab TO itab.

DESCRIBE TABLE itab LINES gv_lines.

CLEAR wa_tab.
LOOP AT itab INTO wa_tab.
  CLEAR wa_tab2.
  DO 1 TIMES.
    READ TABLE itab INTO wa_tab2 INDEX gv_lines.
    IF sy-subrc = 0.

      WRITE:/ wa_tab2-ename,
              wa_tab2-eid.
      DELETE itab INDEX gv_lines.
    ENDIF.
  ENDDO.
  WRITE:/ wa_tab-ename,
          wa_tab-eid.
ENDLOOP.

WRITE:/ '*******************************************'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepu.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 16:59:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360226#M806259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T16:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360227#M806260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Goldie&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur reply. If i want to declare as a value. How can i declare??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example i have declared in my internal table as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: emp like zemp occurs 0 with header line,&lt;/P&gt;&lt;P&gt;        emp_name like zemp_det-empname,&lt;/P&gt;&lt;P&gt;       emp_id       like zemp_det-empid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to add a new value as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: emp like zemp occurs 0 with header line,&lt;/P&gt;&lt;P&gt;        emp_name like zemp_det-empname,&lt;/P&gt;&lt;P&gt;       emp_id       like zemp_det-empid,&lt;/P&gt;&lt;P&gt;      name value 'NANDA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i have to append or inser this value to my internal table how can i do ???&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;Nanda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 17:04:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360227#M806260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T17:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360228#M806261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi deepu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur reply. If i want to declare as a value or a character. How can i declare??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example i have declared in my internal table as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: emp like zemp occurs 0 with header line,&lt;/P&gt;&lt;P&gt;emp_name like zemp_det-empname,&lt;/P&gt;&lt;P&gt;emp_id like zemp_det-empid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to add a new value as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: emp like zemp occurs 0 with header line,&lt;/P&gt;&lt;P&gt;emp_name like zemp_det-empname,&lt;/P&gt;&lt;P&gt;emp_id like zemp_det-empid,&lt;/P&gt;&lt;P&gt;name value 'NANDA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i have to append or insert this value to my internal table how can i do ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nanda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 17:06:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360228#M806261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T17:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360229#M806262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chk this code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT ztest_123.

DATA: BEGIN OF itab OCCURS 0,
        ename TYPE char30,
        eid   TYPE i,
        add_value TYPE char30 VALUE 'SAP',
      END OF itab.

DATA: wa_tab  LIKE LINE OF itab,
      wa_tab2 LIKE LINE OF itab.
DATA: gv_lines TYPE i.

CLEAR wa_tab.
wa_tab-ename = 'RAJA'.
wa_tab-eid = 2009.
wa_tab-add_value  = 'SAP'.
APPEND wa_tab TO itab.

CLEAR wa_tab.
wa_tab-ename = 'SAMRAT'.
wa_tab-eid = 2010.
wa_tab-add_value  = 'SAP'.
APPEND wa_tab TO itab.

CLEAR wa_tab.
LOOP AT itab INTO wa_tab.
  WRITE:/ wa_tab-ename,
          wa_tab-eid,
          wa_tab-add_value.
ENDLOOP.

WRITE:/ '***********************************************'.

CLEAR wa_tab.
wa_tab-ename = 'NANDA'.
wa_tab-eid = 2008.
wa_tab-add_value  = 'SAP'.
APPEND wa_tab TO itab.

DESCRIBE TABLE itab LINES gv_lines.

CLEAR wa_tab.
LOOP AT itab INTO wa_tab.
  CLEAR wa_tab2.
  DO 1 TIMES.
    READ TABLE itab INTO wa_tab2 INDEX gv_lines.
    IF sy-subrc = 0.

      WRITE:/ wa_tab2-ename,
              wa_tab2-eid,
              wa_tab2-add_value.
      DELETE itab INDEX gv_lines.
    ENDIF.
  ENDDO.
  WRITE:/ wa_tab-ename,
          wa_tab-eid,
          wa_tab-add_value.
ENDLOOP.

WRITE:/ '***********************************************'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepu.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 17:11:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360229#M806262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T17:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360230#M806263</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;By using the Append statement i can put my word into that internal table but there are so many fields in that internal table how to specify that this variable should be go to that particular field of that table??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; comp name , comp id, emp name, emp id &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now my internal table is having the data as shown above and i tried to code like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append 'NANDA' to emp. " internal table for emp details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i checked in debugging the value nanda is going to comp name where i want to show this in emp name how to change this??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 17:16:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360230#M806263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T17:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360231#M806264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nanda,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the best way is to get your data into a workarea.&lt;/P&gt;&lt;P&gt;check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: wa_line like line of itab.
.
.
wa_line-empname = 'NANDA'. " or the variable containing 'NANDA'
wa_line-empid = '2008'. "or the variable containig '2008' 
Append wa_line to itab.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This code will append a record with blank compname, compid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or else you can modify your itab for a particular record using this statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; MODIFY TABLE itab from wa_line EXPORTING FIELDS empname empid 
      WHERE compname = 'MYCOMPANY'. "whatever record you want to modify&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This code only moves the fields empname and empid for an existing record.&lt;/P&gt;&lt;P&gt;You can exclude the WHERE clause if you like.&lt;/P&gt;&lt;P&gt;the second code you can do it even after entering all the data into your itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the first code you have to do it before entering data into itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~goldie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 17:45:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360231#M806264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T17:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360232#M806265</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;I got the solution for the above one. But can u solve my one doubt i'll surely assign points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 4 fields in an internal table. Lets suppose&lt;/P&gt;&lt;P&gt;emp-name, emp-id, comp-name, comp-id. Now in my case the company id is same for all the employees but it is repeating for all employees. So i want to keep it for the top most employee and i want to delete all other comp-id. How to perform this???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 17:48:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360232#M806265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T17:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360233#M806266</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;If you want to display in ALV , you can do that...&lt;/P&gt;&lt;P&gt;You can build a SORT table in ALV and do that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But internal table is a temporary one , so why do u want that in internal table, do u want that in output&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 18:03:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360233#M806266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T18:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360234#M806267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes i want to display that in output. I want only  1st field to be displayed and the remaining should be null at the same time the remaining data should also come&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 18:08:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360234#M806267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T18:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360235#M806268</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;If i want to insert a new line at the first row but different fields how can i add that ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u consider my previous one we can see that i want to add a line at the begin of itab so i added a line by using append.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now my output is coming like this&lt;/P&gt;&lt;P&gt;emp-name     emp-no    comp-name   comp-id&lt;/P&gt;&lt;P&gt;Nanda  &lt;/P&gt;&lt;P&gt;and the data follows by the remaining one so if i want a new word to be added for the 1st line but different field. How can it be possible??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 18:14:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360235#M806268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T18:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360236#M806269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;get the whole record into a work area.&lt;/P&gt;&lt;P&gt;and append the whole thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you just want to display you can use the control statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT NEW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then display it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goldie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 18:19:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360236#M806269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T18:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360237#M806270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sample coding plz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 18:31:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360237#M806270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T18:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360238#M806271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
wa-empname = 'NANDA'.
wa-empno = '2008'.

modify table itab from wa transporting empno WHERE empname = 'NANDA'. &lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 18:42:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3360238#M806271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T18:42:29Z</dc:date>
    </item>
  </channel>
</rss>

