How to block order confirmation, before issue of raw materials?

Dear Frndz,
My client would like to block order confirmation, before issue of raw materials.Also, they do not want to use backflush concept.Pls help me out with the step by step process.
Regards,
Srini

Srinivasan,
You can think of using available user exits which are listed below,
CONFPP01            PP order conf.: Determine customer specific default values
CONFPP02            PP order conf.: Customer specific input checks 1
CONFPP03            PP order conf.: Cust. specific check after op. selection
CONFPP04            PP order conf.: Customer specific input checks 2
CONFPP05            PP order conf.: Customer specific enhancements when saving
CONFPP06            PP Order Confirmations: Actual Data Transfer
CONFPP07            Single Screen Entry: Inclusion of User-Defined Subscreens
Please take help from your ABAP consultant.
Hope this helps you.
SmanS

Similar Messages

  • How to achieve Indenting and Issuing of raw materials in Oracle 11i

    Hi
    We have an issue with indenting and issuing of raw materials between stores and shop floor.
    Business Process is:
    1) Shop Floor should send a requisition of raw material to stores department i.e., (Indenting) with authorization of Production Manager.
    2) Then based on the requisition, stores needs to issue the raw material to Shop floor with Stores Manager authorization in report format.
    Work around:
    we have created Flexi Fields (DFF) in the Batches window under context value,
    through which we can indent quantity of that item datewise required.
    But the trouble is, it is time consuming and data entry is more.
    Also we have RM Pick List report, which is not useful for us for this process.
    Can any one please give me any idea how to do this process with minimal data entry in optimal time without new customization.
    Thanks in advance for your valuable ideas
    Prem.

    Hi Gordon,
    My SBO version is 8.8 PL 10, Indian Database. I want to see the "Raw Material" G/L Account's opening balance in the Opening Balance Column of Trial Balance or similar report of SBO. The technical problem behind this is - the mentioned reports shows the the amounts in OB column if that amount is entered by the OB Transactions (in Administration -> System Initialization). But how to manage the Raw Material / Inventory G/L through this concept, as the OB amount for this is entered through Inventory Initial Quantity. We can do the entry one day before the expected starting date of the financial period, is that can be a standard practice? For. e.g. entering the opening balance for 1-1-06 on 31-12-05.

  • How to block PGI(posting good issue) only!

    Hi,
      when end-month closing, we want to block PGI(posting good issue) and can not let warehouse person to do PGI.
      How we can do? block Vl02N? or block move type:601? because we just want to block PGI, other Tcode and operator can be used.
    Thanks!

    Another alternate method beside as i said earlier, you can write the following coding in user exit MV50AFZ1  , FORM USEREXIT_SAVE_DOCUMENT.
    Before writting prog ,customise one entry in Z table .
    SELECT SINGLE * FROM Ztable CLIENT SPECIFIED
    WHERE MANDT = SY-MANDT AND Ztable-fieldname = 'ABC'.
    IF SY-SUBRC = 0 AND SY-UCOMM = 'WABU_T'.
    CHECK NOT SY-TCODE = 'VL02N'.
    CHECK NOT LIPS-BWART = '601'.
    ENDIF.
    So , whenever you want to block the PGI , you need to maintain the entry in Ztable and when u do not want you delete the entry in Ztable .
    Take a help of ABAPer and add this , your problem will be solved 100%.
    Please give your feed back .
    saravanan

  • How to block order for a particular customer. pls read clearly

    hi
    some customers may be asked for cash and carry procedure.
    bcos they do very small sales they have access to only cash sale document ie CS.
    here how to block OR, RO etc to that particular customer or group of customers
    regards
    sridhar

    Hi,
    One simple way would be to give those customers a special sales area (e.g. a separate distribution channel) than for normal customers. Then you do not allow the Document Type for this sales area in the transaction "Assign Sales Areas to Sales Document Types" in IMG (Sales & Distribution -> Sales -> Sales Documents -> Sales Documents Header).
    Ensure that the customer is created to this "blocked" sales area only. Then when you try to create the sales order, system would give an error message saying customer is not defined for the sales area, and would not let you proceed.
    Hope this helps,
    Regards
    Nikhilesh

  • How to correctProcess Order confirmation data posted in the previous month

    Hi All PP Gurus,
    Can anybody tell me the answer of following
    How we can correct the process order confirmation data posted in the previous month.

    Dear Ashok/Brahmankar,
    Actually i am facing the following problem:-
    1) If you cancel the confirmation done in the previous month by the tcode CORS, the CO document is posted in the previous period because we cannot change the posting date in CORS. But the previous period is already closed.
    Can we change the posting date in CORS manually? Or do you have any other idea? 
    2) When reading the master data in COR2, I face the error because the status of PO is already set as 'DLV'.
    Do we need to read the master data even when the value is changed in KP26?
    Thanks,
    Narayan

  • Need help on Production order confirmation cancel issue

    Hi,
    I need your help regarding Prduction Order issue.
    We have created Production Order and issued raw materials and we done paritial confirmation also. Now the order status is PNCF.
    After that we notice that it was wrong confirmation so we went CO13 we cancel those confirmations.
    But in our zprogram still those order is showing as paritial confirmation order.
    I need in which SAP table confirmation status stored and what will be the production order status after cancel the confirmation.
    and in which table cancel production order confirmation data will be availiable.
    please guide me
    sateesh

    HI,
    There is No Standard Status for Reversing or cancelling the Confirmation.
    Generally, When you confirm the status PCNF or CNF gets active.
    When you reverse it theybecome inactive.
    also let us know, whether You cancelled or reversed the confirmation or revesed the GI postings.
    If you have reversed the GI postings using Reverse Movement type or Materail documents, it is possible to have the PCNF order status unchanged.
    Regards
    Ratan
    Edited by: Ratan on Aug 28, 2009 7:23 PM

  • How to stop goods receipt before issueing the goods for production order

    Hi All,
    I try to follow the thread SAP ERP Manufacturing - Production Planning (SAP PP) to do it, however it is not working. I already created the status profile, assigned it to 'StatusProfile Header' in OPJH for the correct order type. However when I change the status to permitted GR, it is still not able to give me to do it in MIGO. Any idea?
    Thanks.

    Hi Justin,
    User status will not sutiable for your requirement, the best way is to use User exit or BADI
    Implement the BADI - WORKORDER_GOODSMVT in this there is method
    MANUAL_GOODS_RECEIPT under that
    write this code
    if_ex_workorder_goodsmvt~manual_goods_receipt.
    data: lt_resb type standard table of resb,
            wa_resb type resb.
    select * from resb into table lt_resb where rsnum eq i_order_header-rsnum and xloek eq space and bdmng gt 0.
    check sy-subrc eq 0.
    loop at lt_resb into wa_resb.
         if wa_resb-enmng < wa_resb-bdmng.
              message E499(sy) with 'Order is not fully consumed. Processing is STOPed'.
         endif.
    endloop.
    endmethod.
    Enhancement: MBCF0002
    Function module: EXIT_SAPMM07M_001
    Code for your copy pasting in the source code of ZXMBCU02.
    Remember to activate the program. In SMOD enter the enhancement, press F8 and then click on activate button.
    *& Include ZXMBCU02
    Regards,
    Sankaran

  • Process order confirmation related issue

    When a confirmation is of the process order executed the open reservations for this order should be closed but it will only do so for a limited number of items.
    When looking at process order xxxxxx it will show a final issue for materials say A, B and C but it will leave all the other items open and will therefore generate requirements for these items in MRP.
    How to solve this?

    Dear Sosal,
    use Mr. Bramhankar's proposal, if u want system to propose by default in confirmation screen. if u set this for partial confirmation also it will be final and confirmation and reservation gets cleared.
    one more option is while confirming the order either in CORK/COR6N select manully automatic final confirmation and clear reservations. ur issue will be resolved
    sree

  • Product Costing - Process Order Confirmation

    Dear Experts,
    We are facing a situation with our Product Costing Scenario :
    Under SFG Process Order Confirmation, there are Ten Phases to finally confirm the order. First Phase is for Raw Material Issuance. From Second Phase to Ninth Phase are relevant to Activity Types. Tenth Phase which is final phase, in this point Goods Receipt posting is generated.
    At first phase, system posts Raw Materials Goods Issue (Movt Type 261) to Process Order:
    Entry : RM (Cr), Consumption (Dr).
    Client needs the system to post one more entry at the same time by : WIP (Dr), Inv Change (Cr).
    Reason:
    According to client, they have made consumption entry in finance but what if all raw materials are not consumed as yet and factory comes under fire, then how can they claim insurance on those Raw Materials which are not consumed and are still in the IN PROCESSING Stage?
    My Answer was:
    - They can find all material costs in Process Order as Debit Item.
    - They can also calculate WIP but cannot post WIP in Finance unless the order is settled.
    Ultimately, as per my knowledge client cannot check the unprocessed Raw Materials report in FI but they can check in CO. And this is the point of reservation from client.
    They need an entry in Finance for WIP to claim insurance in case of fire and therefore they need a posting of  WIP entry immediately after Goods Issue of Raw Materials to Order.
    Can anyone please guide me further regarding this scenario and if any one can suggest any work around then it would be highly appreciated!
    Regards,
    Zain Bashir 

    Hi Zain
    This is a very unusual question
    Buddy, there is something in accounting called as "Going Concern Concept" which we all were taught in our accounting days.. That means when you do business, do it with a mindset that you are goinig to do it for long / for ever.. Accidents dont happen every day and you cant build a system around such things
    Assume there is a fire (God forbid).. After the accident, you wont even know how much was  lying there unconsumed which got gutted in the fire..
    And insurances not just covers the stock lying consumed, but also stock manufactured and stock in the process of manufacturing (WIP)
    And most importantly, dont expect SAP to throw up a figure at the click of a button.. Does your client really think that they will simply submit the report generated from SAP as-is to Insurance people?? SAP is just a technology enablement, which requires human intervention at various places
    My opinion - Dont build system for such requirements
    Br. Ajay M

  • Limit Order Confirmation

    Classic Scenario - SRM 4.00
    Does anybody knows how are Limit Order Confirmations being transferred to the backend? Although the G/R & Service Entry Sheet are in the backend we can't find any IDoc for the document.
    Are confirmations for Limit Orders being transferred in a different way than the normal Purchase Orders? 
    Any advice would be very much appreciated!

    Hi
    <b>Incase you want to do any enhancement or changes to the Limit Order Data before the order gets created in the R/3 Back-end...
    Use the following BADIs to do that job.</b>
    BBP_CREATE_PO_BACK                 OLD Exit while creating a PO in the backend system
    BBP_ECS_PO_OUT_BADI          ECS: PO Transfer to Logistics Backend
    BBP_CREATE_BE_PO_NEW     Exit while creating a purchase order in the backend system
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • Cancellation of Production Order confirmation (CO13) not generating TR/TO

    Hi,
    We are facing a typical issue in the PP-WM interface. When we create an order and confirm it (partial confirmation), the Goods movement happens (261 mvt type) as desired and the TO is created and confirmed in the background.
    But, when we try to reverse the movement type (cancelling the production order confirmation using CO13) then there are no TRs or TOs generated in the background (for movement type 262).
    When I manually try to post a material document for 262 movement type, it creates a TO in the background (as per the configurations that I maintained) but this does not happen when movement type 262 is called using PP interface.
    The movement type configurations are all done for Automatic TR and TO generations - this works with normal IM process (when we manually post using MB1A transaction) but not with the return Goods movement happening with PP.....here, the material comes back to the interim storage type 914. We then need to create a TO manually and confirm it to take the stock back in to the original storage type and bin.
    We want that when a process order confirmation is cancelled then the materials should be posted back in to the original storage type and bin (from where the material was issued against the order).
    For Info: COGI shows no errors during the 262 movements, also, material document is generated for 262 movement type but no TR/TO generated.
    Is there any configuration that we have missed?
    Thanks and Regards,
    Shankar

    Hi,
    Yes, you are correct in the understanding that the system creates quants in 914 when the production order confirmation is cancelled. But, it does not generate any TR or TO in the background to post the stock back into the original storage type.
    Can we not use the put away strategies so that the system determines where to place the material? My query is that despite all the configurations for automatic TO creation and confirmation for movement type 262, it does not generate a TO (or TR) in the background when a production order confirmation is cancelled using CO13.
    However, if I manually post a material using MB1A for 261 movement type and reverse it using 262, it generates a TO and confirms it as per the setting in configuration.
    The same thing does not work when we run it through PP (CO11N and then CO13).
    Any suggestions on how to approach this and where to check for missing configurations?
    Thanks and Regards,
    Gaurishankar

  • How to block material issue to work order

    Dear Expert,
    How do block material issue to work order when the item have been flag for deletion in MM module and have also been block for procurement and inventory in mm module.
    Please help

    Hi,
    Thank you for the prompt reply, what you mean by the Standard SAP? can you provide the reference link? I am facing the problem that the item material have been flag for deletion and been block for procurement and inventory in MM module material master data however it still able to material issue to work order. Any ideal how to block the material issue to work order when the material item have been flag for deletion and block for movement in MM material.
    Please help.

  • Order Confirmation - Generate IDoc even if the order is credit block - How?

    Hi EDI Experts,
    I have a simple requirement. I have no requirement set up in the output determination procedure for Order Confirmation. At this scenario, i am getting outbound 855 IDoc for all the orders except, the orders with Credit block on it.
    The client wants to send out the order even if it is credit blocked. Is there a way that i can do this?? Any suggestions ??? Your views are most welcome.
    Thanks and Waiting for youy replies,
    Creasy Matt

    Hi,
    I'm not sure, whether it is apt to ur requirement.
    We can remove the Credit block by configuring the 'Sales Order Types'.
    from the Tcode: VOV8, 
    Select ur order type (OR), click on the details icon
    there u can find the 'Delivery block' at the Shipping tab.
    thanks\
    Mahesh

  • How to restrict the GR for Production Order when Goods Issue is not done

    Hi Gurus
    How to restrict the GR for Production Order when all the required components for production order are not issued with all required quantity. Even for partial issue system should not allow GR with 101. The user status with RMWA, RMWF & CGFB is not working.
    Pls suggest best solution.
    Abhijit.

    Hi,
    You can club together the GI nad GR at the time of confirmation..
    I.e Backflush for the components and auto GR for the Product.
    So that you can stream line the Process.
    The best Option would be to use the User Exit:
    Enhancement - MBCF0002
    Functional Module - EXIT_SAPMM07M_001
    Include - ZXMBCU02
    Refer below link for further details..
    How to stop the goods receipt before issueing the goods for production orde
    Regards,
    Siva

  • Order Confirmation Without Doing Goods Issue & No Goods Receipt W/o Confirm

    Hi,
         I am facing a problem at client site & i need a quick response from you people.
    If i am not doing GOODS ISSUE to a Production Order the system is allowing me to do Confirmation for that Production order & also the system is allowing me to do GOODS RECEIPT for that Order before doing complete Confirmation.
    My client wants that Without doing Goods Issue it should not allow order confirmation & also No Goods receipt without doing Final confirmation. Please help me regarding this configuration, How to do it. If it is possible then please help me& tell how to do it.
    I am in final stage of my project.Please i want a quick response.
    regards
    Jimmy

    Hi Ashish,
    you need to create new thread anyway
    for process industry you need to use CONFPI 02  you can put this in SMOD and go to display in that you can see component when you click that you can find functional module  : EXIT_SAPLCORF_402 click in that you can see include in which you need to modify
    take help of ABAP and do some modify to this module
    Thanks
    Bala

Maybe you are looking for

  • URGENT - need help with ansi/iso outer joins

    Hi, I am currently preparing for the OCP sql exam for the 9i developer track and I think a statement is printed wrong in my study book, please could somebody confirm the following:- Oracle Outer Join syntax from tab_a, tab_b where a.col_1 (+) = b.col

  • How to get the name of workspace on htmd db local installation

    Hello to all, I have been working with my html db Xe version on my pc for a while now. I forgot the workspace name. I am trying to run the sample application and for that I need the admin for username and workspace name for password. But forgot the w

  • Adobe Creative Suite 5 serial number problems.

    I had to wipe my computer recently and am trying to reinstall my CS5 however when I put in the serial number I wrote down from last time it didn't accept it. Upon going to the website to obtain a new serial number it wouldn't recognize my product cod

  • Script Error when starting Crystal Application

    Post Author: jhartney CA Forum: General Anybody seen this?  Just started when opening any report, been working fine for over a week and now this error.  Does not seem to harm anything, the reports still regenerate just fine.  Only happens when starti

  • A few OC Question

    I started to venture into overclocking my computer a few days ago.  First I ran the ATI overdrive utility and it brought my core clock up to 689 (from 621) and didn't move the memory clock (Still at 747).  I then went into my CPU and did the "DOT" at