Report on 0IC_C03 Cube

Hi
   I executed the "Stock Overview: Materials" report( included 0VENDOR Characteristic to Rows in Query designer) on 0IC_CO3 Cube,where Vendor is displayed against some In-house Production Materials from Raw material -X),for which the  F.consultant says that Vendor should be displayed only against the Raw material X (which we purchase )and shouldnt be against materials Y and Z
( Y produced from X and then Z from Y)(EG     X--Y---Z)..Can anyone give the reason behind this ( just a standard report)..
manythanks

Assumption : Data is from R/3.
Locate a characteristic in your query which has a description 'Material Type', hard code 'ROH' value to it & execute.
Material Type ROH stands for Raw Materials,HALB - Semifinished Products & FERT - Finished Goods in R/3.
You had mentioned that X is an ingredient in Y. Then Y should ideally either be Material Type HALB or FERT.

Similar Messages

  • When running a query of a 0IC_C03 cube copy inventory shows as blank

    When loading the 0IC_C03 cube copy ZMM_C01 Cube: Material Stocks/Movements, if there
    is no movements for that day in a plant the inventory values do not show when we run a query on that key date
    When we create a movement type and run the extraction then the ending inventory values
    will show when we run a query usig that key date.
    So if there are no movements types for a plant  then the inventory balance does not show up in our query reports. Once we post a
    movement type for a plant and extract data then rerun our reports then the inventory balances show up.

    Refer link
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30f15839-0cf1-2b10-c6a7-ebe68cc87cdc?QuickLink=index&overridelayout=true
    & check ur e-mail.

  • Missing movement type data in 0IC_C03 cube

    Hi Gurus ,
    i  have deltas running for 0ic_c03 cube in B1 7.0 i have used transformations for loading cube .
    In a report of this cube for plant material stock,  i can c the quantities matching with MB51  report of R/3 where as the values are not matching for sum material ( negative stock values with 0 qtys )
    i found that a movement type 121 data is missing in BW
    i have read thread on the forum suggesting  to work on OMJJ transaction and make 121 movement type as statistics relevant.
    But i want to know how this action will effect on R/3 update controlling ?
    any inputs will b a grt help
    Edited by: Rajesh Dalwadi on Jan 13, 2009 12:09 PM

    Hi,
    We faced lot of problems with missing movement type, fo that we taken correct confirmation from MM team and then added it in Update Rules and deleted the data in Cube and then Re-Initialized the Cube.
    To do this, you need ECC Down Time. I'm talking about BW 3.5. I think in BI7, it may be easy, (without taking down time, pls check).
    Thanks
    Reddy

  • Reporting on Virtual Cube - DTP Authorisation is required??

    Hi all,
    Say there is a Virtual Cube V, i have multiprovider on top of it M, When i am running report on this M, it is saying as there should authorization to run the DTP's.
    Is it necessary to have DTP authorizations, to run a report on Virtual cube??
    Please let me know how to overcome this, other than including DTP authorizations in the User roles.
    Let me know your suggestions.
    Thanks,
    Sowrabh

    Hi Krishnan,
    Yes Users needs to run the report in front end.
    Can we give authoraztions for only these particular DTPs that to in display mode, so that they can run the queries??
    Would there be any issues by doing so??
    Thanks,
    Sowrabh

  • Report on Virtual cube is not working.

    Hi,
    I  created a report on virtual cube, Virtual cube is based on Function module which will pick data from Multiprovider, In the FM mention the import parameter name as " Muli Provider" Name.
    Multiprovider built on SPO object , On SPO object BIA is created, If can de activate the BIA on SPO then the report built on virtual cube is working in the portal. If I can activate the BIA the report is not working in the portal.
    The report is working fine in RSRT and Analyzer either BIA is active and deactive.
    Regards
    GK

    Hi
    The multi cube you created must be comprising of Info cubes, DSO and Info objects. Now this error which you are getting is it for
    - a specific characteristics or
    - any characterisitcs that is entered fourth in the series of filter selections or
    -  the fourth value in a specific characteristics
    Is the characteristics and the value which you use in filter present in all the underlying objects included in the multi cube ? You can check it in each of the objects associated in the multi cube, independently. This will give you an idea as to whether the error reported by the system is genuine or not.
    Cheers
    Umesh

  • Adding fields to 0IC_C03 cube

    Hi friends,
    I have to add some fields into 0IC_C03 cube. The fields are reson for movement ,special stock indicator,sales order etc. They are cmg in the datasource 2lis_03_bf. I did add them and load the data , but the data was not coming properly. Is there any other method by which i can make use of these fields without adding them in the cube and make a multiprovider on that. I need to have the customer field also. Will this data come if i make a multiprovider on top of this . Can i make a generic datasource from the table which is giving these fields and make a DSO with these fields and make a multiprovider on it.
    Will the key date concept work on this .
    I would appreciate ur help.
    Thanks,
    Kapil

    Dear Kapil,
    Pleae go through the link provided bleow hope this wil help full.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Cheers,
    VEERU.

  • Pass parameter to ssrs report based on cube

    hi folks:
      I am working on a weekly report based on cube. Users are able to pull out data by themselves using excel. Now they want this to be scheduled to run on a weekly basis via SSRS. The date hierarchy (date.calendar)  is like this: Year -> Quarter
    -> Month -> Week
     I want users to be able to pick any week (only one week) they want and run the report.  I understand I need to create a parameter @week .
    The problem is how to populate this parameter @week in mdx since the source is a cube db.
     Any idea?
     Thanks
     Hui
    --Currently using Reporting Service 2000; Visual Studio .NET 2003; Visual Source Safe SSIS 2008 SSAS 2008, SVN --

    Thanks Charlie, your solution is pretty close now. When I try out the shareddataset via cube, I found the following statement in the query via query designer:
    WHERE ( [Checkoutdate].[Fiscal Year Calendar].[Week].&[23]&[2014]&[2]&[6] )
    23 is the week no, 2014 is the year, 2 is the quarter and 6 is the month. I intend to create 4 parameters so that users could pick year, quarter , month and week. 
    The question here is the sequence, do I have to strictly follow the sequence  [week - year - quarter - month] or it doesn't matter? 
    SELECT {STRTOMEMBER("[Date].[Calendar Weeks].[Calendar Week].&["+@Week+"]&["+@Year+"]&["+@quarter+"]&["+@month+"]
    ")} ON 0
    or can I go like this as it's more intuitive:  
    SELECT {STRTOMEMBER("[Date].[Calendar Weeks].[Calendar Week].&["+@year+"]&["+@quarter+"]&["+@month+"]&["+@week+"]
    ")} ON 0
    --Currently using Reporting Service 2000; Visual Studio .NET 2003; Visual Source Safe SSIS 2008 SSAS 2008, SVN --

  • Display of Vendor in the 0IC_C03 cube

    Hi all,
    I am using the 0IC_C03 cube to display quantity and value of raw materials received, issued and consumed. Each one is being restricted by movement types. Is there any means to display the vendor with regard to received from, issued to and consumed by.
    Cause the Vendor is displayed against items which do not have any movement type.
    Please suggest.
    Thanks in advance,
    BP

    Hi BP,
                I dont hink so you can add any Vendor detail irrespective of Movement type, that cube is especially for movement type wise details.
    Regards,
    Rajdeep Rane.

  • How to Make a report from two cubes

    Hi, guys,
    i'm trying to create a report use the data from two different cubes, but that's a problem. what i want to do is like this:
    From Cube A, i want to get the total machine number for each type of machine:
    Type machine | Total machine
    Type A 10000
    Type B 15000
    Type C 40000
    And from Cube B, i want to get the machine amount which has an error, also group by machine type:
    Type machine | Broken machine amount
    Type A 50
    Type B 15
    Type C 100
    So what can i do to create a report like below:
    Type machine | Broken machine amount | Broken machine ratio(%)
    Type A 50 0,5
    Type B 150 1
    Type C 100 0.25
    Thanks a lot,

    Hi, Nicolae, use ur idea, i can get the table u show:
    Type | Machine amount | cube
    Type A 10000 'cube A'
    Type B 15000 'cube A'
    Type C 40000 'cube A'
    Type A 50 'cube B'
    Type B 15 'cube B'
    Type C 100 'cube B'
    but with this table how can i get the table which i want:
    Type | Machine amount | % of machine
    Type A 50 0.5
    Type B 15 0.1
    Type C 100 0.25
    I have no idea, 2 things in ur idea have to be considered:
    1. just show the record of 'cube B'
    2. to get the data that cube B machine amount/ cube A machine amount
    Need your detail explain, thanks

  • Excel reports with OLAP cube in SharePoint

    I have SQL Server 2008 SSAS OLAP Cube. I have also SharePoint 2010.
    I want to let users to use pivot like reporting feature. Every user makes own reports.
    What are recommended architecture? What tools are needed? What SharePoint 2010 version and features are needed?
    Kenny_I

    Hi Kenny,
    Do you have any update for this issue?
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Create report from olap .cub file problem

    hello,
    i am using crystal reports 2008. i tried to create a report based off of the sample sales reports.cub file using the olap cube report wizard.
    when i moved the measures dimension to the slice list on the slice/page screen and tried to create a parameter field, i got this message "the table measure could not be found'.
    i do not understand how that table could not be found when it is in the .cub file.
    i'm hoping that someone can tell me because without getting past this, i can't create the olap report.
    any help would be greatly appreciated.
    thank you
    tracy

    Hi Tracy,
    Moved your post to the Other forum where OLAP is located.
    Don

  • Issue when running  Balance sheet report  on Virtual Cube (0FIGL_V10)

    Hi ,
    We are actually implementing new General ledger and I activated all the underlying ODS & cubes.
    While running standard report(0FIGL_V10_Q0001) on 0FIGL_V10 , I am getting the following error:
    Characteristic 0GLACCEXT has a constant value (F) and cannot be used.
    Characteristic 0GLACCEXT Financial Statement Item not available in the Infoprovider.
    FYI, The above characteristic is available in the cube and I dont know what is the fix for the same.
    Can anyone please let me know if the same problem was faced and resolved.
    Regards,
    Kumar

    Hi Sumit,
    Thanks for the response.I did following checks in RSRV yesterday before I posted this thread.
    Master data checks for 0GLACCEXT went successful but when I checked my Infocube and dimension tables,its giving me the following error:
    Diagnosis
    There is no dimension table for dimension /BI0/D0FIGL_V102, even though the dimension is not a line-item dimension.
    Procedure
    Try to reactivate the InfoCube. Data that is contained in the InfoCube is not deleted.
    As per the above procedure , I reactivated the cube and tried running the query but it still gives the message,0GLACCEXT characteristic cannot be used.
    I can see all the dimensions in the Infocube(0FIGL_V10) coming correctly and I also can reactivate but still the error doesn't go.
    I also tried installing the Cube one more time if the error was because of not installing properly and I tried running the report but still I did not get to a resolution..
    I am now not sure , what to do to fix this problem.
    Regards,
    Kumar

  • Date to Date Report For BSo Cube

    Hi All,
    We are plan to create one bso cube. we want to build time dimension include dates,I want to load data and generate reports date wise.I know its full difficult to get the reports date wise.please help me out.

    You could use relative names for the MEMBERS and then change the aliases each month:
    Member CM-0 Alias Sep 2012
    Member CM-1 Alias Aug 2012
    Member CM- ...
    You would have to reload all data each month but you could load to the alias names so the input files would not have to change.
    Then just build your reports with the member names and have Essbase respond to the query with the Alias.

  • Sharepoint 2013 Reporting Services & OLAP Cubes for Data Modeling.

    I've been using PowerPivot & PowerView in Excel 2013 Pro for some time now so am now eager to get set up with Sharepoint 2013 Reporting Services.
    Before set up Reporting Services  I have just one question to resolve.
    What are the benefits/differences of using a normal flat table set up, compared to an OLAP cube?
    Should I base my Data Model on an OLAP Cube or just Connect to tables in my SQL 2012 database?
    I realize that OLAP Cubes aggregate data making it faster to return results, but am unclear if this is needed with Data Modeling for Sharepoint 2013.
    Many thanks,
    Mike

    So yes, PV is an in-memory cube. When data is loaded from the data source, it's cached in memory, and stored (compressed) in the Excel file. (also, same concept for SSAS Tabular mode... loads from source, cached in mem, but also stored (compressed) in data
    files, in the event that the server reboots, or something similar).
    As far as performance, tabular uses memory, but has a shorter load process (no ETL, no cube processing)... OLAP/MDX uses less memory, by requiring ETL and cube processing... technically tabular uses column compression, so the memory consumption will be based
    on the type of data (numeric data is GREAT, text not as much)... but the decision to use OLAP (MDX)/TAB (DAX) is just dependent on the type of load and your needs... both platforms CAN do realtime queries (ROLAP in multidimensional, or DirectQuery for tabular),
    or can use their processed/in-memory cache (MOLAP in multidimensional, xVelocity for tabular) to process queries.
    if you have a cube, there's no need to reinvent the wheel (especially since there's no way to convert/import the BIDS/SSDT project from MDX to DAX). If you have SSAS 2012 SP1 CU4 or later, you can connect PV (from Excel OR from within SP) directly to the
    MDX cube.
    Generally, the benefit of PP is for the power users who can build models quickly and easily (without needing to talk to the BI dept)... SharePoint lets those people share the reports with a team... if it's worthy of including in an enterprise warehouse,
    it gets handed off to the BI folks who vet the process and calculations... but by that time, the business has received value from the self-service (Excel) and team (SharePoint) analytics... and the BI team has less effort since the PP model includes data sources
    and calculations - aside from verifying the sources and calculations, BI can just port the effort into the existing enterprise ETL / warehouse / cubes / reports... shorter dev cycle.
    I'll be speaking on this very topic (done so several times already) this weekend in Chicago at SharePoint Saturday!
    http://www.spschicagosuburbs.com/Pages/Sessions.aspx
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Inventory 0IC_C03 Cube Transformations issue BI 7

    Hi Experts,
    we are Installing Inventory Cube 0IC_C03, with In dataflow options in BI 7, 2LIS_03_BF transformtions is in Active State, while 2LIS_03_BX transformtion and 2LIS_03_UM transformtions are in Active.
    and for most of the Keyfields in Cube are not mapped with infosource fields.
    can any body implemented Inventory in BI 7 system, any body faced this issue. can you please share how you resolved this issue.
    we are on BI Content 703 11 version.
    Regards,
    Raj

    Raj,
    No need to check start routine code for this.
    Goto Transformation --> Change mode --> Choose Rule Group (on top of window, middle of the screen) --> Choose 05 --> Dispay mapping --> check routines available or not.
    Confirm back are you able to see filed routine or not...!!
    Check doc:  [Rule Groups in Transformation|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/90754b76-bcf1-2a10-3ba7-b299b2be09f2]

Maybe you are looking for