Work Order Confirmation -Zero Hours is allowed !

Dear Experts,
Can any one update, why work order confirmation is allowing Zero hours in IW41 transaction. Is there any significance for booking zero confirmation hours as SAP standard is allowing.
We need to restrict the same, is there any way to restrict without ABAP Team help.
Regards,
Sahu

Reasons for allowing '0' hours can be like if some does not want to account for a particular job. Possible some technical constraints were there while developing. As far as How to restrict is concerned, I do not see options other than using user-exit CONFPM05. This is because even if you set this field mandatory (Actual Work AFRUD-ISMNW_2) in Tcode OIZN, it does not prevent confirmation with Zero value. You can also try by setting this fields as Req. in this SPRO tcode.
KJogeswaraRao

Similar Messages

  • Mass reversal of work order confirmations

    Hi all,
    Can we do a mass reversal of work order confirmations which we do through IW41 transaction,instead of reversing the confirmations one by one, if so please explain how.
    Thanks & Regards,
    Jegashree

    Dear,
    There is no mass confirmation cancellation Txn available in standard SAP.
    Use
    BAPI_ALM_CONF_CANCEL     Cancel confirmation for maintenance/service order
    Hope it will help you.
    Regards,
    R.Brahmankar

  • Get Lastest date of the Work Order confirmation

    Hi experts,
    I want to write a report to get the lastest date of Work Order confirmation.Pls give me some logic solution. How to do?
    I know the work order can be cofirmed partly,So there are maybe several date for work order confirmation,I only want get the latest one.
    Edited by: Bean Dou on Jan 5, 2009 8:24 AM

    SORT BY DATE FIELD
    DATA:CNT TYPE SY-TABIX VALUE 0.
    SORT ITAB BY ERDAT. --->SUPPOSE THIS IS THE DATE FIELD
    LOOP AT ITAB.
    CNT = CNT + 1.
    ENDLOOP.
    READ ITAB  INDEX CNT.
    ****NOW YOU CAN GET THE LATEST DATE ROW******
    ITAB-ERDAT.

  • Work order confirmation after TECO

    Hi Friends,
    I have been facing a trickey situation where even Work order got TECO and i am triying to confirm the Operation (IW41) its allowing me to enter actual hours.however in work order those hours getting updated as actual Hrs aganist operation.
    How its possible,in fact i should get error message.
    can you please suggest.
    Regards,
    Srinika

    It is standard behaviour. There are ways to restrict. See these 2 posts
    User-Exit way
    Stop Confirming TECOed PM Order: User-Exit Way
    Status Profile way
    PM Order - System Status and User Status Update
    KJogeswaraRao

  • Updating PO confirmation and ASN through Work Order Confirmation

    Hi,
    We implemented PO collaboration and Supplier is doing PO Delivery confirmation and ASN.Now we are implementing Work Order Collaboration and system  created Work Order with reference to Purchase order.
    I want to know whether PO confirmation  and ASN date gets copied from Work order dates(after doing confrimation for phase Transport).
    I want to know what setting we need to do as presently it is not getting copied to Work order. And I want to know how it updates ECC confirmation tab for Purchase Order.
    Please do the needful
    Regards
    Raghavendra Pai

    Hi Raghavendra
    The above validation check will prevent supplier confirming purchase order request lines in PO details screen, so only supplier can confirm through WO confirmations, i.e by accepting the work order request lines in delivery overview, adapt the work order
    This will make the work status as CIAG from CINE, in negotiation to in agreement
    Then you can publish the work order, this will copy the confirmed data from the work order as identical request data and confirmation data to the purchase order. this data will be picked by ROC_Out and updates the po data in backend
    Please check whether ROC_out is available in customizing
    SPRO-SNC-BASIC SETTINGS-PROCESSING INBOUND & OUTBOUND-PROCESS TYPES OUTBOUND MESSAGES
    ASSIGN OUTBOUND MESSAGES TO DEFAULT PROCESS TYPES
    REPLORDC_O ASSIGNED TO ICH SUPPLIER COLLABORATION
    Still if does not trigger, kindlly check the log slg1
    it could be problem with ODM's ,POS etc
    Best Regards
    vinod

  • How to regenerate COSS table for work order operation planning hours

    Hello,
    I am looking for a SAP report or a custom solution to update the table COSS table from work order operation hours. Several work orders incorrectly updated in the table COSS with result the cost is incorrect.
    For example: In the work order opertions, I have  planned 2.5 hrs and in the table COSS it is 1.5.
    Much appreciate for your help
    Bill

    It is quite simple actually.
    As soon as your array exceeds SDU (defaults to 2048), sqlnet will fragment the packet. (see: sqlnet more data to client messages in your trace file)
    As soon as the packet is bigger than your NICs MTU, the NIC will fragment the packet.
    So, depending on the number of bytes for 1 record, high array size make sense or don't make sense.
    And ideally SDU should be a multiple of MTU.
    So do high arraysizes make sense? Usually not.
    Hth
    Sybrand Bakker
    Senior Oracle DBA

  • Restrict work order confirmation without activity price in KP26.

    HI Guys,
    we are maintaining the activity price in KP26 for mandays activity and confirming it in IW41. Now if activity price is not maintained in KP26, and confirming the mandays in IW41, system should through an error message. please let me know how can i do this.
    Anil Kumar. V

    Hi
    you can check the SPRO in Define Control Parameters for Completion Confirmations where you can mark the Actual cost , and Termination for incorrect act cost. where in it will through an error which confirming the same.
    If the above conditions don't met your requirement you can check the same using user exit
    Regards
    Thyagarajan

  • Default Profile Settings for Work Order Confirmations (IW42) Screen

    For the IW42 Screen, I have a requirement to ensure that all users see one profile only.  Currently, we have to set it manually for each user.  Is there a way to mass update many users so that they can see the one specific screen that can be set in the background?

    Delete all other Profiles from the IMG
    Then they can only select one...
    Otherwise, write a program to update table TPMUS-PROFIL
    PeteA

  • BAPI/FM Help Needed for PM Work Order Update and Notification create

    Hi,
    I am using BAPI - BAPI_ALM_ORDER_MAINTAIN to update the work order details and create notifications for the object list but i am getting errors in doing that.
    IWO_BAPI 203 -Changing the execution factor in the BAPI is not supported
    And i have to create notifications to each object in the object list. This BAPI is not supporting that.
    So i used another BAPI BAPI_ALM_NOTIF_CREATE to create notification and passed the order number , counter etc to it but in the order it is creating a new row for that equipment and linking the notification to it.
    Need some help on these.

    Dear
    1. If you want a Notification mandatory to be created for Order using IW31 you can once make this happen by User Status in Order ,   i would suggest if you are doing implementation better Use Order Types  which has got Notification integrated in it .
    Check Order type PM05 in Ideas server you have PM05 Order with notification fields integrated , which created notification in Background when order is Created or released.
    2.For Work Order B --> Notification A , Not Allowing I donot have any idea check whether is there any User exit from experts or ask ur Abaper
    Regards,
    Edited by: Srinivas Narayana Gowda on Jun 11, 2009 1:10 PM

  • Document number-PM order confirmation by IW41

    Hi,
    For PM work order confirmations, I want to fetch the document number. In which table can I find the document number stored? I found it in AFRU-CATSBELNR, but only for CATS confirmation. For confirmation of work order through IW41 transaction, is there any table where I get the document number?
    Thanks and Regards,
    Jegashree

    Hi Jane,
    I am getting the confirmation number.but not able to fetch the document number (I need this document number to fetch the cost per line item/confirmation from COEP table) Does the PM order confirmation through IW41 transaction have any document number?
    Thanks

  • PM Order Confirmation list

    Dear all, I have a (PM) Work order against which a number of Internal Activities allocations have been created.
    All the respective confirmations for work carried out show up on the Work Order confirmation list.
    The problem is, some of the Activities have not passed price across onto the Work Order for some reason. Does anyone know a simple/effective way of reposting the line items onto the Work Order.

    hi thyagarajan,
    Thanks. However, I dont understand what I actually need to do.  This was a Work Order created by someone for our company.
    A number of Activities (for labour work carried out) have been posted to the work order confirmation list, however only some of the Internal activity allocations are showing line items on the Work Order (tcode kob1).
    How do I repost the ones not showing on the lilne items. How does this relate to Planning. I do not fully understand if you could kindly explain.

  • Change Work Center during production order confirmation

    Dear All,
    I must to modeling this situation:
    I created an production order. In routing I used an work center A.
    After I confirmed a half of quantity, the work center A was damaged and I must to change it, with the work center B.
    The system allow this change, but when I checked the costing, the situation isn't real. The system counted the costs just for the work center A, and no for work center B.
    My question is: it's possible to change the work center, during production order confirmation and the costs updated with new cost?
    Thank you for your answer!
    Regards,
    Marian

    once a Order is released, the Process order detaisl for that order is frozen.
    however if you want to do it, change the order status to CRTD after reversing the Movements done.
    Do READ MAster data , this will copy the new Work center , redo the previously done Moevements.
    if the change is long term.
    or
    Just manually add the new work center and do the processing. if the change is temporary.

  • Actual hours done against a work order for a Work Center by non-maintenance

    Hi All,
    I have below question with respect to work center.
    -If there is this actual work hours done on a work order by non- maintenance personnel for a certain work center and same is not reflecting under operation tab of work order, then where & how this hours (done by non- maintenance personnel) for a work order is maintained for that work center?.
    -In which database table these hours done by non- maintenance personnel for a work order is stored by work center wise.?
    Thanks

    Have a look at the document flow button in the order header.
    The confirmation data resides in table AFRU
    PeteA

  • Dont want to allow user to confirm more hours than planned hours

    Hi,
    in the projects,
    we dont want to allow user to confirm more hours than planned hours.
    Pls suggest.
    Thanks

    txn OPST
    set confirmation parameters with work and duration deviation  = 0
    set up std workflow for work/ duration deviation
    if anyone does ignore the warning and continues with the confirmation at least you will get a message
    this is std SAP no development is needed

  • How to allows decimal place for unit of measure of order confirmation

    Hi Guys
    we have some special cases here that need to confirm the order quantity as decimal place,is that possible made some customizing in code CO11N? or have some ways support it .....
    ex. work order A   10 EA
    - operation 1   : colse 10 EA
    - operation 2   : close 4.5 EA
    Regards/Eric

    Hi,
    You can set a UoM to allow decimals in transaction CUNI. But i fail to understand why you would want to set EA to have decimals.
    If a material is to be managed in decimals then evaluate the usage of a different UoM which allows for decimals.
    Regards,
    Vivek

Maybe you are looking for