Reusing dimensions in different AWs (version 10.1.0.4)

Hi, I have a question re: reusing dimensions in analytic workspaces.
My understanding was that in version 10.1.0.4 the metadata for dimensions is now completely contained within the AW itself. I'm trying to reuse dimensions in different AWs in the same schema, and I keep getting error messages saying this isn't allowed.
Why is this happening? If the metadata is now completely within the AWs, why does the OLAP option care at all if a dimension is reused? It seems like each AW should be a stand-alone object that is completely independent of the other AWs?
I was really hoping to use the .xml files to publish a library of dimensions out to several power users, and then give them the capability of defining whatever cubes they wanted to with them. Once done (and assuming they wanted it moved to production), I would then rebuild their cubes into a production AW schema. But it seems like, with this limitation, that can not be done.
Please help!
Thanks,
Scott

This is how it was explained to me.
Dimensions and cubes can be considered analogous to relational tables, and elements of dimensions and cubes (e.g., levels, hierarchies, measures) are analogous to columns in a relational table. Just as tables are unique to a schema and columns are unique to a table, but not schema, the same holds true of elements of the dimensional model. The analytic workspace defines the scope of a transaction (i.e., UPDATE), but doesn't play any other role in the logical model.

Similar Messages

  • How to Launch an Integration Builder under two different java versions

    How to Launch an Integration Builder under two different java versions     1
    1. Situation     2
    2. How To Do     2
    2.1 jre preparation     2
    2.2 Put them into the system     2
    2.3 Execute a Java Web Start under jre 1.4.x version     3
    2.4 Change Java Runtime Versions     3
    2.5 Launch an Integration Builder     6
    1. Situation
    OS: windows 2000 pro – English
    Java version: jdk 1.5.x was already installed. (It’s not permitted to change.)
    I don’t have any authorization to install any software on the PC.
    But I need to use an Integration Builder.
    I already knew URLs of an Integration Builder (http://<hostname>:50000/rep/start/repository.jnlp).
    2. How To Do
    At this moment, an Integration Builder (XI 3.0) can be launch under jre 1.4.x environment (on windows).
    2.1 jre preparation
    I download j2re-1_4_2_10-windows-i586-p.exe from http://java.sun.com/j2se/1.4.2/download.html
    I installed it on my home PC and copied all files from C:\Program Files\Java\ j2re1.4.2_10\ into my USB.
    2.2 Put them into the system
    I pasted j2re1.4.2_10 folder from my USB into the windows 2000 pro system.
    Finally, I could list up all of javaws.exe under this system.
    c:\j2re1.4.2_10\javaws\javaws.exe
    c:\Program Files\Java\jdk1.5.0_05\bin\javaws.exe
    c:\Program Files\Java\jdk1.5.0_05\jre\bin\javaws.exe
    c:\Program Files\Java\jre1.5.0_05\bin\javaws.exe
    2.3 Execute a Java Web Start under jre 1.4.x version
    I executed c:\j2re1.4.2_10\javaws\javaws.exe .
    2.4 Change Java Runtime Versions
    Go to File-> Preferences -> Java
    As you can see, it indicates 1.5 version.
    Click [FIND] button.
    Click [NEXT] button.
    Click the j2re1.4.2_10 folder.
    Click [NEXT] button.
    A JRE Finder is able to find javaw.exe automatically. Or you can indicate C:\j2re1.4.2_10\bin\javaw.exe directly.
    Click [NEXT] button.
    Finally, there are two Java Runtime Versions. Now you need to uncheck the Enabled column of 1.5 version and check 1.4 version.
    Click [OK] button.
    Well, in the General tab, I selected None for Proxies.
    2.5 Launch an Integration Builder
    In the Location field, I typed the URL of an Integration Builder jnlp.
    http://<hostname>:50000/rep/start/repository.jnlp
    SAP Integration Builder comes up inside Applications area.
    Select it and click [Start] button.
    If you click Environment-> Integration Builder (Configuration), you can launch Integration Builder: Configuration.
    [PDF file location] with screenshots
    http://SDN.mobilian.org/SDN/How2LaunchIB.rar
    ===================Advertisement==========================
    How do you search SDN?
    What about [<b>SDN Search Widget</b>]?
    SDN Search Widget
    =========================================================

    I am not getting anywhere with deploying my application or
    applet.
    I have set up my bc4j project. It contains all my VO info,
    links, application module. (proj a)
    I then have another project with DbInfo in it(has all my rowset
    info), Multiple Frames, and my Applet.java file.
    Actually I have an Applet.java file and a Application.java file
    because I was seeing if both/either worked. Anyway they seem the
    same, except for that extra window that comes up when you run the
    applet.
    I follow the steps in the oracle directions (from earlier post).
    And all seems ok. But at ---->
    [*] Select the subdirectory under myhtml where your applet's HTML
    file
    is located, and enter the directory path of the 'staging'
    directory you
    created in step 3 above, if different from the default.</li>
    [*]Select the HTML files that JDeveloper created to run your
    applet.</li>
    [*]Select all of the Java source files in your project that make
    up the
    applet.</li>
    I have no HTML file associated with my applet, at least that I
    know of.
    So do I need to create one, or should it of been done
    automatically.
    Also, I trying to figure out what will be the best way to deploy
    my project. Applet or stand alone application is what my first
    choices have been so far. I have read that there is some issues
    with applets being served from a different server than the
    database. So a stand alone application was my front runner, but
    I haven't gotten either way to work yet.

  • Oracle Sql Query issue Running on Different DB Version

    Hello All,
    I have come into situation where we are pruning sql queries on different DB version of Oracle and have performance issue. Let me tell you in brief and i really appreciate for your prompt response as its very imperative stuff.
    I have a query which is running on a DB of version 7.3.4 and it takes around 30 mins where as the same query when run on 8i it takes 15sec., its a huge difference. I have run the statistics to analyze on 7.3 and its comparatively very high. Question here is, the sql query trys to select data from same schema table and 2 tables from another DB using DB link and 2 other tables from another DB using DB link.So,how can we optimize this stuff and achieve this run as same time as 8i DB in 7.3. Hope i am clear about my question, Eagerly waiting for your replies.
    Thanks in Advance.
    Message was edited by:
    Ram8

    Difficult to be sure without any more detailed information, but I suspect that O7 is in effect copying the remote tables to local temp space, then joining; 8i is factoring out a better query to send to the remote DBs, which does as much work as possible on the remote DB before shipping remaining rows back to local.
    You should be able to use EXPLAIN PLAN to identify what SQL is being shipped to the remote DB, If you can't (and it's been quite a while since I tried DB links or O7) then get the remote DBs to yourself, and set SQL_TRACE on for the remote instances. Execute the query and then examine the remote trace files, And don't forget to turn off the tracing when you're done.
    Of course it could just be that the CBO got better,,,
    HTH - if not, post your query and plans for the local db, and the remote queries.
    Regards Nigel

  • CK24 - mark and release with different costing version

    Hi,
    We are currently using standard costing variant PPC1 and costing version 1 to mark and release the standard costs. However when we try to recost the material cost due to price changes, system does not allow to mark & release revised standard cost if we try to mark & release on same day. pls note standard cost estimate is already released for the month. And we do not want to delete existing standard cost estimate. Instead we want to explore other options. We are using 4.7.
    My questions are :
      a) Can recost using costing version 2? CK11N allows to save the costing result. However in CK24 Marking allowance, system does not allow to change Costing Version. is there any config option to change this.
    b) If  we cannot use different cost version, can we update material cost with same costing variant (PPC1) and costing version (1) in this case. However when we tried to do recost with same costing variant & verison on same day, system gives an error 'Material AAAA in plant MMM has a released cost estimate.'
    Any inputs on above issue highly appreciated.
    thanks
    Sunil

    Hi,
    While, you can use any of the Costing versions to mark & release Standard cost estimate, you can release Cost estimate only once in a fiscal period. If you want to release correct prices, then you have delete existing released cost estimates using CKR1 transaction and then re-run CK40N to release.
    Hope this helps.

  • Use different JRE versions in Oracle Discoverer 10g(10.1.2.0)

    Hello.
    We have a Oracle Forms application which also uses Discoverer Plus and Reports.
    Problem is we have some user clients who uses XP/IE 6.0 while otheres has Vista IE 8.0.
    Based on here
    http://www.oracle.com/technetwork/middleware/ias/downloads/as-certification-r2-101202-095871.html#BABGCBHA
    depending on OS/browser different plugin versions are required. If we
    Can we have different JRE versions in separate clients? Kinda confused with the matrix.

    Hi;
    Please check below which could be helpful for your issue:
    Overview of Using Java with Oracle E-Business Suite Release 12 [ID 418664.1]
    Deploying Sun JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite Release 12 [ID 393931.1]
    Oracle Jinitiator and Sun JRE/JPI Support for Oracle Forms Applications [ID 555720.1]
    Regard
    Helios

  • Different Client Versions in OWB 9i and 10g

    Hi,
    Our client is using 9i OWB Client Software, and we are planning to use OWB10g Client Software on Windows Platform.
    Will there be any compatability issues while moving from 9i OWB Client Software to 10g Client software.
    And what are other parameters we need to consider, if possible please mention any documents links available.
    Kindly let me know the pros/cons in this model .
    Here my main question is will there be backward compatibility, i.e repository in 9i database need to connect by using the OWB 10g client?
    With Regards,
    Kranth...
    Edited by: user8536050 on Jan 18, 2010 1:44 AM

    Hi,
    you cannot use different client versions on the same repository. If you want to use owb 10g, then you have to upgrade the repository to 10g. Then you can only use 10g clients, owb 9i clients cannot connect to that repository.
    Regards,
    Carsten.

  • CTS to different OS version

    Dear all
    We have very time crunching situation and we need to install ECC 6.0 system on HP server as DEV system.
    This HP server is RISC based and we have installed HP11.11 version on it.
    SAP and Oracle version will be ECC6.0 and Oracle 10g.
    A month later. we will install SAP ECC 6.0 and ORACLE 10g on HP_UX 11.31 on HP CISC server as DEV/QA/PRD server
    in this case.  Can we tp all the work we done on HP11.11 system to HP 11.31 system?
    Please let me know your experience.
    Thank you in advance.
    Jeongbae

    Hi Jeongbae,
    I don't understand the question..
    from the title of the question "CTS to different OS version " I guess you want to know, if there will be any inconsistency becasue of different os versions.
    If thats the question, then it will not have any inconsistency. Because, tp/r3trans works on database/OS independent. so the datafile/cofile created are os independent. (as long as you are on the same release like ECC 6)
    Regards,
    Debasis.

  • Different product versions displayed in spite of having applied misc v11.1.2.3.50x patches

    All,
    Once logged, here's what is displayed when I click on Help > About Oracle Enteprise Performance Management System Workspace, Fusion Edition then click on the [Show Details] button:
    Explore - 11.1.2.3.000.1175
    Reporting and Analysis Framework - 11.1.2.3.000.1175
    Impact Management - 11.1.2.3.000.1175
    Oracle® Hyperion Financial Reporting, Fusion Edition - 11.1.2.3.508.0939
    Hyperion® Web Analysis - 11.1.2.3.504.11705
    Oracle® Hyperion Enterprise Performance Management Architect, Fusion Edition - 11.1.2.3.500.2033
    Oracle® Hyperion Planning, Fusion Edition - 11.1.2.3.502.04
    Oracle® Hyperion Provider Services - 11.1.2.3.505.005
    Oracle Hyperion Auditing - 11.1.2.3.0
    Calculation Manager - 11.1.2.3.503.005
    Oracle Hyperion Common Administration - 11.1.2.3.0
    Oracle Hyperion Common Security - 11.1.2.3.0
    Oracle Hyperion Lifecycle Management - 11.1.2.3.0
    Hyperion Common Install - 11.1.2.3.0.8719
    Oracle HTTP Server - 11.1.2.0
    This is in spite of having successfully applied the following patches:
    PSU v11.1.2.3.500
    Patch 20029854 (Reporting And Analysis Framework v11.1.2.3.506)
    Patch 19466859 (EPMA v11.1.2.3.501)
    etc;
    .. then re-deployed the java web applications.
    I was wondering if anyone had any idea(s) as to the reason(s) why the above emboldened entries are still showing different product versions to the versions which the patches were supposed to have installed.
    Many thanks,
    JBM

    Unfortunately not every version will update when you apply a patch, it may be worth reading through a blog I wrote on product version - More to life than this...: Understanding product versions in workspace
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • CK11n with activity prices from different plan versions

    Hello,
    We are looking for a simple & practical way to calculate a standard cost estimate for a material using activity prices from different CO plan version.
    In the valuation variant of the costing variant the CO plan version is determined from where the activity prices are taken, eg version 0
    So, we want to cost the same material using the activity prices of a different plan version, eg 90, or 91 ... but without using a different costing variant per CO plan version(so without having to create/customize a separate costing variant per CO plan version)
    Is this possible? 
    Can we use costing versions in this respect?
    Many thanks
    Alain

    Hi,
    Thanks for quick feedback ... but how do you assign this valuation variant in the costing version... ?
    Can you enter is in CK11n? or what transaction needs to be customized?
    Thanks, Alain

  • How to run 2 different Firefox versions using the same profile

    Is it possible to run 2 different Firefox versions using the same profile and still have browsing history saved? I used to be able to do that up until a week ago. What happened was I was using Firefox version 3.6.28(a very old version of Firefox) which I need to use sometimes and then the current version, 36.01. Earlier I would use both my versions of Firefox and the history would be saved if I used both versions but now when version 36.01 came out, its not saving for some reason. Is this a bug? The history is saving during the current session, but say I close out of Firefox and then go back to Firefox, it will still be saved but when I go to my old version of Firefox, the history is saved but then after I close out of that the history on my new current version is all gone and it starts me all fresh, is there a way to get rid of this so that the history will always be saved even if i switch between versions? I could do that before up until Firefox 35.01 but Firefox 36 isnt saving the history from the old version, is this a bug or not? Now I have to create a separate profile for each Firefox so the history I use on the old version is only saved on that version and the history I have on the new Firefox is another profile so that history from the 2nd profile remains but I dont want that. I want to be able to use the same profile so that the same browsing history can be saved using both versions like it was before, I hope people can understand my problem. If not I can further explain, thanks.

    @ the-edmeister, I understand that the 2 versions are completely different, however how come the history was saving fine when I switched between firefox 3.6.28 to the current one which was Firefox 32, 33, 34, 35 etc? Like I'm surprised how come now at Firefox 36 this problem started, Firefox 36 isnt that much different from Firefox 35 but yet Firefox 35 was still saving my browser history from the old 3.6.28 version, my 3.6.28 version never upgrades but the new Firefox keeps upgrading whenever there is a new release out automatically and then all of a sudden when the new version of 36.01 came out all my history was gone, so isnt Firefox 35.01 also very much different from 3.6.28 as much as 36.01 is? I hope you got what I meant, thank you for helping.

  • Setup Central Contract Management SRM 7.01 with differing release versions

    Hello experts,
    OSS note 1268821 explains how to configure the central contract management between a SRM 7.0 and  an ERP 6.04. So far so good, but how should it be handled if there are differing release versions such as ERP 6.04 and ERP 6.03? I guess that a technical split (xml services/ ALE distribution) is necessary?
    Assuming that there are some backends with differing release versions and in some cases with differing master data (not supported by central master data client) would you always go via PI? Independent of release version, technology and master data.
    Could you give some further detailed informations how to configure such a scenario? What has to be done to transfer existing contracts from an ERP 6.04 into SRM CM component (migration concept)?
    Thanks!!!
    KR Thorsten

    Hi Thorsten
    The minimal ECC version is 6.0 EHP4, Central Contracts require certain business functions in ECC to be activated and as these are included within ECC EHP4 you won't have these available in lower version. Therefore you won't be able to operate central contracts in such an ECC system.
    You would either have to go with patching these systems or go with GOA's for these systems.
    Operating central contracts via PI or SOA i believe provide almost similar functionality. SOA however requires an SRM EHP1 system and ECC EHP5 back-end to operate whilst central contracts configured via PI can be operated onwards from an SRM 7.0 and EHP4 system.
    I can't help you on your migration issue, maybe someone else can.
    Kind regards,
    Tim

  • Does the object in BO repository the same in different BO version?

    Hi Guys,
    Does the object in BO repository the same in different BO version or in different type of Database?
    One of my customer said that the objects(index, procedure, table ,view, etc..) are different between their TEST and PRO environments.
    Your help is appriciated.
    Thanks.
    Regards,
    Daniel

    Hello Daniel,
      The BO repository or CMS database has a different database structure between versions of the CMS database.  So if you have BO XIR2 versus XIR3, then they  have different database structures.  If the customers has a one version of XIR2 in TEST and it is a  different version like XIR3.1 in PRO environment then that would make sense. Each version of the XIR1, XIR2, XIR3 has a different database structures for the CMS database.   I hope this answers your question.
    Regards,
    Jorge

  • Device type file compatability with different SAP versions

    Hi All,
             I need to know whether there is any difference in Device type file (.PRI) for different SAP versions [ SAP 4.6b , 4.6c, 4.7, mySAP ERP 2005.,]
             Is there any change in .pri file required when upgrading/degrading SAP versions?
            Pls let me know abt this. very urgent..

    i tried the following code on a WAS 7.00 SP14 and it works as expected.
    create object cached_response type cl_http_response exporting
      add_c_msg = 1.
        cached_response->set_data( file_content ).
        cached_response->set_header_field( name  =
      if_http_header_fields=>content_type
                                           value = file_mime_type ).
        cached_response->set_status( code = 200 reason = 'OK' ).
        cached_response->server_cache_expire_rel( expires_rel = 180 ).
        call function 'GUID_CREATE'
          importing
            ev_guid_32 = guid.
        concatenate runtime->application_url '/' guid into display_url.
        cl_http_server=>server_cache_upload( url      = display_url
                                             response = cached_response ).
    call method runtime->server->response->redirect( url = display_url ).
    navigation->response_complete( ).

  • Is it possible to execute same eCATT  script in different SAP versions

    is it possible to execute same eCATT  script in different SAP versions?
    Regards,
    Sunil sankar B.
    [email protected]

    Yes. In the ecatt script you have the option under ATTRIBUTES --> VERISONING DATA you can restrict it to different software components and different releases.

  • Cloning use the different gcc version between source system and target sys

    Hi All,
    Our system is: Application tier and Database tier is split to two servers.
    We should run a cloning, but I found the different gcc version on application tier on source system and target system.
    The source application tier server is RedHat Linux ES3, gcc version is 3.2.3
    The target application tier server is RedHat Linux ES3, gcc version is 2.9.6
    There is the same gcc version on database tier on source system and target system, they are gcc 2.9.6.
    My question: Can I use the different gcc version between source system and target system when I run an erp cloning?
    Thanks & Regards
    Owen

    Not necessarily, you might get some errors if the version is higher and it is not supported by the OS. An example is Note: 392311.1 - usr/lib/gcc/i386-redhat-linux/3.4.5/libgcc_s.so: undefined reference to 'dl_iterate_phdr@GLIBC_2.2.4'
    To be on the safe side, make sure you have the same version (unless you want to give it a try).

Maybe you are looking for

  • Changed apple ID BUT i cloud not merging with  new ID..still on the previous one

    i have changed my Apple ID but my I Cloud has not merged with the new ID and is still on the previous ID and there is no option to try and change it ??

  • Vendor history

    hi, which transaction code or table will give vendor history like how many Purchase order created, goods receipt done to that vendor , invoice receipt , payment done ,park document . overall want to know is that any transaction happened to that vendo

  • Error "Empty list of services in WSDL" at Web Services Navigator

    Hello all, I have a problem when trying to test my web service in the Web Services Navigator. I will have to call this web service from a web dympro. This is the error I get when selecting my destination in the search form: Empty list of services in

  • Raw Materials for a production order

    Hi, i am using sap b1 8.81 pl06. i have a Production order or a sales order with some finished product item. i need to know how much we have to prepare as raw materials for this specific PO or SO. is there any report that can give me these infomation

  • SAPLRRKO Error when running Precalc Process

    The process for one of our precalcs failed with the following error :  "System Error in Program SAPLRRKO and form MEGA_SORT". I reran the Precalc Process and it was successful and it had been running successfully every night - any idea on why this er