How to find parent ITEM in pr generated by MRP?

Dear Gurus,
Please find below explanation and let me know what can be done.
We have implemented MRP for our finish goods.
For Example : I need to Produce ITEM Z001.
We prepared a bom.
We run MD02 and PRs generated automatically.
But since, some Raw Materials are very common in other products. But while checking PRs by number, we are unable to find that whcih material is for which Finish good.
Suppose BOM for Item Z001 is containing items A , B , & C.
Item B & C is used in many other Final products.
There are too many prs generated for items B & C.
How could I know which PR is for Which Final Product? Is there any indication in PR or any report that suggest us that particular PR is for this final product.
Please suggest.
Thanks in Advance

Hello
Generally, transaction MD09 or the procedure mentioned by Jurgen can be used.
However, keep in mind that there is no firmed link betweent the requirement and the receipt generated by MRP. That means, this information is not stored on any table and it's builded dynamically.
Check my answer on the thread below for more details:
Link between Planned order and Maintenance order from different plants in SAP table
BR
Caetano

Similar Messages

  • How to find the number of idocs generated for a customer on the basis of his purchase order in a day ?

    How to find the number of idocs generated for a customer on the basis of his purchase order in a day ?

    Dear Friends,
    I am absolutely agree with your answer .
    But my question is,
    Lets say.....
    One customer sending X number of purchase orders in a day , so how many IDocs generated on that specific day for that specific customer .
    So, Question is , How can we find the no of sales orders(IDocs) generated for the customers on the specific day ?
    Hope you all understood my requirement .
    Thanks & Regards,
    Aditya

  • How to find open item in bsik table

    anyone can tell me how to find open items for vendor in bsik table or it will store only open item.
    i debug the tcode fbl1n to see . but not able to find
    Kumar

    Hi
    There is no specific field name for open item in the table BSIK.Yes BSIK include a structure named ABSIK_PSO and which is a "IS-PS: Data appendix of open items vendors".
    Yes there is a field name
    BUZEI - Line Item
    EBELP - Item
    You check with your requirement again and try to use these fields,if you still facing some probs than write back to me,i will try to give the appropriate solutions.
    Thanks
    Mrutyunjaya Tripathy

  • How to find top items in alv similar to MC.5

    hi abapers
    can u plz tell me how to find top items in alv grid program as we find similarly in MC.5 top material...etc as top items.
    Thanks in advance

    Nagrenda -> http://sap.ittoolbox.com/groups/technical-functional/sap-abap/how-to-display-an-alv-grid-using-abap-oo-2016165
    I suggest you read the rules of this forum.

  • How to identify parent item & child (component) item??

    Hi
    Plz let me know how we can identify parent item & component item in the same bom?? I am checking it in table STPO but not able to identify.
    Thnx
    Neel

    Hi,
    I hope there is no such indicator to differeciate parent material and child material in same BOM.
    i will explain one simple way to find out.
    Suppose you are  having three Material Number ex P1,C1,C2 .
    Suppose ur having three Material Number ex P1,C1,C2 .
    1.Use table MAST and give the Material List - It will give Parent Material list only(P1)  
    2.Give the BOM Number to table STPO -  It will give child material list of Parent Material BOM(C1,C2) with repect to BOM
    3. Use report CS15  to find out that Parent Material (P1 Material from MAST) material is being used as component in Some other BOM.
    regards
    pradeep

  • How to find code responsible  Error Message generated in MIRO transaction

    Hi Gurus,
                    I have to find the code responsible for generating ERROR message in Miro tcode through DEBUGGING. Let me tell you the case...................
    In MIRO,
    We input
    In Basic data tab,
    Invoice Date,
    Posting Date,
    Reference,
    PO no. &
    Tax code as V5 ( VAT @ 8% )  in item data  & then
    In Details tab,
    We enter Business Area    & then
    In Payment Tab
    Baseline date        & then
    In Basic data tab
    We check the check box for Calculate tax &
    entered Amount     & then click entered .
    It displays GREEN button.
    When we click Simulate button & click post then it shows 1 message that " Invoice document still contains messages .".
    And then if we click Messages Button it shows " MSG No. & text -  Enter Bussiness area ."
    So the problem is though we input Business Area , still it shows message Enter Business area.
    So plz tell me how to find that code responsible for error message.

    Ashish- It is because, the error message is called using function module / BAPI. But Ideally when a developer codes to populate the structure of type BAPIRET2, he.she should also follow the following rule, to make the message traceable:
    "Populate BAPI structure for error message
    "Following code will not get called, but is for documentation for traceability.
    if 1 = 2.
      message e004.
    endif.
    That is why i said in my comment, if it is "coded properly" then we will be able trace
    Bottom line: you will not be able to find the program line using this approach.
    But now since you now the error message and number, you can go to the underlying program of MIRO (SAPLMR1M and SAPLFDCB)..click on the find button on the application toolbar, enter the message# and find..PLEASE SELECT THE RADIO BUTTON "In the main program".
    Hope this helps.
    Sajan Joseph.

  • How to find out amount of undo generated in 10g and 9i? for a given session

    Hi All,
    I am on v10.2 on Linux. How can I find out amount of undo generated in my session ?
    I tried this
    SQL> select a.STATISTIC#, a.VALUE, b.NAME from v$mystat a , v$statname b
    2 where a.statistic# = b.statistic# and (b.name like '%undo%' or b.name like '%rollback%') ;
    STATISTIC# VALUE NAME
    5 0 user rollbacks
    75 0 DBWR undo block writes
    176 132 undo change vector size
    177 0 transaction tables consistent reads - undo records applied
    178 0 transaction tables consistent read rollbacks
    179 0 data blocks consistent reads - undo records applied
    182 0 rollbacks only - consistent read gets
    183 0 cleanouts and rollbacks - consistent read gets
    188 0 rollback changes - undo records applied
    189 0 transaction rollbacks
    200 0 auto extends on undo tablespace
    202 0 total number of undo segments dropped
    220 0 global undo segment hints helped
    221 0 global undo segment hints were stale
    222 0 local undo segment hints helped
    223 0 local undo segment hints were stale
    224 0 undo segment header was pinned
    226 0 SMON posted for undo segment recovery
    229 0 SMON posted for undo segment shrink
    236 0 IMU undo retention flush
    241 0 IMU CR rollbacks
    242 488 IMU undo allocation size
    22 rows selected.
    SQL>
    SQL> create table temp1 as select * from dba_objects where 1=2 ;
    Table created.
    SQL> select a.STATISTIC#, a.VALUE, b.NAME from v$mystat a , v$statname b
    2 where a.statistic# = b.statistic# and (b.name like '%undo%' or b.name like '%rollback%') ;
    STATISTIC# VALUE NAME
    5 0 user rollbacks
    75 0 DBWR undo block writes
    176 30280 undo change vector size
    177 0 transaction tables consistent reads - undo records applied
    178 0 transaction tables consistent read rollbacks
    179 8 data blocks consistent reads - undo records applied
    182 8 rollbacks only - consistent read gets
    183 0 cleanouts and rollbacks - consistent read gets
    188 0 rollback changes - undo records applied
    189 0 transaction rollbacks
    200 0 auto extends on undo tablespace
    202 0 total number of undo segments dropped
    220 0 global undo segment hints helped
    221 0 global undo segment hints were stale
    222 0 local undo segment hints helped
    223 0 local undo segment hints were stale
    224 0 undo segment header was pinned
    226 0 SMON posted for undo segment recovery
    229 0 SMON posted for undo segment shrink
    236 0 IMU undo retention flush
    241 0 IMU CR rollbacks
    242 560 IMU undo allocation size
    22 rows selected.
    SQL> insert /*+ APPEND */ into temp1 select * from dba_objects ;
    91057 rows created.
    SQL> commit ;
    Commit complete.
    SQL> select a.STATISTIC#, a.VALUE, b.NAME from v$mystat a , v$statname b
    2 where a.statistic# = b.statistic# and (b.name like '%undo%' or b.name like '%rollback%') ;
    STATISTIC# VALUE NAME
    5 0 user rollbacks
    75 0 DBWR undo block writes
    176 171356 undo change vector size
    177 0 transaction tables consistent reads - undo records applied
    178 0 transaction tables consistent read rollbacks
    179 166 data blocks consistent reads - undo records applied
    182 91 rollbacks only - consistent read gets
    183 0 cleanouts and rollbacks - consistent read gets
    188 0 rollback changes - undo records applied
    189 10 transaction rollbacks
    200 0 auto extends on undo tablespace
    202 0 total number of undo segments dropped
    220 0 global undo segment hints helped
    221 0 global undo segment hints were stale
    222 0 local undo segment hints helped
    223 0 local undo segment hints were stale
    224 0 undo segment header was pinned
    226 0 SMON posted for undo segment recovery
    229 0 SMON posted for undo segment shrink
    236 0 IMU undo retention flush
    241 0 IMU CR rollbacks
    242 1352 IMU undo allocation size
    22 rows selected.
    What exactly is "undo change vector size" ?
    Also, if I am on v 9.2, this ( undo change vector size ) stat name is not there. What can be used in v9.2 ?
    Thanks in advance.

    Hi..
    >
    SET LINESIZE 200
    COLUMN username FORMAT A15
    SELECT s.username,
    s.sid,
    s.serial#,
    t.used_ublk,
    t.used_urec,
    rs.segment_name,
    r.rssize,
    r.status
    FROM v$transaction t,
    v$session s,
    v$rollstat r,
    dba_rollback_segs rs
    WHERE s.saddr = t.ses_addr
    AND t.xidusn = r.usn
    AND rs.segment_id = t.xidusn
    ORDER BY t.used_ublk DESC;
    >
    HTH
    Anand

  • How to find open item?

    Situation:
    Sales order has Two line items.
    During delivery or billing one line item is left.
    How to find the in which sales order this has happened?
    Anand.

    Dear Anand,
    You can check this through VA05 or VL10C
    Regards
    MBS

  • How to find parent wbs element from child wbs element

    Hi ,
            I have a WBS element . How to find its parent WBS element . What should be the logic and table fields should i consider ? Please help me , its urgent.

    You can use the BAPI_PROJECT_GETINFO function module to get this info.
    The function is very well documented, and it looks like the table E_WBS_HIERARCHIE_TABLE should have the WBS heirarchy in it.
    Hope this helps.
    Sudha

  • How to find Parent Orgunit for Child Orgunit,Position and Persion

    Hi Friends,
    Is there any Function module availbale for finding Parent Orgunit to given child Orgunit,position and persion.
    iIf it is not availabale.Please tell how can i find parenst orgunit.
    Thanks ,
    Kumar.

    hi,
    check the following FM.
    HRHAP_SEL_ORG_UNIT_OF_ORG_UNIT
    this FM will help you to find the parent org unit of a given org unit.

  • How to find whether PO is auto generated PO or not.

    Hi,
    How can we find the PO is Auto generated PO or Not in techinically.
    Appriciate quick response.
    Thanks & Regards,
    Surya Sankar

    Hi,
    You can check the following area.
    First check the T.code WE05 or BD87--> find the PO details if it has been created Automatically.
    Check in the BBP_PD and gets the details.
    Hope this will help you, award the points for the same.
    BR,
    Vijay Mittal

  • How to find out which batch job generated a specific idoc?

    Dear Colleagues
    Is it possible to find out which batch job generated a given idoc?

    You need to check in the program about the naming conventions for the job. Then based on it you will be able to identify the correct one.
    Thanks
    Nabheet

  • Properties to find parent items

    Hi All,
    Which are the properties that needs to be used/populated in the following items to know the parent items.
    Category : which property should  used to know to which category and catalog this category belongs???
    Product : which property should  used to know to which category and catalog this Product belongs???
    SKU : which property should  used to know to which product , category and catalog this SKU belongs???
    What is the significance of  writable="false" in customCatalog.xml ?????
    cheers

    Catalog Folder-> Catalog-> Categories -> Product -> Sku
    1.Create sku.
    2.Create inventory and add above sku in inventory's sku property.
    2.Create Product and add above sku in Product's skus property.
    3.Create Category and add above product in Category's 'fixed child products' property.
    4.Create Catalog and add above category in Catalog's 'rootCategories' property.
    5.Create Catalog Folder and add catalog in CatalogFolder's 'child catalogs' property.
    So u need to create xml in a way that avoids dependencies not found problem situation.
    XML:
    <add-item item-descriptor="sku" repository="/atg/commerce/catalog/ProductCatalog" id="sku60001">
      <set-property name="description"><![CDATA[    iOS 6    1.2 MP Secondary Cam...        8 MP Primary Camera    4-inch Touchscreen1 year manufacturer warranty for Phone and 6 months warranty for in the box accessories Apple India Warranty and Free Transit Insurance.]]></set-property>
      <set-property name="displayName"><![CDATA[IPhone 5 Black 16 GB]]></set-property>
      <set-property name="listPrice"><![CDATA[44900.0]]></set-property>
      <set-property name="type"><![CDATA[sku]]></set-property>
    </add-item>
    <add-item item-descriptor="product" repository="/atg/commerce/catalog/ProductCatalog" id="prod60001">
      <set-property name="childSKUs"><![CDATA[sku60001]]></set-property>
      <set-property name="displayName"><![CDATA[IPhone 5 Black 16 GB]]></set-property>
    </add-item>
    <add-item item-descriptor="category" repository="/atg/commerce/catalog/ProductCatalog" id="cat20001">
      <set-property name="displayName"><![CDATA[mobiles]]></set-property>
      <set-property name="fixedChildProducts"><![CDATA[prod60001]]></set-property>
    </add-item>
    <add-item item-descriptor="catalog" repository="/atg/commerce/catalog/ProductCatalog" id="catalog20001">
      <set-property name="rootCategories"><![CDATA[cat20001]]></set-property>
      <set-property name="displayName"><![CDATA[Master Catalog]]></set-property>
    </add-item>
    <add-item item-descriptor="catalogFolder" repository="/atg/commerce/catalog/ProductCatalog" id="200001">
      <set-property name="childItems"><![CDATA[catalog20001]]></set-property>
      <set-property name="type"><![CDATA[catalogFolder]]></set-property>
      <set-property name="name"><![CDATA[Catalog Folder]]></set-property>
    </add-item>
    U need to run Basic Maintenance Service, from dyn/admin under Commerce Administration/Basic Maintenance , It will created all derived property.
    Restart your server.

  • ADF Tree with Boolean Check Box: How to find selected items

    Hi Experts,
    ADF: 11.1.1.5.0
    WLS: 10.3.6
    I am using an ADF Tree which contains elements at two levels (say Departments and Employees). My requirement is to give provision for user to select Departments and Employees using the check boxes. User should be able to select what ever Departments he/she likes and what ever employees he/she likes. There should not be a provision to select Employee with out selecting the corresponding Department (root node in the tree).
    I am facing the below issues while trying to implement this use case:
    1. Always, only the first master record will be expanded by default (I am using "Display Row" property value as "default" and "ExpandAllEnabled" as "true"). My need is to expand all the master records by default. So that user need not explicitly expand each master record node and then select the associated child records.
    2. Currently, I am using value change listener associated to af:selectBooleanCheckBox to identify the Departments and Employee records that have been selected. Since not all departments (masters) are expanded by default, if user selects the check box of department (master) and then expands the department node, automatically all the employees of that department are selected. But, this event is not triggering the value change listener for the employee records. Because of this, after a department node is selected and then expanded, all the child elements' check boxes are selected but the events are not generated. Hence, I am not able to capture the selection of employee records.
    To summarize,
    1. Please let me know how to expand all master nodes in af:Tree by default.
    2. Please let me know the best approach to identify the selected items (both master and detail items) in the af:Tree component using af:selectBooleanCheckBox.
    Thanks in advance,
    Rathnam

    Hi,
                Can you please elaborate the solution? I have a similar problem in
    https://forums.oracle.com/thread/2579664

  • How to find average item price

    How can i find the average item price of an item throug quey or application

    Hi,
    Please review the following threads ..
    item_price
    item_price
    SQL query to display the price of an ITEM
    Re: SQL query to display the price of an ITEM
    You can also search for old threads which discuss the same topic --> [Average Item Price|http://forums.oracle.com/forums/search.jspa?threadID=&q=average+item+price&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001].
    Regards,
    Hussein

Maybe you are looking for

  • Dimension displaying Level_Member values instead of proper mapped value

    Just wondering if anyone else has come across this problem before and knows a smart way of correcting it. I have a Dimension that contains 6 levels which is mapped to a view. I can build the dimension without any errors appearing in the maintain proc

  • Why can't I block a number through the call and message blocking request?

    Every time I try to insert a number, it keeps saying that they are unable to complete my requested change at this time.

  • Photoshop CS5 lässt sich nicht aktualisieren

    Ich habe wegen Mainboard-Tausch ein Win-7-64 System neu aufgesetzt, das bereits Photoshop CS-5(64)  enthielt. CS-5 liess sich ganz normal ab der Ori-CD installiert, auch mit S/N. Jetzt bekomme ich öfters Auforderungen Photoshop, Camera-.Raw, Bridge u

  • MHKIM:(연말정산)의료비입력화면의 상세내역입력시 가족 LOV값에 대한 로직

    QUESTION ========= 연말정산화면의 의료비 TAB에서 상세내역입력시 나타나는 가족 LOV값 관련 로직 ANSWER ========== 해당 field의 로직은 다음과 같습니다. select full_name, national_identifier, code, substr(hr_general.decode_lookup('KR_CONTACT_RELATIONSHIPS',CODE),1,80) d_contact_type from (select

  • InfoObject Name

    Hi, I created Master Data for " PlantID" attribute as a "Plant Description" InfoObject Name for PlatID (XCPLANTID) InfoObject Name for Plant Description(XCPLANTDS) After creating I loaded Master data here is the example Plant1   PlantDescription1 Pla