Error Message: Creation of Temporary Table "#BIMC_SETS" not possible

Hello,
I am trying to get data from HANA Virtual Data Model (VDM) from MDX connection in MS Excel. The VDM Views and models are visitble after the connection is successfully made.
But when I try to fetch the data, I get the following error:
"Creation of Temporary Table "BIMC_SETS" is not possible".
Can someone let me know how to resolve this?
Best regards,
Akhil

Hi Lars,
I am getting the same error. We are trying to build a role for Adhoc reporting. The role has analytic privilege, object privilege with select on individual models in _SYS_BIC (models we want to expose and part of AP), object privilege on _SYS_BI with select and execute and also object privilege execute on REPOSITORY_REST.
I am able to execute the models using Lumira and Analysis for excel, however getting error with MDX connection.
Also we want to try and restrict direct ODBC access to HANA using query from excel. With the above privileges user is able to see all the M_ views and get data for it. Can we restrict this?
We are on SP6 rev 67.
Thanks,
Aamod

Similar Messages

  • Web-UI error message "Access via 'NULL' object reference not possible"

    I need some help, I'm not a Basis person but I need to get this connection problem resolve.
    This problem is in our DEV ICWeb system.  After logging in to Web-UI, I got a error message "Access via 'NULL' object reference not possible".  We have 3 clients (100, 220, & 310) in DEV and all 3 clients are giving me the same error message.
    From the help.sap.com, I found this topic http://help.sap.com/saphelp_nwes70/helpdata/en/84/43f0d786304e19a652a8f80909a8ec/content.htm
    but in the document it asked to go to SM59 to check the ESH_APPL_WS_TEMPLATEENGINE destination.  But we don't have that destination setup in all our systems.
    Here is the complete error message:
    Error when processing your request
    What has happened?
    The URL http://crm-dev.staff.copa:8000/sap/bc/bsp/sap/crm_ui_frame/BSPWDApplication.do was not called due to an error.
    Note
    ■The following error text was processed in the system CD1 : Access via 'NULL' object reference not possible.
    ■The error occurred on the application server CRM-DEV_CD1_00 and in the work process 0 .
    ■The termination type was: RABAX_STATE
    ■The ABAP call stack was:
    Method: GET_DATA_LOSS_HANDLER of program CL_CRM_UI_CORE_APPL_CONTROLLERCP
    Method: GET_DATA_LOSS_HANDLER of program CL_CRM_UI_CORE_APPL_CONTROLLERCP
    Method: EH_TRIGGER_NAVIGATION of program CL_CRM_UI_CORE_APPL_CONTROLLERCP
    Method: SET_WORKAREA_CONTENT of program CL_CRM_UI_CORE_APPL_CONTROLLERCP
    Method: PROCESS_NAV_QUEUE of program CL_BSP_WD_VIEW_MANAGER========CP
    Method: DO_INIT of program CL_CRM_UI_FRAME_APP_CONTROLLERCP
    Method: DO_INIT of program CL_BSP_CTRL_ADAPTER===========CP
    Method: GET_PAGE_CONTEXT_CURRENT of program CL_BSP_CONTEXT================CP
    Method: ON_REQUEST_ENTER of program CL_BSP_RUNTIME================CP
    Method: ON_REQUEST of program CL_BSP_RUNTIME================CP
    What can I do?
    ■If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system CD1 in transaction ST22.
    ■If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server CRM-DEV_CD1_00 in transaction SM21.

    Hi Michael,
    Refer to the link below and check the procedure.
    http://help.sap.com/saphelp_nwes70/helpdata/en/84/43f0d786304e19a652a8f80909a8ec/content.htm
    Regards,
    Arjun

  • While creating SAP ISU Device category i got one error message like The material 5 does not exist or is not activated Message no. M3305

    while creating SAP ISU Device category EG01 .i got one error message like The material 5 does not exist or is not activated Message no. M3305

    I don't know EG01 transaction, but if SAP says "material 5 does not exist " then SAP is usually right.
    Can you give an evidence that material 5 exists? e.g. screenshot from  SE16 at table MARA, MARC and MAST

  • I am getting this error message "ORA-01006: bind variable does not exist.

    My code works fine like this:
    DECLARE
    v_JOBTYPE varchar2(8);
    v_STATUS varchar2(8);
    v_FAILURE varchar2(8);
    v_CAUSE varchar2(8);
    v_ACTION varchar2(8);
    BEGIN
    SELECT EVT_STATUS, EVT_FAILURE, EVT_CAUSE, EVT_ACTION, EVT_JOBTYPE
    INTO v_STATUS, v_FAILURE, v_CAUSE, v_ACTION, v_JOBTYPE
    FROM R5EVENTS WHERE ROWID = :ROWID;
    IF NVL(v_STATUS, 'X') = 'C' AND NVL(v_JOBTYPE , 'X') IN ('BRKD','UNPLBRKD','FILTRA', 'LUB', 'FAC') AND (v_FAILURE IS NULL OR v_CAUSE IS NULL OR v_ACTION IS NULL) THEN
    RAISE_APPLICATION_ERROR( -20001, 'FAILURE, CAUSE AND ACTION FIELDS MUST BE POPULATED');
    END IF;
    END;
    But I want to change the code to include a record (ACT_TRADE) from another table(R5ACTIVITIES). I am getting this error message "ORA-01006: bind variable does not exist - POST-UPDATE 200Before Binding". Any help would be appreciated.
    DECLARE
    v_STATUS varchar2(8);
    v_FAILURE varchar2(8);
    v_CAUSE varchar2(8);
    v_ACTION varchar2(8);
    V_CODE varchar2(8);
    V_EVENT varchar2(8);
    V_TRADE varchar2(8);
    BEGIN
    SELECT R5EVENTS.EVT_STATUS, R5EVENTS.EVT_FAILURE, R5EVENTS.EVT_CAUSE, R5EVENTS.EVT_ACTION, R5EVENTS.EVT_CODE, R5ACTIVITIES.ACT_EVENT, R5ACTIVITIES.ACT_TRADE
    INTO v_STATUS, v_FAILURE, v_CAUSE, v_ACTION, V_CODE, V_EVENT, V_TRADE
    FROM R5EVENTS, R5ACTIVITIES WHERE V_CODE = :V_EVENT;
    IF NVL(v_STATUS, 'X') = 'C' AND NVL(v_TRADE , 'X') IN ('MTM','MTL','MTMGT', 'FTM', 'FTL', 'FTMGT', 'R5') AND (v_FAILURE IS NULL OR v_CAUSE IS NULL OR v_ACTION IS NULL) THEN
    RAISE_APPLICATION_ERROR( -20001, 'FAILURE, CAUSE AND ACTION FIELDS MUST BE POPULATED');
    END IF;
    END;

    Thank you for your responses. Your feedback was helpful. This is what I ended up doing for a solution:
    DECLARE
    v_JOBTYPE varchar2(8);
    v_STATUS varchar2(8);
    v_FAILURE varchar2(8);
    v_CAUSE varchar2(8);
    v_ACTION varchar2(8);
    v_GROUP varchar2(30);
    BEGIN
    SELECT EVT_STATUS, EVT_FAILURE, EVT_CAUSE, EVT_ACTION, EVT_JOBTYPE, USR_GROUP
    INTO v_STATUS, v_FAILURE, v_CAUSE, v_ACTION, v_JOBTYPE, v_GROUP
    FROM R5EVENTS, R5USERS WHERE R5EVENTS.ROWID = :ROWID
    AND USR_CODE = O7SESS.CUR_USER;
    IF NVL(v_STATUS, 'X') = 'C' AND NVL(V_GROUP,'X') IN ('MTM','MTL','MTMGT','FTL','FTMGTS','PLANNER','DISPATCH','PMCOOR','R5') AND (v_FAILURE IS NULL OR v_CAUSE IS NULL OR v_ACTION IS NULL) THEN
    RAISE_APPLICATION_ERROR( -20001, 'FAILURE, CAUSE AND ACTION FIELDS MUST BE POPULATED');
    END IF;
    END;

  • Error message: Entry 1 WC 99 does not exist in T508A (check entry)

    Can anyone please tell me what does the error message Entry "1 WC 99" does not exist in T508A (check entry) means? I was trying to 'generate work schedule manually' when got this error.  In the above error message, 1 means employee subgroup grouping.....WC is Holiday Calender......and 99 is personal subarea grouping.....
    I went to the table using se16 but could not make out how I can input those entries in the table....
    Edited by: Parveez Sazzad on Feb 26, 2011 4:56 PM

    you have to check this table from SM30 Tcode and give V_T508A table here we have to configure DWSR and than we have to generate the WSR

  • Error in Smartform:  Nested output of tables is not possible....

    Hi ,
      I am getting the below error while executing the smartform.
    Nested output of tables is not possible
    Message ID: SSFCOMPOSER
    Message Numer : 171
    could any one plese help me?
    Thanks & Regards,
    surendra

    Dear
    AS i reply in thread ,
    this error comes  with  some problem in functional Module .
    as we know that two FM use in smartforms -
    SSF_function_mudule
    call   funcion .
    so you check both and  i hope you handle this problem .
    Regards,
    Ravi

  • User Exit and Error message creation at Delivery

    Dear Friends,
    I am capturing the penal rates and the amount received against the penal rates from the customer in the Z table.If the penal rates and the amount received from the customer is not matching the system should not allow to save the delivery and trigger an error message.
    Can sombody let me know the user exit I need to use and how to define the error message.
    Thanks
    Isaac

    Hi,
    Check SAP Note 415716 - User exits in delivery processing. With this note you could know that you must be careful with the error messages in some userexits for delivery.
    Regards,
    Eduardo

  • TS1368 When I try to make a purchase at the App Store or iBook Store or iTunes an error message tells me my account is not valid at the UK store. I live in Canada so how did I get to be connected to the UK and how can I get back to Canada?

    When I try to make a purchase at the App Store or iBook store or at iTunes an error message tells me my account is not valid for the UK store. I've no idea how I got connected there and I'd like help getting back to Canada where I live. Any suggestions?

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3.Tap "View Apple ID"
    4. Enter your user name and password.
    5. Tap "Country/Region."
    6. Tap "Change Country/Region"
    7. Select the region where you are located.
    8. Tap "Done".

  • Treo Pro Error Message 530 5.7.1 Relaying not allowed cannot send Email from pop acct

    I just purchased the treo pro thru Sprint. I love the phone I just cant seem to figure out the proper settings for my outgoing POP Email acct. Every time I set up the settings properly and attempt to send an email I get an error message "530 5.7.1 Relaying not allowed". I get this message with the outgoing server set to smtp.sprintpcs.com and i receive this error message through an "undeliverable" Email in the same account I am attempting to send from. When I have the account set to my ISP's outgoing server mail.optonline.net it will only send email if I have my device set to WIFI mode..... Any ideas? Thanks.
    -Jay- 
    Post relates to: Treo Pro T850 (Sprint)
    This question was solved.
    View Solution.

    audiojay11 wrote:
    P.s. I read in another posting where it advises to change the outgoing port # from 25 to 587. This sounds very familiar to me because when I recently set up my blackberry I believe cablevision advised me to do that exact modification. Now here is the million dollar question. How do you change the port #'s on the treo pro?
    Try adding it to the server name, e.g.: smtp.provider.com:587

  • Error Message: This type of file is not supported, or the required codec is not installed?

    I am trying to get media from my computer, and I only receive this error message :
    This type of file is not supported, or the required codec is not installed?
    What should I do? I have a window 8 laptop. My video files are from my itouch/ipod. I am using Premiere Elements 7.
    I have used this software with success before. HELP would greatly be appreciated!

    darlingdarleen
    Did both laptop 1 and 2 have QuickTime (latest version or any version) installed on the computers with Premiere Elements 7 when you got this "this type of file......" message?
    If you go to the opened Premiere Elements 7 projects involved and look at Share/Personal Computer/QuickTime, do you find that QuickTime Presets are shown and that you find export settings choices under the Advanced Button/Video Tab and Audio Tab?
    Look at the file name of the video. Do you see any irregularies in the name of the file, dots and such?
    If you record new iPod footage, open a new Premiere Elements project, and import that iPod footage, do you still get the error message? Putting aside, iTouch, what model iPod are these videos coming from?
    Thanks.
    ATR

  • Error message "Live file system repair is not supported."

    System won't boot. Directed to Disk Utility to repair but get error message "Live file system repair is not supported."  Appreciate all help.
    Thanks.
    John

    I recently ran into a similar issue with my Time Machine backup disk. After about 6 days of no backups - I had swapped the disk for my photo library for a media project; I reattached the Time Machine disk and attempted a backup.
    Time Machine could not backup to the disk. Running Disk Utility and attempting to Repair the disk ended up returning the "Live file system repair is not supported" message.
    After much experimentaion with disk analysis softwares, I came to the realization that the issue might be that the USB disk dock wasn't connected directly to the MacBook Pro - it was daisy-chained through a USB Hub.
    Connecting the USB disk dock directly to the MBP and running Disk Utility appears to have resolved the issue. DU ran for about 6 hours and succesfully repaired the disk. Consequently, I have been able to use that Time Machine disk for subsequent backups.

  • I have been using itunes on my windows based pc for years but since installing the latest itunes update I have been getting the error message A required itunes component is not installed. Please reinstall itunes. (-42404)

    I have been using itunes on my windows 64 bit laptop for years but since downloading the latest itunes 10.7 update whenever I opened itunes the error message 'A required itunes component is not installed. Please reinstall itunes (-42404)'
    Itunes would still load and play music in my library and I could still sync my ipod but when loading a CD itunes would not recognise the album/tracks and I would need to type them manualing after uploading.
    I have just bought the new iphone5 and went to sync the phone with itunes. itunes recognises the iphone when plugged in via the usb port or when wi fi is turned on but itunes will not allow the phone to sync.
    I spent over an hour the other morning speaking to apple customer support and have ensured I have administer right and that UAC is turned off.
    I was taken through msconfigure and adjusted the startup tab but still no joy.
    In the end I was e-mailed instructions on how to uninstall and then reinstall itunes and component parts.
    Now that I've uninstalled itunes when I try reinstalling I get the following messages during the download.
    The 1st message is;
    'The installer has insufficient privileges to modify this file C:\Program Files (x86)\Common Files\Apple\Apple Application  Support\Web kit.resources\inspector\Images\Spinner Inactive Selected.gif.'
    When I click ok the next message that appears sometime later during the install is;
    Service 'Apple Mobile Device' (Apple Mobile Device) Failed to start Verify that you have sufficient privileges to start system services.
    The options I have are to abort, retry or ignore. If I retry the same message comes back and if I  abort or ignore the download continues and I then get the following message:
    'Apple Application Support was not found. Apple Application Support is required to run itunes Helper. Please uninstall itunes, then reinstall itunes again. Error 2'
    After attempting to reinstall itunes only some components were installed however itunes would not open.
    It would appear many people have experienced problems with this latest download!

    'The installer has insufficient privileges to modify this file C:\Program Files (x86)\Common Files\Apple\Apple Application Support\Web kit.resources\inspector\Images\Spinner Inactive Selected.gif.'
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • I am having issues with Time Machine. Error message "The backup disk image could not be created.

    Error message "The backup disk image could not be created." I have tried everything I have found online in the community from TM full reset  to changing my computers name. Anything else I can try? I am using a Seagate external HD with a connection through my router. I spent an hour on the phone with seagate and everything is ok on the HD end.
    TM sees it and it is mounted but cannot go any further. HELP?!!!!
    Thanks
    -A

    How should it be connected? It has a usb port and ethernet. The USB on the ExHD looks like the port on the back of my computer, so I would need one wth the same ends? Do they make those?
    I can usually fix most my comp problems myself, but this new ExHD has stumped me.
    Thanks for your help.
    -A

  • N79 (Error message :Unable to open .File type not ...

    Dear nokia service manager,,
    Iam sivakumar using the nokia N79 handset.Iam getting the message like this (Error message :Unable to open .File type not supported)when i was trying to open the video file shooted by some other camera.I have tried changing the format of the file..but no use ..i dont get ant suitable software converter in the internet.So kindly look into this matter as i need this very uregently...
    hope its a mandatory feature as laptop and mobile interface are simple task nowadays in mobile...
    pls reply me..its very urgent...thanku..

    You could try Videora (http://www.videora.com/) - the downside here is that they have specific versions for specific phones, and sometimes it will makea file that plays perfectly in the desired phone but can't be shared to other models. The don't show a version for the N79, but try the N96 one because the N96 is the most similar OS to yours that they offer.

  • I bought the Keynote app for my MacBook, but when I open the application and try to install it, I get an error message saying that the application will not work with my MacBook. What gives? And, can I please request a refund? ($19.99 = a week's groceries)

    I bought the Keynote app for my MacBook, but when I open the application and try to install it, I get an error message saying that the application will not work with my MacBook. What gives? And, can I please request a refund? ($19.99 = a week's groceries).
    Thank you for your help! - I did try looking for all available specs about Keynote on the Apple iTunes website, and found nothing that could help me. HELP!

    1
    Close all iWork applications
    2
    Uninstall Keynote; this must be done with an application remover tool to delete the installation properly. Appcleaner is known to work correctly for this purpose, it is free and can be downloaded from here: Appcleaner Download
    3
    empty the trash
    4
    shutdown the Mac and restart. After the start up chime, hold down the shift key until the apple logo appears
    let the Mac complete the start up procedure completely, it will take longer than usual as the hard drive is being repaired
    5
    Reinstall Keynote by logging into the Mac App Store using download / install

Maybe you are looking for

  • Firefox 3.6 not compatible with home directories stored on AFP file server

    I just wanted to let everyone know that I have discovered, at least in my situation, that Firefox 3.6 does not work with user home directories stored on AFP file servers. My network consists of PPC 10.411 clients and a Mac OS X 10.62 server. User hom

  • All exported files looked "Washed out"

    So I've read a great deal of what's already been posted and I still for the life of me don't know what's going on.  When working in Photoshop, Illustrator and Indesign (all CS5) and export to a pdf, Acrobat (9.4.6) shows all colors looking fairly gra

  • Alternative for SE16

    Is there any alternative for SE16 to check number of entries in tables. Scenario is, Based on filter company code, find number of records in BKPF and then in BSEG. Is they any other way? thanks,

  • WiSM2 WLC 7.2 Maximum Allowed Clients under Global Parameters 802.11a/n b/g/n

    Hello everyone, Just loaded the 7.2.103.0 software onto the brand new WiSM2. Going throught the options and have found that under the global parameters for 802.11a/n, 802.11b/g/n radios is now the "Maximum Allowed Clients" option. The allowed setting

  • Central transport management system

    Hi All, How do i configure central transport management system within Solution Manager to find out if transports within different environments can be controlled from single system. Regards Suresh