<?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: BSEG Table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590566#M1082552</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try BSIM table which is a secondary index for BSEG, as are BSID/BSAD, BSIK/BSAK, BSIS/BSAS. Since this is a transparent table, you should have no problem creating an index.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Oct 2008 06:59:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-06T06:59:19Z</dc:date>
    <item>
      <title>BSEG Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590565#M1082551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my program I need to retrive from BSEG based on the material number as it is a cluster table it is taking lot of time . As BSEG is a combination of different tables in which table can I get the matnr number and BELNR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Oct 2008 06:39:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590565#M1082551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-06T06:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590566#M1082552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try BSIM table which is a secondary index for BSEG, as are BSID/BSAD, BSIK/BSAK, BSIS/BSAS. Since this is a transparent table, you should have no problem creating an index.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Oct 2008 06:59:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590566#M1082552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-06T06:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590567#M1082553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;While writing a select statement, to access the record quickly its better to mention all the fields of a primary key.If not possible, atleast the fields mentioned in the where statement should be in order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See in you select statement ebeln,ebelp are compared first and belnr is compared last.Compare them in the order in which they are in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even while selecting the data, gjahr matnr wrbtr is not matching with the table order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please change the order of the fields and check the performance.Surely it will not take time as much as before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select belnr gjahr wrbtr sgtxt matnr ebeln ebelp prctr&lt;/P&gt;&lt;P&gt;from bseg into corresponding fields of table ist_bseg&lt;/P&gt;&lt;P&gt;for all entries in ist_mseg&lt;/P&gt;&lt;P&gt;where &lt;/P&gt;&lt;P&gt;belnr between '0002800000' and '0002899999'&lt;/P&gt;&lt;P&gt;and matnr = ist_mseg-matnr&lt;/P&gt;&lt;P&gt;and ebeln = ist_mseg-ebeln&lt;/P&gt;&lt;P&gt;and ebelp = ist_mseg-ebelp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Midhun Abraham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Oct 2008 10:31:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590567#M1082553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-06T10:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590568#M1082554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Usually you can get in BKPF all that you need from BSEG.  A combination of BSIK/BSAK (for Vendor) and BSID/BSAD for Customers is also a good idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in case you HAVE to read bseg, dont code your own select query but use a standard core FM like&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;GET_ALL_BSEG      
SET_ALL_BSEG
READ_BSEG&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search the Function library to see documentation and how to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Sameer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Oct 2008 21:40:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590568#M1082554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-06T21:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590569#M1082555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What was it that Casey Stengel said???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Oct 2008 21:50:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590569#M1082555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-06T21:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590570#M1082556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While I appreciate the nice blue star, I don't see how this solves anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 16:59:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-table/m-p/4590570#M1082556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T16:59:52Z</dc:date>
    </item>
  </channel>
</rss>

