Production Order, Operation Release Manually System Status Table:

Hi Expert,
1) i am creating Production Order for only Reporting purpose, we have 38 Operations and it will doing different different users, customers wants to status for Operation what time and date it operation is release, and what time confirm, in two activity during period we wants capture, release>> Confirm, i found table for Confirmation operation Date and Time, but now i need to what time operation release, date and time, Table, also i config. done in OPK8 in implementation tab, release versions HEADER, ITEM, OPERATION all tick.
but i cnt able to find where it is store. operation release time and date.
when we show in CO02, operation overview, select operation, click on status (i)> extras> change doc. >> all >>click on release > sys show there correct time and date.
pl. suggest
MANOJ

Hi,
You can make use of the standard SAP Order info system transaction COOIS for order confirmations , also you can make use of the table AFRU.
Please give suitable points if answer found helpful/suitable.
Regards,
Amol Kale

Similar Messages

  • Production Order Operations System Status

    Hello Friends,
    I want to include Production order operations status in customized report. Can you pls suggest me how to fetch Operations status since I am unable to find the same from any of the Production Order Operation table (AFVC, AFRU, AFVU, AFRH etc) Also JEST, TJ02 tables provide Prod  Order header level status. I want to fetch Operation level status.
    Hope to have your valuable inputs for the same.
    Thanks & Regards,
    Tejas

    Dear Mr Brahmankar & Mr Vivek,
    Thanks for your answers.
    I am working with the ways you suggested.
    In case any issue will ask to you.
    I really appreciate your timely help.
    Regards,
    Tejas

  • Set Production Order to Release status

    Hi,
    I’m trying to add a new production order through the DI API.  I’m using SAP 2005A SP01 PL 07.  I’m creating it from a sales order.  But if I try to set the status of the Production Order to Release I get a -5002 error.  If I set the status as Planned it works fine.  I’ve also tried creating it, and setting to released after the Production order has been added, which doesn’t work either.  Is there a rule for changing a Production order to Release that I’m missing?  Here is my code:
    ProdOrder.ItemNo = ItemCode
    ProdOrder.CustomerCode = oSaleOrder.CardCode
    ProdOrder.DueDate = oSaleOrder.DocDueDate
    ProdOrder.PlannedQuantity = ItemQuantity
    ProdOrder.ProductionOrderOriginEntry = oSaleOrder.DocEntry
    ProdOrder.ProductionOrderOrigin = BoProductionOrderOriginEnum.bopooSalesOrder
    ProdOrder.ProductionOrderStatus = BoProductionOrderStatusEnum.boposReleased
    ProdOrder.ProductionOrderType = BoProductionOrderTypeEnum.bopotStandard
    ProdOrder.PostingDate = Date.Now

    Tested and working code:
    ProdOrder.ItemNo = "A00009";
                ProdOrder.CustomerCode = "C0001";
                ProdOrder.DueDate = DateTime.Now.AddDays(1);
                ProdOrder.PlannedQuantity = 1;
                ProdOrder.ProductionOrderOrigin = BoProductionOrderOriginEnum.bopooSalesOrder;
                ProdOrder.ProductionOrderStatus = BoProductionOrderStatusEnum.boposPlanned;
                ProdOrder.ProductionOrderType = BoProductionOrderTypeEnum.bopotStandard;
                ProdOrder.PostingDate = DateTime.Now;
                int result = ProdOrder.Add();
                if (result != 0)
                    //Error
                    string error = SBO.DI.Connection.SboCompany.GetLastErrorDescription();
                else {
                    string lastKey = SBO.DI.Connection.SboCompany.GetNewObjectKey();
                    ProdOrder.GetByKey(Convert.ToInt32(lastKey));
                    ProdOrder.ProductionOrderStatus = BoProductionOrderStatusEnum.boposReleased;
                    int result2 = ProdOrder.Update();
                    if (result2 != 0)
                        //Error
                        string error = SBO.DI.Connection.SboCompany.GetLastErrorDescription();
                    else {
                        //OK
    The reason you attempt did not work could be if you did not do the GetByKey. This is needed since an Add just add the data to the database, but does not ready the just added object for continued work (does not provide the docEntry and other autofilled data)
    Message was edited by: Rasmus Jensen

  • Import Production orders with released status

    We are using DTW to import production orders. It allows to import as "planned" status only and not as as "released status". We have hundreds of production orders per day and its a pain to update each production order to "released" status so that it can be available for reciepts from production and thereafter after recieving the items, changing each and every production order to "closed". Please advice

    Hi Mohamed,
    please use the following for the production order status in the template.                                                                               
    (1)Planned   :-> boposPlanned                                              
    (2)Released  :-> boposReleased                                             
    (3)Closed    :-> boposClosed                                               
    (4)Cancelled :-> boposCancelled                                                                               
    Please refer to the SDK DI help file for the details information.          
    hope it helps,
    Regards,
    Ladislav
    SAP Business One Forum Team

  • Every time system create new production order after releasing sales order c

    Hi Guru,
    FG material strategy: 82 (sales order creates production order).
    After creating the sales order it goes in to credit block. Whenever we release sales order from credit block through VKM1, system has created production order. We confirmed this production order and delivered.
    But after this sales person change the sales order value, because of which again sales order goes into the credit block and after releasing sales order from credit block system create new production order even if one production order already confirmed and delivered against the same sales order.
    *Every time system create new production order after releasing sales order credit block.
    Thanx & regards
    pnu

    PNU,
    So, to restate:
    In MD04, you have Unrestricted Sales order Stock ('E' Stock) on hand.
    In the same MRP segment, and against the same Storage Location as the stock, you have a Sales Order requirement that was recently blocked and unblocked.
    During the unblocking event, the system produced a new production order.
    This is not normal.  If the above accurately depicts your situation, I would look for an altered Strategy 82, or a userexit.  SAP ATP (the beginning event of the Strat 82 process) will normally first check for the availability of stock.  Only if the stock is not available, then it will create the new production order.
    Best Regards,
    DB49

  • Production order creation , release and confirmation cycle

    Hi All SAP Gurus,
    I am trying to set Production order creation , release and confirmation cycle integrated  to  xMII.
    I am sure there must be many among you who worked on this before.
    So can you please share your experience.
    Thanks in advance
    Regards
    Ritesh

    Hi Ritesh,
    I'll give you what I have been using:
    - Transferring orders to MII
      You can trigger the orders by tcode POIT or an equivalent BAPI (BAPI CLOI_DOWNLOAD_TRIGGER_TRANS) or have the iDOC being sent automatically whenever someone creates a new production order in R/3 (using change pointers). In both cases you will receive an iDOC in XML format from SAP with the production order information on it. After receiving this file a BLS transaction will be required to read the XML file and store it in your local DB.
    - Releasing orders from MII
      You can release the orders from MII using the BAPI BAPI_PRODORD_RELEASE (it will update the order status in R/3 to REL). After that you might want to update the production order status in MII local DB as well. Usually I have the bapi BAPI_PRODORD_GET_DETAIL in place in order to read the production order details whenver I need.
    - Doing confirmations from MII
      After the PO was released, you can do confirmations against each operation using the BAPI BAPI_PRODORDCONF_CREATE_TT. You can send up to SAP good quantity, scrap quantity, labor/machine time, etc. It's a pretty intuitive BAPI.
    If your system is not ready to do goods movement automatically you will need to use BAPI_GOODSMVT_CREATE.
    This is basically what I use in this kind of project. If you have any questions please let me know.
    Regards
    Ricardo

  • Automatic Locking of Production Order on release

    Dear Experts,
    When the production order is released, the order should be "Locked" automatically. When changes are required, the production order is unlocked manually and changes are done. This is our requirement.
    Is it possible to lock the order on release.
    If yes what are the settings?
    Regards,
    Jejesh

    Hi,
    Go to T.code BS02.
    - Create new Status Profile , if required do it by copy any standard one.
    - Then go to Detail screen.
    - Assign order status.For your reference I have used 2 order status.
    - CRTD - Created.Set this one as Initial one.
    - LOCK - Release and Locked.
    - Now assign Object type to this status Profile.You have to select PP/PM Order Header.
    - Now double click on Status CRTD and press New Entry tab to find and set allowed Transection.Here you have to select and restrict transaction types this status.
    - Now go to Status LOCK and double click.Then press New Entry tab.You will find the list of transactions.
    First select Transaction Release and make it as allowed and also activate radio button for Set.It will activate the status LOCK automatically after release of order.
    - Now make forbidden of all other transactions like change of order,Confirmations etc. as per your suitability.
    - You can assign any other user status also for further transaction control.
    - Then save your status profile.
    - Now assign this Status Profile to Order type using T.code OPJH.
    Regards,
    Dhaval

  • Production Order Operation Confirmations & CATS_DA

    Hi All,
    We are trying to reconcile a discrepancy between CATS_DA data and confirmations entered against production order operations.
    I can see the Operation text in the CATS_DA report, and also the WBS element.
    I can see the time entries on the confirmations on the production order.
    But I can't find any link between the two, and if we sum or aggregate our data, the total hours for Production Order Confirmations are always more than the total hours in CATS.
    This is driving us crazy.  Can anyone help with some ideas?
    Thanks,
    Timothy

    Hi Selva,
    1. What is the  object type for "Planned Orders" to define number range?
    The object for planned order is PLAF. You can directly maintain the number range in OMI2 (for planned orders created during MRP) and OMI3 (for manually created planned orders).
    2. How to define number range for reservations, operation numbers, order confirmations?
    Go to SPRO on the following path: Production Planning for Process Industries - Process Order - Master Data - Order - Number Ranges
    Or use the following transactions:
    CO83 - reservations
    CO81 - operations
    CO80 - confirmations
    Bonus: to define default values for operation, use transaction OPJG.
    Regards,
    Julian

  • Production order operation's standard value

    hi,
    can anyone shed some lights where does the production order operation's standard values derive from?
    thanks.

    hi there,
    see in work centre inital screen u define the std value key . depending upon the std value key u get the fields for  execution time . set up time , labour time ....etc
    u define here that wether timmings by clicking the drop down .
    should be maintainned ,
    can be maintained ,.......
    if u define here that the timming for execution time should be maintained ,the system while ,creating the operation by using this workcentre ,system will ask u to put a value which will define the operation time for the operation on that work centre .
    depending upon the drop down in workcentre for the execution time should be maintained or can be maintained system will either will allow u to go ahead or not with out entering the operation timming

  • Which field gives whether production order is released or not ?

    Hi ,
                 i want to know how can we get whether a production order is released or not for co01 .
    In which table and what field needs tobe checked for aufnr  ?

    Hi Ujjwal,
    Go to CAUFV Table pass this AUFNR and get the OBJNR value.
    now call the FM STATUS_TEXT_EDIT
    call function 'STATUS_TEXT_EDIT'
            exporting
              flg_user_stat    = 'I'
              objnr            = caufv-objnr " Pass OBJNR here
              only_active      = 'X'
              spras            = 'E'
            importing
              line             = s_status " if this contains REL then it is released,
    "it can contain LCKD(Locked) TECO(Technically Completed
    DEL (Deleted ) etc
    or PCNF(Partially Confirmed for other list contact your PP Consultant )
            exceptions
              object_not_found = 1
              others           = 2.
    Cheerz
    Ram

  • Standard Report for missing parts at production order operation level?

    Hi PP Gurus,
                We have standard report for missing parts at production orders level.
    For our client, they need a report for missing parts analysis at production order operation level. Do we have any such standard report in the SAP?
    Please help.
    Thanks,
    Reddy.

    Hi Arvind,
          Thanks for for your response.
    1. List: Components,  Layout: Standard layout          set the Missing part
           It shows the component requirement/withdrawn  quantity for each operation of production order. It is not showing the commit quantity.
    2. List: Components,  Layout: Pick list          set the Missing part
           It shows the component requirement/withdrawn  quantity for each production order.
    3. List: Components,  Layout: Missing Parts List-Material View          set the Missing part
           It shows the component requirement/commit quantity for each production order. It is not showing the commit quantity at opertion level.
    4. List: Components,  Layout: Missing Parts List-Order View          set the Missing part
           It shows the component requirement/commit quantity for each production order. It is not showing the commit quantity at opertion level.
          We are unable to get the solution from all these 1 to 4 reports from COOIS.
    Do we have any option to change the existing layout (ex: 3 ) to get the commit quantity for operation with missing parts indicator?
    If avilable, what is the procedure to be followed?
    Thanks,
    Reddy.

  • IDOC/BAPI for Production order creation from Legacy system

    Hi all
    We are using an interface to create Production orders from legacy to SAP. Would you recommend an IDOC or a BAPI to create Production orders. If IDOC or BAPI then could you please mention which one?
    thanks a bunch

    Hi John,
    For your purposes, please use BAPI for production order creation from legacy system. There is no standard inbound IDoc available to use. SAP has an IDoc for outbound interface only (message type LOIPRO).
    If there is an inbound IDoc available, I would recommend to use an IDoc.
    IDoc technology has excellent error handling and will allow you to reprocess an error (if any).
    BAPI is also good approach to use and fast in term of  processing.
    For BAPI approach, you can use BAPI BAPI_PRODORD_CREATE.
    Hope this will help.
    Regards,
    Ferry Lianto

  • Service PR from production order operation!

    Hi All,
    I just want to check whether it is possible to trigger service purchase requisitions (with item category D) for an external vendor from a production order operation?
    If it is, please let me know the procedure to do so...
    Regards.
    V S

    >
    V S wrote:
    > but how do i get the item category in PR as D for service?
    Hi,
    Item category D is not possible but u can use that pr as Service PR ... We were using this process only.
    Now we are creating manualy.
    Arun

  • Restricting a production order from releasing

    Hi,
    How can i restrict a production order from releasing if material is not available?
    Regards,
    samir
    Edited by: wadajkar on Jun 2, 2010 2:51 PM
    Edited by: wadajkar on Jun 2, 2010 2:51 PM

    Hi,
    In t code OPJK at material avialibility check section maintain '3' i.e. do not release if components are not avialable.
    Regards,
    Vishal

  • Functional module for production order operation standard values

    Hi,
    Is there any functional module/BAPI available where I can get the 'Standard Valuse' (Setup/Machine/Labor) from production order operations directly?
    Regards,

    Hi Caetano,
    Thank you for your reply.
    I checked suggested BAPI BAPI_PRODORD_GET_DETAIL, it gives me the operation details like control key, Activity name (like KMCH, KMOD) but not its standard values (values for: Setup/Machine/Labor).
    Could you please check and confirm?
    The FM: PM_ORDER_DATA_READ gives me all details but as name start with PM, I am not sure if its only related to 'Plant maintenance' orders and if its ok to use this FM for PP production orders.
    Please suggest.
    Regards,

Maybe you are looking for