SAP GUI logon connection error: WSAECONNREFUSED

Dear Experts,
I have installed SAP 4.7, after connecting the console(SAPMMC), when trying to logging to SAP Logon, an error appears which states:
partner not reached( host: XXX.XXX.XXX.XX, service sapdp00)
WSAECONNREFUSED: Connection refused
Can anyone help me to resolve this error.
If this is not the right forum then pls guide me to the concerned to post my question.
Thanks with lots of expectations.
Praveen.

I see that you already duplicated your message on the SAP ON UNIX forum. That was the right place to post.
Please close this post here as it it not at the right place.

Similar Messages

  • SSO Using SAP GUI Logon

    Here's my question gurus...
    Is there a way to enable SSO so that, after a user authenticates themselves within the portal, go back to the standard Windows SAP GUI Logon(pad) select the system enter the desired client and logon with having to provide a username and password? The credentials would be passed from the portal to the connected backend system.
    We currently have a slew of systems and there corresponding clients it would be awesome to sync all systems with the portal and only have to administer passwords from and for the portal. Consequently the portal would handle the rest. The folks here have not fully embraced using the html version of the gui hence the reason for this posting.

    Hi Mike,
       If i understood your requirement, You want to use SAP functionality form portal.
      You Can do that, by creating a SAP System from your portal and you can call any Transactions from the portal it self, by using that System.
      How to create System and User mapping for that System you can find in the below link. It may helpful to you. Ping me back, if you have any doubts.
    http://help.sap.com/saphelp_nw04/helpdata/en/3d/b5f9c2ea65c242957ee504ca4a37a9/frameset.htm
    Transaction Iview with integrated ITS.
    Please correct me, if i am wrong.
    Regards,
    Sridhar

  • Client ID range for SAP GUI logon?

    Hi,
    Does anyone know what is the range of client IDs allowed for SAP GUI logon? I am assuming it to be 000-999. Is that correct?
    Any help will be greatly appreciated.
    Thanks,
    Venkat

    Hi venkata,
    As Cherry mentioned above you can choose any client with exception of <b>000 SAP AG</b>, <b>001 Auslieferungsmandant</b> R11 and <b>066 Early Watch</b>, you can use the rest 997 clients to setup your system.
    Hope this help!
    Juan

  • How can i find SAP Gui logon pad version

    how can i find SAP Gui logon pad version ?

    Hi,
    That's easy. At the top of the logon, you see a title bar with a general version indication. At the most left of it, you'll see an icon. Click on that and choose about SAP logon and you'll get detailed info.
    Eddy
    PS. Reward the useful answers and you will get <a href="http:///people/baris.buyuktanir2/blog/2007/04/04/point-for-points-reward-yourself">one point</a> yourself!

  • Adding link on SAP Gui logon page

    Hi All,
    I have the problem that I need to add a link on the SAP Gui logon page.
    Within the transaction SE61 I have added the general text ZLOGIN_SCREEN_INFO.
    When I click on the Insert Command I have the possibility to create a link but the char. format F4 list is empty and it does not accept the link creation without it being filled.
    Does anybody have an idear?
    Thank you for your help
    Soeren

    Hi Juan,
    When I click on the Insert Command I have the possibility to create a link but the char. format F4 list is empty and it does not accept the link creation without it being filled.
    Would you please comment on this ?
    I have also seen the only possibility... but same issue...
    Regards.
    Rajesh Narkhede

  • Insert Button on SAP GUI Logon Screen

    Hello,
    is it possible to insert a button on the SAP GUI logon screen like the "new password" button?
    We want to insert a button, with which the user can generate a new initial password, if he has forgotten his password.
    Thanks for answers
    regards
    Christian

    >
    Anand Munuswamy wrote:
    > Hi,
    >
    > I very strictly advice to avoid of providing "Reset password" button to user, this will make any user to reset the password of other users.  This is one of the security violation.
    I fully agree.
    > If you want to provide option for reseting the passwords to user, you can make a custom program which can be executed by user and can reset the password for their own user, but not for others.
    >
    > Regards
    > Anandm
    Well, I'd propose to leave the SAPGUI screen untouched but only place a comment on the logon screen (see [note 205487|https://service.sap.com/sap/support/notes/205487]) which informs the user on a URL to a web application (BSP) which provides the desired "forgotten password" self-service functionality.
    In the internet you find many examples of such "forgotten password" self-services - good ones and not so good ones. What all of them have in common is the requirement that the user has provided a valid email address or mobile number (during the account registration) which can be used for the required off-band communication. However they differentiate in the way they try to mitigate misuse: some prompt for a so-called passphrase (in most cases: the user has entered a free-text answer to a question chosen from a fixed set of predefined questions, during accoutn registration) before sending a newly created password to the email address retrieved from the user account; others generate a (random) "password change token" which they send to the email address and prompt the user to enter this "password change token" on the webpage (the account remains untouched until the correct "password change token" was entered, in most cases this is also time-restricted). I prefer the latter one.
    Cheers, Wolfgang

  • How to determine SAP GUI Logon type during runtime?

    Hello All,
    I have a requirement to detect the SAP GUI Logon type (GUI for Windows vs. GUI for Java) during the execution of a program.
    Is this possible?
    Perhaps it would be easier to detect the type of machine; PC vs. Mac ?
    Any help would be appreciated.
    Thanks in advance,
    AK

    I found how to do it.
      DATA: lv_platform TYPE i.
      lv_platform = cl_gui_frontend_services=>get_platform( ).
      CASE lv_platform.
    when cl_gui_frontend_services=>platform_unknown.      write:/ 'UNKNOWN'.
      when cl_gui_frontend_services=>platform_windows95. write:/ 'WINDOWS95'.
      when cl_gui_frontend_services=>platform_windows98. write:/ 'WINDOWS98'.
      when cl_gui_frontend_services=>platform_nt351.           write:/ 'NT351'.
      when cl_gui_frontend_services=>platform_nt40.             write:/ 'NT40'.
      when cl_gui_frontend_services=>platform_nt50.             write:/ 'NT50'.
      when cl_gui_frontend_services=>platform_mac.              write:/ 'MAC'.
      when cl_gui_frontend_services=>platform_os2.              write:/ 'OS2'.
      when cl_gui_frontend_services=>platform_linux.             write:/ 'LINUX'.
      when cl_gui_frontend_services=>platform_hpux.            write:/ 'HP UNIX'.
    when cl_gui_frontend_services=>platform_tru64.             write:/ 'TRUS64'.
      when cl_gui_frontend_services=>platform_aix.                write:/ 'AIX'.
      when cl_gui_frontend_services=>platform_solaris.          write:/ 'SOLARIS'.
      when cl_gui_frontend_services=>platform_windowsxp. write:/ 'WINDOWS XP'.
       WHEN cl_gui_frontend_services=>platform_macosx.      write:/ 'MACOSX'.
        WHEN OTHERS.
      ENDCASE.
    Thanks to everyone for their time,
    AK

  • Customize SAP GUI Logon screen

    Hi,
    I have seen that some logon screens (where you enter client, user, password, language) has additional written information, like "needing a user for this system, please call xxx". My question is how and where can i define this additonal information on the SAP GUI logon screen?
    Best regards,
    Martin

    Hello, it means the system creators (for example if is IDES or trial SAP systems) or system administrators creates this information, try read how --> Note 205487 - Own text on SAPGui logon screen
    Regards.

  • Export SAP GUI Logon system properites to another laptop

    Hi, SDN Fellows.
    I want to run SAP GUI logon systems in another laptop. After installing a new SAP GUI client. Instead of re-add the logon system properties, is that a way I can export and import from another laptop? Say I have 10 logon system properties (some with application server and some with logon groups), how do I pick the 8 of 10, and export to another SAP GUI in another laptop?
    Thanks,
    Kent

    Hello Kent,
    for SAP GUI for Windows 6.20 or 6.40, please have a look at [SAP note 512040|https://service.sap.com/sap/support/notes/512040], for SAP GUI for Windows 7.10 refer to [SAP note 1035560|https://service.sap.com/sap/support/notes/1035560] and for SAP GUI for Java please read chapter 7 of the manual included in the SAP GUI for Java installation.
    Best regards
    Rolf-Martin

  • SAP GUI Logon

    HI,
    We are supporting a 2 clients where one has sandboxes and  other production system.
    Is it possible to keep Sandboxes in one gui and production systems in another logon pad.
    I mean i need 2 SAP GUI-logon pad on my desktop where one logon pad must contain only productions systems and another should contain only sand-box systems.
    Is it possible? What setting has to be made?
    Sugessions and Help is appreciated
    Regards,
    Magham.

    Hi,
    Pls check things like
    http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000659894&_OBJECT=011000358700005431522005E
    service.sap.com/sapgui
    Eddy
    PS. Reward the useful answers and you will get <a href="/people/baris.buyuktanir2/blog/2007/04/04/point-for-points-reward-yourself">one point</a> yourself!

  • SAP Gui Logon Error - 0942

    Hi,
    We done system copy from SAP ECC6 windows to unix environment.It sucessfully installed.
    while we logon(SAPGUI) the Unix system  Error message Occurs "SQL Error 942 When
    accessing program SAPM".
    Kindly advice to us.
    regards
    senthil

    > No problem in System copy method. I login to my unix system(root user) i sucessfully started database & cI.
    > by using commands lsnrctl start & startsap sap. Server works fine.My problem is SAP GUI Login only
    The SAPGUI Logon problem is a symptom of the problem. The system doesn'T find a specific table it looks for. Even if the system is up and running this doesn't mean anything. You can't logon since a program can't be loaded because the table is not existing.
    Check your dev_w* traces, I'm sure you find a LOT of errors.
    Markus

  • SAP GUI logon error

    HI Friends,
       I installed SAP Gui in my system, I had issues and I downloaded again and installed when I tried to connect I am getting an error as " Could not initialize Context Management Library".
    I tried the steps given OSS note 561557 and still getting the same issue. Then Uninstall and installed again. Still trying to fix the same issue.
    Any suggestions Please
    Thanks - Swarna

    Hi Swarna,
    Try this option.
    In your system > goto > Control Panel > Double click on SAP Configuration icon > Select - User Accessibility mode.
    http://forums.sdn.sap.com/thread.jspa?threadID=2137296
    Br,
    Venky

  • SAP Gui Logon - application server shutdown

    Hi!
    I'have installed SAP Netweaver 7.0 Abap TRIAL on my Windows XP Service Pack 3.
    After lunching NSP-->Start Application Server, all is ok.
    But when i try to Logon with Sap Gui 7.10, i get this error :
    application server shutdown
    Component     DPTM
    Release                710
    Version             10
    Return Code     -17
    Counter             1
    Could you please help me?
    Thanks a lot!

    Hi!
    MaxDB seems to start correctly :
    http://www.fabiocavallo.it/sap/maxdb.jpg
    ...here comes dev_w0 :
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Thu May 22 19:58:50 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' ...
    M  *** ERROR => DlLoadLib: LoadLibrary(C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll) Error 126 [dlnt.c       237]
    M          Error 126 = "Impossibile trovare il modulo specificato."
    B  *** ERROR => Couldn't load library 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll'
    [dbcon.c      4726]
    M sysno      00
    M sid        NSP
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    95
    M intno      20050900
    M make:      multithreaded, ASCII, optimized
    M pid        3376
    M
    M  kernel runs with dp version 224(ext=109) (@(#) DPLIB-INT-VERSION-224)
    M  length of sys_adm_ext is 360 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3376) [dpxxdisp.c   1301]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active

    M Thu May 22 19:58:51 2008
    M  DpShMCreate: sizeof(wp_adm)          6328     (904)
    M  DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    M  DpShMCreate: sizeof(wp_ca_adm)          1200     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     1200     (60)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    M  DpShMCreate: sizeof(comm_adm)          528048     (1048)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1280)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 06420040, size: 4205552)
    M  DpShMCreate: allocated sys_adm at 06420040
    M  DpShMCreate: allocated wp_adm at 06421A28
    M  DpShMCreate: allocated tm_adm_list at 064232E0
    M  DpShMCreate: allocated tm_adm at 06423310
    M  DpShMCreate: allocated wp_ca_adm at 067935A0
    M  DpShMCreate: allocated appc_ca_adm at 06793A50
    M  DpShMCreate: allocated comm_adm at 06793F00
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 06814DB0
    M  DpShMCreate: allocated gw_adm at 06814DF0
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 06814E20
    M  DpShMCreate: allocated wall_adm at 06814E28
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host PCFABIO

    M Thu May 22 19:58:52 2008
    M  calling db_connect ...
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' ...
    M  *** ERROR => DlLoadLib: LoadLibrary(C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll) Error 126 [dlnt.c       237]
    M          Error 126 = "Impossibile trovare il modulo specificato."
    B  *** ERROR => Couldn't load library 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll'
    [dbcon.c      4726]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 008192) [thxxhead.c   1426]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10240]

    M  Info for wp 0

    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server PCFABIO_NSP_00 on host PCFABIO (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Thu May 22 19:58:52 2008
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10439
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 3376) [dpnttool.c   327]
    Thanks again, Sergo!
    Regards.
    Fabio

  • Username and password issue in SAP GUI logon-Please help

    Hello,
    Usually I download the tx.sap file from my work system it downloads and opens the main screen directly.( password is disabled for us). Now when I connect from home(home system through VPN) ,i can download tx.sap file from my company's SAP web portal ,but when I open the same through SAP GUI on my system it pops up a password screen- the issue is my employee ID is already populated in the username tab, but when I provide my domain password (i tried all my passwords),it throws an error -you do not require a password, now when i try without a password it shows fill in all required entry fields. Please assist.

    If you enter just the username, the network is not sure which "AD Domain" to contact tp authenticate you as a user. So you need to specify the domain name in any of the below 2 formats. Give it a try.
    Format 1 - [email protected]
    Format 2 - DOMAIN\UserName
    Hope this helps.

  • SAP GUI 620 connectivity issue

    Hi,
        I am using SAP .NET connector 2.0.1 on windows XP machine from last 6 months. However, before a couple of days back, by machine got formatted and I had to install all the softwares again. Now when I try to connect to my SAP server using SAP GUI 620 logon pad, it says "Connection timed out". This connection gets established from various windows 2000/2003 machines but not on XP machines. Is there some special setting which needs to be done in order to use SAP GUI 620 on win XP? If not, then what could be the potential solution?

    Hi,
    To my understanding you have to upgrade your Microsoft Excel verion to 2007. SAP GUI may not work either for 2003 and 2010. Please ask your IT team to upgrade your Excel version to 2007.
    Regards,
    Vishnu.

Maybe you are looking for

  • Why is the quality of the DVD not as good as original mpeg layer 3

    I have produced a wedding album slideshow in keynote (this allows me the 'flop' transition giving the appearance of the pages being turned) I tried exporting staring into iDVD but the slideshow quality was awful on the DVD. I have now tried exporting

  • TOC Book Problem - RoboHelp 8 - WebHelp Pro

    Hello, I'm having a problem in a generated build of help to RoboServer 8.  TOC books are linking to the previous page of the toc book above that particular book and this rings true throughout the TOC.  I didn't add any links and just wanted to books

  • Disc utility problems

    Hello, ive done a bit of research on the internet on this and cant seem to find an answer so was hoping some of you guys could help me. Im trying to make it possible to boot from my ipod. I drag the file i want to boot from into the "source" bar and

  • Launching TextEdit on a Mac from a Java application

    I am having a problem launching textedit from a Java application. It was working a week ago on a fresh iMac, but since then I have installed Lightroom, Photoshop, the Studio MX suite stuff, and now the textedit program does not start from my Java app

  • Best way for printing

    Hi,    I have developed a card designer tool having features of adding text and image on card with many effects(sepia, negative etc..) , But when I print the quality of printed card is not good, I used ImageSnapshot class to print and used dpi 300.