Error: Derivation Source object, DIMENSION_NAME , is not correctly bound

Hi,
I have installed Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
and OWB 10.2.0.1.0 on Windows XP Professional.
I've created a simple MOLAP dimension with a default hierarchy and one level within it.
I've maped it to source table, deployed and loaded it. I can see its data.
Description of dimension:
Configuration
Deployable: yes
Deployment options: Deploy to Catalog only
Storage
MOLAP
Generate surrogate keys in the analytic workspace
Attributes
NAME::IDENTIFIER::DATA TYPE::LENGTH
ID::NULL::VARCHAR2::25
CODE::Business::VARCHAR2::32
NAME::NULL::VARCHAR2:255
Problem:
When I trying to derive definitions I receive an error in wizard: Derivation Source object, <DIMENSION_NAME>, is not correctly bound.
As result, there are no business definitions there.
This problem goes with all my MOLAP dimensions.
Please, maybe somebody faced with this trouble...

Hi,
Are you trying to Derive this into the Business Defintions area? In that case, this is not supported. For MOLAP objects you can use Discoverer and use an OLAP connection, then you will see your dimensions as query objects.
Derive only works for relational objects (e.g. ROLAP storage), and that is why you get that error (not bound) as the MOLAP object is not bound to a table.
Jean-Pierre

Similar Messages

  • Try to publish ical - error "your .Mac account information is not correct"

    I try to publish a calendar from my home computer so that I can see it on my work laptop (both Macs); and I get an error "Your .Mac account configuration is not correct. Calendar could not be published. Your .Mac account information is not correct. You cannot publish to .Mac until you have configured your .Mac account." Its setup and configured. Any ideas?

    I had the same thing and did the following two things which got it to publish. Not sure which one fixed it but give it a go.
    1. Open your .mac pane in system preferences. Sign out and sign back in.
    2. Change the name of the calendar you're trying to publish.
    Good luck!

  • IDoc Error -Instance of object type could not be changed

    Hi All
    I am getting IDoc failed with the error massaeg "Instance of object type could not be changed"
    Message type :PORDCR
    Basic type : PORDCR05
    Message no. BAPI003
    Status : 51
    Please suggest on this
    Thanks
    Ajit

    Hi Madhu
    All these POs are uploaded during the Cutover Activities only, I am not sure whether it is uploaded through LSMW or not. What I guess is If its uploaded thrugh LSMW , then we can't change any value in the PO.
    Please sugest how can I process allthese IDocs.
    Thanks
    Ajit

  • Aging 7 Buckets Report ARXAGMW  error REP-1212 Object Body is not enclosed

    Hi
    I am customising standard AR Aging 7 buckets report by account(ARXAGMW).
    I just need to add 2 fields,That i have added successfully.
    But the report output format is not printing properly.
    I mean if there are 4 columns custname,custno,endcustname,endcustno.
    it is printing the output as
    custname custno endcustname endcustno
    abc communications inc 1234 abc communicatio 1234
    xyz communications inc 5678 pqr communicatio 9657
    but i want to print with full name(endcustname) as how it is printing for custname.
    So itried to increase the report width to 300 and try to run the report,but i am getting the error.
    I tried with standard report also by increasing the width but same error.
    Could anyone please tell me when we increase report width what else i should change.
    The error is
    REP-1212: Object 'Body' is not fully enclosed by its enclosing object 'P_REPORTING_ENTITY_NAME'.
    Thanks,
    Malla

    Hi,
    "Not allowing" means? Do you get any error?
    Is this the same style used by this concurrent program? I assume that the report type is text.
    If the report type is bitmap, size the page size in the "Execution Options" field as "PAGESIZE= <width>x<height>" and submit the report again.
    Note: 297522.1 - How to investigate printing issues and work towards its resolution ?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=297522.1
    Regards,
    Hussein

  • Error in Source system (Job is not going in to job log of CRM system)

    Hi,
    We replicated datasources from CRM server in BI 7 server and they get replicated and are in Active version
    All transactiond atasources which are 7.0 version are executing successfully, but the Datasources which are in 3.5 version i.e. Datasource for master data infoobject gives error while executing infopackage.
    The error message is as follows:
    "Diagnosis
         In the source system, there is no transfer structure available for
         InfoSource 0CRM_MKTMETA_ATTR .
    System Response
         The data transfer is terminated.
    Procedure
         In the Administrator Workbench, regenerate from this source system the
         transfer structure for InfoSource 0CRM_MKTMETA_ATTR ."
    Also while executing the infopackage the job log in source system is not able to create the corresponding job.
    Following action are already been taken:
    1. Datasource replication
    2. Confirmed that the Transfer Structure are avialable and are in ACTIVE state.

    Hi
    It seems some changes are taken place at Source System for the Mast.Data DS. Try to Recheck the Same at Source System -- Activate/Retranport the same.
    BI side.
    RSA13Source System Your DS-- Replicate the Data Source -- Try to Run RS_TRANSTRUC_ACTIVATE_ALL(SE38) / Activate Transfer Rules Manually -- Then Full/Re Init -- Delta Uploads
    Hope it helps and clear

  • JSF error handling when the bean is not correctly loaded

    Hi,
    I am doing some error handling in JSF and I want to do it in an elegant way. I have the following scenario for error handling.
    When the bean is initialized I load the bean with values from DAO which give SQL Exceptions.
    Since the bean is not loaded I properly I have to send the user to an error page showing the error message why I am sending the user to this page.
    I can do it by [ FacesContext.getCurrentInstance.redirect("/error.jsf") ] doing so I will loose all the FacesMessages that are added by the exceptions.
    Instead I want to use the [ FacesContext.getCurrentInstance.dispatch("url") ] which will allow the transfer of the user but I get the following
    16:59:39,341 WARN [lifecycle] executePhase(RESTORE_VIEW 1,com.sun.faces.context.FacesContextImpl@8537f9) threw exception
    java.lang.ClassCastException: javax.faces.component.UIViewRoot
    and the method that I am calling is
    public static void programErrorEnd() {
    logger.info("in the prgmErrorEnd mehod");
    //intializing the contex object
    FacesContext ctx = FacesContext.getCurrentInstance();
    try {
    //ready to dispatch the url.
    //ctx.getExternalContext().redirect("app/error/prgmerror.jsf");
    ctx.getExternalContext().dispatch("error/prgmerror.jsf");
    } catch (IOException e) {
    //TODO what to do when there is an error at this stage.
    finally {
    ctx.responseComplete();
    }Thanks and Regarding
    Edited by: sgatl2 on Aug 28, 2008 2:32 PM
    Edited by: sgatl2 on Aug 28, 2008 2:45 PM

    Just let it throw the exception and define an error-page entry in the web.xml which catches the specified exception (or a superclass of it or a HTTP status code) and displays the error.jsf page accordingly.

  • Startup error: this version is not correctly localized.  Use the English version.

    I have Itunes running on Win7 ;  its my home laptop (lenovo G770).  A PC-tech cleaned up my registry and shrank my bloated list of startup programs.  After that was done, my laptop booted better.  However, iTunes won't start: the message is "This version of iTunes has not be correctly localized for this language.  Please use the English version."
    How can I fix that?  Sure I can reinstall new client (iTunes) over top of my old iTunes, but is there anything simpler?

    Hey there theozt,
    It sounds like you are getting an error message saying that iTunes is not correctly localized for this language. I would use the troubleshooting in the following article, named:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    Start with this step, and work your way down the article as needed:
    Start iTunes in Safe Mode
    Open iTunes in Safe Mode to isolate any interference from plug-ins or scripts not manufactured by Apple.
    Hold down Shift–Control while opening iTunes. You should see a dialog that says "iTunes is running in safe mode" before iTunes finishes starting up.
    Click Continue.
    See if the issue you're experiencing persists in Safe Mode.
    If you have the same issue while iTunes is in Safe Mode, proceed to the "Create a new user account" section. If you don't experience the same issue, follow these steps to remove third-party plug-ins.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • Error When Extracting the UD Connect Source Objects

    Hi,
    I am working on UD Connect to extract data from an external Oracle Database System. I have done all the required configurations from the Visual Admin and BI side.
    When I click on F4 help on 'UD Connect Source Object' in the 'Extraction' tab of Application Component, I am getting a message " Extraction of existing UD Connect data source objects". But, the message reamains the same forever. I mean, the source objects(tables) are not displayed.
    Message no. RSDS_ACCESS030
    But, this is working fine in the Web.
    1) We have tested the BI JDBC Connector using the URL:
    http://xxxabcdev03:50000/TestJDBC_Web/TestJDBCPage.jsp
    We got the list of tables displayed, implies connector is configured properly.
    2) When we are trying to configure the Source system in rsa1->modelling->source systems-> UD connect -> create,
    following are the values given:
    a) RFC: The RFC we have created from BW to Java.
    b)Logical System Name: We have manually typed in free text 'UDC_local'. Could you please clarify do we need to type in manually or select the logical system name from the F4 help?
    Which logical system name should we enter here exactly.. pls clarify.
    Do we have a seperate logical system name for the J2EE server...?
    c) Type of Connector : JDBC
    d) name of connector: SDK_JDBC
    e) Source system name: SDK_JDBC
    f) Type and Release : blank
    Please clarify, if we went wrong anywhere.
    Regards,
    Srinivas.

    Hi Srinivas,
    even i am facing the same problem,had you resolved it,if so pls help me out in resolving
    i have been in the same approach and even i am not clear with the logical system name(i have give a generic name) and even i tried given with the bi logical system name but it shows source system has got the same name as bi.
    i got struck there,pls guide me
    thanks in advance.

  • Unable to execute the report.  2108: The object requested: doest not exist in repository

    <BR>Hi,<BR><BR>I have developed report and saved . when I tried to execute from Hyperion reports web URL . It is giving me the error . The object requested does not exist in the repository Error No 2108.<BR><BR>can any one help me in resolving the isssue<BR><BR><BR>tx in advance for the help<BR><BR>regards<BR>bheemesh<BR>

    There might be a number of reasons why your report doesnt open up .One of the main reasons is that your report is incorrectly configured for the server and application .If you think that it is correctly configured .Then try exporting the report and then delete the report from the repository and then re-import the report back to the repository and check the server/application configuration and then run ur report again on the web . You should do fineeeeee.Naveen

  • Qaaws "Web services url is not correct" while adding host.

    Hello all,
                I am getting error "The web services Url is not correct" while adding the host name for Qaaws. The error is coming on the right side of the input text field of the Name showing by yellow warning icon.Please help me to resolve it.I was tried by keeping the host name instead of ip address.But is saying the same error.
    regards
    vishnu

    To enable rest support there are some instructions below:
    Before undertaking this process, I recommend backing up the file(s)
    you are going to edit.
    By default REST is disabled in Axis 2. We need to enable it. We
    need to go to the following folder. Assuming D: is the installation drive:
    1.     D:\Program
    Files\Business Objects\Tomcat55\webapps\dswsbobje\WEB-INF\conf (for 32 Bit OS)
    or D:\Program Files (x86)\Business Objects\Tomcat55\webapps\dswsbobje\WEB-INF\conf (for 64 Bit OS)
    2.     There is a file with the name axis2.xml (This file is an XML File and contains many parameters as well as many other things).
    3.     Make a backup copy of the filename you are about to edit.
    4.     Open the axis2.xml file in Notepad or 'XML Editor' to edit
    5.     Search for the word REST (Ctrl & F is probably easiest)
    6.     You will see a line like this
    <parameter name="disableREST" locked="true">true</parameter>
    We need to replace' true' with 'false' to enable REST, and after the changing that line will look like following:
    <parameter name="disableREST" locked="true">false</parameter>
    7.     Save the file and restart the web server.

  • What is the Error (de-)serializing object

    Hi all
    I have 2 EJB's one Stateful(Bean1) and Statless (Bean2). Bean1 lookup on Bean2 and get the remote object of Bean2 (Bean2Remote) and but it in a class that implements java.io.Serializable but when we return that class that holds the Bean2 remote the server throws
    com.evermind.server.rmi.OrionRemoteException: Error (de-)serializing object: NamingException: Bean2Remote not found
    Where the serializable class has the reomte and home interfaces of Bean2 with it
    Can any one help in that thanks in advance

    Having the same problem as many others here. I keep getting error message "0xFFFE7958". I have tried about 25 times over several days with 2 different computers using both tiger and panther and I still cant get the file to download. The episode that is giving me trouble is "Orientation" in second season of Lost. I have noticed that other peeps have had trouble with the same file. I don't think it's me!! I won't be downloading any itunes content until this gets fixed.

  • Number range object HRTR_PDOC : Interval not found

    Hi,
    I am doing Travel Mgt testing i got two problems
    1. Travel Policy is not taking when entering the expences
    2. when posting the doc to FI the error "Number range object HRTR_PDOC : Interval not found" is coming
    Pls suggest
    thanks in advance
    chandu

    Hi,
    Check table NRIV
    Regards,
    Manoj.

  • Aperture will not open library - permissions not correct -- but they are

    How do I get Aperture to open a library when I get an error message saying the permissions are not correct, but the permissions are correct, and other libraries open fine?
    I was using Aperture current version with a library on an external drive connected via airport extreme. I imported about 15 images to an existing project in that library and was editing the images when Aperture closed suddenly. When I try to reopen the same library I get an error message that says Aperture does not have access to that library because the permissions are not correct. But the permissions are set to everyone read write. Aperture opens other libraries on the same drive with the same permission setting.
    1. I ran disk utility repair permissions -- it says it fixed permissions on my laptop internal drive, but disk utility does not recognize the external drive so apparently it did nothing on that drive. Same error message on that library.
    2. I deleted user name >> Library >> Preferences >> com.apple.Aperture.plist and tried opening the library again. Same error message.
    3. I tried rebuilding the library using control command Aperture. Same error message.
    4. I used "show package contents" on that library and moved the project I had been working on when Aperture crashed to another drive and created a new library and imported the project successfully. Works.
    I read through existing topics and found suggestions like 1-4 but none work for me.
    I would be grateful for any help!
    Thanks.

    Please tell me you aren't trying to do this wirelessly!?!
    If you're wired to the Airport Extreme, that's better, but forget about running a remote Aperture library on a wireless connection! Even wireless 802.11n isn't fast enough, though I'm sure someone will argue that.
    Still, the Airport Extreme only has a USB interface, which is painfully slow! Firewire 800 is supported on all the new MacBook Pros and on the 17" "gen1" MacBook Pros. I'd highly recommend a FireWire 800 external hard drive or even a eSATA interface if you're running Aperture libraries remotely!!
    Depending on your total storage needs, just replace your internal MacBook Pro's hard drive. I've replaced a few in the past couple of weeks in some MacBook Pros to the 320GB WD Scorpio drive. Also buy a cheap (~$20) external USB enclosure for your old hard drive to repurpose your old internal drive and aid the restoration of your data. Next install the drives and use Migration Assistant to restore your data to precisely where you were before the hard drive upgrade. Pretty easy except for the actual install of the hard drive in the MacBook Pro, which can be tricky and requires special Torx tools; certainly more complicated than the standard MacBooks. Unless you know what you are doing here, pay someone skilled to do this for you.
    Seriously, I'm sure part of your problem is the lousy transfer speeds for Aperture trying to read data, causing data corruption, especially when you force quit so often.

  • Object dba_tablespaces does not exist

    Hi,
    after db restore (cold backup, noarchived log mode, OS -AIX backup) I receive:
    user is sys
    SQL> desc dba_tablespaces;
    ERROR:
    ORA-04043: object dba_tablespaces does not exist
    SQL> desc all_tablespaces;
    ERROR:
    ORA-04043: object all_tablespaces does not exist
    user_tablespaces is ok
    Any suggestions?
    Thx,
    Dobby

    What stage is your instance in, MOUNTED?
    SQL> shutdown abort;
    ORACLE instance shut down.
    SQL> startup mount;
    ORACLE instance started.
    Total System Global Area  404723928 bytes
    Fixed Size                   735448 bytes
    Variable Size             234881024 bytes
    Database Buffers          167772160 bytes
    Redo Buffers                1335296 bytes
    Database mounted.
    SQL> desc dba_tablespaces;
    ERROR:
    ORA-04043: object dba_tablespaces does not exist
    SQL> alter database open;
    Database altered.
    SQL> desc dba_tablespaces;
    ERROR:
    ORA-04043: object dba_tablespaces does not existIf you describe dba_* views at mount stage you cannot query them even after opening the database. You need to restart again.
    SQL> shutdown abort
    ORACLE instance shut down.
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area  404723928 bytes
    Fixed Size                   735448 bytes
    Variable Size             234881024 bytes
    Database Buffers          167772160 bytes
    Redo Buffers                1335296 bytes
    Database mounted.
    SQL> alter database open;
    Database altered.
    SQL> desc dba_tablespaces
    Name                                      Null?    Type
    TABLESPACE_NAME                           NOT NULL VARCHAR2(30)
    BLOCK_SIZE                                NOT NULL NUMBER
    INITIAL_EXTENT                                     NUMBER
    NEXT_EXTENT                                        NUMBER
    MIN_EXTENTS                               NOT NULL NUMBER
    MAX_EXTENTS                                        NUMBER
    PCT_INCREASE                                       NUMBER
    MIN_EXTLEN                                         NUMBER
    STATUS                                             VARCHAR2(9)
    CONTENTS                                           VARCHAR2(9)
    LOGGING                                            VARCHAR2(9)
    FORCE_LOGGING                                      VARCHAR2(3)
    EXTENT_MANAGEMENT                                  VARCHAR2(10)
    ALLOCATION_TYPE                                    VARCHAR2(9)
    PLUGGED_IN                                         VARCHAR2(3)
    SEGMENT_SPACE_MANAGEMENT                           VARCHAR2(6)
    DEF_TAB_COMPRESSION                                VARCHAR2(8)
    See Metalink note 296235.1 (ORA-4043 ON DBA_* VIEWS IF THEY ARE DESCIBED IN A MOUNT STAGE).

  • The data object "T_ACCIT" does not have a component called "XTRNDP"

    I am receiving an ABAP dumb following the execution of transaction MIGO (when posting the goods
    movement). Attached is a copy of the ABAP dump and below is part of a dev_w log file.
    I tried to look at table T_ACCIT in SE16 and I receive the message 'Table T_ACCIT is not active in the Dictionary'.
    A Tue May 20 15:19:26 2014
    A  *GENER* request remote generation: SAPLRWCL.

    A Tue May 20 15:19:27 2014
    A  *** ERROR => Syntax error in program SAPLRWCL                                 [abgen.c      1828]
    A  {root-id=6431504C36361EE3B88A6D67BE3C41DE}_{conn-id=00000000000000000000000000000000}_0
    A  *** ERROR => > Include FICA_SAPLRWCL=================E          line 5 [abgen.c      1830]
    A  {root-id=6431504C36361EE3B88A6D67BE3C41DE}_{conn-id=00000000000000000000000000000000}_0
    A  *** ERROR => > The data object "T_ACCIT" does not have a component called "XTRNDP". [abgen.c      1832]
    A  {root-id=6431504C36361EE3B88A6D67BE3C41DE}_{conn-id=00000000000000000000000000000000}_0
    A  TH VERBOSE LEVEL FULL
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A  ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A  ** RABAX: level LEV_RX_HOTSPOT_TRACE entered.
    A  ** RABAX: level LEV_RX_HOTSPOT_TRACE completed.
    A  ** RABAX: level LEV_RX_SAVE_SHMLOCKS entered.
    A  ** RABAX: level LEV_RX_SAVE_SHMLOCKS completed.
    A  ** RABAX: level LEV_RX_RESET_SHMLOCKS entered.
    A  ** RABAX: level LEV_RX_RESET_SHMLOCKS completed.
    A  ** RABAX: level LEV_RX_ROLLBACK entered.
    A  ** RABAX: level LEV_RX_ROLLBACK completed.
    A  ** RABAX: level LEV_RX_DB_ALIVE entered.
    A  ** RABAX: level LEV_RX_DB_ALIVE completed.
    A  ** RABAX: level LEV_RX_HOOKS entered.
    I  *** ERROR => SemRel: Inv. Operation. Units 1. Key=51 [semux.c      1393]
    I  {root-id=6431504C36361EE3B88A6D67BE3C41DE}_{conn-id=00000000000000000000000000000000}_0

    Hi,
    T_ACCIT is a table parameter of a fm and is of structure ACCIT. Also ACCIT can't be found in SE16 but in SE11.
    Regards,
    Klaus

Maybe you are looking for