<?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: Fields tables ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163452#M995357</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In EKPO table, &lt;/P&gt;&lt;P&gt;all three fields -&lt;/P&gt;&lt;P&gt;company code, &lt;/P&gt;&lt;P&gt;material number &lt;/P&gt;&lt;P&gt;and plant &lt;/P&gt;&lt;P&gt;are present.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye,&lt;/P&gt;&lt;P&gt;Mamta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Jul 2008 05:02:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-24T05:02:48Z</dc:date>
    <item>
      <title>Fields tables ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163445#M995350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;        Is there any table in which company code, material number, and plant are there in a single table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 11:56:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163445#M995350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T11:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Fields tables ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163446#M995351</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;Unfortunately no. You have to collect them from 2 tables: MARC and T001K.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 12:12:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163446#M995351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T12:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Fields tables ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163447#M995352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You could try the following :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_pdata,&lt;/P&gt;&lt;P&gt;             matnr   type matnr,&lt;/P&gt;&lt;P&gt;             werks   type werks_d,&lt;/P&gt;&lt;P&gt;             bwkey  type bwkwy,&lt;/P&gt;&lt;P&gt;             bukrs   type bukrs,&lt;/P&gt;&lt;P&gt;          end   of ty_pdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: gt_pdata type standard table of ty_pdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select marc~matnr                                      "Material&lt;/P&gt;&lt;P&gt;         marc~werks                                       "Plant&lt;/P&gt;&lt;P&gt;         t001w~bwkey                                     "Valuation Area&lt;/P&gt;&lt;P&gt;         t001k~bukrs                                       "Company code&lt;/P&gt;&lt;P&gt;         into table gt_pdata&lt;/P&gt;&lt;P&gt;         from marc&lt;/P&gt;&lt;P&gt;         inner join t001w&lt;/P&gt;&lt;P&gt;         on t001w&lt;SUB&gt;werks = marc&lt;/SUB&gt;werks&lt;/P&gt;&lt;P&gt;         inner join t001k&lt;/P&gt;&lt;P&gt;         on t001k&lt;SUB&gt;bwkey = t001w&lt;/SUB&gt;bwkey&lt;/P&gt;&lt;P&gt;         where lvorm = space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        You can add extra conditions to the where clause if you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 13:21:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163447#M995352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T13:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Fields tables ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163448#M995353</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;For Company Code you have to refer table -&lt;STRONG&gt;T001&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;For Materail no and plant  table &lt;STRONG&gt;MARC&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table EKPO Contains the three fields togather.You can check this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 13:34:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163448#M995353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T13:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: Fields tables ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163449#M995354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked in Tables &lt;STRONG&gt;VBRK&lt;/STRONG&gt; and &lt;STRONG&gt;VBRP&lt;/STRONG&gt; . In these tables the field &lt;STRONG&gt;BUKRS&lt;/STRONG&gt; exist in &lt;STRONG&gt;VBRK&lt;/STRONG&gt; whereas the fields &lt;STRONG&gt;MATNR&lt;/STRONG&gt; and &lt;STRONG&gt;WERKS&lt;/STRONG&gt; exist in &lt;STRONG&gt;VBRP&lt;/STRONG&gt;. You can fetch data from &lt;STRONG&gt;VBRK&lt;/STRONG&gt; and use for all entries to fetch data from &lt;STRONG&gt;VBRP&lt;/STRONG&gt; on some condition. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same will be the case with &lt;STRONG&gt;VBAK&lt;/STRONG&gt; and &lt;STRONG&gt;VBAP&lt;/STRONG&gt; tables respectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swapna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 07:21:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163449#M995354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T07:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Fields tables ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163450#M995355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think there is no table with this combination . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer t001 for company code. &lt;/P&gt;&lt;P&gt;Refer marc for material number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Muneesh Gitta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 08:54:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163450#M995355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T08:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: Fields tables ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163451#M995356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;use this table you will find required fields.&lt;/P&gt;&lt;P&gt;EKPO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz don't forget.... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 09:33:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163451#M995356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T09:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Fields tables ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163452#M995357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In EKPO table, &lt;/P&gt;&lt;P&gt;all three fields -&lt;/P&gt;&lt;P&gt;company code, &lt;/P&gt;&lt;P&gt;material number &lt;/P&gt;&lt;P&gt;and plant &lt;/P&gt;&lt;P&gt;are present.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye,&lt;/P&gt;&lt;P&gt;Mamta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:02:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163452#M995357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: Fields tables ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163453#M995358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi thks for your answer the same answer was giving by venkat. By which i have already solved my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Balu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:07:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fields-tables/m-p/4163453#M995358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:07:51Z</dc:date>
    </item>
  </channel>
</rss>

