Start BEX via RRMX doesn't work

Hello
BW 3.5 /SAP GU 6.2
It is possible to access bex via system-> program-> BEx -> analyzer.
However transaction RRMX doesn't start BEX . There is also no error message. But the EXCEL Process starts ( seen in the Windows Task Manager) and disappears immediately.
I have also checked authorization, where everything is ok.
Please has anyone a good idea how to solve or at least some investigation ideas.
Best regards
Christian Baumann

> Hi,
>
> First try this->
> Open business explorer through the start menu.
>
> If not, then Restarting the BW server will work.
>
> Regards,
> San!
Hello
Thanks a lot of your answer. Perhaps I didnt write all important information on this issue down.
It is a user, who is not able to start Bex via RRMX. However when I start RRMX it works perfectly and we are on the same platform.
Do you have another idea?

Similar Messages

  • Calendar sync via cable doesn't work with now I've updated to Maverick and ios7

    Calendar sync via cable doesn't work now I've updated to Maverick and ios7.

    I am sorry you are having this trouble. 
    Here is an article on troubleshooting calendar syncing with iCloud.  See if the suggestions there are of help.
    http://support.apple.com/kb/TS3999

  • IPhone 5 contacts local sync via usb doesn't work - updated

    Syncing an iPhone 5, AT&T 64GB, with Macbook Air 11" mid-2011, 1.8GHz / 4GB.
    OS X 10.10.2; iTunes 12.1.0.50; iOS 8.1.3.
    I am trying to sync my contacts from my OS X Contacts App to my iPhone 5 via USB. The contacts do not sync. The contacts are local, "on my mac". I am using a usb cable through iTunes.
    The iPhone 5 was just restored by Apple Configurator, set up as new iPhone, and is supervised by the MacBook Air.
    I am also synchronizing my local Calendars from the OS X Calendar app; these transfer just fine. This makes me think it is probably not to do with the entire setup of the iPhone, i.e. that it is managed by apple configurator, since some of the sync works correctly.
    Under "info" in the iTunes sync dialog, I have selected the "sync contacts" and "all contacts" and "sync calendars" and "all calendars" options.
    Interestingly, while the Calendars sync options displays options of "selected calendars" and a list of my calendars available to sync, the Contacts section "selected groups" is grayed out. I have one group in Contacts, and it does not show up by name for "selected groups". Instead, the area where groups should be listed for selection is empty. Perhaps iTunes does not have access to my local contacts? It is not listed under apps with access to my contacts under security and privacy, and it has not requested access to my contacts.
    I created a fake contact on the phone and synced it with iTunes. I then turned off contact syncing in iTunes and told it to remove previously synced contacts. The fake contact disappeared. When I turned contact syncing on again, the contact was again pushed to the phone. However, the fake contact did not appear at any point in the OS X Contacts App, and none of my OS X Contacts appeared on my phone -- only the fake contact I had created on my phone and then synced with iTunes.
    I also created a (different) fake contact in OS X Contacts. iTunes sync did not transfer this contact (or any others) from OS X Contacts to iPhone.
    SUMMARY:
    - syncing iPhone 5 via USB with iTunes
    - Calendar sync works
    - Contacts sync doesn't work
    - iTunes appears to have no communication with the OS X Contacts app; in system prefs > security and privacy > privacy > contacts, Pages and Word have access to Contacts, but iTunes is not listed. iTunes Contacts sync "selected groups" does not display my OS X Contacts group names.
    - Contacts created on iPhone sync back to iTunes and are restored back to the iPhone if deleted and resynced.
    - Contacts created on iPhone do not sync back to OS X Contacts; Contacts in OS X Contacts do not sync to iPhone.
    (apologies for premature posting to "Using iPhone"; I accidentally submitted and now can't delete or edit).

    Here's the resolution: I went to my local Apple store and spoke to the guy. After some discussion it turned out that one of the staff had had a similar problem. He suggested this course and I can report that it seems to work. So, (1) open your system preferences and then the print & fax setting and delete the printer in question (2) disconnect the USB between the printer and the TimeCapsule (3) shut everything down and turn off power to your modem, your TimeCapsule and your whole system (4) power on each item in its normal sequence (5) wait for your iMac to complete its boot-up, (6) re-connect the USB between the printer and the TimeCapsule (7) open system preferences and search for and install the relevant printer (8) try printing.
    This is hardly elegant, but it worked. I am told (by the same Apple store) that hitting the "reset" button in the TimeCapsule might also work. If this is intuitive or obvious to anyone else then my compliments to them ...
    Cheers
    OzHutz

  • File download via servlet doesn't work with IE via https

    I have a URL from a jsp page which points to a struts action servlet. This works with firefox via http and https. With IE it works via http but it doesn't work via https. The error message I get is "Internet Explorer cannot download ...File_name.doc from Server_name.
    Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later."
    Here is my code.
    public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              String attachmentURL = AppSettings.get("EAIAttachmentURL");
              String encodingScheme = AppSettings.get("EAI_encoding");
              String filename = request.getParameter("URL");
              String fileStr = URLEncoder.encode(filename, encodingScheme);
              fileStr = fileStr.replaceAll("\\+","%20");
              URL targetURL = new URL(attachmentURL + "/" + fileStr);
              URLConnection connection = targetURL.openConnection();
              connection.setDoInput(true);
              connection.setDoOutput(false);
              connection.setAllowUserInteraction(false);
              BufferedInputStream attachmentStream = new BufferedInputStream(
                        connection.getInputStream());
              * Setting the content disposition filename, so that the
              * attachment preserves the original filename
              response.setHeader("Content-Disposition",
                        " attachment; filename=" + filename);
              if (connection.getContentType() != null) {
                   response.setContentType(connection.getContentType());
              else {
                   response.setContentType("application/octet-stream");
              response.setContentLength(connection.getContentLength());
              response.setHeader("Pragma", "public");
              response.setHeader("Cache-Control", "public, max-age=-1, must-revalidate");
              if ( connection.getContentEncoding() != null ) {
                   response.setHeader("Content-Encoding",
                             connection.getContentEncoding());
              BufferedOutputStream responseStream = new BufferedOutputStream(
                        response.getOutputStream());
              byte[] buffer = new byte[4096];
              int bytesRead;
              try {
                   while ((bytesRead = attachmentStream.read(buffer)) != -1) {
                        responseStream.write(buffer, 0, bytesRead);
              } catch (Exception e) {
                   log.error("AttachmentProxy error: " + e.getMessage());
              } finally {
                   if (attachmentStream != null) {
                        attachmentStream.close();
                   if (responseStream != null) {
                        responseStream.flush();
                        responseStream.close();
              return null;
    There is a bug with IE when downloading via https according to Microsoft support site. Refer to http://support.microsoft.com/default.aspx?scid=kb;en-us;812935
    According to this bug, I have set the response header - "pragma" to public and "cache-control" to public. I've also unchecked the Do not save encrypted pages to disk setting in IE Options, Advanced tab.
    Has anyone come across this problem or a similar problem. Any help is appreciated. Thanks.

    I have a URL from a jsp page which points to a struts action servlet. This works with firefox via http and https. With IE it works via http but it doesn't work via https. The error message I get is "Internet Explorer cannot download ...File_name.doc from Server_name.
    Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later."
    Here is my code.
    public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              String attachmentURL = AppSettings.get("EAIAttachmentURL");
              String encodingScheme = AppSettings.get("EAI_encoding");
              String filename = request.getParameter("URL");
              String fileStr = URLEncoder.encode(filename, encodingScheme);
              fileStr = fileStr.replaceAll("\\+","%20");
              URL targetURL = new URL(attachmentURL + "/" + fileStr);
              URLConnection connection = targetURL.openConnection();
              connection.setDoInput(true);
              connection.setDoOutput(false);
              connection.setAllowUserInteraction(false);
              BufferedInputStream attachmentStream = new BufferedInputStream(
                        connection.getInputStream());
              * Setting the content disposition filename, so that the
              * attachment preserves the original filename
              response.setHeader("Content-Disposition",
                        " attachment; filename=" + filename);
              if (connection.getContentType() != null) {
                   response.setContentType(connection.getContentType());
              else {
                   response.setContentType("application/octet-stream");
              response.setContentLength(connection.getContentLength());
              response.setHeader("Pragma", "public");
              response.setHeader("Cache-Control", "public, max-age=-1, must-revalidate");
              if ( connection.getContentEncoding() != null ) {
                   response.setHeader("Content-Encoding",
                             connection.getContentEncoding());
              BufferedOutputStream responseStream = new BufferedOutputStream(
                        response.getOutputStream());
              byte[] buffer = new byte[4096];
              int bytesRead;
              try {
                   while ((bytesRead = attachmentStream.read(buffer)) != -1) {
                        responseStream.write(buffer, 0, bytesRead);
              } catch (Exception e) {
                   log.error("AttachmentProxy error: " + e.getMessage());
              } finally {
                   if (attachmentStream != null) {
                        attachmentStream.close();
                   if (responseStream != null) {
                        responseStream.flush();
                        responseStream.close();
              return null;
    There is a bug with IE when downloading via https according to Microsoft support site. Refer to http://support.microsoft.com/default.aspx?scid=kb;en-us;812935
    According to this bug, I have set the response header - "pragma" to public and "cache-control" to public. I've also unchecked the Do not save encrypted pages to disk setting in IE Options, Advanced tab.
    Has anyone come across this problem or a similar problem. Any help is appreciated. Thanks.

  • Image transfer via AIM doesn't work in Messages anymore

    My chat contacts and me are experiences many issues with inline image transfer via AIM since Yosemite, especially if two people have different OS versions. If one party is on Yosemite, image transfer with the standard server settings doesn’t work anymore. I read in one of the other threads here that port 5190 is required for image transfer. The default setting is 443 (and it should change the port for image automatically?). Is it possible that something with the ports or the SSL behavior has changed for Messages 9 on Yosemite? (I have computers with 10.10 and 10.8 and experience issues both ways chatting with someone on a different OS).
    It seems to work if everyone switches off SSL which changes the default settings to login.oscar.aol.com and port 5190. If both parties have this setting it works. If one uses port 443 and SSL on it doesn’t. But switching off SSL is not a sustainable solution. Any other ideas? I tried to force port 5190 and slogin.oscar… with SSL but then can’t connect.

    Have responded in Yosemite.
    9:18 pm      Thursday; December 11, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Choosing start volume with [alt] doesn't work anymore

    Hi there,
    On my MBP (15" early 2011). Normally I can choose from what volume I want to boot by pressing the [alt] key right after switching on my MBP. I have OSX Snow Leo and Win7 (64bit) installed.
    However since I installed the latest software updates several days ago, including a firmware update for the thunderbolt connection, the choosing of the start volume by pressing [alt] on startup doesn't work anymore: I can move the mouse, but the two volumes don't appear on the screen. All I can do is to switch off. I can however boot under both, OSX and Win7 by choosing the "restart under Win7/OSX" option in the other system respectively.
    I now found out, that it works perfectly fine again when I have my 27" Apple Cinema display (mini display, not thunderbolt) connected to my MBP. When it's not connected I am having the issue.
    My guess is that the thunderbolt firmware update causes this.
    Anyone got an idea? It's quite a pain in the *** that I always have to start one system at first to get in the other one at the moment.
    Thx

    Hi Fortuny,
    thx for your answer! I just have reseted this NVRAM as described in the support page, and think I have done it right. It worked as said there, I just didn't have to set any time or resolution things afterwards, as it is written there that it might have to be.
    Sadly it didn't seem to help. Anyway, I do have news:
    When the two volumes didn't appear again on the startup screen, I sat back and thought about what the issue could be. After approximately one minute starin on the screen, suddenly the two volumes appeared! So in fact it DOES work, just it takes about a minute now when I don't have the cinema display attached.
    Does this additional info say anything to the experts out there? It's still not solved, as it is rather inconvenient to wait a minute untill I can choose the startup volume.
    Thx for any sugestions!

  • How to start compass sensor? It start freezed and it doesn't works

    Well, as far i know, the Alcatel Onetouch Firefox Os has the compass sensor buit in. So, i've installed apps for compass reading but these doesn't work properly. They intialize and stay freezed. I have installed others that use g-sensor like 'Level' and it works fine. I assume the compass sensor fails. Is there any way to test it?
    Thanks in advance for answers
    Erick

    Same here.

  • Saving DNG as copy via Bridge-doesn't work!

    Hi, i just started using Bridge CS3 to download and backup (to an external HD). I download them onto my desktop, converting them to DNG in the process (all is well with that); however, when i ask it to save copies to an external HD, hence creating two sets of files, the copies are RAW not DNG. I don't understand that as the point of making the backup copies is to have an original DNG set of files. I thought perhaps i was doing something wrong but all my playing around does not get me DNG files as copies - is that on purpose? Am i doing something wrong? Or don't i understand the purpose of "save copies to:"?
    All instructions greatly encouraged, please.

    Hi Taiyo,
    It sounds like you are using Adobe Photo Downloader via Bridge's "Get Photos From Camera..." menu command.
    The "save copies" feature will save copies of the original RAW files during the download process; you are seeing the feature work as designed. Some photographers want to keep both DNG files as well as the original original RAW format files, and others choose to keep only the converted DNG files.
    These original RAW can be used as part of a backup workflow, but the "save copies" option alone does not provide the kind of backup workflow I think most photographers want to use. For example if the photographer's intent is to keep the original RAW files as well as the DNGs (I understand that in your case, you just want to backup DNGs), then a robust backup would probably put backup copies of *both* the DNGs and the RAW files on an external hard drive (or more than one external hard drive).
    One way you can use Bridge to save backup copies of your DNGs after they've been downloaded is to select the new DNGs in Bridge and use the "Copy To" command in the Thumbnail contextual menu to make copies of the DNGs on your external drive. Right/Control Click on one of the selected thumbnails to bring up the menu. Recently browsed folders and folders you are browsing in other Bridge windows will appear in the "Copy To" list. A "Choose Folder..." command also lets you make copies to folders you have not yet browsed with Bridge.
    -David

  • XML Problem: I can't open my Word 2007 docx file (Start/Endtag Problem) - Fixit doesn`t work

    Hi there,
    I have a big problem and I hope there is somebody who could repair my Word-Document (or at least save the text somehow).
    After my flash drive crashed, I used a data restoring software and managed to get back this important Word-File, but now I can't open it ((Start/Endtag Error)
    The Fixit solution of Microsoft didn't work. I read about fixing the problem with an XML-Editor, but I have no experience with that.
    The most important thing would be just the text. It would be fantastic if someone could restore this work (which took me nearly two weeks).
    I uploaded the docx and the xml file here:
    http://www.file-upload.net/download-8602999/Studienarbeit_-_Anw._Fallstudienseminar_-_Robert_Fromm_-_32874.docx.html
    http://www.file-upload.net/download-8603008/document.xml.html
    Thanks a lot in advance! You would save me a lot of time.
    greetings Robert

    Hi,
    I had download the file ,but your second link was invalid. I tested to open it, and got the error message:"The name in the end tag of the element must match the element type in the start tag."
    This issue is related strictly to oMath tags and occurs when a graphical object or text box is anchored to the same paragraph that contains the equation.
    Please try to fix it with the KB:
    http://support.microsoft.com/kb/2528942/en-us
    Here is a similar issue:
    http://answers.microsoft.com/en-us/office/forum/office_2010-word/cant-open-word-file-because-of-end-tagstart-tag/581159d0-9ebc-4522-b30c-53e33e8268e1
    Regards,
    George Zhao
    TechNet Community Support

  • Vim via FTP doesn't work

    Hi there,
    I've got an error with netrw and vim: when i try to open a file on my ftp server (either with "vim ftp://login@host" or via Nautilus), i get a:
    **warning** (netrw) cannot determine method (format: protocol://[user@]hostname[:port]/[path])
    error message.
    FTP with other tools (gEdit for exemple) works fine.
    Do you know where the error came from ?

    > If you are asking me how to disable sftp but let ssh work, it can't be done
    Oh, but it can.
    SFTP runs as a subsystem to SSH.
    If you check /etc/sshd_config you'll find a line near the end:
    <pre class=command>Subsystem sftp /usr/libexec/sftp-server</pre>
    If you want to run SSH, but not SFTP, comment out this line.

  • Playbeck via earpones doesn't work

    Tried playback of music in the Passport "music" app. Works fine via the built in loudspeakers but nothing comes through the earphones when they are plugged in. BBVE reports a fault for this (all other audio tests seem to work).
    It sems that the earphones are not being detected as on my previous Blackberry BOLD they are automatically selected when plugged in. Tis seems not to be the case on the Passport.
    I have tested the earphones supplied with the Passport on my previous Black berry phone (a Bold) and they work fine. I have also tried the earphones from the BOLD on the Passport but no sound comes through.
    The problem is evidently not with the earphones..........maybe I have the setup wong?

    Hi and welcome to the BlackBerry community support fourms!
    This does sound like a hardware issue. However, you can reload your device software through BlackBerry link to see if that solves the problem.
    If reloading does not help, try a different pair of headphones, the device may not be compatible with that kind, but this is unlikely. Your device is probably under warrenty, so you sould see your carrer for a replacment.
    Good luck and let me know if I can further assist you.
    1. If a post has helped you, show your appreciation by clicking Like at the bottom of the message box.
    2. If a post has solved your question, please click ''accept as solution'' to verify your question has been solved.

  • Receive Updates via eMail Doesn't Work

    My "Receive Updates via eMail" and "More System Details" options do not work anymore. They used to work about a couple of weeks ago.
    Does anyone else has the same problem or just me?
    Any suggestions/comments are much appreciated.
    Thank you.

    This is a known bug, it should hopefully be fixed next week when they update the software used by this forum.

  • Uploading a logo via SMW0 doesn't work

    HI.
    I've tried uploading a company logo via SMW0. However I'm prompted to enter a Package. I've tried $TMP, Z001 (the package our developers are currently using), and tried others starting with "T" as suggested. Whether I try to upload as a local object or select the other icon (transportable to other systems), I have not been successful.
    This is a Dev server. Once uploaded, I hope to transfer to QA and Prod, or replicate, whichever is doable.
    Am I missing a step somewhere?
    Thank you.
    Jaime G.

    Jaime,
    Here the steps:
       1. Transaction code - SMW0
       2. X - Binary data for WebRFC application
       3. Hit Enter
       4. Click Execute
       5. Click Settings -> Maintain MIME types
       6. Click the Create button
       7. Fill in :- TYPE : image/gif EXTENSION : .GIF
       8. Click Save
       9. Click Back to the Binary data for WebRFC
      10. Click Create
      11. Fill in :- Obj. name : ZXXXX.GIF Description :
      12. Company Logo
      13. Click Import and specify the filename where your
      14. GIF file is
      15. located.File type is BIN. Finish press the
      16. Transfer button.
      17. If successful, your logo will be shown in the
      18. Binary data for
      19. WebRFC.
      20. Transaction code SM30 - Table/View - SSM_CUST
      21. Click Maintain
      22. Click New Entries
      23. Name Value to be set
      24. START_IMAGE ZXXXX.GIF (this entry may need to created)
      25. RESIZE_IMAGE NO (may need to be created. 'Yes' is the system default if not included. If your graphic contains text or other elements that do not scale well, use this setting. I found that an image of 500x500pixels is a good starting point)
      26. Logoff and Login again (or login to another session to test)

  • Accessing my Time Capsule hard drive over the internet via iCloud doesn't work.

    Hi Everyone,
    I have an iCloud account and read recently, that it is possible to acces the hard drive of an Time Capsule over the internet, if "Back to my Mac" is activated on my MacBook an the Time Capsule.
    I updated the Time Capsule to Firmware Version 7.6.1 and the Airport Utility to version 6. Actually the Time Capsule HDD is displayes in Finder's Sidebar, when I'm using a forreign internet connection. But when I click on it an error message tells me that a connection to the server (I assume server=Time Capsule) cannot be established. Funnily enough I can access the HDD of my iMac at home.
    The Time Capsule network setting is "Bridge Mode" Since I can't deactivate the DNS functionality of my router/mode, an easybox 803 A, unfortunately which I cannot replace, because it is also used for hosting the telephone.
    Does anybody have an idea, where the problem could be? Wrong settings in the Time Capsule config or maybe the blocking by the router?
    Thank you all in advance,
    Markus
    Please consider, that I have absolutely no idea of networking.

    I don't know exactly how, but I got it working. I will try to explain, what I did.
    1. I used the easybox as DHCP-Server an set the TC to Bridge Mode.
    2. Then I gave the TC a fixed IP in the easbybox menu by using it's MAC-address (It seems that the address range has to be either 192.168.X.Y or 10.0.X.Y to make the TC accessable later).
    3. I made the TC a DHCP-Server (DHCP only, not also NAT). The IP addess range of the TC starts after it's own IP adress (10.0.0.111) and ends at (10.0.0.250). The IP range of the easybox starts with 10.0.0.1 (it's own) and end with the TC's (10.0.0.111).
    4. Then the Airport Utility told me that if I want to share an DHCP range the TC has to be set to a fixed IP setting, which I set up, leaving the IP-address 10.0.0.111 and the Router IP 10.0.0.1 (the easyboxs').
    5. Then it worked in my case. Since I don't even know what I did, I'm not shure if it workes under other circumstances.
    There are of course many variables. Such as the type of the router and the TC or the kind of the internet connection.

  • Internet sharing via airport doesn´t work

    Hello to everybody,
    my problem is, when I do internet sharing via Airport on my imac (OSX 10.6.8) so I can use my ipad for surfing. The connection establishes for a short time and then it breaks down. Once in a while I can reconnect, but it´s constantly breaking.
    I know, this problem is posted a million times, but it still seems not to be solved (or I didn´t find the right thread with the solution).
    Bthw. I phoned the apple support. They wanted to charge € 49,--. Now I´m quite mad at apple. This *****. They are having a problem with their software and they want to charge me? That´s incredible. I can´t understand what´s the hype about apple. Such an awfull bad support they´re giving (or not giving at all).

    OK. To your information. Today I tried the following: I switched off and on internet sharing twice after boot and voila, wifi seems to work fine. Yeah, that´s what I call a sophisticated computer system. Really crappy stuff!

Maybe you are looking for

  • T_code:pp01(urgent)

    Hi Iam creating List of Functional Areas in PP01. There is no Infotypes in Active:Object,Relationship. So how Infotypes can be displayed like Objects , relationship. Any settings in IMG  i have to do to display in PP01? Please Advise. Thanks Arc

  • Column link report

    Hi, I have created an sql report. Do I have now the possibility to link the row from this report to another page? Something like report and form, but I do not want use this option. Thank you

  • Characteristic Value comparison at query level

    HI, I have to identify the invoices as local or upcountry on the basis of below logic. if 0customer->region & country = 0plant->region & country then the invoice is considered as Local Otherwise it is Upcountry.. How can i do this at query level ? If

  • The mother not permited to up the vcore more than 1.65v

    Hi! The mother is not permited too pass the vcore 1.65v. if i put more the pc turn off ( 1.675v, 1.7v). i need put the fbs more than 118. if i put more the cpu need more volt. please help my !! I have the latest bios version. [Edited by Danny to make

  • Putting Components on top of other components

    Hi, I need some help with the following subject: from the super-class i need to place a component on top of all other components (or paint something on top of these), but when i add the component it shows below all other components. How can I make th