MDX code in XI 3.1 SP3 universes for time-related metrics

Hi all,
I have a multiprovider in BW 7.01 and I have installed BOE XI 3.1 SP3, integration kit and all.
I need to calculate a metric (Sales Price) in this manner:
after selecting a period (month/year), for a customer, in a sales centre (both customer and centre are optional conditions).
I need to calculate these different values for the given metric:
- value for the period and for the same period of previous year, plus difference between both values
- accumulated value from january until selected period, same for previous year and difference between both values
- rolling sum of 12 periods up to selected period, same for previous year and difference between both values
And all of them according to different dimensions, such as geography, age, type, etc...
For reasons of volume, abstraction capabilities, etc. we need to use a multiprovider.
In your expert opinion, what would be the best approach for this?
Would you edit the universe and create new objects using MDX functions, such as PERIODSTODATE, etc.? If so, have you ever tried it? could you suggest a syntax, taking into account we don't have the MDX wizard yet in 3.1 SP3?
Is there some other approach that you've used, such as using formulas in Web Intelligence?
Regards!
David
Edited by: David Perez on Jan 10, 2011 4:21 PM

I found a workaround for the issue by patching and compiling the Axis2 kernel library. You need to download it form Apache, install Maven 2.0.7, set the default timeout in .../client/Options.java to a value that suits your needs (for me: 20min), and compile the whole thing using mvn clean install.
But this is obviously not the solution one wants. So, is there anybody with a REAL answer to the problem?
Regards,
con

Similar Messages

  • Encore CS5.5: Error Code 19 Failed to Open MUI File for Time Line when making BR ISO

    Encore CS5.5: Error Code 19 Failed to Open MUI File for Time Line.  What is this and how do I correct it.  This happens whenmaking a Blu ray ISO with Menu or no menu created
    Using: I7 Windows7  machine with Production Premium CS5.5
    I get this wether I create a menu or no menu. I have tried several times with it. I do not know what the error is or how to correct it.
    I encoded with no errors in Premiere.
    I get this jsut after Encore starts to transcode the files.
    Please help,
    Steve

    Go back to http://forums.adobe.com/community/encore and enter
    Error Code 19
    in the area just under Ask a Question
    You may now read all the previous discussions of your error... be sure to click the See More Results at the bottom of the initial, short list if the initial list does not answer your question

  • BEx Query MDX code

    Hi,
    please could you tell me how can I retrieve the MDX code generated by a BEx query? Is there any command in the Query Designer or Analyzer that allow you to see the script used by the query to extract data from DB?
    Thank you!

    Hi
    We have some reference material in the SAP library in additional development technologies
    Check
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/d9/ed8c3c59021315e10000000a114084/frameset.htm
    Bye

  • How to get MDX code from Smartview query

    Hello everybody:
    I would like to know how to obtain the MDX code when I am performing a query from Smartview. How can I find out what sentence the Provider Service sends to Essbase when doing any operation in Smartview?
    Thank you
    Regards
    Javier

    you might want to use the HypQueryMembers vba call with it you can query the outline directly for a lot of things including User defined attributes
    Here is the code sample from the VBA reference (it is available in Excel by going to the add-ins menu and selecting Hyperion Help
    Description
    HypQueryMembers() executes the member selection query.
    Syntax
    HypQueryMembers (vtSheetName, vtMemberName, vtPredicate, vtOption, vtDimensionName, vtInput1, vtInput2, vtMemberArray)
    ByVal vtSheetName As Variant
    ByVal vtMemberName As Variant
    ByVal vtPredicate As Variant
    ByVal vtOption As Variant
    ByVal vtDimensionName As Variant
    ByVal vtInput1 As Variant
    ByVal vtInput2 As Variant
    ByRef vtMemberArray As Variant
    Parameters
    vtSheetName: (string) Text name of worksheet to operate on. vtSheetName is of the form "[Book.xls]Sheet". If vtSheetName is null, empty, or invalid (nonexistent or name does not match exactly), the active sheet is used.
    vtMemberName: (string) The member name on which to perform the query.
    vtPredicate: (integer) Member selection criteria:
    1 HYP_CHILDREN
    2 HYP_DESCENDANTS
    3 HYP_BOTTOMLEVEL
    4 HYP_SIBLINGS
    5 HYP_SAMELEVEL
    6 HYP_SAMEGENERATION
    7 HYP_PARENT
    8 HYP_DIMENSION
    9 HYP_NAMEDGENERATION
    10 HYP_NAMEDLEVEL
    11 HYP_SEARCH
    12 HYP_WILDSEARCH
    13 HYP_USERATTRIBUTE
    14 HYP_ANCESTORS
    15 HYP_DTSMEMBER
    16 HYP_DIMUSERATTRIBUTES
    vtOption: (integer) Options are dependent on the predicate:
    For the predicate values, HYP_SEARCH and HYP_WILDSEARCH, specify query options: HYP_MEMBERSONLY
    HYP_ALIASESONLY
    HYP_MEMBERSANDALIASES
    vtDimensionName: (string) Dimension to limit the scope of the query. It is used with the following query options and ignored otherwise: HYP_NAMEDGENERATION, HYP_NAMEDLEVEL, HYP_USERATTRIBUTE HYP_SEARCH (set to Null to search through all dimensions), HYP_WILDSEARCH (set to Null to search through all dimensions).
    vtInput1: (string) Input string that is determined by the option. It is used with the following query options and ignored otherwise:
    HYP_NAMEDGENERATION (The name of the generation)
    HYP_NAMEDLEVEL (The name of the level)
    HYP_SEARCH (The string to search for. The string is defined as an exact)
    HYP_WILDSEARCH (The string to search for. The string is defined as an exact search string with an optional '*' at the end to mean any set of characters)
    HYP_USERATTRIBUTE (The user-defined attribute)
    vtInput2: (string) Input string that is determined by the option. It is used with the following query options and ignored otherwise:
    HYP_USERATTRIBUTE (The user-defined attribute)
    HYP_SEARCH, HYP_WILDSEARCH (If the options are set to search in the alias tables, this string specifies which alias table to search. If the string is Null, all alias tables will be searched).
    vtMemberArray: Output that contains the result of the query. If unsuccessful, its contents are unknown.
    Return Value
    Returns a zero if successful; otherwise, returns the appropriate error code.
    Example
    Declare Function HypQueryMembers Lib "HsAddin.dll" (ByVal vtSheetName As Variant, ByVal vtMemberName As Variant, ByVal vtPredicate As Variant, ByVal vtOption As Variant, ByVal vtDimensionName As Variant, ByVal vtInput1 As Variant, ByVal vtInput2 As Variant, ByRef vtMemberArray As Variant) As Long
    Sub QueryMembersEmptyValues()
    vtRet = HypQueryMembers(Empty, Null, HYP_WILDSEARCH,
         HYP_MEMBERSONLY, "Year", "J*", "", vt)
    If IsArray(vt) Then
    cbItems = UBound(vt) + 1
         MsgBox ("Number of elements = " + Str(cbItems))
    For i = 0 To UBound(vt)
         MsgBox ("Member = " + vt(i))
    Next
    Else
    MsgBox ("Return Value = " + Str(vt))
    End If
    End Sub

  • List of universe for a deski report using deski report engine.

    We have some Deski reports. While running query builder , we are not able to get list of universe for those reports. (SI_UNIVERSE.SI_TOTAL is 0).
    We need to go for deski report engine approach to get the list for the same. Can someone please help me with the sample code for the same.
    Thanks,
    Abhay

    Hi Ted,
    Do you know if the ability to pull DeskI SQL will be supported through Java reportEngine in the future?  Is there a workaround aside from using COM SDK to pull this data provider information for DeskI?
    Thanks

  • How to create universe for sap bw cubes in Business objects

    Hi all,
    can anybody tell me the steps to create universe for SAP BW CUBES from Business objects software.
    Thanks.
    Cheta.

    Hi,
    In a SAP-BW and BO environment using Business Object Universe generator, it appears that BO requires direct data base connectivity to read data from BW.
    In XI/XI R2 , it use an RFC connection (MDX driver, which makes BAPI, SAP API calls) to SAP BW to obtain the details of the BW Query or Info Cube for building the Universe using the XI/XIR2 Business Objects designer application. The request for the query or cube details is done VIA BAPI function calls. For the SAP BW Query we must have “allow External Access to this query” checked under the Query Property window.
    Our Integrated Solution Kits do not access the SAP BW’s data source.
    Hope this helps,
    Regards
    CSM Reddy

  • WAITING FOR TIME CODE....again

    Hi, when I try to capture from DV device, the capture window appears "PREVIEW DISABLED" I can remote the dv device, mark time code in or out, play tape, pause tape, the time code in the capture window run and is the same taht the tape, but when I do batch capture, cpture clip or capture now, the preview window of catpure says : "WAITING FOR TIME CODE" "DEVICE MUST IN VTR MODE WHEN DEVICE CONTROL IS ENABLED" and when I abort the capture this message apperas: "THIS OPERATION COULD NOT BE COMPLETED AS THERE IS NO VIDEO", Quicktime pro is unabled to capture too, but IMOVIE capture without this problem. I download the firewire sdk from developer connection of apple and use AVCVideo Cap, and no problem for cature, so , my Firewire or dv devices are ok, with DVHSCap I capture PRO HD JVC very well.
    Resume , I think there is a problem with quicktime and DV format, My Ibook G4 with FCP 5.0.1 capture from DV devices OK, without problem. If anybody resolved this please comment with us. I work to day with FCP 6.0.4 and quicktime 7.5 and Mac os 10.4.11 and 10.5.4 the problem is afected my PowerPC G5 and my powerbook intel. Another point of interest is that this problem is RANDOM, some times I can capture from DV devices in the first time, some times I can't capture.

    Hey AL
    How ya doin buddy?
    "Either way, try an Easy Setup>DV Converter, to match your video standard (Pal or NTSC)."
    Yep - did that
    Yes actually my older Sony TVR-310 camcorder IS a digital unit which can also play back analog tapes.
    As I'm getting my way around now in FCE, I'm coming to some conclusions in regard to FCE's capture capability.
    First let me say that I've also tried capturing some footage in FCE with my other Sony TVR-950, and have had dropped frames, and also breaks in time code.
    I thought dropped frames were strictly a PC issue?
    Anyway, it appears to me that FCE is VERY sensitive to time code issues NO matter which camera is in the chain.
    In fact, I've also read here where folks have a lot of trouble with their Canon GL2's as well. Some of you have even suggested to do your captures in a cheaper Mini DV, or a clam-shell playback machine. This conserves the heads on your GL2 as well.
    But why would FCE do better in regard to capturing and time code, with a cheaper Mini DV Camcorder? Perhaps I'm missing something here?
    Perhaps iMovie doesn't care about the same issue?
    Now my main question is:
    Ok I'll use iMovie6 HD (tried and true), to capture ALL my footage and just save the DV files to be edited later (imported) into FCE.
    Does this sound like a viable solution to FCE's time code issues?
    Will my iMovie captures be JUST AS GOOD as if they were done in FCE?
    Thanx so much guys!
    Mike

  • I received a text today while at work about iCloud keychain verification code. I have not signed up for it or anything that uses it. I work out of the city with limited internet access so not sure why I would be getting this. Is my info safe??

    I received a text today while at work about iCloud keychain verification code. I have not signed up for it or anything that uses it. I work out of the city with limited internet access so not sure why I would be getting this. I only got this number about a month ago. Apparently someone else had the number before because I get texts from his family members wondering whats going on. I got one yesterday and the person didn't seem to thrilled that the number was cutoff and today I got 2 texts about iCloud Keychain which I don't even know what it is. Seems suspicious to me. If the person who use to own the number is doing it he should know it is not his number anymore because he obviously didn't pay his bills.  I'm not too sure about iCloud Keychain so just want to know my info safe?? It says it can store credit card numbers which is what gets me worried. Frankly I think it's pretty stupid to save that kind if information with any kind of app. But I don't want some random person trying to access my personal information because they are bitter they lost their number.  Please let me know as soon as possible so I can change passwords or anything that is needed.
    thanks

    If it were me, I would go to my carrier and get a new number. Since you have only had it for a month, the inconvenience would be minimal.
    Barry

  • I just rented a film using my apple TV and was then asked to enter a code - which I haven't been asked for in long time. I have forgotten the code. Any quick solutions to the problem?

    I just rented a film using my apple TV and was then asked to enter a code - which I haven't been asked for in long time. I have forgotten the code. Any quick solutions to the problem?

    Hello anetsa
    It sounds like you have restrictions setup on your Apple TV. If you do not know your passcode to unlock it, then you will need to restore your Apple TV. Check out the articles below for more information about Restrictions as well as restoring your Apple TV.
    Apple TV: Understanding Restrictions (parental controls)
    http://support.apple.com/kb/HT200198
    Apple TV (2nd and 3rd generation): Restoring your Apple TV
    http://support.apple.com/kb/HT4367
    Regards,
    -Norm G.

  • Error Code: "This computer is no longer authorized for purchased items that are on this iPad."

    I'm getting Error Code: “This computer is no longer authorized for purchased items that are on this iPad.” 
    I have tried re-authorizing and the error persists.
    I have also tried de-authorizing ALL my devices, then re-authorizing and that did not help either.
    My husband and I share this iPad and we have set up family sharing. 
    We have also each purchased apps using our separate iTunes accounts before I set up the family sharing. 
    How can we fix this error message so that I can back the iPad up to my Mac again? 
    Husband thinks that at some point we each synced the iPad to our respective Macs.  
    Could that be it?
    Thx!!

    I'm not using family sharing, but if you want to sync or backup the iPad with ITunes, I believe that you have to be signed into the same ID on the iPad that you are signed into on the computer and you also have to be authorized for all Apple ID's on that computer that you want to sync or backup with.
    DO you have multiple iTunes libraries on the one computer?
    http://www.imore.com/how-use-multiple-apple-ids-one-computer-and-itunes

  • How to fix Adobe App Manager error code -60 Download appears corrupt but only for Photoshop CS6 app

    How to fix Adobe App Manager error code -60 Download appears corrupt but only for Photoshop CS6 Creative Suite Cloud App. Many attempts were made to install Photoshop CS6 with Adobe Application Manager without success. Every other Creative Suite Application was successfully downloaded. I keep getting Installation Failed when attempting the Photoshop install. How does one correct this?

    Thanks Jeff! So, it totally appears as if it was a network issue. The corporate network where I work is quite likely the culprit. Where I was thrown off is that since I have admin rights on my computer, I can install software. But using Adobe Application Manager to install Adobe software wasn't working. And to make matters worse, there didn't appear to be any way to install Acrobat Pro for Mac without using AAM. The workaround that I used previously was to install the trial versions of Adobe software, and then just register them using my username and password. But the workaround for being able to install everything using AAM was to bring my computer home and download from my home network.

  • Error Code: 34 Mac OSX 10.8.4 for Photoshop CC, Bridge CC, After Effects CC, and Flash CC

    Hello,
    So I am installing all the CC versions of the software and all but Photoshop, Bridge, After Effects, and Flash installed without a hitch. On those 4 programs I get the same error code: 34. I am able to install the CS6 variants of them without any problem and run it. Here is the error code:
    Exit Code: 34
    Please see specific errors below for troubleshooting. For example,  ERROR:
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 0 error(s)
    FATAL: Payload 'Camera Profiles Installer_8.1_AdobeCameraRawProfile8.0All 7.0.0.108 {D5BBDFC0-C716-46B1-8908-85B0EA49FFA1}' information not found in Media_db.
    I have been unable to fix this on my own and with what I've found online. I'll list what I have done so far to try to fix this issue. I have tried to use the Adobe Creative Cloud Cleaner Tool but the issue is since PS, BR, AE, and FL won't install I can't clean them to try a fresh install. I tried installing the CS6 versions to see if it would dowload the 'Camera Profiles Installer_8.1".
    Any help on fixing this ASAP would be much appreciated!
    Thanks,
    NB

    Hey Guys I am experiencing the exact same iusse I spoke with adobe and they weren't able to solve the issue here's  log.
    I'm pasting the fatal errors from photoshop hope this helpful
    06/18/13 12:02:45:614 | [FATAL] |  | OOBE | DE |  |  |  | 19669 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 12:02:46:615 | [INFO] |  | OOBE | DE |  |  |  | 19669 |  - 1 fatal error(s), 0 error(s)
    06/18/13 12:02:46:615 | [INFO] |  | OOBE | DE |  |  |  | 19669 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 12:13:17:103 | [FATAL] |  | OOBE | DE |  |  |  | 26756 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 12:13:18:104 | [INFO] |  | OOBE | DE |  |  |  | 26756 |  - 1 fatal error(s), 0 error(s)
    06/18/13 12:13:18:104 | [INFO] |  | OOBE | DE |  |  |  | 26756 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 12:20:13:772 | [FATAL] |  | OOBE | DE |  |  |  | 31392 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 12:20:14:774 | [INFO] |  | OOBE | DE |  |  |  | 31392 |  - 1 fatal error(s), 0 error(s)
    06/18/13 12:20:14:774 | [INFO] |  | OOBE | DE |  |  |  | 31392 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:07:14:983 | [FATAL] |  | OOBE | DE |  |  |  | 16841 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:07:15:984 | [INFO] |  | OOBE | DE |  |  |  | 16841 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:07:15:984 | [INFO] |  | OOBE | DE |  |  |  | 16841 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:19:33:315 | [FATAL] |  | OOBE | DE |  |  |  | 24315 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:19:34:316 | [INFO] |  | OOBE | DE |  |  |  | 24315 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:19:34:316 | [INFO] |  | OOBE | DE |  |  |  | 24315 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:21:06:794 | [FATAL] |  | OOBE | DE |  |  |  | 25240 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:21:07:796 | [INFO] |  | OOBE | DE |  |  |  | 25240 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:21:07:796 | [INFO] |  | OOBE | DE |  |  |  | 25240 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:21:30:440 | [FATAL] |  | OOBE | DE |  |  |  | 25537 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:21:31:441 | [INFO] |  | OOBE | DE |  |  |  | 25537 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:21:31:441 | [INFO] |  | OOBE | DE |  |  |  | 25537 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:47:18:185 | [FATAL] |  | OOBE | DE |  |  |  | 9822 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:47:19:186 | [INFO] |  | OOBE | DE |  |  |  | 9822 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:47:19:186 | [INFO] |  | OOBE | DE |  |  |  | 9822 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:47:58:563 | [FATAL] |  | OOBE | DE |  |  |  | 10207 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:47:59:565 | [INFO] |  | OOBE | DE |  |  |  | 10207 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:47:59:565 | [INFO] |  | OOBE | DE |  |  |  | 10207 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:48:24:091 | [FATAL] |  | OOBE | DE |  |  |  | 10483 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:48:25:092 | [INFO] |  | OOBE | DE |  |  |  | 10483 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:48:25:092 | [INFO] |  | OOBE | DE |  |  |  | 10483 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:54:20:032 | [FATAL] |  | OOBE | DE |  |  |  | 14779 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:54:21:034 | [INFO] |  | OOBE | DE |  |  |  | 14779 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:54:21:034 | [INFO] |  | OOBE | DE |  |  |  | 14779 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 14:15:39:774 | [FATAL] |  | OOBE | DE |  |  |  | 28845 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 14:15:40:775 | [INFO] |  | OOBE | DE |  |  |  | 28845 |  - 1 fatal error(s), 0 error(s)
    06/18/13 14:15:40:775 | [INFO] |  | OOBE | DE |  |  |  | 28845 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 14:27:33:665 | [FATAL] |  | OOBE | DE |  |  |  | 37134 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 14:27:34:666 | [INFO] |  | OOBE | DE |  |  |  | 37134 |  - 1 fatal error(s), 0 error(s)
    06/18/13 14:27:34:666 | [INFO] |  | OOBE | DE |  |  |  | 37134 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 14:49:31:860 | [FATAL] |  | OOBE | DE |  |  |  | 48667 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 14:49:32:862 | [INFO] |  | OOBE | DE |  |  |  | 48667 |  - 1 fatal error(s), 0 error(s)
    06/18/13 14:49:32:862 | [INFO] |  | OOBE | DE |  |  |  | 48667 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 16:05:56:669 | [INFO] |  | OOBE | DE |  |  |  | 16619 |  - 0 fatal error(s), 2 error(s)
    06/18/13 16:09:05:111 | [INFO] |  | OOBE | DE |  |  |  | 19310 |  - 0 fatal error(s), 2 error(s)
    06/18/13 16:29:47:953 | [FATAL] |  | OOBE | DE |  |  |  | 11765 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 16:29:48:954 | [INFO] |  | OOBE | DE |  |  |  | 11765 |  - 1 fatal error(s), 0 error(s)
    06/18/13 16:29:48:955 | [INFO] |  | OOBE | DE |  |  |  | 11765 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    Error Code: 34 Mac OSX 10.8.4 for Photoshop CC, Bridge CC, After Effects CC, and Flash CC

  • Corrupt Data1.cab in Oracle Express 10g Universal  for Windows

    Hello Oracle Folks,
    I downloaded several times Oracle Express 10g Universal for Windows (OracleXEUniv.exe) and tried to install it and I get every time the same error message: "Error 1335. The required file "Data1.cab" is corrupt and cannot be used ...". When I download the Western European Edition (OracleXE.exe) the installation works! I downloaded the file on different local disks to exclude the risk that my disk is damaged.
    Can you please check if this download is sane!
    Thanks and best regards Thomas Mayr

    kalyat wrote:
    Amazing reply Hans.
    I have seen some arrogent smart mouth answers in my time. But this really takes the cake. Also judging from the icon you are some kind of employee of oracle. Wow! Now that shows respect for your users.
    Sorry to disappoint you - I am not an employee of Oracle. Much of your rant is irrelevant.
    I am simply a person who has volunteered enough time to provide over 8,000 repsonses in these forums and many more in other forums.
    Many, many, many of the questions are pure repetition due to the extreme laziness, incompetence or inability to do basic thinking by the questioners. There are also a lot of questions by 'newbies' who have obviously made an attempt to research the problem.
    My approach to answering questions is simple and two-fold:
    - make the person angry enough, or aware ennough, that they will think a bit when asking the next question;
    - if they ask a question intelligently (http://www.catb.org/~esr/faqs/smart-questions.html) I usually am convinced to help.
    (And yes, I do take longer breaks when I find myself being frustrated enough to provide answers like the above.)
    The stupid installation program for your stupid database was supposed to check the version of the Operating System. Anyway how does the operating system version matter if a cab file is corrupted? which was incidently packed in that stupid download link which you have happily given to all customers all this time. I was hoping to find that since you guys are too lazy to make the installation file properly you might have atleast bothered to put up a download link for that stupid Data1.cab. But nooo... The 'stupid installation program' is indeed that - a stupid installation program. It does a certain amount of checking, but definitely not enough. In that I do agree with you. It was also released too early - basrely understands how to spell Vista.
    Also, there is an assumption by Oracle that the person downloading reads the documentation, especially the installation guide, that is available at the same location as the download. It is amazing and extremely disappointing to note how many people will not even attempt to look at the link.
    The real sad part for me is that I frequently download software (and did again in this case) to verify that the user has a legitimate complaint. The 'data1.cab' that I received was not corrupt. Therefore I conclude the original poster made some huge assumption that is likely invalid. Now, I did install into an XP machine, and that could make a difference.
    As for the 'you guys' statement - perhaps you should take that up with Oracle or an Oracle employee. Directing at me is an unsubstantiated assumption on your part. <g>
    >
    I wasted some time thinking I would check out the db for development, got the same error and after seeing your mealy mouthed response to that poor guy who was asking a valid question, I think I won't bother anymore. You see, there is this amazing thing called Linux and MySQL..
    Yup. You could easily go there. Shows yet another assumption. (In fact, my company is centered around Linux and Oracle. And I have made a conscious decision, based on 3 decades of experience, to toss MySQL and stick with Oracle. And now that Sun, which owns MySQL, seems to be on the auction block, the future of MySQL is definitely up in the air.)
    However, given how many assumptions you make and how valid they are, you may find it easier to stick with MySQL. Oracle Express edition potentially could save huge buckets of time and effort in the long run, but it does require reading, research and other skills to get up to speed.
    Now, as to your problem
    1) This is not the forum to discuss issues with installation. (If the problem is traced to the download source, then this is the right spot.)
    2) There is a dedicated forum for Oracle Database 10g Release 2 Express Edition (Oracle Database Express Edition (XE)
    3) You are absolutely correct that the installer should be smart enough to check the OS. It does not.
    4) Since it does not, and since there are differences, knowing which version AND edition of Windows (or which Linux distro and release) is critical to troubleshooting.
    Edited by: Hans Forbrich on Mar 21, 2009 4:32 PM

  • I have an issue installing photoshop CC trial, I currently have elements and wanted to see the differences before buying, when installing through the creative cloud app I get the error message  Exit Code: 7 Please see specific errors below for troubleshoo

    I have an issue installing photoshop CC trial, I currently have elements and wanted to see the differences before buying, when installing through the creative cloud app I get the error message  Exit Code: 7 Please see specific errors below for troubleshooting. For example,  ERROR: DW041 ...   -------------------------------------- Summary --------------------------------------   - 0 fatal error(s), 1 error(s)
    ERROR: DW041: INSTALLDIR Volume D:\ doesn't exist.  -------------------------------------------------------------------------------------  System Requirements  and it will not install, It says cant find the path D: im not sure why because as far as I can see its set to install on drive C: which is where I want it!

    Exit Code: 6, Exit Code: 7 Installation Errors - http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html
    Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html for information on how to review your installation logs

  • Documentation for Activity Universe for XIR3.1SP2

    Is there Documentation for the Audit and Activity Universe for XIR3.1SP2.  We have migrated from XIR2, but I have yet to track down documentation to best utilize any new capabilities.  I am currently most interested in how to capture SQL Generated from each document by a Universe to easily track down the questions we are submitting to our databases and which reports drive these requests.

    Thanks, I was looking under the XIR3.1SP2 documentation listings and the Admin Guide doesn't appear to exist, but it does for XIR3.0.  I have found the Audit Information located there as you have advised.

Maybe you are looking for