Problem with sap logon/bex

Hello Peoples,
I have a machine is the same with Windows Vista Home Premium, sap logon 7.10 - patch 11
Access to the SAP system is perfect, but when I try to open the Bex query designer after informing username and password I get the error of communication rfc.
Can you please tell me know how can I fix this error? or if Bex is compatible with Vista Home Premium?
Regards...

Hi,
Yes,BEx is compatible with Vista Home Premium Edition.
You will get an RFC Communication Error,if the backend system is down or if you enter the language as blank(sometimes) in the SAP Logon.
Try opening other tools like WAD,RD and Analyzer and connect with backend and check whether it works or not.Try opening QD from WAD or Analyzer
This is not tool specific anyway.
Rgds,
Murali

Similar Messages

  • Problem with SAP logon 720 for printng with Citrix.

    Hi,
    I have a problem with sap logon 720 when printing for Citrix, one time print and other time don't print....
    I try to start SAPLPD for prompt comand... it's start but don't print....
    i'm write here for look if other people have this problem... I dont know what I can do.....
    Thank you very much....

    Hi Itmar,
    I was having the similar issue on my Windows Server 2003 Terminal Server. At times SAP prints stop working. Then i changed Printer Type to "G" and it had solved the problem. It skips the use of SAPLPD service and calling windows printing service directly.
    Just try with that.
    Regards,
    Gaurav

  • Problem with SAP Logon

    Hi alls,
    I hope can some help me, I'm trying to connect to SAP via SAPLogon.
    I've tried to fix the problem but I don’t have success.
    SAP Logon Properties:
    Description:  NSP
    Application Server: localhost
    SAProuter-String: blank
    System-ID:        NSP
    System Number:     00
    Here is the error message.
    Runtime Errors         DBIF_RSQL_INVALID_REQUEST       
    Date and Time          2007-01-22 19:14:39                                                                               
    Short text                                            
         Invalid request.                                                                               
    What happened?                                        
         The current ABAP/4 program terminated due to      
         an internal error in the database interface.      
    Trigger Location of Runtime Error                       
        Program         SAPMSYST    
        Include         SAPMSYST    
        Row             2,556       
        Module type     (FORM)      
        Module Name     FILL_INFO_TAB
    SAP-GUI installation:
    Release:      640 Final Release
    Dateiversion: 640.5.18.1016
    Build:        815416
    Patch-Level:  18
    Can you help me ?
    Thanks a lot in advance ..¡
    Ralph Hübner

    Hi,
      Try to check you DB server installation. It seems to be some issue with your Database server.
    With Regards,
    Rajesh V.

  • Problem with SAP logon by VBA

    Hi, I'm new in the community and I'm also new with SAP, so sorry for any errors.
    For my work I need to open SAP by excel (VBA); and I have found the code below but it don't work.
    Sub Work()
    Set app = CreateObject("Sapgui.ScriptingCtrl.1")
    Set Connection = app.openconnection("my system", True)
    Set session = Connection.Children(0)
    session.findById("wnd[0]/usr/txtRSYST-MANDT").Text = "Client"
    session.findById("wnd[0]/usr/txtRSYST-BNAME").Text = "User"
    session.findById("wnd[0]/usr/pwdRSYST-BCODE").Text = "Password"
    session.findById("wnd[0]/usr/txtRSYST-LANGU").Text = "Language"
    Session.findById("wnd[0]").sendVKey 0
    End Sub
    When the macro runs there is this error  
    Can you help me?
    Thank you,
    ax_salerno

    Hi Alessandro - I am sharing an Excel sub that works for me by opening up logon pad, signing on to production, gettting credentials, then going into SAP and doing a transaction, and finally asking the user to click ok to terminate the session. I think this is something that there were questions on how to do the session close nicely but not sure if there is a solution yet.
    Hope this helps.
    Regards
    Umur
    Sub Logon()
    'starts by executing logon pad, selecting prod, then enters
    id/pwd
    'works to sign on to sap and then kill the connection.
    refers to saplogon.exe in Program Files/SAP71/FrontEnd/SAPGui folder
    Dim SAPguiAPP As Object
    Dim oConnection As Object
    Dim Session As Object
    Dim SAPCon As Object, SAPSesi As Object
    Dim SapGuiAuto As Object, SAPApp As Object
    If SAPguiAPP Is Nothing Then
        Set SAPguiAPP =
    CreateObject("Sapgui.ScriptingCtrl.1")
    End If
    If oConnection Is Nothing Then
        Set oConnection =
    SAPguiAPP.OpenConnection("1. Prod", True)
    End If
    If SAPSesi Is Nothing Then
       Set SAPSesi =
    oConnection.Children(0)
    End If
    Application.DisplayAlerts = False
    With SAPSesi    
        .FindById("wnd[0]/usr/txtRSYST-MANDT").Text
    = "010"
    .FindById("wnd[0]/usr/txtRSYST-BNAME").Text = "USER"
    .FindById("wnd[0]/usr/pwdRSYST-BCODE").Text =
    "PASSW"
    '.FindById("wnd[0]/usr/txtRSYST-LANGU").Text = "EN"
    .FindById("wnd[0]").SendVKey 0
        'start extraction
    .FindById("wnd[0]").Maximize
    .FindById("wnd[0]/tbar[0]/okcd").Text = "/Niw33"
    .FindById("wnd[0]").SendVKey 0
    .FindById("wnd[0]").Maximize
    .FindById("wnd[0]/usr/ctxtCAUFVD-AUFNR").Text =
    "8762449"
        .FindById("wnd[0]/usr/ctxtCAUFVD-AUFNR").CaretPosition
    = 7
    .FindById("wnd[0]/tbar[1]/btn[8]").Press
    .FindById("wnd[0]/usr/subSUB_ALL:SAPLCOIH:3001/ssubSUB_LEVEL:SAPLCOIH:1107/tabsTS_1100/tabpKOAU/ssubSUB_AUFTRAG:SAPLICO1:1100/tabsTABSTRIP/tabpTS05/ssubVALUES:SAPLICO1:1105/cntlPMCO_SUM_TREE/shellcont/shell/shellcont[1]/shell").HierarchyHeaderWidth
    = 162
    .FindById("wnd[0]/usr/subSUB_ALL:SAPLCOIH:3001/ssubSUB_LEVEL:SAPLCOIH:1107/tabsTS_1100/tabpKOAU/ssubSUB_AUFTRAG:SAPLICO1:1100/btnPUSH1").Press
        .FindById("wnd[0]/usr/cntlGRID1/shellcont/shell/shellcont[1]/shell").SelectedRows
    = "0"
    .FindById("wnd[0]/usr/cntlGRID1/shellcont/shell/shellcont[1]/shell").DoubleClickCurrentCell
    .FindById("wnd[0]/tbar[0]/btn[3]").Press
    .FindById("wnd[1]/usr/btnSPOP-OPTION1").Press
    .FindById("wnd[0]/tbar[0]/btn[3]").Press
    .FindById("wnd[0]/tbar[0]/btn[3]").Press
    .FindById("wnd[0]/tbar[0]/btn[3]").Press
        'etc
    End With
         MsgBox
    "After clicking OK, this SAP session is terminated."
    Application.DisplayAlerts = True
         Set Session =
    Nothing
        Set Connection =
    Nothing
        Set SAPguiAPP =
    Nothing
    End Sub

  • Problems with SAP Logon ticket

    Hi.
    I am trying to send SAP Logon ticket from ECC 6.0  to the backend legacy using Soap adapter in receiver side. I get the following error in SXMB_MONI, so it looks like AF is not accepting the ticket. Can anybody tell me please, how I can identify that the ticket has been received in PI's side?
    <Trace level="1" type="T">Principal Propagation connection attributes</Trace>
      <Trace level="1" type="T">Host = hostname</Trace>
      <Trace level="1" type="T">Port = 12345</Trace>
      <Trace level="1" type="T">Transport protocol = HTTP</Trace>
      <Trace level="1" type="T">Transport protocol vers = 1.0</Trace>
      <Trace level="1" type="T">Message protocol = 003000</Trace>
      <Trace level="1" type="T">Path = /MessagingSystem/receive/AFW/XI</Trace>
      <Trace level="1" type="T">Security: Logon Ticket</Trace>
      <Trace level="1" type="System_Error">Error while sending by HTTP (error code: 403, error text: Forbidden)</Trace>
      </Trace>
    Thanks, Jukka

    Hi.
    I have had some progress. Actually Principal Propagation works well now, thanks to instructions in http://help.sap.com/saphelp_nwpi711/helpdata/en/48/a9bbb97e28674be10000000a421937/frameset.htm
    But I think I have now found out that the principal progation might not be a direct answer to my problem. In the end of the day I should be able to deliver UsernameToken in my soap message header. Something like this:
    <wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
      |          <wsu:Timestamp wsu:Id="Timestamp-12134742" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
      |             <wsu:Created>2007-10-14T12:45:34.656Z</wsu:Created>
      |             <wsu:Expires>2007-10-14T12:46:34.656Z</wsu:Expires>
      |          </wsu:Timestamp>
      |          <wsse:UsernameToken wsu:Id="UsernameToken-33259721" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
      |             <wsse:Username>test</wsse:Username>
      |             <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">test</wsse:Password>
      |          </wsse:UsernameToken>
      |       </wsse:Security>
    I just have not found any documentation which I could utilize in Abap Proxy - PI 7.1 - Soap Receiver scenario. Just wondering should I create my own customized soap envelope and disable the Pi envelope in SOAP communication channel...
    Do you know if there's any "standard way" to configure this kind of configuration?
    Br. Jukka

  • Problem in SAP Logon

    Hi,
    I am Sikander (J2EE Developer). Currently i am working on SAP ABAP. For this purpose i have downloaded SAP Netweaver 2004 Sneak Preview and SAP GUI. These products are installed sucessfully but i am having problem with SAP logon.
    My Computer Name is shahbaz. My System Configurations are :
    Description: NSPSIK
    Application Server: shahbaz
    System ID: NSP
    System Number: 00
    I am having "partner not reached- connection error" message dialog. Please help me in this regard, i am stuck in this.
    Thanks in advance,
    Malik Sikander Khan

    Hi Sikandher,
    step 1:- Check network a) Try to ping your SAP server
    sep 2 :- Check ini files and hosts file
    copy hosts.txt,saplogon.ini,sapmsg from the working gui system to gui  prob system.
      Location of file
      hosts.txt : c:\windows\system32\drivers\etc
      saplogon.ini:c:\windows
      sapmsg: c:\windows
    note:-  before copying the above file , please close all the application on users machine.
    check the database path vaue from the registry
    Hkey_local_machine/system/services/current/controlset/tcpip/parameter
    make sure database path value is      c:\windows\system32\etc

  • I am facing Problem with my Bi Bex Analyzer 7.10 .

    Hi All,
    I am facing Problem with my Bi Bex Analyzer 7.10 .
    I have Windows 7 with Office 2007 insatlled on my Machine and  SAP GUI 7.10  with  patch 11.
    When i Open the Bex Analyzer and click on OPEN Query, it shows me the German Laguage istead of English ( Open Query )
    and the Open query  Icon is not responding
    Hence my Bex Analayzer is not working .
    Is there any MS Office 2007 Patch that i have to istalled on the The Machine .
    Please advice.
    Thanks in advance.

    Hi Nilesh,
    To see the text in English,you have to login to backend with Language as "EN" in the Logon Screen.
    To make the icons work in Analysis and Design Toolbar,you can install in KB from Microsoft.
    http://support.microsoft.com/kb/907417/
    Close Analyzer,install this KB and then Launch Analyzer.
    This will solve your issue.
    Rgds,
    Murali

  • SSO with SAP logon tickets to non-SAP web app

    I am trying to implement SSO to an oracle portal based web application using SAP logon tickets, but can't seem to find a way for it to work.  I thought maybe it would be a web server filter, but am unsure if this would work for oracle portal.  Anyone tried similar?
    Cindy

    Hi Cindy,
    If it is EP6 SP2 probably you can checkout the following document.
    http://service.sap.com/ep60
    Go to Documentation Help>How-To-Guides>Current How To Guides section.
    checkout the following how to guide.
    Perform Cross Domain SSO with SAP Logon tickets zip file.
    If you want the zip file please send an e-mail to
    [email protected]
    Regards
    -Venkat Malempati

  • Can SAP GRC AC 5.3 connect without any problem with SAP R/3 4.7 Enterprise?

    hello,
    I went to the PAM in the SAP Marketplace to see if SAP GRC AC 5.3 could connect to SAP R/3 4.7 Enterprise but I can't see all the "Add-On Product Version for...", it's cut off.
    Can SAP GRC AC 5.3 connect without any problem with SAP R/3 4.7 Enterprise?
    If I can't is there any proof about it? I have to show it to a client.
    Best Regards,
    Pablo Mortera,

    Pablo,
    GRC AC 5.3 works perfectly fine with SAP's R/3 4.6c, mySAP ERP 4.7 and ECC systems. In fact we have two 4.7 Enterprise systems connected to GRC AC 5.3 system.
    You can get the details of supported SAP ERP systems under prerequisite section of Info page of GRC AC 5.3 , it can be accessed on marketplace at -
    Downloads-->Installations and Upgrades - Entry by Application Group > SAP Solutions for Governance, Risk, and Compliance>SAP GRC Access Control>SAP GRC ACCESS CONTROL>SAP GRC ACCESS CONTROL 5.3
    Just ensure to have proper BASIS and ABAP support pack level as mentioned in prerequisites.
    Regards,
    Amol

  • One more Problem with SAP query

    Hi All,
    I am having a problem with SAP query
    Execution of SAP query transaction is leading to Dump
    the dump says Field 'R01' contains no fields, syntax check on the program shows same error.
    When I tried regenerating the Query in SQ01
    " Query Specification cannot be use to generate list
    Ranked list contains only numeric fields
    Please help me

    Gianpiero Bucchieri wrote:
    > So its important to listening the following tables too: Faktura (invoice), Partner Role, Partnernumber and the requierements number. The table are EKKO EKPO AND VRKPA OR vbkd, but if I join this table the query doesn't listining any results. If I cancel this 3 or 4 table and I start the query, the listening are ok. 
    >
    I am not sure what business process you are describing here - is it some kind of third-party sales order? If so, your join is wrong.
    From VB E P, firled BANFN and BNFPO you can go to table EBAN, where in field EBELN you will find the number of the purchase order (if somebody already had an MRP+Me58 run over the PR) which will lead you to table EKKO, and EKPO.
    So what we have here (essentially is):
    VBAK -> VBAP -> VBEP -> EBAN -> EKKO -> EKPO
    But that only solves one of your problems - you still have a long way to go to get invoices, partner and partner roles into there and I am beginning to ask myself what exactly it is you want to evaluate.
    Care to explain?
    Edited by: Mylène Dorias on Apr 1, 2010 2:10 PM

  • Problem with SAP PI7.0 J2ee Engine starting

    Hi,
    Problem with SAP PI7.0 Server
    I am using AIX6.1 and p570
    J2ee engine is not starting but I am able to login to ABAP engine.
    When I am trying to long in through internet explorer it is not working.
    How to check J2ee engine started or not.
    If it is not started then how to start J2ee engine.
    If J2ee engine problem is there then how to solve the issue and where to check to solve the issue.

    Hi,
    How to check J2ee engine started or not.
    Check the url http://ipaddress:5xx00/index.html
    If this url shows you the system info page then you j2ee engine is up.
    If it is not started then how to start J2ee engine.
    Check your server0.log file.
    If J2ee engine problem is there then how to solve the issue and where to check to solve the issue.
    Check for the problems in log file and do search in sdn or in the market place you will get plenty of info read them and try to resolve the errors.
    Regards,
    Vamshi.

  • Problem with SAP Script FAX output

    Hi Friends,
    I have problem with SAP Script Fax output.
    After I issued output using the messge type, the print preview format shows me correct alignments and the right data. But when I go to List display using the menu bar functions from the print preview screen, the list is showing me the right data, but all the alignments at the main window went wrong.
    How do I rectify this problem? I need correct alignments in both form display and list display.

    Hi Sasidhar,
    Have you tried with different fax machine.
    Regards,
    Atish

  • Performance problems with SAP GUI 7.10 and BEx 3.5 Patch 400?

    Hi everybody,
    we installed SAP GUI 7.10 and BEx 3.5 Patch 400 and detected hugh performance problems with this version in comparison to the SAP GUI 6.40 and BEx 3.5 or BEx 7.0 Patch 800.
    Does anybody detect the same problems?
    Best regards,
    Ulli

    Most important question when you are talking about performance-issues:
    which OC are you working on and which excel version?
    ciao
    Joke

  • Problem with '-' (dash) in BEx web analyzer

    Hi All,
    we are having a strange problem with 0BPartner and 0Material. Our BPartner and Material have '-'(dash) sign as part of key. While selecting this BPartner/Material in Bex Analyzer, we do not have any problem, but when we try to select the same Bpartner/Material in BEx Web Analyzer, it puts an escape char in from of the dash. For eg:
    If i select the Bpartner "1234-5467" then in Web Analyzer selection box, it is displayed as  "1234\-5467" in the selection screen.
    If i do a search on 1234-5467, it returns zero value.But if i do a search on 1234\-5467, then i get the search hit.
    If i enter the Bpartner in the selection window directly and If i do not put the escape char, then it considers the input as range 1234 - 5467 and returns me no value in the report output.
    Has anyone had this type of issue? Please respond.
    Thanks
    Niveda

    Thanks Olivier,
    Sorry if you had misunderstood my question. They are 2 different Info objects. and i am having problem searching values in each one of these info objects.
    Let me explain it with an example.
    Scenario:
    Let say company defines material in the following format.
    "123", "456", "788", "345"....etc.
    And I have a report which has material as input selection.
    To run this report with single material i enter "123" in the selection screen
    To run this report with a range of materials, I need to enter 123 - 456 in the selection.
    I have no Issues
    Scenario 2.
    Consider a case if the materials are defined in SAP as "001-1234", "987-234"
    "123-234" etc.
    In this scenario, to run the same report for 1 material, i will enter 001-1234. But now the question is how will BW system interpret this material entry.
    Is this 1 single material(001-1234) or a material range (001 - 1234)??
    We have issue here. The system considers this material "001-1234" as a range (001 to 1234) instead of single material and gives me zero output.
    Any help??
    Niveda

  • Problem with SNC logon to Analyzer

    Hi friends
    We configure SNC for BW system logon. It works fine for GUI. But when we use Analyzer the problem occurs:
    Missing SNC_LIB=IN CONNECT_PARAM IN RfcOpenEx
    Why this happen?
    we have done the checking:
    existence of Kerberos dll in /windows/system32
    active directory settings for a SAPServiceSID user
    advance setting in saplogon
    It looks fine. Do we miss sth? Maybe there's some configuration for Analyzer? Thank you very much.

    We were attempting standard publishing configuration but it would not work until SNC was installed. Once installed the publishing worked. But that's when the authentication issues started.
    We can login to infoview with SAP credientials no problem. But with the SNC turned on in BOBJ, its as if that first login means nothing. If you attempt to execute a report it shows cached paramaters and is apparently not authenticating against our SAP backend system. When you turn the SNC off via the CMC in BOBJ, the reports execute correctly authenticating against SAP backend.
    With SNC on, if you try to execute a report, nothing happens. As mentioned above, it's as if it's not communicating with the backend data source.  With SNC off, all works well but we just can't do the publishing/bursting.
    Thanks again,
    Sage

Maybe you are looking for

  • Problem with Safari and Java

    Hi there, I need help with the above mentioned problem. At first, here is my configuration: iMac G5 17", Mac OS X 10.3.9, QuickTime 7.0.1 PRO, Safari 1.3 (v312), Java - here is the 'answer of the Terminal app - java version "1.4.2_05" Java(TM) 2 Runt

  • Windows Camera compatible with Windows Vista, 7, and 8 in WPF

    Hey everyone, I am working on a Desktop application that uses DirectShow. It worked fine until we ran it on a Surface tablet in Windows 8. I need a way to control the camera rotation and DirectShow makes it quite difficult to implement. I would now l

  • Problem: Merging same Files into 1 File using BPM, Receiver File empty.

    Hi All, I am trying a scenario where I need to merge two similar files into one single file (Append) using BPM I am following the same structure as defined in the predifined BASIS Namespace i.e.  http://sap.com/xi/XI/System/Patterns for Integration P

  • Starting mac all tabs open

    All icons in my dock open when i start my i mac, how can i fix this because i dont want that.

  • ORA-03127 : no new operations allowed until active operation ends

    Hi people, [9.2.0.4.0 on Windows 2003] Anyone else getting this error on an attempt to register an XSD? This is a recent change in behaviour but I can't isolate why... Thanks, Lachlan