Can we plan RM & FG Material in MRP planning in a single plant

Hi Sap Gurus,
  I have one doubt my client has a requirement
client plans fg (make to stock) material by putting PIR Correspondingly Raw material planed and all raw material having coverage profile according to that requirement got generated.
now client wants to plan the same raw material separately in same plant so i have made that making strategy type 11 in raw material.after that  i run  mrp after i got requirement considering the coverage profile.
but my clients want for fg  material requirement which flows to raw material there coverage profile should be considered but in case of raw material which are plan separately is there coverage not consider is it possible do so
if possible can any body put some light on it.
Thanks & Regards
Sandeep KUMAR Praharaj 

Hello Adelino
Strategy 10 is a special business case without consumption and only with the PIR reduction during the delivery (goods issue). You can see in customizing OPPS that both requirements KSL and LFS are set with "No consumption with customer requirements". In this case, BAdI MD_PIR_FLEX_CONS is not called.
The BAdI can be used with strategy 40, so please make sure that the consumption indicator of the PIR is set to '4 - Flexible Consumption for Different MRP Elements (BAdI)'.
BR
Caetano

Similar Messages

  • Cross Plant Planning for External procured Material in MRP with their stock

    Dear Gurus,
                 I have one requirement my client want Cross plant planning in MRP. this plants are only site plants no Manufacturing. All materials in these plants are Externally Procure Materials(F). Now they want cross plant planning  for Externally Procure Materials or cross plant planning  for Externally Procure Materials  with consider all plant stock details while planning.
            can you tell me procedure for this,
    Thanks in advance,
    Regards,
    Devraj

    Hi,
    In R/3 you cannot consider all plants in planning, you have to use SAP APO to achieve your goal (if your goal is to optimize the procurement in your plants). When you execute MRP run in R/3 it will only consider the details of one single plant.
    I mean if you have several plants used for external procurement, and you want to make an optimal decision considering all the stocks and open transactional data, requirements in those plants, it is not possible in R/3 as per my knowledge - multi site/plant planning won't give you such optimal solutiion.
    http://help.sap.com/saphelp_47x200/helpdata/en/f4/7d2d4d44af11d182b40000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_apo/helpdata/en/7e/63fc37004d0a1ee10000009b38f8cf/frameset.htm
    Regards,
    Csaba
    Edited by: Csaba Szommer on Nov 17, 2008 10:27 AM

  • Update MRP group for a material and MRP area

    Hi,
    My requirement is to mass update the MRP group for certain number of materials depending upon the MRP area.
    Is there any standard BAPI or the LSMW program which would help me in this.
    Regards,
    Shahu

    Hi,
    Hope this program can give you some lead.
    REPORT  ZMRPAREA002                           .
    *Tables.
    tables : mara,                          "General Material Data
             marc,                          "Plant Data for Material
             mvke,
             mdlv.                          "Customizing MRP Area
    Internal Table
    types : begin of bdc_tab,
                 matnr like MARA-matnr,    "Material Number
                 werks like MARC-werks,    "Plant
                 berid like mdlv-berid,    "MRP area
                 dismm like marc-dismm,    "MRP Type
                 minbe(16),                "Reorder Point
                 disgr like marc-disgr,    "MRP Group
                 dispo like marc-dispo,    "MRP Controller
                 disls like marc-disls,    "Lot size (materials planning)
                 bstfe(16),                "Fixed lot size
                 mtart like mara-mtart,    "Material Type
                 bstmi like marc-bstmi,    "Minimum lot size
            end of bdc_tab.
    data : i_bdc_DATA type bdc_tab occurs 0 with header line.
    data : it_bdc_data type MDMA. " occurs 0 with header line.
    data : i_struc type SDIBE_MASSFIELDS. " occurs 0 with header line.
    data : s_dpop type dpop.
    data : var type BAPIRETURN1.
    data : var1(50).
    *Selection-Screeen
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE TEXT-010.
      PARAMETERS  :  P_FNAME LIKE RLGRAp-FILENAME.
    SELECTION-SCREEN END OF BLOCK b1.
    *AT_SELECTION_SCREEN
    Call the function module to display the dialog to select input file
    at selection-screen on value-request for p_fname.
      call function 'WS_FILENAME_GET'
           exporting
                def_filename     = p_fname
                mode             = 'O'
                title            = 'Select the file to Upload'
           importing
                filename         = p_fname
           exceptions
                inv_winsys       = 01
                no_batch         = 02
                selection_cancel = 03
                selection_error  = 04.
      if sy-subrc <> 0.
      endif.
    *Start-Of-Selection
    Start-Of-Selection.
    perform get_data.            "DATA UPLOAD TO INTERNAL TABLE
    *perform open_group.                "open BDC-GROUP
    *Selecting values for a particular material type
    loop at i_bdc_DATA.
      select single mtart from mara
             into i_bdc_DATA-mtart
             where matnr = i_bdc_DATA-matnr.
      modify i_bdc_DATA.
      select single * from mvke
             where matnr = i_bdc_DATA-matnr.
    endloop.
    *Form Get_Data .
    form get_data .
        data : v_fname type string.
        v_fname = p_fname.
      CALL FUNCTION 'WS_UPLOAD'
       EXPORTING
         filename                      = P_FNAME
         filetype                      = 'DAT'
        TABLES
          data_tab                      = i_bdc_DATA
    EXCEPTIONS
       conversion_error              = 1
       file_open_error               = 2
       file_read_error               = 3
       invalid_type                  = 4
       no_batch                      = 5
       unknown_error                 = 6
       invalid_table_width           = 7
       gui_refuse_filetransfer       = 8
       customer_error                = 9
       OTHERS                        = 10
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    loop at i_bdc_data.
          i_struc-xdismm = 'X'.
          i_struc-xminbe = 'X'.
          i_struc-xdisgr = 'X'.
          i_struc-xdispo = 'X'.
          i_struc-xdisls = 'X'.
          i_struc-xbstfe = 'X'.
          i_struc-xbstmi = 'X'.
          it_bdc_data-matnr = i_bdc_data-matnr.
          it_bdc_data-werks = i_bdc_data-werks.
          it_bdc_data-berid = i_bdc_data-berid.
          it_bdc_data-dismm = i_bdc_data-dismm.
          it_bdc_data-minbe = i_bdc_data-minbe.
          it_bdc_data-disgr = i_bdc_data-disgr.
          it_bdc_data-dispo = i_bdc_data-dispo.
          it_bdc_data-disls = i_bdc_data-disls.
          it_bdc_data-bstfe = i_bdc_data-bstfe.
          it_bdc_data-bstmi = i_bdc_data-bstmi.
          call function 'MD_MRP_LEVEL_CREATE_DATA'
            exporting
              i_matnr                 = it_bdc_data-matnr
              i_werk                  = it_bdc_data-werks
              i_mrp_area              = it_bdc_data-berid
              i_selfields             = i_struc
              i_mdma                  = it_bdc_data
              i_dpop                  = s_dpop
            I_QUEUE_FLAG            = 'X'
             I_SAVE_FLAG             = 'X'
            I_EXTERNAL_COMMIT       = ' '
           IMPORTING
             E_ERROR_RETURN          = var.
            var1 = var.
            write :/ var1.
    endloop.
    endform.                    " get_data
    K.Kiran.

  • No inspection lot can be opened for this material and vendor -QA228

    Hi every one !
    Iam  getting  Error while doing Migo -"No inspection lot can be opened for this material and vendor-QA228"
    we analyze the issue asfollow -
    1.checked Quality Lot-Available
    2.Quality info record- Availble
    3. Quality plan is exist.
    But stil throwing  above Error.

    Hi,
    Check the below threads,
    [No inspection lot can be opened for this material and vendor;
    [No inspection lot can be opened for this material and vendor;

  • AFS material-/mrp-status not active for plant.

    Hello Everyone
    I am facing an issue while executing the sales order
    Issue  :AFS material-/mrp-status not active for plant..
    CAN ANY ONE RESOLVE THIS...
    Regards,Rajneesh

    Hi Rajneesh,
    Tht prb might be the material master.
    Goto Material master, select AFS MRP View and activate/ press the AFS MRP status button and save.
    Reward with points if it is helpful
    Kishore

  • No inspection lot can be opened for this material error is coming during GR

    dear friends,
    no inspection lot can be opened for this material error is coming during GR. what is the cause for this and how to solve it. please suggest me
    regards,
    Krishna

    Hi,
    i think you have maintained the quality view and activated the inspection. but you have not created any inspection lot task list for the material and plant. thsi you can create through QP01 there maintain the material and plant. then enter in inspection plan give usage 5 and status 4. save it and try to check it with QA32 and see the lot. it should be released then only you can give usage decision.
    regards,
    Adwait Bachuwar

  • Material on MRP

    Hi All,
    Can somebody provide me complete details of MRP - types, customization, enhancements etc.
    Regards
    Arun

    Hi Arun,
    Please download MRP Configguide given by SAP.
    [MRP|http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htmhttp://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm]
    Path:Logistics->Production Planning and Control->PP - Capacity Planning--->MRP
    Reward if helpful.
    Thanks and Regards,
    Naveen Dasari.

  • How can I fast refresh the  materialized view !!

    I created a MV base on some tables in order to improve the querey speed.
    but the mv I have created falied to refresh fast.
    because there are two same table in the from clause:
    jcdm jc1,jcdm jc2
    create materialized view temp_mv
    nologging
    pctfree 0
    storage (initial 2048k next 2048k pctincrease 0)
    parallel
    build immediate
    refresh force
    on demand
    as
    select
    TAB_GSHX.rowid hx_rid,
    TAB_GSHD.rowid hd_rid ,
    JC1.rowid jc1_rid ,
    JC2.rowid jc2_rid ,
    YSHD_ID     HXID,          
    JC1.JCDM     QFD,     
    JC2.JCDM     JLD     
    FROM
    TAB_GSHX,
    TAB_GSHD,
    jCDM JC1,
    JCDM JC2
    WHERE
    YSHD_ID=YSHX_ID
    AND YSHD_QFD=JC1.JBJC_ID
    AND YSHD_JLD=JC2.JBJC_ID
    AND TO_CHAR(YSHX_time,'YYYYMMDD')='20030101'
    the column msgtxt of the table MV_CAPABILITIES_TABLE is :
    "the multiple instances of the same table or view" and " one or more joins present in mv".
    How can I succeed in fast refresh the above temp_mv!!!
    thanks.

    lianjun,
    When you are using Oracle9i there is a procedure which can help you setup the materialized view. If some option isn't working it gives you hint why it doesn't work.
    The procedure is dbms_mview.explain_mview.
    Take a look at the documentation how to use it. (In the Oracle9i DWH guide the package is explained.)
    Hope this helps
    With kind regards,
    Bas Roelands

  • Discontinuation Material in MRP run

    Hi,
    In our scenario, we are using Discontinued parts with (Discontinuation Ind - 1, Effectivity-out date - Nil) with follow-up material in MRP4 view of MM.
    It is observed that whenever there is no sufficient stock exist, dependant requirement is not transferred to the follow-up material during MRP run. However is the same is happening during Material Availability check.
    Is there any IMG setting for this to happen during MRP run also.
    Thanks in advance.
    Parthasarathy P

    Hi ,Parthasarathy,
    if an item to be disticontinued item , the following must be true.
    1. you have to define Discont ind= 1, and followup material  in MRP VIEW,
    2. Both Discont item and followup items should have same base unit of measure.
    3. When BOM of Header Material creation, discontinuation data is maintained for the discontinued item and follow-up data is maintained for the follow-up item -in CS01.
    4. Then you have to assign some value for Discontinuation Group  in "Discontinuation Data" for your Discot item in BOM. -in CS01
    5. Then create a followup group with same value of Discont Group for yourFollowup item -in CS01.
    During the MRP run the Dependent requirements of header material will be transferred to Followup item if it is not enough stock of Discont item.
    Please check your Discont data has defined in BOM. The value of Discont group and follow group should be same.
    please letus know for further doubts...
    regards
    pradeep

  • Can I use the same material for C_BOWI_40

    Hi All
    A couple of years ago,  I have attended SAP BOW310 and I have the course material for BOW310 as well, my questions is that do I need to obtain latest academy material again or I can use the same one. I can see the following details on my existing material...
    BOW310
    Web Intelligence Report Design I
    SAP Business Objects - Business Intelligence
    Participants Handbook
    course Version 96
    course duration 2 Days
    Material Number 50103381
    Owner: Ann Whitehead (I050533)
    Now I want to give certification of C_BOWI_40 and I'm wondering that Can I use the same material or not....

    Yes. If you use the iPad charger no problems.
    If you use the iPhone charger, on iPad it will charge much slower, but it will still charge.

  • Can we goods receipt without material number and without PO?

    Can we goods receipt without material number and without PO as consumption ?
    I have case that no PO in SAP system (charge to cost center) but need to goods receipt in SAP system.
    How should I do?
    Thank you very much

    Hi
    Go to MB1C enter 561 movement type (initial posting ) .
    Material number is must.
    It will be against profit center as it is goods receipt and stock value will be credited to our a/c .
    Thanks
    Ravi
    Edited by: Ravikant Dewangan on Aug 11, 2009 8:38 PM

  • Mc46 - can we get stock of material in this report

    Dears Experts,
    Mc46 - can we get stock of material in this report. I think only stock value is available.

    Hi,
    You can check the stock of material within the report by selecting the material and later click Edit - Detailed Display - select  stock overview and click continue.
    S. Kumar

  • CO11N can not post the backflush material properly

    Dear Gurus,
    When I use CO11N to post a Backflush material, the system returns error logs " No stock posting possible for this material".  Aside the warning and confirm straghtly, then I use COGI to post this error backflush material, It post successfully without any warnning message.
    (PS: I have checked my material type in OMS2, the parameter was right. And I can use MIGO_561 to post this material.)
    Why the CO11N can not post the backflush material properly, and then can be COGI properly ?
    Thanks in advance for your kindly help.
    BRGs
    Sivan

    Sivan,
    This is due to missing entry in a customisation table T158.
    Call Transaction SM30.Enter view 'V_158_ALL' for field 'Table/view'.Consider the entry for Transaction CO11 as a template and adjust the entry for Transaction CO11N correspondingly so that both entries are identical.Afterwards table T158 must be transported from the Customizing client into the other clients.
    Regards,
    Prasobh

  • No inspection lot can be opened for this material and vendor

    dear sir
    i m facing this error while  doing gr. also how to confirm certificate
    plz guide me
    No inspection lot can be opened for this material and vendor

    Sujit/Raj
    I got th similar error. I closed the issue as Raj said because there was an open inspection lot. Im still nto able to figure out the background or root cause for thi.
    The QIno record doe not have release Qty active and release date is 12/31/9999. Then why we have to close the previous inspection lot before recieving another. It seems like there is a condition or something that tells Inspection are to be done in stages and hence previous or pending inspection lot needs to be closed. But where i this condition coming from, where should i check.
    I created PO and performed GR. I noticed if i perform GR and if the Inpection lot has status REL SPCO SPRQ IRCH then this happens. If the status is just REL SPCO SPRQ  then I'm able to do multiple reciepts and this error does not show up.
    Any idea or suggestions?

  • I am new to webdynpro ABAP can someone give the good material ?

    Hi,
    i am new to webdynpro ABAP can someone give the good material ?
    Please tell me  what knowledge do i need to learn webdynpro ABAP?
    Regards,
    Chow.

    Hi Chow,
    SAP Web Dynpro Overview
    http://wendtstud1.hpi.uni-potsdam.de/sysmod-seminar/SS2005/presentations/12-WebDynpro-Overview.ppt
    Web Dynpro General Concepts
    https://admin.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/30ea953b-8e57-2910-4e85-f7be60b00407 [original link is broken]
    Web Dynpro
    http://help.sap.com/saphelp_nw2004s/helpdata/en/15/0d4f21c17c8044af4868130e9fea07/frameset.htm
    Web Dynpro for ABAP: Tutorials for Beginners
    Web Dynpro for ABAP: Tutorials for Beginners [original link is broken]
    Web Dynpro Architecture
    http://help.sap.com/saphelp_nw04/helpdata/en/a5/1a1e3e7181b60ae10000000a114084/content.htm
    Web Dynpro User Interface Design
    https://www.sdn.sap.com/irj/sdn/webdynpro?rid=/webcontent/uuid/ce44a14c-0a01-0010-af89-d7dbd944f176 [original link is broken]
    Getting Started with Web Dynpro Java
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/webcontent/u [original link is broken]
    uid/8921447c-0501-0010-07b4-83bd39ffc7be
    Developing ABAP applications using Web Dynpro Configuration Scenario
    http://www50.sap.com/businessmaps/8729920B31E343F099B71340B15F06DB.htm
    http://www.sapforum.co.kr/TECHDAY07/download/9.%20SAP%20WebDynpro_%EA%B9%80%ED%98%9C%EC%84%AD.pdf
    How-to add a custom Web Dynpro iView to the MSS Employee Profile (ECC 6.0)
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/how-toaddacustomWebDynproiViewtotheMSSEmployeeProfile(
    ECC+6.0)&focusedCommentId=55238
    Developing Java Applications using Web Dynpro Configuration Scenario
    http://www50.sap.com/businessmaps/8F5B533C4CD24A59B11DE1E9BDD13CF1.htm
    Regards,
    J.Joe

Maybe you are looking for

  • Converting my Library from one Mac to a new one

    Is there some tutorial that explains how I can get my iTunes Library from an iMac to a new MacBook Pro? My iMac has a CD-burning drive, not a DVD one, so I need a better option. Can I go from my iMac to an external hard drive, and then from the hard

  • Is it normall for a Macbook Pro to overheat during  browsing web pages?

    DonAnan Is it normall for a Macbook Pro 13" retina 2 weeks old to overheat during browsing web pages ? i just brought a new MacBook Pro 13" Retina ( Dual Core i5 2.6GHz , 8GB Ram , 512GB Flash Storage ) and i notes that its really get OVERHEAT on the

  • IC Webclient complaints layout

    Dear Experts CRM 5.0, We are making use of  standard complaint functionality in the IC webclient. We have a scenario where we need to manually add products in the item details of the complaint document but the item area is display only. We are unable

  • ISight not working in iMovie only

    Today I encountered an issue with my isight camera in imovie. Yesterday I was able to record with it just fine, but now when I click on the 'capture' button in the import window and then select an event location, the capture video screen freezes (tho

  • Drag and drop activity

    Hi all I am new to action script, plz can any 1 guide me to sort this problem. This is a drag n drop activity, there are 6 drag movie clips and 3 drop box which displays  two correct answer one below the other. I am not able to control the counter, i