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

Similar Messages

  • 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 error Hostname unkown

    Hi,
    My system connection parameters as below:
    Application Server:  111.11.111.111
    System Number: 00
    System ID: ECP
    When I tried to log on, I got the error message  Hostname ''111.11.111.111" Unknow, detail information
    Component: NI
    Release:      710
    Version:       39
    Module:        ninti.c
    Line:             895
    Method:        NiPGetHostByName: ''111.11.111.111" not found
    Return code: -2
    System Call: getaddrinfo
    Counter:       2
    I can successfully ping the server and telnet it.
    But I can log on the other client's system, which setting is the same except the application server server different.
    Any idea about this issue?
    Thanks in advance.
    Edited by: Ben Huang on Mar 12, 2008 11:30 PM

    Hi.  Try to include trace files on fronted according Note 305363, also on your place  i would include the logging mode on your firewall and read the logs. The OS is XP or VISTA ?
    I'm  have tried to write at myself obviously wrong name of a server
    Error as at you write coming. Check your DNS settings and try to login with name of server instead of IP.
    Also check the IP which you write, check up all dots (check is not commas ?) and units more closely.
    Regards.
    Edited by: Sergo Beradze on Mar 13, 2008 8:38 AM

  • 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

  • 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

  • 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!

  • Function call in SAP GUI with errors

    Dear All,
                 When i am calling FM of Comports using OLE Integration i got " Function call in SAP GUI with errors" error
    now my front end version is 6.40. how to solved this problem.
    In my Function Module i am creating object like this
    CREATE OBJECT O_OBJ 'MSCOMMLib.MSComm.1'.
        IF SY-SUBRC <> 0.
          RAISE NO_CREATE_OBJECT.
        ENDIF.
    it raised the sy-subrc = 2 this error is "Function call in SAP GUI with errors"
    send to me how to handle this error.
    Thank,
    Vijay.g

    Hi Vijay,
    We are facing the same issue.
    Interestingly
    From program's code only we are facing this issue.
    If we display the program and Execute (Direct processing), it is working fine.
    Can you please share how you resolved this issue.
    Thanks
    Sreedhar

  • Transaction iView( Tcode) Error: Function call in SAP GUI with errors

    Hey Guys:
                  I use Transaction iView to show the ABAP application on Portal. The application works to import data from client to BW. After I fill all the information and execute the application, the system returns the error message " Function call in SAP GUI with errors".
    The ABAP application works fine on SAP GUI, so it should not be the program problem.
    Any Suggestion for this will be nice. Thanks for your help.

    Hey Duy:
            Thanks for your response. I check the servers which i have access, and all of them cannot work correctly.
    First, other iViews(Dynpro,BW Report,BSP,KM...) work fine.
    Second, our backend system is a BW server.
    I try to do so on our EP production and development, also connect them to our BW production and development servers. All of those are failed and have the same problem.
    The t-code comes from our abap program and register on BW server, and hte program works fine when I use SE38 to execute it.
    PS. The Transaction iView works fine before, but I have no idea why it just crash now.
    Please let me know if you have any suggestion about this.

  • 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

Maybe you are looking for

  • Convert a counter to frequency

    Hi, I am using two counters on a 6023E board. I have two pulse generators which give 1000 pulses in one rotation. How can I convert the counts to frequency or speed in LabView? Greetings, Erik.

  • Log and transfer question

    OK I was wondering if when I import AVCHD from my hard drive if the original files would be damaged at or removed at all. I just had a slight issue, and was wondering if that would be a problem. Any advice is appreciated. Thanks!

  • My Mac's display went out and I'm using an external display,

    Im having problems with the display size of GarageBand, is their any way to adjust the software?

  • How to batch remove the cache data

    I used the Coherence for .NET, and I want to remove some keys from cache. I only found a method Remove(string key) in the Tangosol.Net.INamedCache interface, it can remove only one key each time, it is very slowly. My cache client and server in diffe

  • 1.2 Problem with Bubbles and Music App

    Ok, so I updated to WebOS 1.2.0, Sprint Configuration 1.8. There are 2 apps that I use all the time on the phone: Music player (via BT headphones) and the games Bubbles (Im addicted to it). Once I updated to 1.2.0 I have noticed that when the 2 of th