Hiding Variables in new Multi Cube

Hello Experts,
we will develop a new Multi Cube but with less fields but with the same Info Objects. Therefore I don't need all of the existing variables. Is there any possibility to hide the not required variables for the new Multi cube?
Thanks in advance.
AK

Hello,
first, my name is Anastasios
We have a MC with for example 100 Info Objects. Now we want to use just 60 of them in another MC but I don't want to use all the variables.
Example:
IO1 has 10 variables in MC1
IO2 should have 3 variables in the new MC2
Is this possible? If yes, how could I do this?
Thanks and Regards,
AK

Similar Messages

  • Reporting on Multi Cube

    Hi Gurus,
                     This is my first message into the forum. I am new to BW reporting and I have a question. It may sound basic to experts like you, but any explanations would be greatly appreciated and I know here thank you means POINTS...
    My question is ,
    I create multi cube , based oit of two ODS's(DSO).
    I have some fields which are common , like sales document number , plant etc
    I have some fields which are unique to ODS's, for e.g I have a field Delivery Statusand Document Category which is only in ODS A.
    Now, when I do a LISTCUBE on the Multicube I see 2 records for that sales doc number.
    Records 1 has sales doc number and all the details that i chose with delivery status and document category fields being blank.
    Record 2 has  sals doc number and delivery status and document category fields polpulated with all the other fields blank.
    I checked the Identification in Mullticube and I have checked both the ODS for common fields ,sales doc number and plant.
    When I develop a query and run the report I don't get values for fields Delivery status and document category. I think its because the query is loking into the first record only and does not find the values for delivery status and document category.
    How can I restrict this characteristics in the report to who me values for ODS A only?  I read in the some post that we need to create a structure > new selection> add the characteristics( delivery status)--> add the characteristics source system( and restrict it byODS2.
    This is not working,  as far as my knowledge goes , we cannot create a restricted characteristics , am i correct ?
    PLease do let me know...I shall be grateful and shall assign points...
    Thanks in advance..
    Simran

    Hi Srini,
                  Thanks for your response, but I am not sure how I can restrict a characteristics based no another characteristics..? Can you please let me know in detail as to how to do it.
    I tried creating a struct--> new selection > sleect the characteristic i want to restrict> select the 0INFOPROV  and restrict it toDSO A. IN doing that I don't get any characteristics values in the report for this selection.

  • BI 7.0 can we build a INFOSET on a Multi Cube and Infoobject

    Hi
    In BI 7.0 can we build a INFOSET on a Multi Cube and Infoobject
    Thanks

    Hi,
    No not possible.
    You can include any DataStore object, InfoCube or InfoObject of type Characteristic with Master Data in a join. A join can contain objects of the same object type, or objects of different object types. You can include individual objects in a join as many times as you want. Join conditions (equal join condition) connect the objects in a join to one another . A join condition specifies the combination of individual object records included in the results set.
    For more info go through the link below
    http://help.sap.com/saphelp_nw2004s/helpdata/EN/ed/084e3ce0f9fe3fe10000000a114084/content.htm
    Regards,
    Marasa.

  • What are the fundamentals concepts to know about BEX Queries on Multi Cube?

    Hi ALL,
    i have executed a Bex Query on a Multi Cube (2 Cubes: SalesAnalysis, SalesAnalysisHistoric) but i havn't received the same data that we have in R/3, after i have executed the same query on just one cube (SalesAnalysis) and the result it was correct.
    please can Somebody explain me the basic concept relation between the datatargets when i execute a query on a Multicube? how BW server try to find data and what is the criteria and the relation between the various caracteristics and key figures of the Multicube components? there some fundamentals join?
    when i create i query on a Multicube and i choose a caracteristic or a key figure how can i know that caracteristic or key figure is from one cube or another cube?
    Thanks For ALL
    Bilal

    Hi Bilal,
    Multiprovider is not a join, it is actually a union of the data. So all the data of the base data targets used in the MP will combine subject to the settings made in identification and selection screens of the multiprovider. In the query designer, the source of the KF or char is transparent to you....you cannot make out until you open the MP in the edit mode.
    Hope this helps...

  • Advantages of using Virtual cube & Multi Cube for Reporting

    Dear all,
    Can you please explain me the advantages of desiging Virtual Cube with services & multi Cubes for Reporting.
    Thanks in advance
    Thanks & regards
      Sailekha

    Hi sailekha;
    Pls go through the link below:
    http://help.sap.com/saphelp_nw04/helpdata/en/62/d2e26b696b11d5b2f50050da4c74dc/content.htm
    For the multi-cube;
    you can create a reports out of different infoprovider...let's say you have infocube for actual and another for plan...you can create a report to see actual and plan both...
    Hope this helps.
    BK

  • Using Multi-cubes in an InfoSet

    SAP BI 700
    Here is my problem.
    Using transaction RSA1, I have a multi-cube pointing to 3 identical cubes(one cube per year) I need to join the multi-cube to another cube with matching keys.
    Looks like I should be looking at using an InfoSet but I do not see how to use a Mutli-cube in an Infoset.
    I know I could add all cubes from my original Multi-cube directly to the InfoSet but this would result in a join and not a union of cubes.
    Any suggestions?
    Tks.

    Yes MP will be used in your case you want to have Union not infoset:
    Check this example:
    Consider.
    InfoProvider 1:
    0CALMONTH 0 //PLANT// STOCK
    200601 PLANT_1 100
    200602 PLANT_1 110
    InfoProvider 2:
    0CALMONTH //0PLANT //0VENDOR //ORDER_QUANTITY
    200601 PLANT_1 VENDOR_A 70
    200602 PLANT_1 VENDOR_B 60
    And You 3 infoprovider:
    If you design a MultiProvider having all the 3 characteristics:
    0CALMONTH, 0PLANT, and 0VENDOR.
    But as a matter of fact, it'd be useless.
    MultiProvider:
    0CALMONTH 0PLANT 0VENDOR STOCK ORDER_QUANTITY
    Union of the data in the MultiProvider:
    200601 PLANT_1 VENDOR_A 0 70
    200601 PLANT_1 # 100 0
    200602 PLANT_1 VENDOR_B 0 60
    200602 PLANT_1 # 110 0
    As you see, the stock data are thoroughly assigned to the vendor code # (i.e. not assigned). That's expected, as the stock data (in InfoProvider 1) are not at the vendor granularity level. On the other hand, the order data have the vendor detail.
    An InfoSet with the right join condition would present these data:
    0CALMONTH //0PLANT //0VENDOR //STOCK//ORDER_QUANTITY
    200601 PLANT_1 VENDOR_A 100 70
    200602 PLANT_1 VENDOR_B 110 60
    ~AK

  • Period 0 not exist in New FIGL Cube

    We are using new FIGL Cube (0FIGL_C10) and trying the drilldown using Posting Period (0FISCPER3), however it only shows period 1 through 16 and also a period that is Null (#).  We are trying to restrict to Period 0, however this does not exist in the provider. 
    We are using "Fiscal Year" - 0FISCYEAR and "Posting Period" - 0FISCPER3 for our queries.  The compound "Fiscal year/period" - 0FISCPER has Period Z4/000/2007 and works fine, however when looking at Posting Period alone, it does not show period 0 in the cube.
    Does anyone why 0FIGL_C10 does not have Posting Period 0 (Zero)??  Has anyone else come up with a workaround?

    that works when using the compound characteristic "Fiscal year/period", however when you don't use the compound field and you use separate characteristic "Fiscal Year" and "Posting Period" there is no period zero in the cube.  Instead, it gets put into posting period "#".  It's weird because the text value is "000", however they key is "#".  When you do a drilldown by posting period, it will show the periods as follows:
    001, 002, 003, etc etc and finally "#".  This does not look right, it should display as follows:
    000, 001, 002, 003, etc etc.

  • Multi Cube In BI7

    Hi,
    How to create Multicube in BI7 version .
    Thanks,
    Medha.

    Hi,
    Yes, Both multiprovider and Multi cube are same.This is a virtual provider.
    In BIW 3.5 we say it as Muticube (which you can create on cubes only)
    In BI7.0 we say it as Mutiprovider(which can be created on combination of any infoproviders)
    To create an Multiprovider click on the info area and in contextmenu you will find the option to create the Multiprovider
    Rgds,
    Kishore

  • Map the user exit variables with the queries/cubes using them

    Hello Friends,
    What are the post unicode conversion tests that you can perform on front end/existing queries?
    is there any added advantage for queries due to unicode?
    is testing the working of variable  enough? is there any table to map the user exit variables with the queries/cubes using them?
    Thanks
    Tanya

    Guys, any clue about this? Answer are appreciated.
    Thanks
    Tanya

  • Query on Info Object Vs Query on a Multi Cube

    Hi,
      To meet my requirment i need to develop a report on a info object (ZMAT_ID)
      With regards to the performance do i need to develop report on the Info Object Directly or Create a Multi Cube on this Info Object and develop my report on this Multi Cube]
    Please advise
    Thanks in advance

    Hi
    You can create ob IO.
    If you want any other objects are related to this IO U can do this with Multiprovider.

  • AME locking up with new multi-band audio processor in Pr CC

    The AME locks up when I insert the new multi- band processor in Pr CC. The Legacy one does not create this issue... Any thoughts??

    I'm not seeing that here.  The effect works fine.  Let's start with this:
      FAQ: What information should I provide when asking a question on this forum?

  • New multi gesture

    Is there any possibility that apple would offer update program that supports new multi gesture for old mac book air?

    I thought its clearly stated that it support this...
    "Solid-state trackpad with Multi-Touch gesture support for precise cursor control; supports two-finger scrolling, pinch, rotate, swipe, three-finger swipe, four-finger swipe, tap, double-tap, and drag capabilities"
    http://www.apple.com/macbookair/specs.html

  • When will Fios have a New Multi (more then 2) Turner DVR?

    When will Fios have a New Multi (more then 2) Turner DVR?   They told me many months ago it would be by end of year.  Well that time is approaching and so far I heard nothing else.
    Other companys have more then 2 turners.  Dish has the Hopper 6 shows at once.
    Anyone hear a rumor

    When will Fios have a New Multi (more then 2) Turner DVR?   They told me many months ago it would be by end of year.  Well that time is approaching and so far I heard nothing else.
    Other companys have more then 2 turners.  Dish has the Hopper 6 shows at once.
    Anyone hear a rumor

  • New Multi-Border Rectangle auto shape makes it easy to mock up HTML-style borders

    The new Multi-Border Rectangle auto shape is now available for download: http://bit.ly/exP1pJ
    CSS allows a different width and color to be applied to the border on  each side of an HTML element, but Fireworks' rectangles are limited to a  single border color and thickness.  The Multi-Border Rectangle auto  shape addresses this limitation, making it easy to mock up HTML-style  borders.

    Nice one John!

  • New GL cubes 0FIGL_V10, 0FIGL_V11

    Hi,
    We are planning to use new GL cubes 0FIGL_V10, 0FIGL_V11 and 0FIGL_R10. I believe these cube will directly get data from OLTP through BAPI.
    Can any one got experence with how to set virtual cubes for reporting and data extraction using BAPI, please give me steps by step solution?.
    How to set-up remote cube 0FIGL_R10 on basis of 0FIGL_C10.
    We have already done set for new GL cube 0FIGL_C10 and loaded data.
    thanks in advance.
    Regards,
    SDK

    0FI_GL_10 = General Ledger: Balances, Leading Ledger 
    This DataSource extracts the totals records from the leading ledger in the new General Ledger.
    <b>3FI_GL_xx_TT</b> = General Ledger (New): Balances from Any Ledgers (Generated)
    This DataSource extracts the totals records from a specified ledger in new General Ledger Accounting. This ledger may be the leading ledger or any other ledger.
    Ask functional guys if they activated the above 3FI_GL_xx_TT ledger and if yes follow the below link
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/be/928f40f5767d17e10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/e2/f16940c3c7bf49e10000000a1550b0/frameset.htm
    Names ending with
    R = Remote cube based on DTP or datasource in R/3
    thats why they have that R/3 sysmbol
    only this cube will have the option of "ACTIVATE DIRECT ACCESS"
    V = Virtual Cube based on API
    thats why they have that symbol 3rd.
    Hope it Helps
    Chetan
    @CP..

Maybe you are looking for

  • Install laserjet 5p on mac mini

    Hi, We just got a mac mini and I tried using a usb to parallel cable to connect it to the mini.  When I actually connected it, Os X grabbed the HP driver from apple and installed it.  So far so good. Then I was able to "add" the 5P as the mini now re

  • UTF issue when moving from cf5 to cfmx7

    It's been long overdue so am moving from CF5 to cfmx7 on my hosting account. The issue is that my hosting account has disabled cfcontent. I am getting gibberish outputting utf data from my database. It works fine on cf5 but on cfmx7 I read someplace

  • Parse file.

    hi, i'm using: NodeList internalList = (<a>).getElementsByTagName("<b>"); //and this method returns number of nodes<b>: 2. but i want to have only one counting node <b> without the deepest one. // internalList = 1         <---- how can i do that??<a>

  • Having trouble with pse7 and opening jpg files

    I have been using pse7 for quite some time and today I have started having trouble.  It is as if the program is "not responding" for a time.  So here is what is going on . . . I can open a file or group of files (jpg images) and then when I ctrl+o to

  • Nice Solution to 7.3 error (-50)      (Provided you don't have an iphone)

    Hi People, I've been having the same probs as everyone else but i just did this and its sorted the prob. im pretty ******** at sorting this kind of stuff but this is really simple. Kudus to whoever wrote this originally: had same problem with 7.3. Te