<?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: Populating custom table from VBAK in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992904#M404825</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;Nothing wrong with your code if you have a single record that need to be update to ZTABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you need to collect all information from VBAK and update the collected data to ZTABLE then you need to use internal table to store collected information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't want to use ITAB, perhaps you can try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: WA_ITAB LIKE ITAB.

SELECT KUNNR VBELN ERDAT ERZET 
INTO (WA_ITAB-KUNNR, WA_ITAB-VBELN, WA_ITAB-ERDAT,WA_ITAB-ERZET)
FROM VBAK
WHERE VBELN IN S_VEBLN
  AND LIFSK = '27'.

UPDATE ZTABLE FROM WA_ITAB.

ENDSELECT.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Mar 2007 16:50:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-15T16:50:38Z</dc:date>
    <item>
      <title>Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992898#M404819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a custom table ZTABLE (KUNNR, VBELN, ERDAT, ERZET, FLAG). I need to populate it with values from VBAK for all vbak-lifsk = 'Z7'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 16:23:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992898#M404819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T16:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992899#M404820</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;try this:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;first define ur internal table. flag has to be populated according to your requirement before inserting in to database table. or u can modify it after the required processes.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select kunnr vbeln erdat erzet &lt;/P&gt;&lt;P&gt;into corresponding fields of table itab&lt;/P&gt;&lt;P&gt;where lifsk = 'Z7'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;insert ztable from table itab.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**reward if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;madhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 16:29:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992899#M404820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T16:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992900#M404821</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;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES: VBAK, ZTABLE.

SELECT-OPTIONS: S_VBELN FOR VBAK-VBELN.

DATA: BEGIN OF ITAB OCCURS 0,
        KUNNR LIKE VBAK-KUNNR,
        VBELN LIKE VBAK-VBLEN,
        ERDAT LIKE VBAK-ERDAT
        ERZET LIKE VBAK-ERZET
        FLAG LIKE ZTABLE-FLAG.
DATA: END OF ITAB.

DATA: WA_ITAB LIKE ITAB.

SELECT KUNNR VBELN ERDAT ERZET
INTO TABLE ITAB
FROM VBAK
WHERE VBELN IN S_VEBLN
     AND LIFSK = '27'.

LOOP AT ITAB INTO WA_ITAB.
   WA_ITAB-FLAG = 'X'.
   MODIFY ZTABLE FROM WA_ITAB.
ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 16:29:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992900#M404821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T16:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992901#M404822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using my ZTABLE as a storage area itself so why do I need an itab &lt;/P&gt;&lt;P&gt;I was hoping for some syntax like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;update ztable &lt;/P&gt;&lt;P&gt;  set kunnr = vbak-kunnr,&lt;/P&gt;&lt;P&gt;        vbeln = vbak-vbeln .. .. &lt;/P&gt;&lt;P&gt;   where vbak-lifsk = 'z7' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but that doesnt work &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 16:33:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992901#M404822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T16:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992902#M404823</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 do not use internal table ITAB, how are you gonna collect the data from table VBAK and update ZTABLE?&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 16:41:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992902#M404823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T16:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992903#M404824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;update ztable.&lt;/P&gt;&lt;P&gt;set kunnr = vbak-kunnr,&lt;/P&gt;&lt;P&gt;    vbeln = vbak-vbeln,&lt;/P&gt;&lt;P&gt;    erdat = vbak-erdat,&lt;/P&gt;&lt;P&gt;    erzet = vbak-erzet,&lt;/P&gt;&lt;P&gt;    flag  = space.&lt;/P&gt;&lt;P&gt;    where vbak-lifsk = 'Z7'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is wrong with this code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 16:46:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992903#M404824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T16:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992904#M404825</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;Nothing wrong with your code if you have a single record that need to be update to ZTABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you need to collect all information from VBAK and update the collected data to ZTABLE then you need to use internal table to store collected information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't want to use ITAB, perhaps you can try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: WA_ITAB LIKE ITAB.

SELECT KUNNR VBELN ERDAT ERZET 
INTO (WA_ITAB-KUNNR, WA_ITAB-VBELN, WA_ITAB-ERDAT,WA_ITAB-ERZET)
FROM VBAK
WHERE VBELN IN S_VEBLN
  AND LIFSK = '27'.

UPDATE ZTABLE FROM WA_ITAB.

ENDSELECT.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 16:50:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992904#M404825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T16:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992905#M404826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah i do need to collect all information and not just one record&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should I just go ahead and use this then. Why are you using Select-Options&lt;/P&gt;&lt;P&gt;TABLES: VBAK, ZTABLE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: S_VBELN FOR VBAK-VBELN.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;        KUNNR LIKE VBAK-KUNNR,&lt;/P&gt;&lt;P&gt;        VBELN LIKE VBAK-VBLEN,&lt;/P&gt;&lt;P&gt;        ERDAT LIKE VBAK-ERDAT&lt;/P&gt;&lt;P&gt;        ERZET LIKE VBAK-ERZET&lt;/P&gt;&lt;P&gt;        FLAG LIKE ZTABLE-FLAG.&lt;/P&gt;&lt;P&gt;DATA: END OF ITAB.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA: WA_ITAB LIKE ITAB.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SELECT KUNNR VBELN ERDAT ERZET&lt;/P&gt;&lt;P&gt;INTO TABLE ITAB&lt;/P&gt;&lt;P&gt;FROM VBAK&lt;/P&gt;&lt;P&gt;WHERE VBELN IN S_VEBLN&lt;/P&gt;&lt;P&gt;     AND LIFSK = '27'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LOOP AT ITAB INTO WA_ITAB.&lt;/P&gt;&lt;P&gt;   WA_ITAB-FLAG = 'X'.&lt;/P&gt;&lt;P&gt;   MODIFY ZTABLE FROM WA_ITAB.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 18:06:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992905#M404826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T18:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992906#M404827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Megan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why are you using Select-Options?&lt;/P&gt;&lt;P&gt;Just for testing purposes. In case you want to test with couple documents before you do mass update. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 18:14:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992906#M404827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T18:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992907#M404828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT KUNNR, VBELN, ERDAT, ERZET&lt;/P&gt;&lt;P&gt;INTO TABLE ITAB&lt;/P&gt;&lt;P&gt;FROM VBAK&lt;/P&gt;&lt;P&gt;WHERE VBELN IN S_VEBLN&lt;/P&gt;&lt;P&gt;AND LIFSK = 'Z7'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is wrong with this code &lt;/P&gt;&lt;P&gt;It says Comma without preceding colon (after Select ?)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 18:24:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992907#M404828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T18:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992908#M404829</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;Please remove coma in this line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT KUNNR, VBELN, ERDAT, ERZET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should be ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT KUNNR VBELN ERDAT ERZET&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 18:28:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992908#M404829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T18:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992909#M404830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi megan,&lt;/P&gt;&lt;P&gt;   u should not use comma in between the field name in the select statement.&lt;/P&gt;&lt;P&gt;u have to use like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT KUNNR  VBELN ERDAT  ERZET&lt;/P&gt;&lt;P&gt;INTO TABLE ITAB&lt;/P&gt;&lt;P&gt;FROM VBAK&lt;/P&gt;&lt;P&gt;WHERE VBELN IN S_VEBLN&lt;/P&gt;&lt;P&gt;AND LIFSK = 'Z7'.&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;Arun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 18:29:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992909#M404830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T18:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992910#M404831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT KUNNR VBELN ERDAT ERZET&lt;/P&gt;&lt;P&gt;INTO TABLE ITAB&lt;/P&gt;&lt;P&gt;FROM VBAK&lt;/P&gt;&lt;P&gt;WHERE VBELN IN S_VEBLN&lt;/P&gt;&lt;P&gt;AND LIFSK = 'Z7'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error: The IN operator with "S_VEBLN" is followed neither by an internal table&lt;/P&gt;&lt;P&gt;nor by a value list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 18:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992910#M404831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T18:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992911#M404832</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;You had typo error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_VEBLN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it should be ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_VBELN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please cut and paste above my codes ...&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 18:37:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992911#M404832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T18:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992912#M404833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Ferry!! My brain is dead today &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I shall be awarding points to you all once I get this working in a few mins&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 18:43:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992912#M404833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T18:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992913#M404834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ferry &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code works fine. The functional dude wants to now include the delivery block condition in the output determination which will call a transaction that will call this program, so I will have to remove the condition. More on that later. But for now, thank you! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Btw, do you know how output determination would work in this case. Basically whenever delivery block gets activated it will trigger a transaction which should populate my custom table from VBAK. I have still to understand how my program fits into this scheme.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 20:16:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992913#M404834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T20:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Populating custom table from VBAK</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992914#M404835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Megan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may need to work with functional folks on output determination and find the appropriate one. You can use requirement (procedure) to call your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyhow ... please close the thread if your problem solved and reward points for all helpful answers &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 20:22:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/populating-custom-table-from-vbak/m-p/1992914#M404835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T20:22:47Z</dc:date>
    </item>
  </channel>
</rss>

