<?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 checking table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158237#M751277</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i have check the BSIK table for the document number having a  vendor number .How to do this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give me the coding&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Dec 2007 12:14:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-11T12:14:43Z</dc:date>
    <item>
      <title>checking table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158237#M751277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i have check the BSIK table for the document number having a  vendor number .How to do this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give me the coding&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 12:14:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158237#M751277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T12:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: checking table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158238#M751278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Refr this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  read_bsik&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form read_bsik .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_date is initial.&lt;/P&gt;&lt;P&gt;  select * from bsik&lt;/P&gt;&lt;P&gt;           into corresponding fields of table it_bsik_s&lt;/P&gt;&lt;P&gt;           where bukrs in s_bukrs&lt;/P&gt;&lt;P&gt;           and   lifnr in s_lifnr.&lt;/P&gt;&lt;P&gt;elseif s_lifnr is initial.&lt;/P&gt;&lt;P&gt;  select * from bsik&lt;/P&gt;&lt;P&gt;           into corresponding fields of table it_bsik_s&lt;/P&gt;&lt;P&gt;           where bukrs in s_bukrs&lt;/P&gt;&lt;P&gt;           and   budat &amp;lt;= p_date.&lt;/P&gt;&lt;P&gt;elseif p_date is not initial and s_lifnr is not initial..&lt;/P&gt;&lt;P&gt;  select * from bsik&lt;/P&gt;&lt;P&gt;           into corresponding fields of table it_bsik_s&lt;/P&gt;&lt;P&gt;           where bukrs in s_bukrs&lt;/P&gt;&lt;P&gt;           and   lifnr in s_lifnr&lt;/P&gt;&lt;P&gt;           and   budat &amp;lt;= p_date.&lt;/P&gt;&lt;P&gt;elseif p_date is initial and s_kunnr is initial.&lt;/P&gt;&lt;P&gt;  select * from bsik&lt;/P&gt;&lt;P&gt;           into corresponding fields of table it_bsik_s&lt;/P&gt;&lt;P&gt;           where bukrs in s_bukrs.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;  if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;    message e000(8i) with 'No records for Selection'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endform.                    " read_bsik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;PRashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 12:18:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158238#M751278</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-12-11T12:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: checking table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158239#M751279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select BELNR&lt;/P&gt;&lt;P&gt;from BSIK into &lt;/P&gt;&lt;P&gt;where LIFNR = vendor number&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 12:21:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158239#M751279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T12:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: checking table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158240#M751280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I didnt understand the question.&lt;/P&gt;&lt;P&gt;In bsik-lifnr is Account number of vendor or creditor.&lt;/P&gt;&lt;P&gt;And you want to check whether the account number belongs to vendor or customer you have to other validation using KNA1 table for customer or LFA! table for vendor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if useful.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sivaparvathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 12:21:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158240#M751280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T12:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: checking table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158241#M751281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BSIK table is for vendor open item. so document must have vendor code in BSIK table.  no need to check vendor is there or not...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 12:22:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158241#M751281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T12:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: checking table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158242#M751282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;welcome to SDN forum&lt;/P&gt;&lt;P&gt;for Vendor Number - LFA1 table&lt;/P&gt;&lt;P&gt;Material Number -MARA&lt;/P&gt;&lt;P&gt;customer No - KNA1&lt;/P&gt;&lt;P&gt;these are the basic master tables in SAP to deal with any business&lt;/P&gt;&lt;P&gt;with the data element of the table field you can search the table name from SE11&lt;/P&gt;&lt;P&gt;or enter the field descriptions in DD03L and DD03T table and search for the respective tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto Se11&lt;/P&gt;&lt;P&gt;select DATA TYPE&lt;/P&gt;&lt;P&gt;press F4 there&lt;/P&gt;&lt;P&gt;select SEARCH FOR DATA ELEMENTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But you should have some basic SAP related Busniess info regarding some basic tables&lt;/P&gt;&lt;P&gt;Like I told already without CUSTOMER,VEndor,material NO BUSINESS TAKES PLACE.&lt;/P&gt;&lt;P&gt;So it is minimum thing to know the master tables of these three&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;Cheers,&lt;/P&gt;&lt;P&gt;Chandra Sekhar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 12:23:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-table/m-p/3158242#M751282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T12:23:17Z</dc:date>
    </item>
  </channel>
</rss>

