COOIS report

In COOIS, for Production Orders, when list is 'Operations'  after execution fields EQUIPEMENT and MATERIAL GROUP are not displayed values though values are in table.
Can any body send solution for it.
Thanks in adavnce.
Surya

Hi Kaushik,
Thanks for the response.
When List is 'Order Header' in report Material number will be displayed  with values but with List as 'Operations' Equipement is displayed without values even though values are in table.
In our case both Material number and Equipement number is same  and have been maintained masters for each.
Equipement is assigned with Material number also.
Since Equipement number is not displayed, if Maerial number field comes in 'Operations' report layout, the problem can be solved. But Material number field is not shown in 'Operations' report layout.
Any suggestios pl.
Regds,
Surya.

Similar Messages

  • 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

  • COOIS report with sales order details

    Hello,
    I am looking for a COOIS report attribute or an extension of the COOIS report that will have the sales order detials on the ALV grid instead of having to drill down to it. I want the item level details and the characteristic values... Hopefully there's a function module that will get that information.
    Thanks,
    AJ
    Edited by: Antonio Jones on Feb 11, 2008 7:07 PM

    Hi,
    As far as my understanding there is no standard report is availbale
    see in va05 and in layout see inco term option is available or not
    Otherwise you can develop zreport, extract this from table VBKD
    Kapil

  • COOIS report: not able to select operations based on work centers

    Hi All,
    When accessing the COOIS report using operation listv& selecting the std profile.I need to get the operation perfomred on specific work center.
    I enter the work center & plant code in the selection fields available in the "select at operarion level" & i get the all the work center.
    Need to get list of operation performed at the entered work center.
    The requirement is due to the reason that a order is performed in two or three production facilities & production guys needs to look at operation list for given work centers.
    Regards
    Vineet

    Hi,
    This one of the options we had explored, but it would be better if we can get  the report by work center. The focus is to reduce the effort to get the report as there is need to get the same report for atleasr 8to 10 different group of work centers ( which are not in serial nos).
    We would then need to put the work centers in the filters & save the layout.
    Regards
    Vineet

  • COOIS- Report  Grid Value not displaying

    Hi Experts,
                   In COOIS report Prd Order item details , the grid values and stock category are not displaying values. we created the production order with AFS grid but while seeing report of item details the grid values and stock category are showing null values.
    initial screen,
    Report
    but production order contains grid values.
    any one guide me to resolve it.
    Regards,
      Thangam.P
    Message was edited by: Thangam Perumal

    Hi ,
         my requirement is need to show the grid value and stock category of AFS production order based on item details. i think that alv reports is working based on view. it is possible to add  custom view for that report? . if possible mean to any one guide me to fix the problem.
    Regards,
      Thangam.P

  • 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.

  • VERSION FIELD FROM SALES ORDER NOT APPEARING IN COOIS REPORT

    DEAR ALL,
      I am working on make to order scenario. Version field from sales order not updated when im taking MRP Run for specific Sales order in COOIS Report. But when iam creating production order with T. COde CO08 field getting updated. Its very important to get vrsion field as we have maintain old sales order No. in same. How this problem will get resolved?
    Regards
    Atul

    Atul,
    "MRP run" does not normally create production orders, MRP creates Planned orders.  Planned orders do not contain Sales order version.   I have never used this field before, but I would not be surprised if the behavior you are describing is 'standard'.  When you create a production order using CO08, you are creating a 'production order with reference to a Sales order' (which contains Sales Version).  When you create a production order using, say, CO40 or CO41, or using a program such as PPBICO40 in Batch, you are creating a 'production order with reference to a Planned order', (which does not contain version).
    If it is imperative that you have the Sales Order version number in all production orders, you could see if Planning Strategy 82 (Assemble to order) production orders contain the data you seek.  Otherwise, I am afraid you will have to have your ABAPers write some custom code to update this field in the production order.
    Another way to get sales order data into the production order, that does NOT require custom code, is by using Item Texts in the Sales order.  Any text placed in the Sales Order Item Text Field Production Memo (Text ID 0006) can be configured to be duplicated automatically in the Production order in an MTO environment.  Production Memo then displays as another Tab in CO02.
    Regards,
    DB49

  • COOIS Report Change

    Dear Friends,
    There is a  BADI for the standard COOIS report. I need some clarification in this regard. Actually I need some extra columns in the COOIS report output which are not available in the standard. For example... in the order header details along with material, material description I require the Size/Dimension details (from Material master - MARA table).
    Regards,
    Surya.

    Hello,
    my questions are closely related to the issue discussed here.
    please find time to answer them.
    I need details on how can I configure the output of the object overview screen, which is the correct place to do this?
    I know its a standard report/transaction, but I have a z-copy of it and I need to modify the same to get the desired results.
    e.g. I want to new buttons with extra functionality to be placed in the object overview sceen.
    e.g. thers is production order list in the object overview screen and I want a new button to be placed which calls another transaction.
    where can I edit the same.
    further, I want to add some more fields to the already displayed output and those fields are not present in the COOIS and they have to extracted from other DB tables.
    how can I do this?
    I want to understand the concept of layout and profile and how are they differenet.
    e.g. If I select a profile from the given F4 help say 00000001 (standard Layout).
    this changes the result output in the object overview screen. why are these 2 different entities. i.e. layout and profile.
    Thanks & regards,
    Ravish

  • 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.

  • COOIS, report issue

    Business likes to know list of PR's created in the system by MRP and PO if conevered for any requisitions
    I used COOIS --> Purchase requisition
    its giving all required columns except material number, it is blank
    Can you please help, any other report?

    As i aware COOIS --> Purchase Requisition
    will give for list of all materials PR's created by MRP if any, production order number will also be avaialble in output
    Edited by: Sasi nagireddy on May 24, 2011 2:40 PM

  • Enhancing the COOIS report

    Hi experts,
    I am working with WORKORDER_INFOSYSTEM badi, in which i am using the TABLES_MODIFY_LAY method.
    i added some custome fields to the structer ct_ioopconf in the ci_include.
    for the custom fields i populated the data. Now i want to see these custom fields in the output (ALV output) along with the normal report.
    will these fields automatically appear in the ALV or do i need to do anything extra.

    Thanks Pete Atkin ,
    This is awesome, It works for me!!
    You have any idea how to enhance selection screen. I do see "ENHANCEMENT-POINT" option but looking is there any other better solution.
    ~K

  • About the COOIS report

    Hi...
    Is thr any possibility of getting the material displayed, when the selections are given as
    List - operations
    Production order - some order
    Need to get the material involved for each operation..
    Tnx

    check the profile which u are using ? U can change the profile for COOIS by using Tcode COIS.
    regards
    Prabhu

  • COOIS report item differances.

    hi friends,
    what is the defferance between profile of "Automatic goods movements" and Documented goods movements" in transaction code COOIS ? and while executing both should show same results or diffrent with respect to same production order?
    pls explain with an example.
    points will be given
    thansk

    hi Suri
    in COOIS if at all u have selected Atomatic Goods Movement
    u will get the deatail of Goods Moved based on Backflush
    But in the Documented Goods Movement will show the Details of all the material consumed against that order
    Eg:  A is your final component B & C has been set as Backflush componets
    In COOIS it will show the B and C
    2) In Document Goods movement
    it will show A,B,C and also u have posted sum materials manual By using MB1A against that order and PRT against that order (means all the componets against that order which has created Documents ) .
    Madhu

  • COOIS Report to Check Planned Order

    Hi PP experts,
    My question is : Why COOIS for planed order operation detail is blank and how to show it?
    Please refer to below screenshot.
    Step 1: COOIS to get planned order.
    Step 2: Running and get result, and we can see the operation view is blank.
    Step 3: But if we check detail for planned order via T-code MD13 we can see the operation is in the detail.
    Best Regards,
    Bu Fanchao

    Hi Ganapathy,
    Thank you for your support.
    I have checked this profile '00000000001X'.
    The Order Categories of this profile is empty---Only Production/Process Orders.
    There is one case, in COOIS, I choose check-box for planned order and profile '00000000001X'.
    What is the logic of output for this case, the output display the Header, component.
    Best Regards,
    Bu Fanchao

  • Daily Production Report In coois

    Dear All
    When we r checking in Coois report for production entry Of SFG.FG--it will give us the Total qty,
    exactly we want that suppose one order qty is 15000 and i have put a production order of that Qty.  But according to Production Its going On With 500 or 600 per day produce.  then how can we see the production report of particular production confirmed qty and delivered qty  500 on which day . or we can see the Daily production report of Particular FG & SFG.
    Rgds
    Pankaj Agarwal

    Dear Pankaj,
    One way of addressing this issue is go to MB51, movement type 101 & 102 7 other relevant criteria.
    Plant n storage location.
    Execute>CtrlShftF12, you will see the list of material recvd. in the storage loc. you can also find the Production Order no.
    you can see when GR has happened against Prod. order.

Maybe you are looking for

  • Trying to use web app text field to redirect a page.

    I am trying to create a web app, that will provide 'members' with a page that they can use to redirect to other pages of their choice. What I want to do is allow the member user to select (from a dropdown menu, or even input their own into a text fie

  • Error while posting GR- "Enter a material or an item category"

    Hi All, While posting GR for a HALB material, I am getting this error: " Enter a material or an item category"...I am not doing Inbound delivery ..please assist Surendra

  • RFC Call from ABAP (R3) to Webdynpro EP

    Hi experts, I have a requirement to initiate a call from an ABAP program on R3 to a standard Portal (Webdynpro) API. Does anyone have any experience with this? I understand that normally Portal (Webdynpro) applications will make the RFC call to ABAP

  • Unreadable files on Time Machine post-Yosemite upgrade

    Can't open any documents in Time Machine pre Yosemite update.. Can see files when in Time Machine, but only within the file hierarchy into which i've entered TM- otherwise, can't move around, restore stalls once file/s have been selected, and then fr

  • Account clearing problem in Return to vendor scenario

    We created purchase order , GR and MIRO has also been done. Now we need to return the material to vendor due to some reason , in return vendor will pay back the money. My scenario is we purchased the item from vendor at Rs.500.At the time of return v