<?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: Logical DataBase in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/logical-database/m-p/2960070#M698329</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Puneet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Give me the steps to create logical database, and tell me how to use this table in my program. &lt;/P&gt;&lt;P&gt;if u have any documentation on this please mail me to my gmail id &amp;lt;b&amp;gt;prajwalnairy@gmail.com&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;prajwal.k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2007 05:45:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-11T05:45:35Z</dc:date>
    <item>
      <title>Logical DataBase</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logical-database/m-p/2960067#M698326</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;Good morning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the Difference between logical database and database, is both are same.&lt;/P&gt;&lt;P&gt;is database table MARA is a logical database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;prajwal.k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 03:58:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logical-database/m-p/2960067#M698326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T03:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: Logical DataBase</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logical-database/m-p/2960068#M698327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Database&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database is the repository of all dictionary objects like tables views etc.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;Logical database&amp;lt;/b&amp;gt; is  another way of retrieving data for a program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Logical databases are created by transaction SE36 or &lt;/P&gt;&lt;P&gt;	Choose ABAP Workbench -&amp;gt; Development -&amp;gt; Programming environ. -&amp;gt; Logical databases &lt;/P&gt;&lt;P&gt;The name of a logical database can be up to 20 characters long. It may begin with a namespace prefix.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;The data is selected by another program and one can access the data using GET &amp;lt;table-name&amp;gt; command which places the data in the work area &amp;lt;table-name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Advantages of a logical database over normal Select queries.&lt;/P&gt;&lt;P&gt;It offers check conditions to see whether the input is correct, complete and plausible&lt;/P&gt;&lt;P&gt;It contains central authorization checks for database access&lt;/P&gt;&lt;P&gt;Enhancements such as improvement in performance immediately apply to all reports which use logical database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 04:11:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logical-database/m-p/2960068#M698327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T04:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Logical DataBase</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logical-database/m-p/2960069#M698328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prajwal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A database table is just a repository for the storage of the business data from where you can fetch the data by writing the select queries whereas a Logical database is an application in itself.&lt;/P&gt;&lt;P&gt;It consists of a number of database tables logically linked to each other through some key relationships,a selection screen,a database program where all the data fetching statements are coded.&lt;/P&gt;&lt;P&gt;Whenever you attach a LDB to a report,the report need not to have any select query as all the data is fetched by the LDB.Mostly,all the HR reports contains one or the other LDB attached to them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MARA is not a Logical Database but a simple database table but it might exist as one of the tables n any of the Logical databases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more clarification,go to T-code SE36 and see the LDB PSJ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case you have any further clarifications,do let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Puneet Jhari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 05:22:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logical-database/m-p/2960069#M698328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T05:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Logical DataBase</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logical-database/m-p/2960070#M698329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Puneet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Give me the steps to create logical database, and tell me how to use this table in my program. &lt;/P&gt;&lt;P&gt;if u have any documentation on this please mail me to my gmail id &amp;lt;b&amp;gt;prajwalnairy@gmail.com&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;prajwal.k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 05:45:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logical-database/m-p/2960070#M698329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T05:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Logical DataBase</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logical-database/m-p/2960071#M698330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prajwal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is hardly any need of creating your own LDB as it is very difficult to create the hierarchical structure of a LDB and also finding the relationships between the tables to be included in the hierarchical struture.&lt;/P&gt;&lt;P&gt;Some or the other standard LDB fulfils our requirements.&lt;/P&gt;&lt;P&gt;The best you can do is copy the standard LDB and make some changes in it to suit your requirements.This can be done through SE80.&lt;/P&gt;&lt;P&gt;You can use the LDB in your report by attching it in the Attributes of you report by gong to GoTo--Attributes.&lt;/P&gt;&lt;P&gt;One has to be very careful n using a LDB as the Get statements must be carefully coded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to the link below for more explanation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db9bfa35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db9bfa35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case you have any further clarifications,do let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if found helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Puneet Jhari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 12:07:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logical-database/m-p/2960071#M698330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T12:07:45Z</dc:date>
    </item>
  </channel>
</rss>

