Problem while opening Bex query on the web

Hello BW experts,
I have a problem while opening Bex query from my SAP Favorites.See below.
When i double click on the query, i get the following page, with the server name KBWS01QX.
But, from RSRT Tcode, select the query > query display as HTML > Click on ABAP Web , click execute as shown below, it is going to the correct URL as in the 2nd screen shot below.
My question is why is it going to the wrong URL when i open it from  SAP Favorites menu?
I want it to open the same URL as it opened from RSRT(which is the right one)
What is the Config needed to make it to work from SAP favorites.
Any help would be appreciated.
Thanks alot.
SV

Hello,
Thank you all for your responses.
See below some additional info.
From RSRT, this time I clicked on JAVA WEB, and i get the below URL, which is the same URL i was getting when i executed the query from SAP favorites.
http://kbws01qx.xxxxxxx.com:50000/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?QUERY=ZCONSUMPTION
Also, i have executed the Function module : RSBB_URL_PREFIX_GET and i get the below values.
It seems that it is trying to connect to Java portal something services may be, but i want it to open in ABAP web only.
Please help.

Similar Messages

  • Giving Error while opening BEx Query Designer.

    Hi all,
                   A user is trying to open BEx Query Designer 7.0 and she is getting this error
    " SAP BEx Query Designer standalone has encountered a problem and needs to close. We are sorry for the inconvenience.
    If you were middle of something, the information you are working on might be lost. "
    She is not having issues while opening BEx Analyzer. She is having Office 2010. This doesn't seem to be compatibility issue with the Office. This BEx was not installed on her machine 2 weeks back and it was working fine until now. 
    As a first re-solution i told her to get it re-installed but still she is getting the same issue.
    Thanx.

    Hello,
    There is no relation between Office VS Query Designer. Only with BEx Analyzer and MS Excel.
    My suggestion is.
    If you don't have version 7.20 of SAPGUI and Business Explorer, please download the installer.
    After that, download the latest patch available and install:
    http://service.sap.com/swdc
    > Support Packages and Patches
    > Browse our Download Catalog
      > SAP Frontend Components
    > SAP GUI FOR WINDOWS
    > SAP GUI FOR WINDOWS 7.20 CORE
    > Win32
    _ > * gui720_5-10007878.exe
       |  > BI ADDON FOR SAP GUI
       |  > BI 7.0 ADDON FOR SAP GUI 7.20
       |_ > * bi720sp03p_301-20006596.exe
       |
       |  > BI ADDON FOR SAP GUI
       |  > BW 3.5 ADDON FOR SAP GUI 7.20
       |  > Win32
       |_ > bw350gui720_5-20006857.exe
    If persist, let me know.
    Cheers
    Edward John

  • Problem with a Bex Query Report with Web Intelligence

    Hello!
    I have a Bex query (with query Bex version 7.0) I'm connecting with Web Intelligence (4.0) but one of the attributes instead of displaying the description shows only the key, and it is strange because other cubes if given by the conversion.
    I wonder if there is a solution for this or if it is a problem of version 4.0 of Web Intelligence.
    I await your response,
    Greetings!

    Hi,
    Whereabouts in the application are you seing this problem?  (in the query panel conditions, in the prompt list of values, or in the table block? )
    also, what do you mean by "and it is strange because other cubes if given by the conversion" ?
    it's worth noting that the "key and text display properties" in the Bex Query Designer do not influence webi.  WebI consumes the global infoobject property from BW RSH1.
    Regards,
    H
    p.s. if you need to understand which features are or are not supported with BI 4.0 tools, please look here: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d056e1bc-2794-2e10-959e-8779c5623cc5

  • Problem while running BEx Query

    Hi All,
    I had reqiurement of calculating the difference of the two dates.I calculated Date Difference but I am getting problem when I run the Query.
    The problem is " I am finding the difference between Schedule Line Date and Posting Date. There are some blank spaces in the cube over Schedule Line Date and also over Posting Date. While running the Query Blank Space is taken as # symbol and while calculating the differences it is giving the differences in Lakhs."
    Can anybody help me to solve the problem " To remove the # symbol and calculate the differences properly".
    Thanks in advance.
    With Regards
    Mahi

    Hi,
    Use the Boolean concept like below:
    I hope you are using formula varibles to get Dates into the formula.
    Lets assume fv1 is formulavarible on Schedule line date and FV2 is Formula varible on Posting date.
    (FV1 == '' OR FV2 == '') * 0 + (FV1 <> '' AND FV2 <> '') * (FV1-FV2).
    With rgds,
    Anil Kumar Sharma .P

  • Error while opening bex query

    hi all,
    While i try to execute a query i am getting the below error msg. How to rectify it. Can i suppress the message and execute the query. I want to look at the keyfigure/characters used in the query how to look at it.
    Warning following error for partial infocube = zsbmt in rsdrc_cube_data_get_rfc
    error ods zsbmt not configured for bex reporting
    abort system error : rsrdc/form data_get_ods error in rsdro_read_ods_dat zsbm
    abort system error in program saplrsdrc and form rsdrc/form data_get_ods.
    thanxs
    haritha

    Hi,
    it looks like the ods, you are running the query on is not enabled for bex reporting. So goto the ods maintenance and switch on bex reporting in the settings of the ods.
    regards
    Siggi
    PS: someone removed the flag after the query was created.

  • Problem of opening PDF files on the web

    I have installed the latest version of Acrobat Reader, but I still couldn't read some PDF files on the web, what should i do?

    Hi wings57638543,
    1. Which browser are you using?
    2. Are there some specific files that you are unable to load in the browser? Can you share the link?
    3. In Reader DC, go to Edit->Preferences->General and click on "Select As Default PDF Handler" button. Then try loading those PDFs.
    Thanks.

  • Upgrade to Netweaver causing problem while opening pdf file in the portal

    After an upgrade to Netweaver 4.0, the following code for opening a pdf file constructed from a byte stream passed from an RFC fails.
    Document doc = new Document(PageSize.A4);
    javax.servlet.http.HttpServletResponse myResponse = request.getServletResponse(true);
    myResponse.setHeader("Content-Disposition","attachment;filename=\"AIPDoc.pdf\"");
    myResponse.setContentType("application/pdf");
    ByteArrayOutputStream baosPdf = new ByteArrayOutputStream();
    OutputStream os = myResponse.getOutputStream();
    os.write(pdfResult);
    PdfWriter.getInstance(doc, os);
    It throws a "file not found error" on opening directly. However, if saved and viewed; it opens fine. I believe we need to specify the portal url in the filename but not sure.
    Thanks,
    Devina

    Hi Devina,
    We are also opening a pdf file constructed from a byte stream passed from an RFC.  Our problem is that we are experiencing inconsistent results.  The file appears to open on some PC workstations but not on others.  When it doesn't work we simply get a blank screen in the window.  Did you resolve your issue?  If so, perhaps you can provide us with some suggestions for solving our problem.
    Thank you,
    Angie

  • Problem while creating BEx Query

    Hi all,
    I have to calculate the difference between Receipt Date and Schedule Line Date in the Query level. The thing is both are Characteristics.
    I want to know how to calculate the difference.
    Can anyone help me to solve this problem.
    Thanks in Advance
    Mahi

    Hi Mahi,
    Create a variable on receipt date and schedule line date of type replacement path.
    Create a calculated key figure which basically subtracts value of variable defined for receipt date and variable defined for schedule line date.
    Hope that helps.
    Regards
    Mr Kapadia

  • How to open a Query in BPS Web-Layout

    Hello,
    i am new to BPS. How can I open a Query in BPS Web-Layout so that I can enter plan data manually??
    Pls give me the procedure and not links to help.sap.com. Thanks.
    pls help,
    SD

    Hi.
    You can open bex query in BPS Web Layout, but you should update data via BPS layout.
    In BPS Bex query can be opened only for display as long as BPS doesn't allow input via query (only BI7+IP).
    In BPS Web Interface builder add subcomponent "text", set HTML=TRUE, goto property "text", press F4->edit long text and enter HTML tags IFRAME with URL of bex query.
    Regards.

  • Problem while tried to launch query on the Web

    Dear all:
    In BW 3.5 Bex Analyzer, we can launch query in Web Browser, and display result on the web. It seem no portal setup necessary. In NetWeaver 2004s, when we execute a query from analyzer and tried to launch the web view, the only option we see from "tool" icon is "BEx Web Analyzer". But it seems not working everytime we tried to call "BEx Web Analyzer". Currently we don't have EP ready. Could it be the reason we are not able to use Web Analyzer? or is there anything wrong with our configuration?
    If we don't have SAP EP installed, for BI reporting, what functions we are able to use ?

    Hello Chetan:
    First , thank for ur reply. We did use function "Execute.." in the Query designer and tried to launch query on the web. But we get a result link like
    "http:///irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?QUERY=ZFACLQ01&VARIABLE_SCREEN=X&DUMMY=1" and on the header of pasge, shows " http://- Invalid Syntax error" .
    In the BW 3.5, when we tried to launch query on the web from analyzer, a URL should be generated like that :
    http://<host-name>.<port number>/sap/bw/bex?sap-language=%20&CMD=LDOC&infocube=ZPCA_C03&query=ZQFACL_Q44_A
    my question is ...why the URL looks "strange", more like generated for portal?
    BR
    SF

  • Problem with the icon "Display query on the web" in Query Designer

    Hi Friends,
             I was told by my PM to give them all FI Modules standard business contenet reports, so for that reason i have installed all FI business content & loaded the data in the Dev Server, now i just want to show the reports, but i want excute these reports in Internet Explorer using the Icon "Display Query on the WEB" in query designer, when i click on that it isn't getting displayed in the browser.
             the URL coming like this, "http://itcchqbd:8100/sap/bw/BEx?sap-language=EN&bsplanguage=EN&CMD=LDOC&INFOCUBE=0FIAA_C11&QUERY=0FIAA_C11_Q0001&VARIABLE_SCREEN=X&DUMMY=1"
    getting the message in the page, the page can't be displayed,
              How to solve this problem & how do i have to show the standard business content reports to all FI Superiors ?
    awaiting for ur answers
    Regards,
    Balaji

    Balaji,
    first check if you have enabled web reporting on your BW server ( there is a how to paper for the same )
    another way to check out the same is to find out if there are existing web templates being published which would make the server web ready.
    As for FI content - activate the FI relevant areas in Business content and then activate the respective datasources and then load the data.. or go trough the best practices for BW-FI ( service.sap.com/bestpractices) wnd then activate the best practices for the same.
    Hope it helps.
    Arun
    Assign points if useful

  • While executing the query in the web template I am  facing below issue

    Hello SAP geniuses,
    Please help me on my issue  ,
    while executing the query in the web template i am  facing below issue.
    The variable for characteristic (region) is appearing but this characteristic (region) is not appearing in the free characteristic zone  but when we are executing the query with out webtemplate it is showing both variable and free characteristic
    can anybody help us to identify what is the issue with the web template.
    Thanks
    Alok

    Hi,
    Plz check ur report and execute at the designer and take its technical name and go to RSRT. log out and log in and try..
    if not check ur authorisation.
    Regards....KP

  • When I try to open Safari, I get NCSW21 and that server can't be found. This happens everytime. I am using AirPort and have a strong internet signal. I have no problem opening Firefox and surfing the web. Only with the Safari page. Can anybody help.

    Can't open Safari. I get "Can't find server". I get NCSW21 in my address bar. I am using AirPort and have a strong internet signal. I have no problem opening Firefox and surfing the web. Need help. Thanks

    Hi Professor66,
    I have a couple of suggestions for you regarding this issue. Here are two links to users who have posted similar questions to yours and have found their answers in the responses to their posts:
    Safari hangs when loading web pages. | Apple Support Communities
    https://discussions.apple.com/thread/3784708
    Safari loading blank pages | Apple Support Communities
    https://discussions.apple.com/thread/3899912
    I would suggest that you first follow the troubleshooting that the OP did in the second link, which is to test in a new user account to see if the behavior is consistent. If it is, you may need to address the issue at a software level by re-installing Safari. More information on this process can be found in the following article:
    OS X Mavericks: Reinstall apps that came with your Mac
    http://support.apple.com/kb/PH14193
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • Issue opening BEx query in Query designer

    Hi Expert,
    I am facing issue while trying to open a query in the BEx query designer. The query designer opens, then i search for the query and double click to open it. The system hangs there and the query never opens up.
    System details BW 7.3 SP9
    Please let me know how to resolve this issue.
    Thanks,
    Anupama

    Hi Anupama,
    Check your system SAP GUI is latest one or not.
    If not ,then uninstall your existing SAP GUI along with all Bex client tool(ex -Analyser,Query Designer,etc) and install latest one.
    I already faced same issue .so your problem will solved after doing above steps.
    Regards,
    Rajesh

  • Error while opening a query in query designer

    Hello all,
    There is an issue with the BEx Query Designer. A user is facing the following error while he tries to open a query using the Query Designer.
    Error:
    Error Group
    RFC_ERROR_COMMUNICATION
    Message
    Connect to SAP gateway failed
    Connect_PM  GWHOST=10.233.0.167, GWSERV=sapgw00, SYSNR=00
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       partner '10.233.0.167:3300' not reached
    TIME        Wed Nov 26 16:35:58 2008
    RELEASE     710
    COMPONENT   NI (network interface)
    VERSION     39
    RC          -10
    MODULE      nixxi.cpp
    LINE        2985
    DETAIL      NiPConnect2
    SYSTEM CALL connect
    ERRNO       10060
    ERRNO TEXT  WSAETIMEDOUT: Connection timed out
    COUNTER     1
    Please help me in resolving this issue.
    Regards,
    Shahid Ahmed.

    Connect to SAP gateway failed
    You cant connect to gataway, may be it's down to (if you have
    some issues going on the server
    Regards.

Maybe you are looking for