Multiprovider - BI planning - to which cube will be data save

Hello,
I solve the problem with multiprovider in BI planning. We have about 10 infocube connect in one Multiprovider. How can I ensure that the right data will be save to the right Infocube? I try it with Characteristic relationship but I have problem with adding new infoobject 0INFOPROV to the basic real-time cube and without this I can´t make a Characteristic relationship.
Do you have any other solutions??
Best Regard.
Petr

Hi Rohit,
Please note below are the Prerequisites
Before you can define characteristic relationships, the following prerequisites must be met:
●      The InfoProvider must be a real-time InfoCube. The characteristic relationships defined for a real-time InfoCube are also valid in the MultiProviders that contain the real-time InfoCube. See InfoProvider.
●      In characteristic relationships of type attribute, the target characteristic must be defined as an attribute of the basic characteristic and must itself be contained in the InfoCube.
●      In characteristic relationships of type hierarchy, the target characteristic must be contained in a hierarchy and in the InfoCube. The hierarchy is mainly intended for modeling a derivation relationship; thus the hierarchy cannot contain a leaf or an inner node more than once. Link nodes are also not permitted.
●      With characteristic relationships of type DataStore, only standard DataStore objects are permitted. You can use all the managing and monitoring methods that are available in the Data Warehousing Workbench.
So if you define it for your real time cube it is also valid for your multiprovider.
Next time please post a new thread.
Arun

Similar Messages

  • Which table will give data of structure KKBCS_OUT

    Hi All,
             I have requirement to get the values of Total target cost and Total actual
    cost of production order.
    Tcode: CO03->Goto->Costs->Analysis
    We can see the posible cost elements and values of respective production order.
    But all these data are stored in KKBCS_OUT structure.
    Could you please tell me which table we can get these information?
    I have checked individual data elements in where use list also. But i am not able
    to find any thing.
    Please let me know if any one faced same kind of issue.
    Thanks in Advance
    Basha Sk.

    Check with these tables :
    <b>coss
    cosl
    cosp</b>
    aufk
    qmat

  • Multiprovider on Open Sales Order Cube & Delivery Analysis Cube

    Hi All,
    I have requirement to create a new report, for this report fields are getting from two cubes (Open Sales Order & Delivery Analysis). Open Sales Order cube is under Sales in S&D, Delivery Analysis Cube is under Distribution in S&D. Both cubes have there own multiproviders.
    Now I would like to create new multiprovider by using this two cubes. When I went through all fileds I found few common fields in both cubes.
    Plant,
    Market,
    Region,
    Sales Document,
    Ship to Party,
    Sold to Party,
    Customer Group,
    Customer Group1,
    Customer Group2,
    Customer Group3,
    Customer Group4,
    Customer Group5,
    Material,
    Material Group,
    Sales Document item category.
    I have two options to proceed
    1) Create a multiprovider with these two cubes and create report on it.
    2) Create two workbooks side by side on each individual multiproviders and combine in the workbook.
    Please let me know what is the best option and how to proceed with that.
    Thanks.

    Hi,
    I gather from your thread that the question is not to build a report on a MP yes/no but more on which MP.
    Depending on the reporting needs and on how well you are able to combine the 2 cubes in the new MP I would say go for the latter option so you have more control on this one MP (for example if you need to add something that is already available in cubes).
    However, when (future!) reporting needs could mean that characteristics need to be added to the report(s) and filtered on that are not in both cubes you will have major problems getting the data properly from new MP and you would be better off using the individuals MP's and combine the data in a workbook or in a web template giving more flexibility.
    So you need to really analyze the requirements and decide on the way forward. Keep in mind possible future requirements because for now it could seem these few fields could be enough but new requirements could directly give a problem.
    Hope this helps
    C.

  • How can i know which index will be used when executing the query ?

    1 ) I have query in which i have 3-4 tables but there multiple index on one column .
    so how can i know which index will be used when executing the query ?
    2) I have a query which ia taking too much time . how can i know which table is taking too much time ?
    3) Please Provide me some document of EXplain plan ?

    Hi Jimmy,
    Consider the below example
    /* Formatted on 2011/02/04 21:59 (Formatter Plus v4.8.8) */
    CREATE TABLE FIRST AS
    SELECT * FROM all_objects;
    UPDATE FIRST
    SET object_name = 'TEST'
    WHERE owner != 'SCOTT';
    CREATE INDEX idx_first ON FIRST(object_name);
    SELECT *
    FROM FIRST
    WHERE object_name = 'TEST';
    It has not used index
    Execution Plan
    Plan hash value: 2265626682
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 58678 | 7334K| 163 (4)| 00:00:02 |
    |* 1 | TABLE ACCESS FULL| FIRST | 58678 | 7334K| 163 (4)| 00:00:02 |
    /* Formatted on 2011/02/04 21:59 (Formatter Plus v4.8.8) */
    SELECT *
    FROM FIRST
    WHERE object_name = 'emp';
    This has used the index
    Execution Plan
    Plan hash value: 1184810458
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 128 | 1 (0)| 00:00:01 |
    | 1 | TABLE ACCESS BY INDEX ROWID| FIRST | 1 | 128 | 1 (0)| 00:00:01 |
    |* 2 | INDEX RANGE SCAN | IDX_FIRST | 1 | | 1 (0)| 00:00:01 |
    From this we can come to the conclusion that, whether to use one index or not by oracle
    would also depend on the data which is present in the table. This has to be this way as
    we see in the bind peeking, if oracle sticks to only one plan, say only use the full table
    scan, it would be a performance hit when it searches for the second query ie where object_name
    ='emp';
    2.
    If we have a query like below.
    select * from emp
    where upper(ename) = upper(:p_ename);
    Evenif we have the index on ename column, oracle wouldn't be able to use the index, as there is a function in the predicate column. If you need oracle to use the index, we need to create a function based index as below.
    Create index idx_ename on emp(upper(ename));
    Regards,
    Cool

  • Which index will it take and why ?

    Hi, 
    I have a table Employee and i have an index on EmpID on this table. Now i have created a view EmpView on this table. I have created an index on this view for the same column EmpID.
    Now my question is If i query select * from Empview where empId = something then which index will it consider and why?? 
    Thanks in advance
    Balaji 
    Balaji - BI Developer

    Good day Balaji
    Prasad 
    1. How long it took you to write the question in the forum?
    You are asking about specific case in your database. I am sure that you could open click on the Execution Plan button and get a faster answer and much more accurate for your specific database. Not always the forum is the best and faster solution, sometimes
    you can get it yourself.
    Regarding the "why", it is a good question :-)
    please post DDL+DML
    2. As other mentioned if you want help regarding a query then we need to be able to reproduce the situation. Instead of stories on your tables, you could post the DDL+DML queries :-) that mean the create table (with indexes) query and the insert sample
    data query. With this information we can click the Execution Plan button in our server :-)
    Moreover, with DDL+DML we might suggest a better solution
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • Which query will work fast

    Hi,
    Can anybody please suggest which query will work fast
    distinct role_cd is 1,2,3,4 and null in product table
    select * from product
    where nvl(role_cd,'4') not in '4'
    select * from product
    where role_cd in('1','2','3')
    I have 13 millions record in this table and there is no index on role_cd

    I tried this (11gR2) and get below, but still not sure if it is safe to say that the second one is better:
    create table product (role_cd char(2), id number);
    begin
    dbms_stats.set_table_stats( user, 'PRODUCT', numrows => 13000000 );
    end;
    explain plan for 
    select * from product where nvl(role_cd,'4') not in '4';
    Plan hash value: 427209646
    | Id  | Operation         | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |         |   650K|    10M|   319  (91)| 00:00:04 |
    |*  1 |  TABLE ACCESS FULL| PRODUCT |   650K|    10M|   319  (91)| 00:00:04 |
    Predicate Information (identified by operation id):
       1 - filter(NVL("ROLE_CD",'4')<>'4')
    explain plan for 
    select * from product where role_cd in('1','2','3');
    Plan hash value: 427209646
    | Id  | Operation         | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |         |   130K|  2158K|   287  (90)| 00:00:04 |
    |*  1 |  TABLE ACCESS FULL| PRODUCT |   130K|  2158K|   287  (90)| 00:00:04 |
    Predicate Information (identified by operation id):
       1 - filter("ROLE_CD"='1' OR "ROLE_CD"='2' OR "ROLE_CD"='3')

  • I have a new MAcBook Air and my photos don't fit on the internal hard drive.  I want to store my photos on an external hard drive which I will connect to my Air when using Iphoto.  How do I set an external hard drive as the default drive?

    I have a new MAcBook Air and my photos don't fit on the internal hard drive.  I want to store my photos on an external hard drive which I will connect to my Air when using Iphoto.  How do I set an external hard drive as the default drive in Iphoto?

    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

  • How long will it take? --OR-- Which order will arrive first?

    *So, let me fill you in on my order timeline (debacle)...*
    • July 5 ... I placed order with AT&T *on the phone* for 2 16GB iPhone 4's with 2 new lines of service. (first time iPhone buyer, new -- actually, coming back -- to ATT after 11 yrs w/ Sprint.)
    • July 7 ... I received and accept the Terms & Conditions agreement... but because of _order entry error_ my order could not be processed.
    • After I make some twitter-gripes I get pinged by AT&T's social media team offering to help.
    • With a couple of exchanges and phone calls, I was assured that my order would be fine -- my order can proceed even with the error/wrong information not needing to be fixed -- and should expect it in 7-14 days.
    • July 12 ... I checked my order status online only to find that there is no record of my order.
    • I called to find out what was up... I explained my story to the AT&T CSR and he took it upon himself to FIX the error/wrong info. _Little did I know that *this action would cancel my previous order and place a new one*, in spite of being assured that my previous order would remain in tact_.
    • July 13 ... my credit card was charged for my order.
    • July 15 ... my order status is available online... it says "processing" and is "backordered."
    • July 19 ... an AT&T social media rep voluntarily calls me to connect me to an order rep... she tells me that I should have been told 7-14 BUSINESS days (which I have no recollection being told that, nor reading that in any documentation), and *given that my order was placed on July 12 (and NOT July 5)*, I "should expect delivery by July 29"! (CSR's words)
    • July 19 ... went to physical ATT Store to place an order for 32GB iPhone4 -- intending to return 1 of the 16GB and pay the difference. _At this point I am running an "experiment" to see which order will arrive first_.
    • July 20 / 9am ... the online order status check shows NO RECORD of my previously existing order -- where'd it go?!!?!?
    • July 20 / 3:30p ... ahhhh... must have been a server glitch b/c I can see my order again.
    • UPDATE: July 22 ... no change for my 2x16GB order... no change on my 32GB order.

    my 32GB order arrived at AT&T Store… went to pick it up but could not walk out of the store with it lest the 2x16GB order get cancelled!!!!
    The super-nice and cool CSR informed me that because I have a pending order tied to the number I am porting over, if I were to activate my new 32GB, then he’d have to cancel the 2x16GB order (as of today, that order is STILL backordered). What’s more, I cannot walk out of the store w/ the device because I paid for the “subsidized” $299 price point for a 2-year contract… and I can’t initiate a 2-year contract with out canceling the 2x16GB order!
    CSR said he’ll hold my device until I receive the 2x16GBs.
    I’m stuck… and so, I wait… again…

  • If I need a full rman restore which backups will it use?

    Hello,
    I have a database 11.1.0.7 with 8TB. Block change tracking is enabled.
    At the weekend I take level 0 backup and during the week level 1 cumulative.
    For some weeks the level 0 backup is failing, so I only have level 1 cumulative backups taken every week day with a 4 weeks old level 0 backup.
    If I need a full rman restore which backups will it use? Will it be the last level 0 backup with the last level 1 cumulative?
    I ask this because grid crontrol tells me that the recent level 1 backups input size is smaller than last week level 1 backups and in between I dont have any level 0 sucessfull backups. Shouldn't the input size of level 1 cumulative increase until the next level 0 backup ?
    The grid reports:
    Backup Name Status Start Time Time Taken Type Output Devices Input Size Output Size Output Rate (Per Sec)
    rman_df_lv1c COMPLETED 25/Jul/2011 21H00m WEST 02:33:29 DB INCR SBT_TAPE *1.32T* 289.02G 32.14M
    rman_df_lv0 FAILED 23/Jul/2011 02H01m WEST DB INCR SBT_TAPE 8.78T 8.06T
    rman_df_lv1c COMPLETED 21/Jul/2011 21H00m WEST 04:39:38 DB INCR SBT_TAPE *3.46T* 550.82G 33.62M
    rman_df_lv1c COMPLETED 20/Jul/2011 21H00m WEST 04:47:36 DB INCR SBT_TAPE *3.37T* 524.36G 31.12M
    rman_df_lv1c COMPLETED 19/Jul/2011 21H00m WEST 04:06:09 DB INCR SBT_TAPE *3.15T* 490.75G 34.03M
    rman_df_lv1c COMPLETED 18/Jul/2011 21H00m WEST 03:40:24 DB INCR SBT_TAPE *2.49T* 410.88G 31.82M
    rman_df_lv0 FAILED 16/Jul/2011 22H16m WEST DB INCR SBT_TAPE 6.27T 5.69T
    rman_df_lv1c FAILED 14/Jul/2011 21H00m WEST 06:13:40 DB INCR SBT_TAPE 4.38T 714.30G 32.62M
    rman_df_lv1c FAILED 13/Jul/2011 21H01m WEST 04:40:45 DB INCR SBT_TAPE 3.25T 542.98G 33.01M
    rman_df_lv1c COMPLETED 12/Jul/2011 21H00m WEST 07:15:54 DB INCR SBT_TAPE 4.74T 847.93G 33.20M
    rman_df_lv1c COMPLETED 11/Jul/2011 21H00m WEST 07:26:40 DB INCR SBT_TAPE 3.78T 766.40G 29.28M
    rman_df_lv0 FAILED 9/Jul/2011 02H32m WEST 04:30:44 DB INCR SBT_TAPE 749.89G 716.02G 45.14M
    rman_df_lv1c FAILED 7/Jul/2011 21H01m WEST 04:49:24 DB INCR SBT_TAPE 2.16T 515.90G 30.42M
    rman_df_lv1c FAILED 6/Jul/2011 21H00m WEST 01:26:06 DB INCR SBT_TAPE 745.83G 165.48G 32.80M
    rman_df_lv1c FAILED 5/Jul/2011 21H01m WEST 00:05:48 DB INCR SBT_TAPE 58.56G 7.56G 22.24M
    rman_df_lv1c FAILED 4/Jul/2011 21H00m WEST 01:55:03 DB INCR SBT_TAPE 422.40G 79.55G 11.80M
    rman_df_lv0 FAILED 3/Jul/2011 16H32m WEST 30:22:04 DB INCR SBT_TAPE 4.53T 4.21T 40.40M

    >
    If I need a full rman restore which backups will it use? Will it be the last level 0 backup with the last level 1 cumulative?
    From http://download.oracle.com/docs/cd/B28359_01/backup.111/b28270/rcmvalid.htm
    Validating Backups Before Restoring Them
    You can run RESTORE ... VALIDATE to test whether RMAN can restore a specific file or set of files from a backup. RMAN chooses which backups to use.
    The database must be mounted or open for this command. You do not have to take datafiles offline when validating the restore of datafiles, because validation of backups of the datafiles only reads the backups and does not affect the production datafiles.
    When validating files on disk or tape, RMAN reads all blocks in the backup piece or image copy. RMAN also validates offsite backups. The validation is identical to a real restore operation except that RMAN does not write output files.
    You can monitor what RESTORE VALIDATE does.
    Make precautions, so you do not damage the production DB!!!
    Iordan Iotzov
    http://iiotzov.wordpress.com/

  • Hi Dude,     I ve seen all the threads from first to last even am gonna geta iphone 4s from Thailand. Would like to know which sim will be working fine in chennai as you all are using d phone for past many days???  Is it advisable to buy a phone

    Hi Dude,
    I ve seen all the threads from first to last even am gonna get a iphone 4s from Thailand. Would like to know which sim will be working fine in chennai as you all are using d phone for past many days???  Is it advisable to buy a phone from abroad.

    Thanks for that. Much more constructive than the last comment. It's only the restriction code I can't recall, not the access passcode. So I can currently access the device, just not age restricted content. Does that's make a difference? I also wondered if anyone knew how many attempts you get to try to get it right. Now tried 21 times and so far nothing bad has happened but I am concerned I'll eventually be completely locked out of the device. That doesn't seem in the spirit of things though. Surely it's foreseeable that a child could repeatedly try to guess the code so I can't see that it would be right to lock the device down completely in that circumstance, particularly if the access code is being typed in correctly every time.
    Thanks

  • HT1665 I have the iPhone 4S and would like to purchase docking device6. I have the Otter Box Camo case and would like to know which dock will work with the case ON. Thank you.

    I have the iPhone 4S and would like to purchase a docking device.  I have the Otter Box Camo case and would like to know which dock will work with the
    case ON.   Thank you.

    it might be better to contact otterbox to find out from them what they made it compatible with. 

  • Have a G400, OS10.4.11. Need 10.5 or later to install a new printer. Which one will run best? How do I upgrade?

    Have a G400, OS10.4.11. Need 10.5 or later to install a new printer.
    1) Which one will run best?
    2) How do I upgrade?

    It's probably cheaper to buy a new printer & sell the existing on on ebay.
    I have the Cannon pixma mg3120  works fine for me with mac os x 10.4.11.  I am able to refill the color ink jet cartridge.  Press reset + color copy button for 10 seconds.
    http://www.amazon.com/Canon-MG3120-Wireless-All-In-One-5289B019/dp/B005TI2Q8M
    Mac OS® X v10.4.11 to v10.6.x
    http://www.usa.canon.com/cusa/consumer/products/printers_multifunction/photo_all _in_one_inkjet_printers/pixma_mg3120
    What is a G400?
    You may want to post machine info.
    blue apple > about this mac > more info button. Click on the hardware line. It has a little triangle in front of the word hardware.
    Leave out the serial number.
    Example:
    Machine Name: iMac
    Machine Model: PowerMac4,1
    CPU Type: PowerPC 750 (33.11)
    Number Of CPUs: 1
    CPU Speed: 600 MHz
    L2 Cache (per CPU): 256 KB
    Memory: 768 MB
    Bus Speed: 100 MHz
    Boot ROM Version: 4.1.9f1

  • I have a Macbook pro 2009 with Snow Leopard.  Which system can I install without running into complicated problems which I will not be able to solveby myself? (Mountain Lion, Mavericks, Yosemite?)

    I have a Macbook pro 2009 with Snow Leopard.  Which system can I install without running into complicated problems which I will not be able to solve by myself- a person with limited problem solving abilities. (Mountain Lion, Mavericks, Yosemite?)

    It will make it easier to help you w/ your problem to know the  size and RAM installed.
    "Yesterday I couldn't update the maps on my Garmin because it said the OS I had wouldn't work"
    What OS will your Garmin work with? Funny there was someone else that did that and upgraded to Yosemite and regretted it.
    I'd say Lion if your Garmin is compatible.
    Both Lion and Mountain Lion are downloadable from the Apple Store:
    http://store.apple.com/us/product/D6106Z/A/os-x-lion
    http://store.apple.com/us/product/D6377Z/A/os-x-mountain-lion
    The OSs will get more resource hungry the higher you go.

  • How to find out which cube/ods has the code

    hi,
    I want to find out which cube/ods has the start routine/update rules written in it.  Is there a table or Tcode to find out the code instead of opening each cube/ods to find out whether there is code in it or not.
    Thanks,
    Sam

    hi Sam,
    take a look
    /message/3483792#3483792 [original link is broken]
    try RSTRAN, field STARTROUTINE
    related tables
    RSAROUT
    RSAABAP
    RSAABAPINV
    RSAROUTT
    Technical name of start routine
    Re: How to get info about a GP* program?
    Re: Search for start, update rule, etc. that uses infoobject
    if couldnt find out, you can use ST05 'sql trace', open 2 session, one for create start routine, and one for ST05, activate with option 'sql trace', then create start routine and 'deactivate trace' and 'display trace', and check out the tables list
    hope this helps.

  • I have a macbook pro 13" early 2011 version and what to install windows 7 on it via bootcamp but not sure that whether to install x64 or x86 version? which one will work better

    i have a macbook pro 13" early 2011 version and what to install windows 7 on it via bootcamp but not sure that whether to install x64 or x86 version? which one will work better

    There is no need for anyone to use 32-bit version anymore.
    Retail comes with both. Or you can save on just buying 64-bit System Builder disc.
    Better support for today's hardware with larger video graphic memory and systems.
    Better memory management.

Maybe you are looking for

  • Purchase Order with Invoice Plan

    Hi, I need to understand working with Invoicing plans for a Purchase Order. Especially the service PO for the rents and other related services. How the PO is linked to the Invoice Plan and how the process happens in SAP? Thanks in advance!

  • This page has encountered a critical error. Contact your system administrator if this problem persists.

    I am getting this error while opening SharePoint site pages. I am getting this error if i edit Web.config file. If i Restore the old version of Web.Config i am getting this error.. Please help me

  • How do I find out if my laptop has the TPM chip on the motherboard?

    Hi, Laptop model - HP Pavilion dv9260us.  Product ID - RP243UA#ABA  SR No - CNF7134YJK OS - Windows Vista Ultimate Build 6002. I downloaded and installed the Bitlocker from Windows Extras for Vista ultimate under Windows Update. I got a message stati

  • Best way to manage 8i and 9i databases?

    Hi, I'm looking for the best way to manage 8i, 9i, 10g and 11g databases with EM (of course, upgrading the 8i databases is not an option). I successfully installed OMS 12c, but the 12.1 agent will not connect to the 8i databases. What are the alterna

  • Copy class of a Functional Location

    Hi All, I have to copy the class and characteristics of one functional location to another. Found a function module PM_COPY_SUBOBJECTS but this only copies the class but not the characteristics. Kindly suggest a function module or BAPI or any method