<?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: Picking data from a view in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926999#M384534</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure the problem isn't in the first select from BKPF? It looks to me as if that one isn't using any index, while the one against COVP is using a secondary index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Feb 2007 19:48:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-16T19:48:37Z</dc:date>
    <item>
      <title>Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926994#M384529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am picking up Finance data from a table view COVP using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select &amp;lt;field list containing 10 fields&amp;gt; into table &amp;lt;itab&amp;gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i execute this program, the data selection is taking about 15-20 mins or more. (Most of the times it times out!!) How can i fix this? Should i take a join on the two database tables instead of using this view?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 19:01:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926994#M384529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T19:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926995#M384530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Do you require all the data from COEP and COBK tables? If you require then going for this view is OK, otherwise you can write a direct select.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And ofcourse inner joins are little faster compared to views.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 19:12:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926995#M384530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T19:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926996#M384531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're probably not using the index effectively. If you post your code, we might be able to help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 19:16:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926996#M384531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T19:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926997#M384532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is my code: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm first picking from BKPF then from BSEG and finally for all entires in BSEG, I'm taking a few fields from COVP...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* Pick up the header data as per selection screen from BKPF
  SELECT bukrs belnr gjahr blart budat monat
         tcode bvorg waers kursf hwaer
  FROM   bkpf
  INTO   TABLE it_bkpf
  WHERE  bukrs IN s_bukrs
  AND    gjahr IN s_gjahr
  AND    monat IN s_monat
  AND    tcode IN ('CO88', 'KO88', 'KK87')
  AND    awtyp EQ c_ref_pro.            "'AUAK'

* Pick up the corresponding line items from BSEG
  SELECT bukrs belnr gjahr dmbtr wrbtr ktosl
         zuonr hkont matnr werks menge
  FROM   bseg
  INTO   TABLE it_bseg
  FOR ALL ENTRIES IN it_bkpf
  WHERE  bukrs = it_bkpf-bukrs
  AND    belnr = it_bkpf-belnr
  AND    gjahr = it_bkpf-gjahr
  AND    werks IN s_werks
  AND    ktosl = c_tr_key.              "'PRD'

* Convert field BSEG-ZUONR into 14 char prefixed with 'OR'
  LOOP AT it_bseg INTO wa_bseg.

    CALL FUNCTION 'FI_ALPHA_CONVERT'
      EXPORTING
        i_string = wa_bseg-zuonr
      IMPORTING
        e_string = wa_bseg-zuonr.

    CONCATENATE 'OR' wa_bseg-zuonr+6(12) INTO wa_bseg-zuonr2.

    MODIFY it_bseg FROM wa_bseg TRANSPORTING zuonr2.
  ENDLOOP.

* Select details from COVP for each entry in BSEG
  SELECT perio wtgbtr wogbtr mbgbtr objnr gjahr werks matnr
  FROM   covp
  INTO   CORRESPONDING FIELDS OF
  TABLE it_covp
  FOR ALL ENTRIES IN it_bseg
  WHERE  kokrs = c_cont_ar                                  "'0110'
  AND    perio IN s_monat
  AND    gjahr = it_bseg-gjahr
  AND    werks = it_bseg-werks
  AND    objnr = it_bseg-zuonr2
  AND    wrttp = c_actual.              "'4'

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 19:35:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926997#M384532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T19:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926998#M384533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ohh... I just realised that all the fields that I'm picking are from a single table, COEP. Shall i use this table rather than the view? But, even this table is very slow...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 19:41:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926998#M384533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T19:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926999#M384534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure the problem isn't in the first select from BKPF? It looks to me as if that one isn't using any index, while the one against COVP is using a secondary index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 19:48:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1926999#M384534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T19:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927000#M384535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried with the COEP table.. It's still equally slow...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 19:55:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927000#M384535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T19:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927001#M384536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In debug, data from BKPF was coming instanly... It's COVP were the debug times out...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 19:58:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927001#M384536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T19:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927002#M384537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Do one if check?&lt;/P&gt;&lt;P&gt;data: ws_lines type i.&lt;/P&gt;&lt;P&gt;describe table  it_bseg lines ws_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ws_lines &amp;gt; 0.&lt;/P&gt;&lt;P&gt;  select query with for all entries on it_bseg.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&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;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 20:02:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927002#M384537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T20:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927003#M384538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is a good check, but I can see that BSEG does have data... It has 17 lines in my test system... So this won't help my problem...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 20:53:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927003#M384538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T20:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927004#M384539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it_bseg-zuonr2 blank in some of the entries? If so, are there many entries in COVP with a blank OBJNR?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 20:57:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927004#M384539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T20:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927005#M384540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select belnr matnr kstar wkgbtr mbgbtr meinh werks&lt;/P&gt;&lt;P&gt;            from coep into table coep_type_tab&lt;/P&gt;&lt;P&gt;                  where kokrs = c_kokrs&lt;/P&gt;&lt;P&gt;                    and versn = c_versg&lt;/P&gt;&lt;P&gt;                    and perio in s_perio&lt;/P&gt;&lt;P&gt;                    and gjahr in s_gjahr&lt;/P&gt;&lt;P&gt;                    and matnr in s_matnr&lt;/P&gt;&lt;P&gt;                    and werks in s_char&lt;/P&gt;&lt;P&gt;                    and scope = 'PA'&lt;/P&gt;&lt;P&gt;                    and bukrs = c_bukrs&lt;/P&gt;&lt;P&gt;                    and kstar in s_kstar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i would say pass as many from the index combination scope version and the company code are important this reduced the execution time considerabaly for me but even then it does take a lot of time considering the amount of data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 21:16:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927005#M384540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T21:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927006#M384541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;None... It's never blank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 21:33:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927006#M384541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T21:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927007#M384542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;considering u r getting data from FI  -&amp;gt; CO i would pass vrgng as COIN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 21:36:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927007#M384542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T21:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927008#M384543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* Select details from COVP for each entry in BSEG
SELECT perio wtgbtr wogbtr mbgbtr objnr gjahr werks matnr
FROM   covp
INTO   CORRESPONDING FIELDS OF
TABLE it_covp
FOR ALL ENTRIES IN it_bseg
WHERE  objnr = it_bseg-zuonr2
AND    lednr = '0'
AND    kokrs = c_cont_ar                                    "'0110'
AND    perio IN s_monat
AND    gjahr = it_bseg-gjahr
AND    werks = it_bseg-werks
AND    wrttp = c_actual.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I added LEDNR = 0).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 21:46:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927008#M384543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T21:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927009#M384544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That did it... Thanks... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wow! How did you figure that out?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 22:51:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927009#M384544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T22:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927010#M384545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By adding the field LEDNR in the selection and equating it to '0' I get instant output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 23:00:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927010#M384545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T23:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927011#M384546</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;just to let everybody know why: There is an index on the database for COEP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Index COEP~1 &lt;/P&gt;&lt;P&gt;MANDT &lt;/P&gt;&lt;P&gt;LEDNR &lt;/P&gt;&lt;P&gt;OBJNR &lt;/P&gt;&lt;P&gt;GJAHR &lt;/P&gt;&lt;P&gt;WRTTP &lt;/P&gt;&lt;P&gt;VERSN &lt;/P&gt;&lt;P&gt;KSTAR &lt;/P&gt;&lt;P&gt;HRKFT &lt;/P&gt;&lt;P&gt;PERIO &lt;/P&gt;&lt;P&gt;VRGNG &lt;/P&gt;&lt;P&gt;PAROB &lt;/P&gt;&lt;P&gt;USPOB &lt;/P&gt;&lt;P&gt;VBUND &lt;/P&gt;&lt;P&gt;PARGB &lt;/P&gt;&lt;P&gt;BEKNZ &lt;/P&gt;&lt;P&gt;TWAER &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By specifying the (still unused) field lednr the first index key fields LEDNR OBJNR GJAHR give instant access to the required records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hint: In SE11 / SE12 it is always a good idea to have a look at the Database Object: After the field list, all indexes including key fields are listed togehter  - much much much much much better than awful clicking through index button...&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 23:43:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927011#M384546</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-02-16T23:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927012#M384547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Clemens. That was really helpful information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Feb 2007 01:27:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927012#M384547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-17T01:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: Picking data from a view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927013#M384548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, I was a bit confused to start. I looked at index two which starts with OBJNR. But it turns out this doesn't exist in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I looked at index one which has OBJNR as the second field but the first field is LEDNR. I'm pretty sure this is a constant. But you should verify this before betting the farm on it. (It's always 0 in our system.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Feb 2007 20:29:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-data-from-a-view/m-p/1927013#M384548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-18T20:29:19Z</dc:date>
    </item>
  </channel>
</rss>

