<?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 Regarding table INOB in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-inob/m-p/6192136#M1374827</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ppl,&lt;/P&gt;&lt;P&gt;I have to fetch entries from the table INOB based on the Class type (KLART = 022), Name of database table for object (OBYAB = MARA) and Key of Object to be Classified (OBJEK = material number).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, the table INOB does not have an entry corresponding to my search criteria.&lt;/P&gt;&lt;P&gt;But, an entry is expected in this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how are entries created in the table INOB. Which transaction updates this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;David.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Oct 2009 11:30:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-01T11:30:31Z</dc:date>
    <item>
      <title>Regarding table INOB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-inob/m-p/6192136#M1374827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ppl,&lt;/P&gt;&lt;P&gt;I have to fetch entries from the table INOB based on the Class type (KLART = 022), Name of database table for object (OBYAB = MARA) and Key of Object to be Classified (OBJEK = material number).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, the table INOB does not have an entry corresponding to my search criteria.&lt;/P&gt;&lt;P&gt;But, an entry is expected in this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how are entries created in the table INOB. Which transaction updates this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;David.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 11:30:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-inob/m-p/6192136#M1374827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T11:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding table INOB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-inob/m-p/6192137#M1374828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The table INOB is a master data table related to PP module. You can directly enter values into the table by clicking on "create entries" button.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 12:03:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-inob/m-p/6192137#M1374828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T12:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding table INOB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-inob/m-p/6192138#M1374829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the filed OBJEK in INOB is a combination of material and batch number. so we cannot get the record if we query on objek.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This table is updated when we create a new batch in MSC1N transaction code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find some sample code to use this table..Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT objectid
           changenr
           FROM cdhdr
           INTO CORRESPONDING FIELDS OF TABLE git_cdhdr
           WHERE objectclas = c_classify.

IF sy-subrc EQ 0.
    LOOP AT git_cdhdr INTO lwa_cdhdr.
      lwa_cdhdr-id = lwa_cdhdr-objectid.
      MODIFY git_cdhdr FROM lwa_cdhdr.
    ENDLOOP.

IF NOT git_cdhdr[] IS INITIAL.

    SELECT cuobj
           objek
           FROM inob
           INTO CORRESPONDING FIELDS OF TABLE git_inob
           FOR ALL ENTRIES IN git_cdhdr
           WHERE cuobj = git_cdhdr-id
           AND   klart = c_klart
           AND   obtab = c_mch1.

LOOP AT git_inob INTO wa_inob.
        clear: lv_sytabix.
        lv_sytabix = sy-tabix.
        wa_inob-objek1 = wa_inob-cuobj.
        lv_matnr  = wa_inob-objek+0(18).
       lv_charg  = wa_inob-objek+18(10).
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 12:57:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-inob/m-p/6192138#M1374829</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-10-01T12:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding table INOB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-inob/m-p/6192139#M1374830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If classification is maintained at material level, you will find the characteristic values directly in AUSP and if they are maintained at a batch level, then you will need to go through INOB to AUSP to get the same values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 14:38:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-inob/m-p/6192139#M1374830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T14:38:37Z</dc:date>
    </item>
  </channel>
</rss>

