<?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: Inserting fields from 1 internal table into another internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059627#M91489</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change you code as following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; LOOP AT WTAB.
&amp;lt;b&amp;gt;move wtab-budat to itab-budat.&amp;lt;/b&amp;gt;
MODIFY ITAB TRANSPORTING BUDAT
WHERE EBELN = WTAB-EBELN AND
EBELP = WTAB-EBELP.
ENDLOOP &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Nov 2005 03:14:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-11-24T03:14:57Z</dc:date>
    <item>
      <title>Inserting fields from 1 internal table into another internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059626#M91488</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;I just started my first job and i'm asked to do ABAP. I've been assigned to develop my first ever ABAP program with no prior experience and manuals. I've been relying on the F1 key entirely. I hope i am doing fine. Anyway, my program has the following criteria:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) to insert the Actual Delivery Date (BUDAT) from the WTAB internal table into the ITAB internal table and make it appear in the report. Have been unsuccessful in this matter. Tried LOOP AT WTAB, MODIFY ITAB ..., ENDLOOP but for some reason, only zeros appear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what i have done so far:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZLPUPO100 NO STANDARD PAGE HEADING LINE-SIZE 86.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: EKKO,&lt;/P&gt;&lt;P&gt;        EKPO,&lt;/P&gt;&lt;P&gt;        EKBE,&lt;/P&gt;&lt;P&gt;        EKET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;      EBELN LIKE EKKO-EBELN,  "PO Number&lt;/P&gt;&lt;P&gt;      EBELP LIKE EKPO-EBELP,  "Item Number&lt;/P&gt;&lt;P&gt;      EINDT LIKE EKET-EINDT,  "Delivery Date in PO&lt;/P&gt;&lt;P&gt;      BUDAT LIKE EKBE-BUDAT,  "Actual Delivery Date&lt;/P&gt;&lt;P&gt;      END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF WTAB OCCURS 0,&lt;/P&gt;&lt;P&gt;      EBELN LIKE EKBE-EBELN,  "PO Number&lt;/P&gt;&lt;P&gt;      EBELP LIKE EKBE-EBELP,  "Item Number&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     EINDT LIKE EKET-EINDT,  "Delivery Date in PO&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      BUDAT LIKE EKBE-BUDAT,  "Actual Delivery Date&lt;/P&gt;&lt;P&gt;      END OF WTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;    SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:&lt;/P&gt;&lt;P&gt;  I_WERKS FOR EKPO-WERKS,  "PLANT&lt;/P&gt;&lt;P&gt;  I_BUKRS FOR EKKO-BUKRS,  "COMPANY CODE&lt;/P&gt;&lt;P&gt;  I_EBELN FOR EKKO-EBELN,  "PO NUMBER&lt;/P&gt;&lt;P&gt;  I_LIFNR FOR EKKO-LIFNR,  "VENDOR NUMBER&lt;/P&gt;&lt;P&gt;  I_MATNR FOR EKPO-MATNR,  "MATERIAL NUMBER&lt;/P&gt;&lt;P&gt;  I_BEDAT FOR EKKO-BEDAT.  "PO DATE&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK 2 WITH FRAME TITLE TEXT-002.&lt;/P&gt;&lt;P&gt;PARAMETERS:  P_ONET RADIOBUTTON GROUP RFMT,     "ON-TIME DELIVERY&lt;/P&gt;&lt;P&gt;             P_ODUE RADIOBUTTON GROUP RFMT,     "OVERDUE&lt;/P&gt;&lt;P&gt;             P_ALLP RADIOBUTTON GROUP RFMT,     "BOTH (SORT BY PO NO.)&lt;/P&gt;&lt;P&gt;             P_ALLC RADIOBUTTON GROUP RFMT.     "BOTH (SORT BY CATEGORY)&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;    START-OF-SELECTION&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  PERFORM SELECT_DATA.&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;    SELECT_DATA&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM SELECT_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--&amp;gt; IF ON-TIME DELIVERY IS SELECTED&lt;/P&gt;&lt;P&gt;IF P_ONET EQ 'X'.&lt;/P&gt;&lt;P&gt;   ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--&amp;gt; IF OVERDUE DELIVERY IS SELECTED&lt;/P&gt;&lt;P&gt;ELSEIF P_ODUE EQ 'X'.&lt;/P&gt;&lt;P&gt;   ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--&amp;gt; IF BOTH IS SELECTED, SORT BY PO NUMBER&lt;/P&gt;&lt;P&gt;ELSEIF P_ALLP EQ 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT A&lt;SUB&gt;EBELN B&lt;/SUB&gt;EBELP C~EINDT&lt;/P&gt;&lt;P&gt;        INTO CORRESPONDING FIELDS OF TABLE ITAB&lt;/P&gt;&lt;P&gt;        FROM ( EKKO AS A&lt;/P&gt;&lt;P&gt;               INNER JOIN EKPO AS B&lt;/P&gt;&lt;P&gt;                 ON B&lt;SUB&gt;EBELN = A&lt;/SUB&gt;EBELN&lt;/P&gt;&lt;P&gt;               INNER JOIN EKET AS C&lt;/P&gt;&lt;P&gt;                 ON C&lt;SUB&gt;EBELN = B&lt;/SUB&gt;EBELN AND&lt;/P&gt;&lt;P&gt;                    C&lt;SUB&gt;EBELP = B&lt;/SUB&gt;EBELP AND&lt;/P&gt;&lt;P&gt;                    C~ETENR = '1')&lt;/P&gt;&lt;P&gt;        WHERE B~WERKS IN I_WERKS AND&lt;/P&gt;&lt;P&gt;              B~LOEKZ = ' ' AND&lt;/P&gt;&lt;P&gt;              A~BUKRS IN I_BUKRS AND&lt;/P&gt;&lt;P&gt;              A~BSTYP = 'F' AND&lt;/P&gt;&lt;P&gt;              A~EBELN IN I_EBELN AND&lt;/P&gt;&lt;P&gt;              A~LIFNR IN I_LIFNR AND&lt;/P&gt;&lt;P&gt;              B~MATNR IN I_MATNR AND&lt;/P&gt;&lt;P&gt;              A~BEDAT IN I_BEDAT&lt;/P&gt;&lt;P&gt;        ORDER BY A&lt;SUB&gt;EBELN B&lt;/SUB&gt;EBELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE ADJACENT DUPLICATES FROM ITAB COMPARING ALL FIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT EBELN EBELP BUDAT&lt;/P&gt;&lt;P&gt;  INTO CORRESPONDING FIELDS OF TABLE WTAB&lt;/P&gt;&lt;P&gt;  FROM EKBE&lt;/P&gt;&lt;P&gt;  WHERE EBELN IN I_EBELN AND&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       EBELP = ITAB-EBELP AND&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        VGABE = '1' AND&lt;/P&gt;&lt;P&gt;        BEWTP = 'E'&lt;/P&gt;&lt;P&gt;  ORDER BY EBELN EBELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FORMAT COLOR COL_POSITIVE.&lt;/P&gt;&lt;P&gt;  ULINE.&lt;/P&gt;&lt;P&gt;  WRITE:     '|', 5 'PO No.',&lt;/P&gt;&lt;P&gt;          14 '|', 16 'PO Item No.',&lt;/P&gt;&lt;P&gt;          28 '|', 'PO Delivery Date',&lt;/P&gt;&lt;P&gt;          47 '|', 'Actual Delivery',&lt;/P&gt;&lt;P&gt;          65 '|', 'Overdue Days (+/-)',&lt;/P&gt;&lt;P&gt;          86 '|'.&lt;/P&gt;&lt;P&gt;  FORMAT COLOR COL-POSITIVE OFF.&lt;/P&gt;&lt;P&gt;  ULINE.&lt;/P&gt;&lt;P&gt;  NEW-LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*---&amp;gt;&amp;gt; This is the part that is making me confused&lt;/P&gt;&lt;P&gt;LOOP AT WTAB.&lt;/P&gt;&lt;P&gt;  MODIFY ITAB TRANSPORTING BUDAT&lt;/P&gt;&lt;P&gt;    WHERE EBELN = WTAB-EBELN AND&lt;/P&gt;&lt;P&gt;          EBELP = WTAB-EBELP.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;  WRITE:     '|', 3 ITAB-EBELN,  "PO NO&lt;/P&gt;&lt;P&gt;          14 '|', 19 ITAB-EBELP,  "PO ITEM NO&lt;/P&gt;&lt;P&gt;          28 '|', 33 ITAB-EINDT,  "PO DELIVERY DATE&lt;/P&gt;&lt;P&gt;          47 '|', 51 ITAB-BUDAT,  "ACTUAL DELIVERY DATE&lt;/P&gt;&lt;P&gt;          65 '|',&lt;/P&gt;&lt;P&gt;          86 '|'.&lt;/P&gt;&lt;P&gt;  NEW-LINE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;  ULINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--&amp;gt; IF BOTH IS SELECTED, SORT BY CATEGORY (+/-)&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;   ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any hints you could provide? i need this asap, as i have to deliver by the end of the week, i can't fail in my first task assigned to me, i'm still in my job probation period...eeek...i've read the forums on merging internal tables and i still don't know where i've gone wrong...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 02:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059626#M91488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T02:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting fields from 1 internal table into another internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059627#M91489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change you code as following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; LOOP AT WTAB.
&amp;lt;b&amp;gt;move wtab-budat to itab-budat.&amp;lt;/b&amp;gt;
MODIFY ITAB TRANSPORTING BUDAT
WHERE EBELN = WTAB-EBELN AND
EBELP = WTAB-EBELP.
ENDLOOP &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 03:14:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059627#M91489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T03:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting fields from 1 internal table into another internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059628#M91490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bernard - is your requirement to insert the delivery date into the internal table or do you have technical specs that say use EKBE-BUDAT. The reason I ask is that I don't think that EKBE-BUDAT is necessarily the delivery date. It's the posting date of the GR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, a PO item may have more than one GR. Do you have any requirements on how to handle this case. If not, you can go to your functional/business person. (It might get you a bit more time).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 03:57:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059628#M91490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T03:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting fields from 1 internal table into another internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059629#M91491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you so much!!! i can't believe it, all it took was a single line of code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 04:09:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059629#M91491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T04:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting fields from 1 internal table into another internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059630#M91492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, using EKBE-BUDAT is part of the spec documentation that was given to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now comes another part, i have to figure out a way to calculate the overdue days (which i have declared as V_OVERDUE) by using the dates in Actual Delivery Date (ITAB-BUDAT) - PO Delivery Date (ITAB-EINDT).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But at the same time, should the Actual Delivery Date (ITAB-BUDAT) appear as 00.00.0000 (no value), the output in V_OVERDUE should be blank (or '-').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that i can't directly use ITAB-BUDAT - ITAB-EINDT like i would in Microsoft SQL, because if i did that, all sort of funny things would appear in the output. Any comments on this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 04:46:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059630#M91492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T04:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting fields from 1 internal table into another internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059631#M91493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is how you can achieve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF NOT itab-budat IS INITIAL.
*-- BUDAT has some date
  v_overdue = itab-budat - iatb-eindt.
ELSE.
*-- BUDAT has no proper date
  clear v_overdue.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your v_overdue has to be of type I(=integer).&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;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 04:52:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059631#M91493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T04:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting fields from 1 internal table into another internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059632#M91494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you, srinivas...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i actually managed to do it on my own, but after reading your codes, i used yours instead, its straight to the point...i did mine by declaring another internal table, which didn't really make alot of sense doing so when i come to think about it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;right now i am attempting to only display the results of V_OVERDUE that have negative &lt;SPAN __jive_emoticon_name="minus"&gt;&lt;/SPAN&gt; values when the user selects the P_ONET radiobutton...anybody can tell me which is a better approach between using FIND or SEARCH on the V_OVERDUE field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;been reading the F1 documentation, so i'll start trying out on using SEARCH first...thanks for everyone's help!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 06:06:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059632#M91494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T06:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Inserting fields from 1 internal table into another internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059633#M91495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oops, sorry...managed to figured it out...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a simple IF V_OVERDUE LE 0, then delete the ITAB would have done the trick...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;don't know why i was looking at FIND and SEARCH...my biggie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 06:32:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/inserting-fields-from-1-internal-table-into-another-internal-table/m-p/1059633#M91495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T06:32:46Z</dc:date>
    </item>
  </channel>
</rss>

