Production confirmation screen CO11

Hi All,
My requirement is that during Prod Order Confirmation using transaction code CO11, the yield is not appearing in the initial screen to suitably select the quantity needed for confirmation. It comes in a subsequent screen and in case I need to change the quantity, again I have to go back and repeat the process. This takes up a lot of valuable time and considering the volume of order confirmation in our plant, it is practically not possible for us to do every time. Kindly confirm whether any solution is possible.
Regards,
Rinky

Hi All,
Here in the CO11 screen, i need to check the what are the Production Orders are open for a particular material. We have lot of Production Orders to confirm. From the Menu i click on Selection -> Order Selection -> Orders/Material. Then I will get a pop-up window of Production Order / Material Selection. Here i enter Material Number and Plant and then click ok. Then again a pop-up window gets opened with details like Order, Order type, Plant, MRP Controller, Production Start Date, Del. Date, Total Order qty and Unit. But the problem I want the yield qty to be confirmed and not the Total Order qty. Because i won't be knowing whether that particular Prod. Order is fully confirmed or Partially confirmed.
So if you know a solution, then please let me know.
Thanks,
Rinky

Similar Messages

  • How to maintain scrap in Production Confirmation CO11

    Dear experts,
                            how to maintain the scrap qty in production confirmation , in CO11 there are two field  namely called as yeld qty and scrap, if enter scap qty here how system will calculate scrap  and what are all the setting to be done?
    regards
    rajakarthik

    Hi,
    In CO11 if you enter quantity in field scrap then system would scrap the quantity means no positive or negative entry of stock will be done.
    In SAP scrap stock in not maintained. If you enter scrap in that field then it will exhaust from SAP. You will not get that material in any form of stock.
    If you get fixed qty of scrap and you want to maintain the stock of it in different material then maintain that material with negative qty in BOM.
    When ever you do confirmation you will recieve the scrap material in stock through 531 movement.
    Regards,
    Vishal

  • Confirmation in co11 with scrap

    Hi,
       My client doing production confirmation in co11 ( operation wise)
       they want enter scrap qty in confirmation and scrap material qty in 531 there itself
       whether we can enter it in Goods movement screen in co11????
    thanks in advance

    hi
    thanx for reply
    while doing confirmation i entered yield qty 44 nos scrap qty as 1 nos
    and i click goods movement tab .
    there i entered my scrap material and qty 3.2 kg and 531 mvt and scrap storage location (manually)
    then i save the confirmation. system post the scrap material to scrap storage location.
    instead of doing this one in Mb1c. im doing in co11 for particular operation.
    whether it is advisable ??
    thanks in advance

  • CO11N - Confirmation screen - production order

    Dear Experts,
    How to set mandataroy field for (execution start, finish, created by, created on, time) CO11N - Confirmation screen, which config settings to change.
    pls advise
    Thanks,
    Sankaran

    Hi ,
    Go to transaction CO86 - define field selection for confirmation and set the required fields as Required entry fields.
    Hope the info is useful.
    thanks and regards
    Murugesan

  • Report for open orders and amount of product confirmed

    Hi All,
    Can some one give me an idea on a report which shows open orders and also shows amount of product confirmed against these open orders?
    Thanks,
    Neelima.

    Hi Veni,
    Incomplete order are the order's in which some data is missing so that particular order can't be further processed, that is what you could check through "Incompletion Log". Whereas Open orders are the orders which are open for further processing viz. deliver billing(but open order is a complete order i.e. no data missing).
    Check this program:
    *& Report ZGM_OPENPO *
    REPORT ZGM_OPENPO NO STANDARD PAGE HEADING LINE-SIZE 132 LINE-COUNT 36(2).
    TABLES: t001w, "Plants/Branches
    ekko, "Purchasing Document Header
    ekpo, "Purchasing Document Item
    marc, "Plant Data for Material
    mara. "General Material Data
    DATA:
    BEGIN OF itab OCCURS 0,
    matnr LIKE marc-matnr,
    werks LIKE marc-werks,
    beskz LIKE marc-beskz,
    mmsta LIKE marc-mmsta,
    END OF itab.
    DATA: BEGIN OF iekpo OCCURS 0,
    ebeln LIKE ekpo-ebeln,
    menge LIKE ekpo-menge,
    aedat LIKE ekpo-aedat,
    wemng LIKE eket-wemng,
    END OF iekpo.
    DATA: BEGIN OF iekko OCCURS 0,
    ebeln LIKE ekko-ebeln,
    lifnr LIKE ekko-lifnr,
    bedat LIKE ekko-bedat,
    ekgrp LIKE ekko-ekgrp,
    END OF iekko.
    selection-screen:begin of block b1 with frame title text001.
    SELECT-OPTIONS werks FOR ekpo-werks OBLIGATORY.
    SELECT-OPTIONS matnr FOR ekpo-matnr.
    SELECT-OPTIONS beskz FOR marc-beskz.
    SELECT-OPTIONS bsart FOR ekko-bsart.
    selection-screen:end of block b1.
    INITIALIZATION.
    AT SELECTION-SCREEN ON werks. "Validate for werks
    SELECT SINGLE * FROM t001w WHERE werks IN werks.
    IF sy-subrc 0. MESSAGE e429(mo). ENDIF.
    AT SELECTION-SCREEN ON matnr.
    SELECT SINGLE * FROM mara WHERE matnr IN matnr.
    IF sy-subrc 0. MESSAGE e429(mo).ENDIF.
    START-OF-SELECTION.
    SELECT * FROM marc INTO CORRESPONDING FIELDS OF TABLE itab WHERE werks IN werks AND beskz IN beskz AND
    matnr IN matnr.
    SELECT ebeln FROM ekpo INTO CORRESPONDING FIELDS OF TABLE iekpo
    FOR ALL ENTRIES IN itab WHERE matnr = itab-matnr AND loekz EQ space.
    SELECT ebeln lifnr bedat ekgrp FROM ekko INTO CORRESPONDING FIELDS OF
    TABLE iekko
    FOR ALL ENTRIES IN iekpo WHERE ebeln = iekpo-ebeln AND bsart IN bsart.
    SELECT ebeln menge aedat FROM ekpo INTO CORRESPONDING FIELDS OF iekpo
    FOR ALL ENTRIES IN iekpo WHERE ebeln = iekpo-ebeln. MODIFY iekpo INDEX sy-dbcnt.
    ENDSELECT.
    SORT iekpo BY aedat.
    DELETE ADJACENT DUPLICATES FROM iekpo COMPARING ebeln.
    SELECT wemng FROM eket INTO CORRESPONDING FIELDS OF iekpo FOR ALL ENTRIES IN iekpo WHERE ebeln = iekpo-ebeln.
    MODIFY iekpo INDEX sy-dbcnt.
    ENDSELECT.
    END-OF-SELECTION.
    DATA : file_name TYPE string.
    file_name = 'c:\pay_det\open_po1.xls'.
    DATA : BEGIN OF it_join_fields OCCURS 0,
    field_name(20),
    END OF it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'ebeln'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'menge'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'aedat'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'wemng'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE =
    filename = file_name
    filetype = 'ASC'
    APPEND = 'X'
    write_field_separator = 'X'
    TABLES
    data_tab = iekpo
    FIELDNAMES = it_join_fields
    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 iekpo.
    IF iekpo-menge NE iekpo-wemng.
    WRITE:/4 iekpo-ebeln,21 iekpo-menge ,46 iekpo-aedat, 56 iekpo-wemng.
    ENDIF.
    ENDLOOP.
    if sy-subrc 0. write / 'no data exist for this plant'. endif.
    TOP-OF-PAGE.
    uline 1(80).
    WRITE :/ sy-vline, 20 ' OPEN purchase ORDERs report' color 5,
    80 sy-vline.
    uline 1(80).
    WRITE:/ sy-vline , 4 'PURSCHASE ORDER' COLOR COL_HEADING,
    20 sy-vline, 21 'ORDER QUANTITY' COLOR COL_HEADING,
    45 sy-vline, 46 'item change' color col_heading, 55 sy-vline,
    56 'RECIEVED QUANTITY' COLOR COL_HEADING, 80 sy-vline.
    uline 1(80).
    END-OF-PAGE.
    WRITE :/ 'PAGE NUMBER' ,SY-PAGNO.
    Hope this helps you.
    Regards,
    Chandra Sekhar

  • Production Confirmation cancellation issue

    Dear All,
    After Production Confirmation (101), stock is in QM and Insp Lot Status is REL. Still System is not allowing CO13 as well as CO11 with 102/262, saying "Change the inspection stock of <material> in QM only".
    Inspection Type: 04, 05 is activated for both Produced Material (101) and consumed material (261). We tried by removing 05 inspection type for both Materials.
    Above error message appeared for Producted Material (101).
    Ideally, System should allow to cancel Production Confirmation when stock is in QM with REL status.
    Request to guide what went wrong.
    Regards,
    Tanuj Parikh

    Dear All,
    Issue solved as per Note: 48815.
    Regards,

  • Production confirmation is to be disallowed

    Hi,
    I want to restrict the production confirmation of an order for a particular work center.
    Note- Partial confirmation is made for the particular work center and after some specific labor hous, the confirmation should be restricted for the concerned work center.
    I have tried with changing the control key, however I am getting the error: C2 270
    pl suggest
    Regards,
    Santhosh

    Dear
    Goto CO02-Production Order Number -Select the Operation Overview Icon -Goto Operation Detail screen -select the Operation you want to restrict  for Confiramtion posting -Goto Restrict Processing -Set LOCK-The status will be updated with LKD even it is REL.
    Now goto CO11N -Try with the same operation confirmation number -System will nto allow you to do the confirmation posting
    Try and come back
    Regards
    JH

  • Display of additional data of production confirmation  in QA11

    Dear All,
    While production confirmation in repetitive manufacturing, we are capturing machine related data like die no  through development and savind in table.
    My requirement is to display the data mentioned during production confirmation (die no) in QA11 screen which enables the user for defects recording. Here we have used  '04' inspection type , based on production confirmation quantity ,inspection lot  wil be generated.
    please provide your valuable suggestions
    Thanks & regards,
    rajesh

    Hi Luke,
    Thanks for your reply,
    I think the userexit "QPL10004" suggested  by you will display the additional data stored in QALS table. However, our requirement is to display the data stored in "RMRP" table based on material document no stored in QALS table while posting usage decision.
    We have appended RMRP table with zfields like die no, & we've done a developement, like whenever we do production confirmation in repetive manufacturing the die no will be stored in RMRP table.
    And we've activated '04' inspection type in the material master of the product produced.
    Our requirement is to display the die no (stored in RMRP table ) to user in QA11 , so that the user will be aware of the die no for which he is going to post usage decision in order to record defects die wise.
    we are producing similar materials on various dies.
    I've preapared a logic to display die no in QA11 which is as follows.
    1. Get material document No from: QALS-MBLNR, QALS u2013 HERKUNFT=u201904u2019
    2. Against QALS-MBLNR = BLPP-MBLNR, get the value of BLPP- PRTNR
    3. Against BLPP- PRTNR = RMRP-PRTNR, get the values of  RMRP- ZZMDV01, RMRP- ZZDIE_NO, RMRP- ZZCAVITIES, RMRP-ZZSHIFT
    4. Display of data of step 3 in inspection lot u2013 T-code = QA11, by creating custom fields for display
    If available, please suggest any userexit/BADI which will support the above functionality.
    Thanks & regards,
    rajesh

  • DBCA confirmation screen hangs

    Hi Experts,
    I am trying to create database from DBCA and when I get the confirmation screen it gets hang. Please help me with the issue.
    Using 11gr2 on RHEL6 64bit.

    Below is the message I am getting while running DBCA. on location /u01/app/oracle/cfgtoollogs/dbca.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=orcl)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    Start Date 03-AUG-2012 11:51:38
    Uptime 0 days 1 hr. 31 min. 18 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    Listener Log File /u01/app/oracle/diag/tnslsnr/localhost/listener/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=orcl)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=localhost)(PORT=2484)))
    The listener supports no services
    The command completed successfully
    [TaskScheduler timer] [ 2012-08-03 13:22:56.497 IST ] [NetworkUtils.checkListenerStatus:449] returning listenernull
    [TaskScheduler timer] [ 2012-08-03 13:22:56.499 IST ] [OsUtilsUnix.validatePackage:969] package found: libaio
    [TaskScheduler timer] [ 2012-08-03 13:22:56.500 IST ] [Verifier.validateTemplate:2007] StorageType == 0
    [TaskScheduler timer] [ 2012-08-03 13:22:56.502 IST ] [Verifier.calculateCloneDatafilePathsAndSizes:3448] canonicalPath=/u01/app/oracle/
    [TaskScheduler timer] [ 2012-08-03 13:22:56.502 IST ] [Verifier.calculateCloneDatafilePathsAndSizes:3448] canonicalPath=/u01/app/oracle/
    [TaskScheduler timer] [ 2012-08-03 13:22:56.503 IST ] [Verifier.calculateCloneDatafilePathsAndSizes:3448] canonicalPath=/u01/app/oracle/
    [TaskScheduler timer] [ 2012-08-03 13:22:56.505 IST ] [Verifier.calculateCloneDatafilePathsAndSizes:3448] canonicalPath=/u01/app/oracle/
    [TaskScheduler timer] [ 2012-08-03 13:22:56.506 IST ] [Verifier.calculateCloneDatafilePathsAndSizes:3448] canonicalPath=/u01/app/oracle/
    [TaskScheduler timer] [ 2012-08-03 13:22:56.576 IST ] [Verifier.calculateRedoLogGroupFileSizes:3579] canonicalPath=/u01/app/oracle/
    [TaskScheduler timer] [ 2012-08-03 13:22:56.578 IST ] [Verifier.calculateRedoLogGroupFileSizes:3579] canonicalPath=/u01/app/oracle/
    [TaskScheduler timer] [ 2012-08-03 13:22:56.579 IST ] [Verifier.calculateRedoLogGroupFileSizes:3579] canonicalPath=/u01/app/oracle/
    [TaskScheduler timer] [ 2012-08-03 13:22:56.579 IST ] [Verifier.getControlfFileSizes:3498] No. of Control files:=2
    [Thread-33] [ 2012-08-03 13:22:56.611 IST ] [UIHost.getHtmlSummary:1081] UIHost:getHtmlSummary: running createTemplateDocument NOT for SHOW_TEMPLATE condition
    [Thread-33] [ 2012-08-03 13:22:56.618 IST ] [UIHost.getHtmlSummary:1087] UIHost:getHtmlSummary: after running createTemplateDocument NOT for SHOW_TEMPLATE condition
    [Thread-33] [ 2012-08-03 13:22:56.633 IST ] [XSLConst.generateHeaderXSL:214] NLS:Template Name:= null
    [Thread-33] [ 2012-08-03 13:22:56.633 IST ] [XSLConst.generateHeaderXSL:219] Template Description:= Use this database template to create a pre-configured database optimized for general purpose or transaction processing usage.
    [Thread-33] [ 2012-08-03 13:22:57.079 IST ] [UIHost.getHtmlSummary:1117] UIHost->getHtmlSummary: start printing of transformed document
    [AWT-EventQueue-0] [ 2012-08-03 13:24:37.886 IST ] [Host.cleanup:3407] Dbca exit status is: -1
    [AWT-EventQueue-0] [ 2012-08-03 13:24:37.887 IST ] [Host.cleanup:3410] check point context null
    [AWT-EventQueue-0] [ 2012-08-03 13:24:37.899 IST ] [InventoryUtil.getOUIInvSession:347] setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
    [AWT-EventQueue-0] [ 2012-08-03 13:24:37.900 IST ] [InventoryUtil.getHomeName:111] homeName = OraDb11g_home1

  • Alternative unit at Confirmation screen

    Dear All,
    For a material BUM is TON but i have maintained Unit PC as production unit in Work scheduling view. but when i go to confirm the order of that material automaticallt unit TON appears instead of PC. why PC is not appearing there.

    Hi
    If you already maintained alternate units in the additional data of material master, it is possible to change the units in any screen and in the confirmation screen input pc manually and enter and the corresponding quantity will be displayed. Hope this will help you. By default it will take production units
    Thx krishna

  • Manual Creation of Production(confirmed) in Planning book

    Hi Experts,
    I just want to ask if in case I manually enter a production order quantity for a certain material location in Production(Confirmed) key figure, would it automatically populate dependent demand quantity on components?
    I understand that if production order comes from SAP R/3 and CIF to APO, I will have both production order and dependent demand in palnnign book. But in case production order is loaded from an external file or manually entered, would it also gives me dependent demand? Thanks.
    Regards,
    Mylene

    Hi Mylene,
    I agree with Virender (who seems right quite often actually )
    I think you are approaching this the wrong way: you cannot create a SNP production confirm; and will never be able to...
    However, you can create a produciton confirm order via interface; and , providing you do that properly, your order will be visible in SNP, both in produciton confirm and dependant demand.
    I hope it make sense.
    Where you need to concentrate your effort is on this interface.
    You will probalby need interface to create PDS / PPM and to create comfirm order.
    I am not an expert here, but I guess the best is to use bapi (e.g  "PrdDataStructureAPS" (BUS10014) or "ProdProcessModelAPS" (BUS10003 / "ManufactOrderAPS" (BUS10503)
    Thnaks and Regards
    Julien

  • How to retrieve material document no. based on production confirmation no.

    Hi Friends,
    I am retreiving the production confirmation number(PRTNR) thru bapi BAPI_REPMANCONF_CREATE_MTS. Based on that confirmation number I need to retrieve material document number (MBLNR)
    Because multiple users can post finished goods from different locations at same time, I have to complusory retrieve the material document number based on confirmation number only. Tables MKPF and MSEG doesn't have confirmation number fields in them.
    I would appreciate if anyone could suggest me good ideas.
    Thanks in Advance.

    Hi Melih,
    Thank you for your valuable response.
    My BLPP table gets updated with material document as well as confirmation number.
    When I test my FM directly, I get a confirmation number in my export. I don't get a material document number in my export parameter. But, BLPP gets updated with material document number as well as confirmation number.
    But, if I debugg the FM with the same data I get the material document number as well as conf. no. populated in my export parameters.
    This is what I have done:
    Export parameters
    MAT_DOC type BELNR_D
    CONF type PRTNR
    DATA: GS_BLPP               LIKE BLPP,
                          GV_MAT_DOC      TYPE BELNR_D.
    CLEAR: GV_MAT_DOC, GS_BLPP.
        SELECT SINGLE *  INTO GS_BLPP
                         FROM BLPP
                        WHERE PRTNR = CONF
                          AND PRTPS = '0001'.
        GV_MAT_DOC = L_BLPP-BELNR.
        MAT_DOC              = GV_MAT_DOC.
    Please let me know if I have done something wrong.
    Thanks.

  • Restrict Authorization at Material level during production confirmation

    Hi SAP Gurus,
    I would like to ask if its possible to restrict authorization at Material Level during production confirmation.
    Our scenario is we have SFG and FG which are handled by different group of people but it has the same Order Type. Now we want to restrict authorization such as one department can only confirm SFG and the other department can confirm FG only.
    Is it possible to set authorization at material type or production scheduler level. IF not possible, is there other way except creation of new Order Type?
    Thanks,
    Raymond

    Hi Raymond,
    DO you mean I should create a customized table for this?
    Yes
    Are there no standard way?
    As per my knowledge, you can control through production order type, so you need to create seprate order type for this
    Thanks,
    Sankaran

  • Cheque for Payment skipping Confirmation Screen

    Hi Experts,
    When I print cheques (created by payment wizard), it prints and gives the next cheque number which is fine, however I don't get the Confirmation Screen and soon after I get the error message 'No matching records found 'Cheques for payment' (OCHO) (ODBC -2028)
    I had checked forums link Problem in Check Number Configuration and sap note 1059752 which does nto resolve the issue.
    Any help will be appreciated. The client is on 8.8 PL16
    regards
    Johnson

    Hi Manish,
    Yes, I am able to open the check for payment window manually and in the option credited GL Account , i found account is listed.
    And also i done all setting in house bank setup as per SAP note 1059752.
    Banking -
    > check number confirmation
    check number confirmation - Selection criteria  -
    > Window open
    After data is put and enter
    Error message is display "No matching records found 'Cheques for payment' (OCHO) (ODBC -2028) [ Message 131-183 ] ..
    Till not resolve .
    Regards
    Vinod G

  • Production Confirmation - Report

    Dear Sirs,
    I am doing production confirmation with a particular Scrap / Reject Qty. through CO11n / CO15.
    Client requires the following:
    1. Wants to Track the Scrap Qty. which is being posted.
    2. Wants to note down the Reasons of rejections and wants a report of the same.
    Do we have a Standard functionality for the above 2 points.
    Kindly help me in this regards,
    Thanks in advance,
    Harris Panchal

    Hi,
    Thanks.
    But if i do the same through QM, means that i have utilised All the resource in Production for All Qty. which is not the case.
    If i scrap the Qty. at the first opn. means the 2nd Opn is producing Qty. - (less) Scrap Qty.
    If i do through QM it would consider that all components manfactured are OK at prodn. which is not the case.
    Please revert back if i am wrong.
    Regards,
    Harris

Maybe you are looking for