<?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: Long runtime in CDS View using ASSOCIATION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676691#M2016665</link>
    <description>&lt;P&gt;Hi Enno,&lt;/P&gt;&lt;P&gt;Can you check the SQL CREATE statements of both versions if you see anything special?&lt;/P&gt;&lt;P&gt;Can you replace with LEFT OUTER JOIN and see how this behaves? Usually association gets translated to left join.&lt;/P&gt;&lt;P&gt;Maybe also try a comparison of SQL trace / PlanViz.            &lt;/P&gt;</description>
    <pubDate>Fri, 07 Apr 2023 02:15:40 GMT</pubDate>
    <dc:creator>manuf</dc:creator>
    <dc:date>2023-04-07T02:15:40Z</dc:date>
    <item>
      <title>Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676687#M2016661</link>
      <description>&lt;P&gt;Hey there!&lt;/P&gt;
  &lt;P&gt;I stumbled upon the following performance issue inh CDS views:&lt;/P&gt;
  &lt;P&gt;There is a customizing table ZBTRK_CF which holds Information about customizable fields. The structure is as follows:&lt;/P&gt;
  &lt;UL&gt; 
   &lt;LI&gt;FIELDNAME&lt;/LI&gt; 
   &lt;LI&gt;REF_TABLE&lt;/LI&gt; 
   &lt;LI&gt;REF_FIELD&lt;/LI&gt; 
  &lt;/UL&gt;
  &lt;P&gt;Entries are like:&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;FIELDNAME REF_TABLE REF_FIELD
F01	  T001	    BUKRS
F02	  T002	    SPRAS
F03	  T003	    BLART
F04	  T004	    KTOPL
F05	  T005	    LAND1
&lt;/CODE&gt;&lt;/PRE&gt; For these fields I want to retrieve the description (table DD04T) based on the rollname of REF_TABLE-REF_FIELD (Table DD03L).To achieve this I created the CDS view "ZI_TABFLD_DESCR": 
  &lt;PRE&gt;&lt;CODE&gt;@AbapCatalog.sqlViewName: 'ZI_TABFLD_DESCR'&lt;BR /&gt;@AbapCatalog.compiler.compareFilter: true&lt;BR /&gt;@AbapCatalog.preserveKey: true&lt;BR /&gt;@AccessControl.authorizationCheck: #NOT_REQUIRED&lt;BR /&gt;@EndUserText.label: 'Table field description'&lt;BR /&gt;define view zi_tab_fld_descr as select from dd03l as field&lt;BR /&gt;association [0..1] to dd04t as text&lt;BR /&gt; on text.rollname = field.rollname &lt;BR /&gt; and text.ddlanguage = $session.system_language&lt;BR /&gt;{&lt;BR /&gt; key field.tabname as Tablename,&lt;BR /&gt; key field.fieldname as Fieldname,&lt;BR /&gt; text.ddtext as Description&lt;BR /&gt;}&lt;BR /&gt;where field.fieldname &amp;lt;&amp;gt; '.INCLUDE'&lt;BR /&gt; and text.as4local = 'A'&lt;BR /&gt; and text.as4vers = '0000'&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Then I created the CDS view "ZI_BTRKCF" to select the customizing table and map the description: &lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;@AbapCatalog.sqlViewName: 'ZI_BTRKCF'&lt;BR /&gt;@AbapCatalog.compiler.compareFilter: true&lt;BR /&gt;@AbapCatalog.preserveKey: true&lt;BR /&gt;@AccessControl.authorizationCheck: #NOT_REQUIRED&lt;BR /&gt;@EndUserText.label: 'Custom field test'&lt;BR /&gt;define view zi_btrk_cf as select from zbtrk_cf as cf&lt;BR /&gt;/* description from REF_TABLE and REF_FIELDNAME */ &lt;BR /&gt;association [0..1] to zi_tab_fld_descr as descr &lt;BR /&gt;//inner join zi_tab_fld_descr as descr &lt;BR /&gt; on cf.ref_tabname = descr.Tablename&lt;BR /&gt; and cf.ref_field = descr.Fieldname &lt;BR /&gt;{&lt;BR /&gt; key cf.mandt as Client,&lt;BR /&gt; key cf.fieldname as Fieldname,&lt;BR /&gt; descr.Description as description&lt;BR /&gt;}&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;When I use the definition with &lt;STRONG&gt;ASSOCIATION&lt;/STRONG&gt;, the selection takes ~ &lt;STRONG&gt;50 seconds&lt;/STRONG&gt;. &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2160783-image.png" /&gt;&lt;/P&gt;
  &lt;P&gt;When I use &lt;STRONG&gt;INNER JOIN&lt;/STRONG&gt; then the selection is super fast (2 to 5 micro seconds). &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2160782-image.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Why is the performance using ASSOCIATION that bad?What am I doing wrong?Thanks for any suggestionReagardsEnno&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 12:37:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676687#M2016661</guid>
      <dc:creator>EnnoWulff</dc:creator>
      <dc:date>2023-04-06T12:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676688#M2016662</link>
      <description>&lt;P&gt;I think this "association [0..1]" is your problem:&lt;BR /&gt;Using [1..1] instead of [0..1] in the association definition will enforce a cardinality of one-to-one between the zi_btrk_cf view and the zi_tab_fld_descr view.&lt;BR /&gt;[0..1] means "LEFT JOIN" not "INNER JOIN".&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 13:43:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676688#M2016662</guid>
      <dc:creator>Marian_Zeis</dc:creator>
      <dc:date>2023-04-06T13:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676689#M2016663</link>
      <description>&lt;P&gt;Thanks for your comment,  &lt;SPAN class="mention-scrubbed"&gt;20eed143c19f4b82bc4cf049916102cb&lt;/SPAN&gt; !&lt;/P&gt;&lt;P&gt;I intentionally used [0..1] because I want to have the entry although the definition might be wrong (like wrong table or field name).&lt;/P&gt;&lt;P&gt;Your suggestion does not change anything on the runtime... &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 14:44:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676689#M2016663</guid>
      <dc:creator>EnnoWulff</dc:creator>
      <dc:date>2023-04-06T14:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676690#M2016664</link>
      <description>&lt;P&gt;Could you analyze the database execution plan? What database system is it?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 19:54:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676690#M2016664</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-04-06T19:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676691#M2016665</link>
      <description>&lt;P&gt;Hi Enno,&lt;/P&gt;&lt;P&gt;Can you check the SQL CREATE statements of both versions if you see anything special?&lt;/P&gt;&lt;P&gt;Can you replace with LEFT OUTER JOIN and see how this behaves? Usually association gets translated to left join.&lt;/P&gt;&lt;P&gt;Maybe also try a comparison of SQL trace / PlanViz.            &lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2023 02:15:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676691#M2016665</guid>
      <dc:creator>manuf</dc:creator>
      <dc:date>2023-04-07T02:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676692#M2016666</link>
      <description>&lt;P&gt;Hi  &lt;SPAN class="mention-scrubbed"&gt;enno.wulff&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;In ZI_TABFLD_DESCR move the TEXT restrictions to the ON clause and switch to INNER JOIN - the OUTER JOIN is in ZI_BTRKCF&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;@AbapCatalog.sqlViewName: 'ZI_TABFLD_DESCR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Table field description'
define view zi_tab_fld_descr as select from dd03l as field
association [0..1] to dd04t as text
 on text.rollname = field.rollname 
 and text.ddlanguage = $session.system_language
 and text.as4local = 'A'
 and text.as4vers = '0000'
{
 key field.tabname as Tablename,
 key field.fieldname as Fieldname,
 text[inner].ddtext as Description
}
where field.fieldname &amp;lt;&amp;gt; '.INCLUDE'


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;regards&lt;BR /&gt;Domi&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2023 05:47:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676692#M2016666</guid>
      <dc:creator>Domi</dc:creator>
      <dc:date>2023-04-08T05:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676693#M2016667</link>
      <description>&lt;P&gt;As far as I know you are using MaxDB. And in my opinion it is a flaw in the query optimizer of the MaxDB, because I see a big difference in execution times when using these two statements, which should IMHO be equivalent:&lt;/P&gt;&lt;H2&gt;fast&lt;/H2&gt;&lt;PRE&gt;&lt;CODE&gt;select cft.*, t.ddtext
    from "/AKN/BTRK_CFT" as cft
    join "/AKN/BTRK_CF" as cf 
                        on cf.fieldname = cft.fieldname
                        and cft.langu = 'E'
    left outer join dd03l as d 
                        on cf.ref_tabname = d.tabname
                        and cf.ref_field = d.fieldname
    left outer join dd04t as t 
                        on t.rollname = d.rollname
                        and t.ddlanguage = 'E'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;H2&gt;slow&lt;/H2&gt;&lt;PRE&gt;&lt;CODE&gt;select cft.*, t.description
from "/AKN/BTRK_CFT" as cft
join "/AKN/BTRK_CF" as cf 
                    on cf.fieldname = cft.fieldname
                    and cft.langu = 'E'
left outer join (
    SELECT 
        "FIELD"."TABNAME"   AS "TABLENAME", 
        "FIELD"."FIELDNAME" AS "FIELDNAME", 
        "=A0"."DDTEXT"      AS "DESCRIPTION" 
    FROM               "DD03L" AS "FIELD" 
    LEFT OUTER JOIN    "DD04T" AS "=A0" 
                        ON ( 
                        "=A0"."ROLLNAME"    = "FIELD"."ROLLNAME" AND 
                        "=A0"."DDLANGUAGE"  = 'E' ) 
) as t
                    on t.tablename = cf.ref_tabname 
                    and t.fieldname = cf.ref_field
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Maybe the SAP Note &lt;A href="https://launchpad.support.sap.com/#/notes/1368477"&gt;1368477 - FAQ: SAP MaxDB Queryrewrite - SAP ONE Support Launchpad&lt;/A&gt; might help here? Possible there is just some setting on the database missing.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2023 11:01:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676693#M2016667</guid>
      <dc:creator>pjl</dc:creator>
      <dc:date>2023-04-08T11:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676694#M2016668</link>
      <description>&lt;P&gt;that is correct, if you don't pull up the conditions into the join condition the whole thing is an inner join anyway.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2023 11:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676694#M2016668</guid>
      <dc:creator>pjl</dc:creator>
      <dc:date>2023-04-08T11:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676695#M2016669</link>
      <description>&lt;P&gt;I created the 3 objects in the minisap system NPL with DB SyBase. &lt;/P&gt;&lt;P&gt;And the duration is almost the same. So the definition with Association is not lasting 50 seconds.&lt;/P&gt;&lt;P&gt;(there is no execution plan in the st05 trace)&lt;/P&gt;&lt;P&gt;The source code of the table :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;@EndUserText.label : 'table'&lt;BR /&gt;@AbapCatalog.enhancementCategory : #EXTENSIBLE_ANY&lt;BR /&gt;@AbapCatalog.tableCategory : #TRANSPARENT&lt;BR /&gt;@AbapCatalog.deliveryClass : #A&lt;BR /&gt;@AbapCatalog.dataMaintenance : #ALLOWED&lt;BR /&gt;define table zbtrk_cf {&lt;BR /&gt;  key mandt     : mandt not null;&lt;BR /&gt;  key fieldname : lvc_fname not null;&lt;BR /&gt;  key ref_table : lvc_rtname not null;&lt;BR /&gt;  key ref_field : lvc_rfname not null;&lt;BR /&gt;&lt;BR /&gt;}&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 09 Apr 2023 22:35:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676695#M2016669</guid>
      <dc:creator>chaouki_akir</dc:creator>
      <dc:date>2023-04-09T22:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676696#M2016670</link>
      <description>&lt;P&gt;Thanks for this hint,  &lt;SPAN class="mention-scrubbed"&gt;dominik.bigl2&lt;/SPAN&gt; !&lt;/P&gt;&lt;P&gt;Unfortunately it does not make the association faster.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 11:37:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676696#M2016670</guid>
      <dc:creator>EnnoWulff</dc:creator>
      <dc:date>2023-04-11T11:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676697#M2016671</link>
      <description>&lt;P&gt;Thanks &lt;SPAN class="mention-scrubbed"&gt;pjl&lt;/SPAN&gt; I will check this SAP note ASAP!&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 11:38:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676697#M2016671</guid>
      <dc:creator>EnnoWulff</dc:creator>
      <dc:date>2023-04-11T11:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676698#M2016672</link>
      <description>&lt;P&gt;Hey  &lt;SPAN class="mention-scrubbed"&gt;manuf&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;This is the SQL CREATE statement:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CREATE VIEW "ZI_BTRK_CFTXT" AS SELECT 
  "CF"."MANDT" AS "CLIENT", 
  "CF"."FIELDNAME" AS "FIELDNAME", 
  CASE "=A1"."DESCRIPTION" WHEN ' ' THEN "=A0"."DESCRIPTION" ELSE "=A1"."DESCRIPTION" 
  END AS "DESCRIPTION" 
FROM ( 
  "/AKN/BTRK_CF" "CF" LEFT OUTER JOIN "/AKN/BTRK_CFT" "=A1" ON ( 
    "CF"."FIELDNAME" = "=A1"."FIELDNAME" AND 
    "=A1"."LANGU" = SESSION_CONTEXT( 
      'SAP_LANGU'
    ) AND 
    "CF"."MANDT" = "=A1"."MANDT" 
  ) 
) LEFT OUTER JOIN "ZI_TABFLD_DESCR" "=A0" ON ( 
  "CF"."REF_TABNAME" = "=A0"."TABLENAME" AND 
  "CF"."REF_FIELD" = "=A0"."FIELDNAME" 
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;LEFT OUTER JOIN also takes a long time...&lt;/P&gt;&lt;P&gt;I think as  &lt;SPAN class="mention-scrubbed"&gt;pjl&lt;/SPAN&gt; suggests it might be a bug/ missing parameter in MaxDB&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 11:43:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676698#M2016672</guid>
      <dc:creator>EnnoWulff</dc:creator>
      <dc:date>2023-04-11T11:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676699#M2016673</link>
      <description>&lt;P&gt;Thanks for checking,  &lt;SPAN class="mention-scrubbed"&gt;chaouki.akir&lt;/SPAN&gt; !&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 12:31:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676699#M2016673</guid>
      <dc:creator>EnnoWulff</dc:creator>
      <dc:date>2023-04-11T12:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Long runtime in CDS View using ASSOCIATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676700#M2016674</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt; the DB is MaxDB&lt;/P&gt;&lt;P&gt;This is the execution plan:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Summary:

COSTVALUE              :     732773

  1. Table             : FIELD
     Strategy          : INDEX SCAN
     Additional Info.  : ONLY INDEX ACCESSED
  2. Table             : =A0
     Strategy          : JOIN VIA MULTIPLE KEY COLUMNS
     Additional Info.  :      NO TEMPORARY RESULTS CREATED
  3. Table             : CF
     Strategy          : RANGE CONDITION FOR KEY
  4. Table             : INTERNAL.TEMPORARY RESULT
     Strategy          : JOIN VIA RANGE OF MULTIPLE KEY COLUMNS
     Additional Info.  : TABLE TEMPORARY SORTED

==========================================================

Details:

COSTVALUE              :     732773
RESULT IS COPIED

  1. Table             : FIELD
     PAGECOUNT         :     450426
     Strategy          : INDEX SCAN
     Additional Info.  : ONLY INDEX ACCESSED
     Column or Index   : DD03L^2

  2. Table             : =A0
     PAGECOUNT         :      46562
     Strategy          : JOIN VIA MULTIPLE KEY COLUMNS
     Additional Info.  :      NO TEMPORARY RESULTS CREATED
     Columns           : ROLLNAME
                         DDLANGUAGE
                         AS4LOCAL
                         AS4VERS

  3. Table             : CF
     PAGECOUNT         :          1
     Strategy          : RANGE CONDITION FOR KEY
     Column            : MANDT

  4. Table             : INTERNAL.TEMPORARY RESULT
     PAGECOUNT         :          1
     Strategy          : JOIN VIA RANGE OF MULTIPLE KEY COLUMNS
     Additional Info.  : TABLE TEMPORARY SORTED
     Columns           : TABLENAME
                         FIELDNAME
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Apr 2023 14:53:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-runtime-in-cds-view-using-association/m-p/12676700#M2016674</guid>
      <dc:creator>EnnoWulff</dc:creator>
      <dc:date>2023-04-11T14:53:56Z</dc:date>
    </item>
  </channel>
</rss>

