Unable to retrieve/send data after processing a dimension

Hi All,
we have a problem with dimensions.
After adding a member in a dimension we no longer can create an EVDRE report or retrieve/send data successfully.
If we create a report with the member added in the dimension, the following error message appears in Excel: "EVDRE encountered an error retrieving data from the Web Server".
This happen if we use a parent member with BAS. If we use the parent member with SELF, the error message doesnu2019t appear.
We have refreshed dimension members, optimized the application, made a full process of the dimension but nothing.
The solution is the backup and restore of the appset.
Have anyone idea about the cause of the error?
Environment
Single Server - Windows 2008 64bit
BPC Version: 7.5 MS SP4
SQL Server: 2008 SP2
Best regards,
Simone

Hi,
This could be due to many reasons, but in any case, the process of your cube has not been successfully achieved, after your dimension processing and the structure could be corrupted.
This could be due to the reason explained in SAP note 1468161, for example.
Hope it will help.
Kind Regards,
Patrick

Similar Messages

  • Problem: Unable to retrieve workflow data from MDM repository

    This is a new MDM installations scenario for version 5.5 SP05 (5.5.40.83).
    After installing MS Visio, finding problems connecting it with the MDM Data Manager. After doing MDM workflow installations, able to initiate the MS Visio Workflow from MDM Data Manager and can see the Pane-MS Visio Workflow Stencil but not the able to see the Pane-MS Visio Workflow Stencil Details that appears below the Pane-MS Visio Workflow Stencil. Secondly geting a pop-up with the error message as - 'Unable to retrieve workflow data from MDM repository.'
    I have added a parameter Mail Server=MailServerIPAddess (the existing IP addr), but it hasn't helped.
    Can any one please help me in this !

    Hi
    As Felix mentioned, it might be a version compatibility problem.
    You have also mentioned that mail server is not working for that  do this
    Mailserver = SMTP server.company.com ( ex. Mail.company(xxxxx).com)
    MDM workflow notify task is working after rebooting the Machine. So the rule is after making changes to MDS.ini file reboot the machine ,to observe the consequence of configurable changes.
    If u need anything this let me know.
    Regards
    Hari

  • Need Help: Web Analysis, Unable to retrieve the data & Security Tab missing

    Hi
    I'm new to Hyperion (our version: 9.2.1) and we're implementing Hyperion Planning. One of the reporting tools is Web Analysis.
    I'm trying to create simple grid reporting. but I'm unable to retrieve the data instead the result is "n/a"
    and
    The File's Properties > Security tab is missing
    Does anyone know my issue?
    Thanks,

    Hi Experts,
    You told its resolved.how?
    I am having the same issue i am unable to retrive the tables.
    "Database:MS SQL Server
    Driver :weblogic.jdbcx.sqlserver.SQLServerDataSource.
    Connection String:jdbc:weblogic:sqlserver://localhost:1433;databaseName=BAM"
    Please help if you have resolved this issue.Any helpful links plz forward [email protected]
    Thanks

  • Can't send data after updating to 5.1 SP5 : "SendGovernor failed"

    Hi,
    I updated from 5.1 SP3 to SP5, followed the migration steps (saving each apps).
    When I want to send data in my application, I get a Send Governor Error : "CommitTrans::Send through SendGovernor failed;".
    It works fine in ApShell.
    Any idea ?
    Thanks
    Arnaud

    After upgrade you have save all the application to complete the upgrade.
    Also I suggest to process all dimensions because usually that error message is coming when something is not consistent in your appset.
    If this will not solve your issue then I suggest to go into C:\BPC\websrvrs\Logging and to check that logs because the information from there can be very usefull.
    Regards
    Sorin Radulescu

  • To retrieve data after process abended

    Hi everyone,
    Is there any method of replicating the DDL,DML 's fired after the processes like replicat abended.
    Currently i am using : alter replicat rep1 begin now
    It seems to work to make processes running again but the i lost the data that was replicated after the process abended.
    plz help......
    thanks
    Saurav

    Hi,
    1.
    My Suggestion is NOT to use BEGIN NOW option with Replicat. This will make your target tables go out of sync and miss some of the DML/DDL as you are altering replciat to process from current time stamp instead of recovery.
    GGSCI>alter replicat rep1 begin now
    Instead you should always start at seqno 0 and RBA 0 if you are starting fresh or starting Relicat for first time
    GGSCI>alter replicat <replicat_name>, Extseqno 0, Extrba 0
    GGSCI>start replicat <replicat_name>
    OR
    if the Replicat has abended earlier and you would like to restart it, you should simply restart it as it will have all the checkpoint information with it and it will automatically start processing data from the recovery checkpoint(trail file).
    GGSCI>start replicat <replicat_name>
    OR
    If you intend to start processing fom a specific trail file then you should use below command
    Example:
    $cd trail
    $ls -ltr
    lt000123
    lt000124
    lt000125
    If you are sure that the Replciat processed trail file 123 and you would like to start from trail file seq 124 then try
    GGSCI>alter replicat <replicat_name>, Extseqno 124, Extrba 0
    GGSCI>start replicat <replicat_name>
    OR
    If you want to start processing from specific record or start of transaction with in a trail file then you could use LOGDUMP utility to find the RBA and use the same to alter the Replicat.
    GGSCI>alter replicat <replicat_name>, Extseqno 124, Extrba 8999934
    GGSCI>start replicat <replicat_name>
    2.
    As you have already lost some of the data and your target DB is already out of sync, I would suggest below method to resync it.
    full database export using expdp(Oracle Source to Oracle Target)
    1) Enable Minimal Supplemental Logging in Oracle on source
    SQLPLUS > alter database add supplemental log data ;
    2) Enable Supplemental Logging at Table Level on source
    GGSCI> dblogin userid xxxxx password xxxxxx
    GGSCI> add trandata <schema>.<tablename>
    3) Add Extract, Add Exttrail, Add Pump, Add Rmttrail on source
    4) Start Extract, Start Pump on source
    5) Create a database directory:
    SQLPLUS> create directory dumpdir as '<some directory>' ;
    6) Get the current SCN on the source database:
    SQLPLUS> select current_scn from v$database ;
    28318029
    7) Run the export using the flashback SCN you obtained in the previous step. The following example shows running the expdp utility at a Degree Of Parallelism (DOP) of 4. If you have sufficient system resources (CPU,memory and IO) then running at a higher DOP will decrease the amount of time it takes to take the export (up to 4x for a DOP of 4). Note that expdp uses Oracle Database parallel execution settings (e.g.parallel_max_servers) which have to be set appropriately in order to take advantage of parallelism. Other processes running in parallel may be competing for those resources. See the Oracle Documentation for more details.
    a.expdp directory=dumpdir full=y parallel=4 dumpfile=ora102_%u.dmp flashback_scn=28318029
    Username: sys as sysdba
    Password:
    Note: The export log needs to be checked for errors.
    8) Start an import using impdp to the target database when step 7 is complete.
    9) Add and Start Replicat:
    GGSCI> add replicat <rep_name>, exttrail ./dirdat/<xx>
    GGSCI> start replicat <rep_name>, aftercsn <value returned from step 6>
    Hope this information helps.
    Thanks & Regards
    SK

  • Need to send data, after Usage decision in quality inspection (QA11)

    Hi all,
    After Usage decision in quality inspection (QA11), i need to send some data like material number, qty etc to external database or to external party. is there anyway i can achive this in real time? real time means, it should send the appropriate data to external party after usage decision is made.
    Thanks
    Pabi

    Hi,
    You can change results recording in case the MIC in the inspection plan of the lot are marked as "long term characteristics", else it wont be possible to change result recording.
    you can change the UD code only after giving the Usage decision.
    you cannot change the defects recording.
    Thanks
    SUMIT

  • Can I retrieve erased data after an update to Snow Leopard

    I finally got around to buying Snow Leopard for my imac that was running on OSX 10.4.11
    Unfortunately I didn't back anything up and once the Snow Leopard had loaded, all my data was gone. All my documents, photo's, music.
    I've managed to get some music back that I purchased from itunes but nothing else.
    Most things I can live without.....some important documents I can possibly remake....but the one thing that has gutted my whole family is the photo's that were on photo booth...as there were a lot of my sons friend who tragically died the week before Christmas aged 23.   I can't believe I didn't load them to disc before upgrading...completely slipped my mind.
    So is there by any miracle I can retrieve everything??
    Thanks for reading
    Daisy

    Thank you for all your replys...unfortunately I've had no luck, though I think it would be possible if I paid yet more dosh out, as I've tried a couple of free sample downloads that have discovered missing photo's...but to retrieve I have to buy the complete package....so I know they're retrievable at least...just can't afford to.
    Lesson learnt. Be careful what you wish for! I have wanted the upgrade for over a year and with a little ppi cash I got I bought it and paid to update itunes...and now I've lost everything, and Snow Leopard isn't allowing my bluetooth.
    Wish I'd saved my money and stayed with Leopard.
    Thanks again guys.

  • Unable to retrieve CLOB data from oracle

    hello I am trying to retreive a clob data from database. I am passing "country" to get "information". after submitting data it is showing SQLException caught: General error .
    whatz wrong.? can anybody help?
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    public class ClobTest2 extends HttpServlet{
         public void doGet( HttpServletRequest req, HttpServletResponse res )
              throws ServletException, IOException
                   Connection conn = null;
                   Statement st = null;
                   ResultSet rs = null;
                   res.setContentType( "text/html" );
                   PrintWriter out = res.getWriter();
                   String coun$ = "";
                   coun$ = req.getParameter( "coun" );
                   try{
                      Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver");
                      conn = DriverManager.getConnection( "jdbc:odbc:clobtester",    "temp", "sol" );
                      st = conn.createStatement();
                      rs = st.executeQuery( "SELECT information FROM testclob WHERE country = '"+coun$+"' ");
                        while( rs.next() )
                         out.println(rs.getClob(1) );
                      catch( ClassNotFoundException e )
                           out.println( "Could not load database driver" + e.getMessage() );
                      catch( SQLException e )
                           out.println("SQLException caught: " + e.getMessage()  );
                    e.printStackTrace();
                   catch( Exception e )
                       System.err.println( "Problem closing the database" );
                 try{
                             st.close();
                             conn.close();
                         }catch( Exception e )
                            System.err.println( "Problem closing the database" );
         }

    certainly but this problem can go on several
    category. and I am the needy one to get the solutionHowever I don't need to answer cross-posted questions. And I don't.

  • Unable to restore iCal data after total loss due to iCloud

    I believe iCloud is the cause for all my iCal data dissapearing. I have time machine running but am still not able to restore my iCal Data. I can not find the iCal data in the TimeMachine. Any suggestions?

    iCal data can be found in the Time Machine backups here: ~/Library/Calendars
    Find this folder in your Time Machine interface, choose it, click "Restore" and then "Replace" when prompted.
    When you exit Time Machine and go back into iCal all the entries should look the same as the day you chose to restore them from.
    If you don't have a backup.......sorry. There's no magic trick to bring it back. I've noticed that the preferred order of operations for first time iCloud syncing goes like this:
    Set up iCloud on iPhone, iPad, or iPod touch
    Log in at iCloud.com and make sure everything is correct on the site.
    Set up iCloud on your Mac/PC.
    No iOS device? Just make sure you have a backup or you export the calendars to a safe place before setting up iCloud on your computer. You may need to import your backups after the initial iCloud sync.

  • Unable to retrieve voice memos after deleting once from playlist

    hi,
    I have a serious problem.....
    i deleted the audio files on my mac under the "Voice Memo" playlist, as earlier i thought it only takes up space on my mac. but now i wanna send the memos to someone via Email and iphone is not allowing me as they are too big to do that so i wanna recover back the voice memo playlist.
    Please note that the voice memos are on iphone under the app, but are not coming in the playlist in itunes...
    Please help me out on how to get the voice memos back on my mac??

    i feel your pain
    this is so infuriating
    it's great little app, and so easy to record audio on the fly.
    BUT then absolutely impossible to easily transfer them to my desktop.
    infuriating

  • Unable to delete PSA data through process chain.

    Hi Everyone,
    I have got a problem in PSA deletion. We have got few PSA and change log deletion jobs which run at daily or fortnight basis. We planned to add few PSA tables to each daily and fortnight jobs depending on requirement.
    We added in development and could see jobs deleting PSAs properly. Now on transporting to testing, we could see that PSA tables are not being deleted and there is no change in data. We have checked the PSA table names properly, in table RSTSODS and confirmed PSA is given properly only.
    Anyone faced this problem or have idea about this issue, please let us know and suggest us.
    Thanks and regards,
    Shashidhar.

    Hi Shashidhar
    Just check for the PSA requests as below:
    Go to PSA in RSA1/ RSA1OLD -
    > Select the PSA -
    > Settings -> Display selection for PSA tree -> give start date and end date or any other selecetions as per your requirement-> it will show you all the details.
    Hope this helps.
    Cheers
    Chanda

  • Unable to restore older dates after Lion install in IMAC

    I see the pink bars on the time machine page going back to 2008. However, only the last 4 days are "filled in". I recently upgrader to Mac 10.7 Lion from SL.  There was no problem doing the restore on my MacbookAir.  I am unable to use the non-pinked tabs, How do I access the older Mac restores??? Any help would be much appreciated.

    I´ve the same problem with FW 30, but I made my backup in the same language (german)as I got the new FW. When I start the backup it starts normally but stops by 50%. Fortunately I can restore it to my N82 and make from there a bluetooth restore. But it schould´nt be the normal way.

  • Ipad2 unable to retrieve icloud backup after updating to ios7

    I cannot retrieve the important backups from icloud as the engineering team said they may not be compatiable at this moment....It is so frustrating and disappointing... Anyone knows how to fix this or change the system back to ios6?

    According to this link the iCloud servers should be fine http://www.apple.com/support/systemstatus/

  • After processing sender file is not deleting

    Hi All,
    I have configured the File-JDBC-File sync mode. the scenario is working fine upto last 2 days. but the problem is once the file picks and process its not deleting or archiving the file. but scenaio is working fine when i check in sxmb_moni but the error in sender file adaptor.
    Could not delete file 'abc.dat' after processing: java.net.SocketException: Broken pipe.
    in FTP server i have delete rights the other test scenario are working fine with out any error.
    Please help me to reslove this issue.
    Thanks,
    Venkat

    yes the processing mode is delete for sender communication chennal.
    I have created the other test scenario to test the processing mode is delete its working for other communication chennal. and my scenario also worked upto last 2 days. i have done delta cache and also created the new communication chennal even no luck.
    00:06:47 Success The message status set to DLNG.
    22.04.2009 00:22:42 Success The application sent the message synchronously using connection File_http://sap.com/xi/XI/System. Returning to application.
    22.04.2009 00:22:42 Success The message was successfully transmitted to endpoint http://SAPRtest.test.com:8047/sap/xi/engine?type=entry using connection File_http://sap.com/xi/XI/System.
    22.04.2009 00:22:42 Success The message status set to DLVD.
    22.04.2009 00:23:12 Error Attempt to delete file "abc.dat" after processing failed. Retry
    Please help me to reslove this.
    Thanks,
    Venkat.

  • Replacement check after processing escheatment

    Hi-
    On my ISU project, we are using an outside tool to perform the escheatment process and steps on unclaimed customer credit refund checks. The checks have to be voided after 180 days then moved to a specified GL account. One way to achieve the reclassification of the credit is to specify a GL account in the Escheatment configuration. After the checks are voided and escheated, we need the ability to issue a replacement check if the customer comes forward before the dormancy period is reached. The system allws the creation of a replacemen check but no GL entry occurs when the replacement check is created. I would have expected the configured escheatment GL account to be debited at a minimim.
    I
    s there anything I am missing?.
    Any help will be appreciated.
    Regards,
    M

    yes the processing mode is delete for sender communication chennal.
    I have created the other test scenario to test the processing mode is delete its working for other communication chennal. and my scenario also worked upto last 2 days. i have done delta cache and also created the new communication chennal even no luck.
    00:06:47 Success The message status set to DLNG.
    22.04.2009 00:22:42 Success The application sent the message synchronously using connection File_http://sap.com/xi/XI/System. Returning to application.
    22.04.2009 00:22:42 Success The message was successfully transmitted to endpoint http://SAPRtest.test.com:8047/sap/xi/engine?type=entry using connection File_http://sap.com/xi/XI/System.
    22.04.2009 00:22:42 Success The message status set to DLVD.
    22.04.2009 00:23:12 Error Attempt to delete file "abc.dat" after processing failed. Retry
    Please help me to reslove this.
    Thanks,
    Venkat.

Maybe you are looking for

  • How do I enable an older Flash Player in Safari 6?

    I recently updated my Safari browser to version 6, and the security feature that blocks older versions of the flash player is giving me some trouble. I have to have an older version of Flash (11.2.202.235) installed for school, as I attend a school o

  • Burned cassette sound problems on Shuffle

    The situation: I have burned a lot of old cassettes(factory made) and put them on Shuttle thru iTunes. Problem: I only get sound in left channel of ear pieces of pod. Apple gave me a new pod and ear sets . And 3rd party ear pieces do a single side to

  • Oracle 8i problem

    I am having some problems with an oracle 8i connection. When the weblogic server have run for more than 1 day with little use I gets either an ORA-01041 or an ORA-24327 error when trying to get a connection. Then to get the system to work again, I ha

  • Where is the "Express" in FC Express?

    I've used a PC for 15 years now, and was a Pinnacle Studio user for the last several years. Recently they added a Green Screen effect to STUDIO and it was "impossibly easy" <g> to do green screen in that product. I've recently (5 months) started usin

  • Importing layered photoshop files

    I'm trying to import a layered photoshop file ( .psd and .tif - neither works ). I was led to believe that this would import with its layers intact in order to make an overlay menu but that doesn't happen. All of the layers do import however as a sin