<?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: Database design in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-design/m-p/1234909#M140462</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ravi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;company outsource some components to outside vendor .The tool required to prodce those components is supllied by the main company . While issuing tool to vendor he wnat one screen where he can enter the details of the tool , vendor and the components that can be produced from that tool . But one tool can be used to produce different component .&lt;/P&gt;&lt;P&gt;This is the scnario . I have to design database which having field as folows&lt;/P&gt;&lt;P&gt;tool_no &lt;/P&gt;&lt;P&gt;vendo to whom tool is issued &lt;/P&gt;&lt;P&gt;date of issue &lt;/P&gt;&lt;P&gt;components &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;since the primary key will be the TOOL_no how to store the components that are produced from that tool . Because one tool can produce many components . and key will repaet . This is my idea .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Mar 2006 04:18:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-31T04:18:18Z</dc:date>
    <item>
      <title>Database design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-design/m-p/1234905#M140458</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;Client procure the tool from outside , and he gives that tool to another vendor who inturn produces the material from that tool and supply the produced component from that tool to client .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now Client want to enter the tool no , vendor from whom the tool has procured , vendor to whom tool is issued and component that can be produced from that tool . Major Issue is one tool can produce many componenets like one PO can have many line items .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not able to desgin the database which will hold all data . And when we design the database is it compalsry to have MANDT field .pls give me some idea .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Mar 2006 04:07:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-design/m-p/1234905#M140458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-31T04:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Database design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-design/m-p/1234906#M140459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Raghavendra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure if I understand your business process, can you explain in detail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Coming to MANDT, if you want your table to be CLIENT DEPENDENT, then MANDT is mandatory. A instance of SAP can have multiple CLIENTS and the transactional / master data is usually different in each of the clients, that means its CLIENT DEPENDENT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Mar 2006 04:11:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-design/m-p/1234906#M140459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-31T04:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Database design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-design/m-p/1234907#M140460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, like a PO, maybe you need two tables: one for the tool which would have MANDT and TOOL as the key fields and information about the tool in that table. The other table would be for the tool components and would have MANDT, TOOL and COMPONENT as the key fields. The other fields would have data particular to the fields.&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, 31 Mar 2006 04:15:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-design/m-p/1234907#M140460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-31T04:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Database design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-design/m-p/1234908#M140461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have four different values here. TOOL, FROM_VENDOR, TO_VENDOR, COMPONENT_PRODUCED. Now if I assume that you procure a tool from only one vendor, then I can have a table that stores the information between TOOL and FROM_VENDOR. Similarly I can have another table that stores the TOOL and TO_VENDOR. Another table for TOOL and COMPONENT_PRODUCED. If all of them are tied together with a document like a work order, then that number will be the link. If you need to figure out how many times this tool is given to the same vendor to produce the same component several times, then the date comes into picture. So you can do it as one table or multiple tables linked together with some master, transactional type of data relationships.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MANDT represents client dependency. When you have multiple clients and you want to separate the data from one client to another, then you will have to have the MANDT field. If your data is cross-client(which I don't think yours is), then you don't need this field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Mar 2006 04:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-design/m-p/1234908#M140461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-31T04:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Database design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-design/m-p/1234909#M140462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ravi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;company outsource some components to outside vendor .The tool required to prodce those components is supllied by the main company . While issuing tool to vendor he wnat one screen where he can enter the details of the tool , vendor and the components that can be produced from that tool . But one tool can be used to produce different component .&lt;/P&gt;&lt;P&gt;This is the scnario . I have to design database which having field as folows&lt;/P&gt;&lt;P&gt;tool_no &lt;/P&gt;&lt;P&gt;vendo to whom tool is issued &lt;/P&gt;&lt;P&gt;date of issue &lt;/P&gt;&lt;P&gt;components &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;since the primary key will be the TOOL_no how to store the components that are produced from that tool . Because one tool can produce many components . and key will repaet . This is my idea .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Mar 2006 04:18:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-design/m-p/1234909#M140462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-31T04:18:18Z</dc:date>
    </item>
  </channel>
</rss>

