Coois output

I have some requirement in COOIS. In production order  out of all operations ( With different work center for Each operation)  my requirement is that, I need to see all orders where opeartions with workcenter A  AND  (Not OR) workcenter B are partially confirmed.
How it is possible to get workqueue like this?

Hi,
Its not possible to get your exact requirement in COOIS. You can come close to your need by setting the filters, but to get your AND condition you would need to go for a Z report if your need is a recurring one. But if it is one off need, then export to excel & modify the data as per your need.
If you opt for Z report, refer to tables - AFKO, AFVC, AFRU, CRHD to get the details.
Regards,
Vivek
Added
Also refer to tables - JEST, JCDS, TJ02 for status
Edited by: Vivek on May 20, 2009 11:42 AM

Similar Messages

  • COOIS : Production Order Information System

    Hi,
    In COOIS Report at header level, Report has a column order Type. Where as in Component level report does not have order type.
    Is there is any logic that order type has to be at header level not at component level.
    If not then there is any  report or way to get order type at component level.
    Regards,
    Vivek Malik

    Hi Vivek,
    Order type is an information at header level in the COOIS standard report.
    If you need to have this information in the COOIS report at component level you can use the Badi to insert a column in the COOIS and through production order to define the following type order.
    You can use this document in order to add a new field at level component.
    Additional Customer Fields in COOIS output
    As alternative soluction you can create a query using the following table:
    AUFK-AFKO (rsnum)-RESB
    I hope have been useful for you, let me know if i solved your requirement.
    Daniele

  • COOIS Report Output

    Hi team,
    I am executing the COOIS report. In the output, the orders with status"DLFL" are not listed. Is the COOIS, will not consider the orders with "DLFL" status?
    Thanks

    hi,
    please remember to select this indicator and execute.

  • User Exit -- To include purchase requistion/purchase order in COOIS report

    In a MTO envirnoment, trying to include purchase requistion/purchase order
    with requested delivery date information in COOIS report. Is there a
    user exit for this ?

    Hi,
    Please follow this an Example:-
    The COOIS report (Order Info System) gives the complete information regarding Production Order like header report, Operation report, Component Report, document report. 
    This document deals with the addition of extra fields in the output display of COOIS. 
    For the demo purpose, I have added the material group (MATKL) for the production order material for header report. 
    BADI Name: WORKORDER_INFOSYSTEM
    Method: TABLES_MODIFY_LAY 
    In the method TABLES_MODIFY_LAY there are many table parameters for different data display of the production order .In this scenario only the header detail structure is being extended with append structure. 
    Add the extra fields to be displayed to through append structure to IOHEADER_TAB, here MATKL. 
    In the method write the code for updating the field value. 
    DATA : BEGIN OF st_matkl,
               matkl TYPE matkl,
               END OF st_matkl.
      DATA : st_header TYPE ioheader.
      LOOP AT ct_ioheader INTO st_header.
        IF NOT st_header IS INITIAL.
          SELECT SINGLE  matkl
                 FROM mara
                 INTO st_matkl
                 WHERE matnr = st_header-matnr.
        ENDIF.
        st_header-matkl = st_matkl-matkl.
        MODIFY ct_ioheader FROM st_header.
      ENDLOOP.
    Regards,
    Ravi

  • Issue of layouts  in COOIS

    Hi,
    Recently we faced problem of layouts in transaction COOIS.
    Our users use transaction COOIS to see various production reports.
    Managers prepare the global layouts and inform users to use
    those layouts to see daily reports. In last month someone / somehow,
    deleted most of the global layouts.
    We followed up with Basis team to find out, how layouts deleted. But it
    is not possible for Basis team to find it, because if someone delete
    layouts, system will delete entries forever by table LTDX.
    We have checked table LTDX. We can see created and changed layouts in
    this table. But we are not able see DELETED layouts in this table.
    We tried the option of user specific layouts. But another users can not
    use those layouts.
    Our basis team informed that, layout don't have authorization group.
    Is it possible to restrict user from creating and deleting any layouts
    using authorizations?
    We want to provide authorization to certain users for maintaining and
    deleting layouts.
    If someone delete any layout, we want to know, who deleted it? Is it
    possible?
    Regards,
    Raj MB

    dear friend,
    you would create a new role(s) which based on authorization object like (for example) C_RMST_LAY (managing output layouts) or EASYDM_LAY (define user-independent layouts) or E_CACS_ALV (save authorization for global ALV layouts)
    or others - please use security info-system to find them out
    (please work with basis/security guys)
    set this new role to test user and play...
    the main idea - users only able to create their own layouts
    super users (like you) are able to create/change/delete any layouts - globals as well
    good luck!
    try to use SM20 to see users actions

  • Using data from mutliple tables in COOIS

    We are in the process of upgrading from 4.6C to ECC60. In 4.6C, we
    implemented the modification as described in Note 434123 to add custom
    fields to the COOIS report.
    Our custom list contains data from both the order header and order
    operations. Therefore, data was drawn from tables IOOPER_TAB and
    IOHEADER_TAB, which were both present in the old solution. However, the
    BADI solution used in ECC60 only contains data in the structure belonging to the list
    type selected at the selection screen. The list types are defined in
    domain 'PPIO_LISTTYPE'. The structure that is filled with data is set inprogram PPIO_ENTRY_FILL_TCOA, form 'fill_tcoa'. Unfortunately, there is
    no list type available that activates both IOOPER and IOHEADER.
    I also cannot find a method in the BADI to influence the content of TCOA.
    However, I don't want to create lengthy code to retrieve the data myself.
    The most tempting solution (modification) is to:
    1. extend the value range of PPIO_LISTTYPE with the cusom list
    2. add an entry to the CASE statement in form FILL_TCOA to place an 'X' in both 'cs_tcoa-oper_sel' and 'cs_tcoa-header_sel'.
    When (using list type PPIOO00-operations), and manually setting 'cs_tcoa-header_sel' to 'X' in the debugger, all data needed to create
    the desired output is present. Is it truly necessary to implement this as a modification, or is there a better solution (without implementing a modification) to activate data
    retrieval of multiple tables form logical database IOC?

    Thanks very much for your quick response Anup.
    1. If I create a view in R/3, please let me know how should I bring this information in to BW. Should I create a table in bw or should I create a generic datasource attaching this view?
    Also, please let me know what will be the logic (not the abap code) to create a view on these 4 tables. I need to incorporate this logic in to my spec.
    2. Do I write a function module in BW?
    Thanks!!

  • COOIS export to excel sheet.

    Hello All,
    When i am trying to export output data from COOIS to EXCEL, I found data mismatch between COOIS report and downloaded EXCEL file.
    Please help me in this issue.
    Thanks in advance
    Pushparaj

    Hi Kishore,
    Use the following blog to export from web dynpro to excel sheet.
    http://wiki.sdn.sap.com/wiki/dosearchsite.action
    And, the data within the cell in excel sheet is not displaying the same value as it actually contains as the size of the number is large and the format is changed to fit the excel sheet column width as standard excel functionality. Try fixing the format of the excel sheet column through code (specific node attribute passed), but I am not sure how to do that.
    Regards,
    Tushar Sinha

  • Field for actual produced goods in COOIS

    Dear gurus,
    Is it possible to see how many products have been produced by using T-code COOIS? If it is which field should I look at? I have a delivered quantity column that I see, would that be what I'm looking for?
    Pls help
    Tnx in advance
    Edited by: obie villamosa on Jun 25, 2008 11:43 AM

    Hi Obie ,
    T code COOIS :
    Select :
    List : Order headers
    Layout : 000000000002 ( std )
    Select plant and actual dates as needed.
    F8 or execute.
    Click on tab views > List output > Change layout ( tab on new page ).
    Here you can add or remove column fields . here you can add fields like Total scrap (GMEIN), Delivered quantity (GMEIN), Confirmed scrap (GMEIN), Confirmed quantity (GMEIN), Rework qty (GMEIN), Committed qty (GMEIN) etc .
    Total produced qty = delivered qty ( after GR) .
    Hope this helps .
    If satisfied reward and close .
    Neal
    Edited by: Neal Gibson on Jun 25, 2008 9:34 AM

  • Document links in COOIS

    In coois, if we choose document links in list option then in output we get only document items in BOm of that particular production orders.  It does not show items attached to material master of production order header material
    Inside production order we can see documents attached to header material of that order as well as document item in BOM

    Hi harish
    This setting is already available

  • System Status in COOIS

    Hi ,
    In COOIS report  two system status " REL and CLSD system status" is not work  for excluding .when i do exclude CLSD it is not effect in report output it is display but for another status it is work ok.another thing it is not work only Quality server but other server production and development it is work fine.
    T&R

    Itsmerajkhan,
    This is the incorrect Forum for this kind of question. What I suggest is that you do a search on COOIS and find the most appropriate Forum for this question.
    I did a search and saw a number of areas where this question may be best asked, but only you will know which is closest to your need.
    These Forums do NOT allow multiple postings of the same question in multiple Forums. Please close this message, find the most appropriate Forum using the Search box above and repost there.
    Regards,
    Bob

  • COOIS - new field  tobe added in selection screen

    My requirement is ' batch field shud be added in COOIS Selection screen & output shud come for given batch '.
    can anyone give the details .

    Hi,
    You have to customize the Program according to business requirement.
    You can copy as ZCOOIS and assign a Tcode for that and do the necessary modifications as per need.
    Regards
    Arbind

  • COOIS - Saving Object Overview WIP Status layouts

    COOIS - Would like to be able to save the layout of an Object Overview - WIP Status report.  There is currently NO icons for "choose layout" , "export" or "views" available while in Object Overview.   I need to be able to create a report showing the header and operations list and this is the only way to get both on the screen at the same time.
    After I create the report layout with the fields needed, cannot save this format in any way.   The only thing I can do is print the report to a PDF file for others to view.  Would like to be able to save the format I have created and bring it up on screen anytime without have to create it from scratch each time.  This would prove a great resource if I only had the ability to save the layout. Especially when have a few 100 production orders.
    Thanks for all help in advance.
    Stan

    What happened to my other thread with 4 replies?
    Receiving help from Prasobh.
    Using COOIS:
    LIST    Object Overview
    Profile   WIP STATUS         may be company created.
    output is a 3 shades of blue and gray Production Order tree.
    shows  orders header, component, operation and confirmation lists at one time.
    Thanks

  • Urgent:Regarding COOIS  transaction

    Hi Experts,
      I've to add two columns in the output of the COOIS transaction. There is no enhancement available for this....
    So, I've copied the standard program into a Z-program. I've found out the fieldcatlog where the New fields should be added.
    But I'm getting some error ..like Main program not found for....some of the includes..
      Please suggest.
    Thanks and Regards,
    Rudresh

    CHECK SAP NOTE 434123
    Summary
    Symptom
    You want the system to display additional fields in the order information
    system which are not provided in the standard system.
    More Terms
    COOIS, COHV, CO26, CO28, CO05N, CO04N, COMAC
    Cause and Prerequisites
    THIS IS A MODIFICATION.
    Note that as of Release 4.70, you can add additional fields without
    modification using customer includes and you can fill them in the
    WORKORDER_INFOSYSTEM BAdI (You can find examples of this in Notes 615176
    und 615206).
    For Releases lower than 4.7, you can only carry out the enhancement using a
    modification. During an upgrade, it is possible to transfer this
    modification to Release 4.7 (or higher).

  • Production order reporting using COOIS

    Hi all
    I am using tcode COOIS for creating reports for Production orders. I have the following requirement
    I want to batch schedule the report using a variant which I have done. The report should automatically run every night at 12 am and it should automatically email the report to the email ids of the Production team. The report should be in a spreadsheet format. My question is
    1/ where do i put the e mail id
    2/ how do i make it to spit the report in a spreadsheet format ( Manually I can go into System > List > Save > Spreadsheet and save it onto spreadsheet)
    thanks a lot

    Hi John Mastram,
    Use transaction SM36 to schedule your batch job. There you can maintain the email address of the recipient.
    If the scheduled job has a spool list output, the same would be sent by email to the address maintaind
    Regards,
    Jayakandan

  • COOIS report pls help ASAP

    HI...
    I want to modify 'coois' report but i am not able to find the final output table in it.
    Production Order number appears at output screen, i've to display SO NO and SO item which is there in Production order in the output list.
    Pls Help ASAP...
    Pts rewarded for more helpful ans for sure...
    Best regards
    Snehal

    Hello.
    Have a look into include LCOISOUTPUTF04, form pbo_0100, field symbol <table>. Insert a break-point in line 121:
    <ls_detail_list>-list->set_initial_data(
    Please, have in mind that this is a standard report before changing it.
    Regards.
    Valter Oliveira.

Maybe you are looking for

  • Hp mini 1035nr dc power jack issue

    HP Mini 1035NR DC power jack is no longer making a connection to the power tip. Voltage is consistent on the tip itself. Did not help that my wife has been using this for some time by wiggling the power plug into the DC jack on the side of the netboo

  • Table Control on a report selection screen -not a dialog transaction screen

    Hi Does anyone know of a way to have table control functionality on a report selection-screen? The program needs to be able to run as a background job (ie cannot be a dialog transaction) and we need to be able to save variants with the selection-scre

  • Problem connectin with bluetooth stereo headset

    Iam tryin to connect my z-w88 bluetooth stereo headset with my ipod touch 4g .. Headset has a default passkey 0000 ... My ipod generates a random passkey instead of askin the user to key in the passkey ... ... so i could not pair my headset ... pls h

  • Dpm 2012 remote administration - windows 7

    HI, I am doing a POC with DPM 2012 RC.  DPM2012 server has been setup and is working so far. I am trying to connect the DPM console for administration using Remote administration feature installed on my windows 7 machine. I am unable to connect and g

  • Trying to access iTunes Store kills network

    Mac Mini, Mavericks 10.9.1, iTunes 11.1.3 (8). When I open iTunes, and click on the "iTunes Store" button, my network connection dies, and nothing will revive it other than rebooting. Any ideas on what might be causing this? I'm connecting to the net