<?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 LDB (Logical Database) results in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-logical-database-results/m-p/6617146#M1439900</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;I have an requirement where I have get the selection screen fields list of logical database(LDB) in my custom program. &lt;/P&gt;&lt;P&gt;Also after getting the selection screen fields, whatever criteria is filled in those, once again i have to take those inputs and get the  results by executing the LDB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is anyone can help me...... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Munish Garg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Feb 2010 13:25:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-05T13:25:13Z</dc:date>
    <item>
      <title>LDB (Logical Database) results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-logical-database-results/m-p/6617146#M1439900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;I have an requirement where I have get the selection screen fields list of logical database(LDB) in my custom program. &lt;/P&gt;&lt;P&gt;Also after getting the selection screen fields, whatever criteria is filled in those, once again i have to take those inputs and get the  results by executing the LDB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is anyone can help me...... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Munish Garg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2010 13:25:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-logical-database-results/m-p/6617146#M1439900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-05T13:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: LDB (Logical Database) results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-logical-database-results/m-p/6617147#M1439901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;two options&lt;/P&gt;&lt;P&gt;- Link the database to your report attributes &lt;/P&gt;&lt;P&gt;- Call FM LDB_PROCESS from your report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2010 14:25:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-logical-database-results/m-p/6617147#M1439901</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-02-05T14:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: LDB (Logical Database) results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-logical-database-results/m-p/6617148#M1439902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Raymond,&lt;/P&gt;&lt;P&gt;Thing is, i need to get report dynamically by not including LDB name in program attributes.&lt;/P&gt;&lt;P&gt;Is there any way out.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Munish Garg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Feb 2010 05:13:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-logical-database-results/m-p/6617148#M1439902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-08T05:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: LDB (Logical Database) results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-logical-database-results/m-p/6617149#M1439903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will need to call LDB_PROCESS, but you will have to map the data from LDB to internal table (how do your report "knows" which nodes and which fields from those nodes are to be included in the internal table ?)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So many dynamic statements like CREATE DATA &amp;lt;dref&amp;gt; TYPE REF TO (LBDA-DDIC_TYPE) using the parameter &amp;lt;formname&amp;gt; = LBDA-LDBNODE in a generic FORM &amp;lt;formname&amp;gt; USING &amp;lt;nodename&amp;gt; LIKE LDBCB-LDBNODE and then many ASSIGN statements to map the desired fields to the returned internal table records. At each call of this generic FORM, map each and every "corresponding" fields, add the record to the internal table at the lower level node.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Feb 2010 07:03:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-logical-database-results/m-p/6617149#M1439903</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-02-08T07:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: LDB (Logical Database) results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-logical-database-results/m-p/6617150#M1439904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem solved by creating a dynamic program and using GET statements and field groups in that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 13:19:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ldb-logical-database-results/m-p/6617150#M1439904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-31T13:19:05Z</dc:date>
    </item>
  </channel>
</rss>

