Essbase Error log issue for Shared Members

I am loading Shared members for a custom dimension in Essbase.
Error log is getting created as below.
\\Record #1 - Warning: Account Only attributes cannot be set in non-Accounts dimensions
PR0011,APP_PR,Shared Member,
But that specific member is getting loaded.
I am loading only shared member in this load and all records are shown as getting rejected even though most of them are getting loaded.This is causing issues in finding out real rejects.
-app

Hi, check this
http://oraclebizint.wordpress.com/2008/12/14/hyperion-essbase-931-obe-series-designing-essbase-databases-bso-outlines-data-load-global-schema-part-2-building-dimensions/
in the dimension build settings don't set allow moves property and use parent/child references
I have tested it & it works
Regards

Similar Messages

  • Aliases for shared members in Smartview

    Hi All Gurus,
    I am using Oracle EPM 11.1.2.3. I migrated an EPMA planning application from 11.1.2.2 to 11.1.2.3. The Alias for Shared members are not getting displayed When I access through Smartview ,instead it is showing as [Parent].[child] . But When I access the same application in 11.1.2.2, I can see the Alias.
    How to fix this?

    It is been identified as a bug have a read of this Oracle - Hyperion Labs......: Smart View issues with alternate Hierarchy - Surprises in Essbase Part V
    Regards
    Celvin
    http://www.orahyplabs.com

  • Is there any API for Shared Members

    Hi All ,
    Can any one let me know whether there is any API function for Shared Members? I could not find anything from http://download.oracle.com/docs/cd/E12032_01/doc/epm.921/html_api/api_c/mac/tocmacfa.htm
    Please do help...Thanks in advance

    I am assuming you are on 9.2 as that is the link you posted, all the details you need are in the docs - http://download.oracle.com/docs/cd/E12032_01/doc/epm.921/html_api/topapilist.htm
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • ASO - Time Functionality - MDX for Shared Members

    Hi
    I have create an ASO cube with two time hierarchies and I am currently trying to get the WTD To Date Functionality working.
    The hierarchies are as follows
    Hier1: Year->HalfYear->Quarter->Month->Week->Date (Date is stored)
    Hier2: Year->HalfYear->Quarter->Month->Date (Date is shared)
    In Hierarchy 1 the month of Jun contains the following days 27/05 - 30/06 due to the way the weeks fall.
    In Hierarchy 2 the month of Jun contains the following days 01/06 - 30/06 as this shows the actual days in the month of June.
    My problem is, in hierarchy 2, the shared members are taking on the WTD to values of the hierarchy 1 and my MDX is not recalculating for shared members.
    Is it possible to recalculate for shared members?
    Hierarchy1
    Hier1 Value - WTD
    Hierarchy 2
    Hier2 Value - WTD
    Jun-Wk1-27/05/13
    100
    May-27/05/13
    100
    Jun-Wk1-28/05/13
    200
    May-28/05/13
    200
    Jun-Wk1-29/05/13
    300
    May-29/05/13
    300
    Jun-Wk1-30/05/13
    400
    May-30/05/13
    400
    Jun-Wk1-31/05/13
    500
    May-31/05/13
    500
    Jun-Wk1-01/06/13
    600
    Jun-01/06/13
    600 (This should reset back to 100 but instead it is taking on the value from Hierarchy 1 because it is shared)
    Jun-Wk1-02/06/13
    700
    Jun-02/06/13
    700 (This should be the sum of 01/06 +02/06 but instead it is taking the value of Hierarchy 1)
    Below is a sample of the MDX I have
    WHEN IsLeaf([Calendar].[ReportingYear].CurrentMember) AND Count ( Intersect (Descendants([ReportingYear]) ,{ [Calendar].[ReportingYear].CurrentMember  })) > 0
    THEN
    sum((ANCESTOR( [Calendar].[ReportingYear].CurrentMember,1).Firstchild: [Calendar].[ReportingYear].CurrentMember), [View].[Periodic])
    WHEN IsLeaf([Calendar].[CalendarYear].CurrentMember) AND Count ( Intersect (Descendants([CalendarYear]) ,{ [Calendar].[CalendarYear].CurrentMember  })) > 0
    THEN
    /*1*/
    sum((ANCESTOR([Calendar]. [CalendarYear].CurrentMember,1).Firstchild:[Calendar]. [CalendarYear].CurrentMember))
    Thanks
    Michelle

    If you use the IsUda function within an IIF statement then you would have to specify a true part and a false part.IIF (Search condition,true part,false part)

  • Essbase error logs

    ODI 10.1.3.6
    IKM SQL to Hyperion Essbase (DATA)
    I usuallly just hard code a path in the error log filename.
    I've never understood what the default string is all about in the error logs..
    <Default>:<?=java.lang.System.getProperty("java.io.tmpdir")?>/<%=snpRef.getTargetTable("RES_NAME")%>.err
    Can someone please shed some light?
    Cheers

    The default error path is just using java system parameters and odi substitution methods to dynamically build up the error log path. This will work for everyone regardless of their specific setup and thats why its the default. There is nothing wrong with hard coding the error log path but it can affect portabillity when moving objects between environments. I've always found that setting error log paths dynamically in an ODI variable and then referencing the variable for the error log filename is a good approach.

  • BULK INSERT into View w/ Instead Of Trigger - DML ERROR LOGGING Issue

    Oracle 10.2.0.4
    I cannot figure out why I cannot get bulk insert errors to aggregate and allow the insert to continue when bulk inserting into a view with an Instead of Trigger. Whether I use LOG ERRORS clause or I use SQL%BULK_EXCEPTIONS, the insert works until it hits the first exception and then exits.
    Here's what I'm doing:
    1. I'm bulk inserting into a view with an Instead of Trigger on it that performs the actual updating on the underlying table. This table is a child table with a foreign key constraint to a reference table containing the primary key. In the Instead of Trigger, it attempts to insert a record into the child table and I get the following exception: +5:37:55 ORA-02291: integrity constraint (FK_TEST_TABLE) violated - parent key not found+, which is expected, but the error should be logged in the table and the rest of the inserts should complete. Instead the bulk insert exits.
    2. If I change this to bulk insert into the underlying table directly, it works, all errors get put into the error logging table and the insert completes all non-exception records.
    Here's the "test" procedure I created to test my scenario:
    View: V_TEST_TABLE
    Underlying Table: TEST_TABLE
    PROCEDURE BulkTest
    IS
    TYPE remDataType IS TABLE of v_TEST_TABLE%ROWTYPE INDEX BY BINARY_INTEGER;
    varRemData remDataType;
    begin
    select /*+ DRIVING_SITE(r)*/ *
    BULK COLLECT INTO varRemData
    from TEST_TABLE@REMOTE_LINK
    where effectiveday < to_date('06/16/2012 04','mm/dd/yyyy hh24')
    and terminationday > to_date('06/14/2012 04','mm/dd/yyyy hh24');
    BEGIN
    FORALL idx IN varRemData.FIRST .. varRemData.LAST
    INSERT INTO v_TEST_TABLE VALUES varRemData(idx) LOG ERRORS INTO dbcompare.ERR$_TEST_TABLE ('INSERT') REJECT LIMIT UNLIMITED;
    EXCEPTION WHEN others THEN
    DBMS_OUTPUT.put_line('ErrorCode: '||SQLCODE);
    END;
    COMMIT;
    end;
    I've reviewed Oracle's documentation on both DML logging tools and neither has any restrictions (at least that I can see) that would prevent this from working correctly.
    Any help would be appreciated....
    Thanks,
    Steve

    Thanks, obviously this is my first post, I'm desperate to figure out why this won't work....
    This code I sent is only a test proc to try and troubleshoot the issue, the others with the debug statement is only to capture the insert failing and not aggregating the errors, that won't be in the real proc.....
    Thanks,
    Steve

  • Error log table for LSMW-Direct input

    Can any one tell me , What is the table for storing the error messages in LSMW-Direct input?
    Regards,
    Nagesh

    for LSMW-Direct input method you can use EXCUTE IN BACK GROUND. the job is running and see the job name in SM37 . after completion of your job , select you job name and press the  SPOOL button there you can find the you job error log.

  • EPMA interface load for shared members

    Hi,
    Iam trying to load metadata to EPMA shared library through interface tables. was able to load everything except the shared members. I checked with IsPrimary value and set it to N/0 values also kept datastorage type to shareData. But still not getting updated. Import result gives the follwoing warning.
    "The import section 'Hierarchies' contains multiple primary instances of member '698035' in dimension 'Account_Shared'. Only the first instance will be processed"
    Please help me out.
    thanks,

    am still not able to sort out the above problem. can some one please help me to load shared members to EPMA shared library ?
    thanks,

  • Essbase security sync issue with Shared Services v 11.1.2.2

    Hi,
    We are using Essbase version 11.1.2 (ESB11.1.2.2.102B025) and shared services version 11.1.2.2.300.6001 (Drop 6)
    Foundation Services is on a cluster evironment, windows 2008 64 bit.
    Essbase is on Unix Sun Solaris.
    We encounter an issue in which each time a new user is added to a group.
    The user will not have immediate access to Essbas. Currently the only time the
    user will have access is when we restart essbase.
    Is there a way to sync users from Shared Services without restarting Essbase?
    Anyone has experience on this problem and may know what and where to look?
    This is the error the user get, even though the group has access to essbase cube and the user
    has been added to the group.
    [Thu Jun 27 16:22:18 2013]Local/ESSBASE0///79/Error(1055126)
    This user has no application access set. Please contact your system administrator
    [Thu Jun 27 16:22:18 2013]Local/ESSBASE0///79/Error(1054067)
    Internal error
    [Thu Jun 27 16:22:18 2013]Local/ESSBASE0///79/Error(1051293)
    Login fails due to invalid login credentials
    [Thu Jun 27 16:22:18 2013]Local/ESSBASE0///79/Warning(1051003)
    Error 1051293 processing request [Login] - disconnecting
    There is no issue if we provision the user directly to the cube, e.g. without using group.
    Please advise. Thanks.

    You shouldn't have to restart Essbase as it should automatically sync, there may be additional information in SharedServices_Security_Client.log though it is probably worth logging with Oracle.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Error after reconfiguration for shared services 11.1.2.1 and EAS

    Error 401 :The server has not found anything matching the URL [shared services]
    Oracle Essbase Adminitration Services 11.1.2.1 not connected.
    What might be the reason and which log to check
    Please help very very urgent

    Thank you everybody.I am again doing clean installationm by clesaning all the environment varaiables and uninstalling weblogic,Oracle Application developer,and Regedit oracle and hyperion.
    Thank u all for ur quick response.
    Thanks

  • Zoom out issue on shared members

    Hi All,
    While doing Ad-Hoc Analysis on EPMA planning app using Smartview, When I zoom out on a shared member, It is showing its original parent rather than the shared member parent. Is this a bug?
    Planning version is 11.1.2.3 and Smartview is 11.1.2.5.

    Hi
    I am not sure its a bug. This behaviour has been around for a while. How your zoom out works depends on what you have in your report.
    So, if all you have in your report is the shared member, with no reference to other areas of the shared dimension essbase has no way of knowing you have the shared member. It thinks it is the stored member and will always zoom out on the stored primary hierarchy.
    Try this. On the report also have the total parent of the shared hierarchy in addition to the shared member. So what I am saying is that if you drill down in report, always drill inclusive of the total of the shared hierarchy. Then essbase has a reference to drill back up the shared hierarchy.
    Thanks
    Anthony

  • Issue for sharing LR4 PDFs

    This may not be a big issue but for most photographers we spend a portion of our days trying to ensure our pictures don't get "borrowed on the net" and the one thing I noticed with the export to PDF option is, it's wide open.
    I own Acrobat pro so I can create a book in LR4 and export it. Then I can lock it down the security and make it difficult to take the photos out of the PDF. But for the average user, they can't switch on any security. So if they shared it on a social network (for example) to show the book and get comments, then the pdf can be downloaded and if you click on the image and right click you have "save image as" as an option.
    I think the default should be (if you are stuck with PDFs) that all the security is turned on and to download or make changes the viewer would need a password. I noticed when I pulled images out of the book and saved them to my desktop that they had a 24 bit depth and were on average 2000px on the long side and 200ppi... All with no watermarks...
    How about instead we trash the rather ugly PDF view of the books (hevan forbid you create a two page spread because it 1/2 shows up on one page and the second pg on the next page.
    I think that instead of ugly PDFs, you have LR4 create a Flash view of the book to include the cover and then you turn the pages and see the exact layout... To me this is much more elegant and if I wanted to share it with a (friend, family, customer) it would be safer and give a better presentation.
    Jeff Folger
    NEPGuild president
    Vistaphotography

    On a related note, I would suggest that at least a watermarking option be added in the books module.

  • Solution Manager 4.0 install error logging in for DDIC step 29

    Has anyone else seen the error 'Test logon to SAP System <sid> failed"? It states that it cannot login for DDIC. This is at step 29 during the install of the solution manager 4.0.
    We are running on a Windows 2003 Server/Oracle 10g.
    Any help would be greatly appreciated. We've been hitting this same error for the last couple of days.
    Thanks,
    DBB

    Dear Derrick,
    I have run into the exact same problem!!!!
    During step 29 of the install does it ask you to enter the DDIC password?
    It will ask you twice for a password if both the times the login fails then you will have no other option but to uninstall and reinstall Sol Man 4.
    The tactic that worked for me is that when it will ask u the passowrd the first time.......before you enter the password.......login in to Sol Man 4 using the default DDIC password 19920706. then change the default password. And then go back to the install and give this new ddic password.
    This is the only thing that worked with me.
    Let me know if anything else works.
    Email me @ [email protected] if you have any other questions.
    thanks
    Mikir

  • Strange Error in error.log possibly Internet-Sharing related

    I recently got this error message repeating every 2 Seconds or so (date and hostname clipped):
    +InternetSharing[524]: Internet Sharing shutting down+
    +com.apple.launchd[1] (com.apple.InternetSharing[524]): Exited with exit code: 1+
    +com.apple.launchd[1] (com.apple.InternetSharing): Throttling respawn: Will start in 10 seconds+
    Internet-Sharing was disabled. After enabling and disabling InternetSharing. The error stopped. Only to be replaced by:
    +natd[542]: failed to write packet back (No route to host)+
    +natd[542]: failed to write packet back (Host is down)+
    No IP-Adress is shown.
    Occasionally I get:
    +mDNSResponder[16]: setsockopt - IPMULTICASTIF error 169.254.98.218 -1 errno 49 (Can't assign requested address)+
    Anyone any Clue what's wrong?
    Message was edited by: shorshe

    Hi Maverick .
    You can find corrupted blocks with query on V$DATABASE_BLOCK_CORRUPTION
    select *  from V$DATABASE_BLOCK_CORRUPTIONif you have full backup(s) then you can use block media recovery with RMAN
    run
    BACKUP VALIDATE DATABASE;
    BLOCKRECOVER CORRUPTION LIST;
    } if you are using Oracle Database 11g, you can use recovery advisor like as
      advise failure all; and see : http://docs.oracle.com/cd/B28359_01/backup.111/b28273/rcmsynta033.htm#CHDEBHBI
    Regards
    Mahir M. Quluzade
    www.mahir-quluzade.com
    Edited by: Mahir M. Quluzade on Jun 12, 2012 12:41 PM

  • Quicktime -50 Error (New Issue for Me)

    I have OS X 10.9 and FCP X 10.0.9
    I'm doing a project with h.264 footage that is simple - a talking head in front of green screen, keyed, lower third in beginning, Photoshop PSD still background under. Audio is secondary WAV synced with FCP X's auto sync in Events feature.
    I'm doing about 35 of these, each a separate project in FCP X. The events are on a 3TB internal hard drive on my Mac Pro that has about 2 TBs free.
    What I'm experiencing is I do one of the projects, render it out using the Apple Devices 720p preset (fast encoding), and it works perfectly. I duplicate that project, change the edit point of the same exact video event, share it and about 90% in it stops and gives me the Quicktime -50 error.
    If I duplicate that project (just the project file) and then share it, it renders fine. I delete the other project that gave me the error, and then I continue.
    Some give me the error, some don't. It's all the same assets.
    I haven't figured out why it gives me this error.
    Thanks!

    I have OS X 10.9 and FCP X 10.0.9
    I'm doing a project with h.264 footage that is simple - a talking head in front of green screen, keyed, lower third in beginning, Photoshop PSD still background under. Audio is secondary WAV synced with FCP X's auto sync in Events feature.
    I'm doing about 35 of these, each a separate project in FCP X. The events are on a 3TB internal hard drive on my Mac Pro that has about 2 TBs free.
    What I'm experiencing is I do one of the projects, render it out using the Apple Devices 720p preset (fast encoding), and it works perfectly. I duplicate that project, change the edit point of the same exact video event, share it and about 90% in it stops and gives me the Quicktime -50 error.
    If I duplicate that project (just the project file) and then share it, it renders fine. I delete the other project that gave me the error, and then I continue.
    Some give me the error, some don't. It's all the same assets.
    I haven't figured out why it gives me this error.
    Thanks!

Maybe you are looking for

  • Requirement Date in Scheduling agreement

    Hi There are 6 line items in scheduling agreement created in ME31L for subcontracting process . Hi For first 4 line items , delivery schedule mentioned is 02/08/2008 . For last 2 line items , delivery schedule mentioned is 05/07/2008. I think this co

  • APP- Single Payment Document per Profit Center

    Hi All, Like we have option making single payment per business area wise in APP, client request to make per profit center Wise. But, sap not given any option like that till ECC 6.0 EH4. Can anybody have any work round solution for this requirement. T

  • Streaming Problem on N70

    I have a Nokia N70 that doesn't handle video steaming well. When, for example, you click "watch video" on YouTube Mobile, the RealPlayer does kick in, even connects, but after some time says "Unable to connect to server. Server timed out." I am in Sr

  • Palm Z22 Synchronization

    I am using my Palm Z22  for more than a year. Lately I have very odd situation - At the end of my standard synchronization (Calendar, Contacts, Notes, tasks) the sync. Continue with Installed file (PDB files) and after finishing this process the hand

  • XPath Expression Problem

    Hi again, still a newb and stillsomequestions, but hope dies at last :) I want to extract values from a xml file which is stored in a table. i have the following code: COLUMN div DEFAULT SELECT extract(value(x), '//DIV/@ ID = ''FXAC93006ENC.0001.01.0