Unable to log on through SAP GUi

Hello Gurus,
Issue: Unable to logon through SAP GUI after giving the username and
Password. When the user name and password is entered the system gets to the process mode but hangs in the same stage.
When i check the R3trans -d the following is the result:
This is r3trans version 6.13 (release 640 - 12.12.05 - 14:24:42).
unicode enabled version
2EETW169 no connect possible: "DBMS = ORACLE --- dbs_o
ra_tnsname = 'B3Q'"
r3trans finished (0012).
It means the r3trans is not able to connect the DB. Please suggest a
OSS note for this issue or solution for this issue asap. This
is very urgent.
We are using Nw04,BW3.5, BI3.53, EP6.0 & Oracle 9i. The following are
the support pack details:
Operating system Windows NT
Machine type 4x Intel 8
Database system ORACLE
Release 9.2.0.4.0
Kernel release 640
Compilation NT 5.0 2
Patch Level 109
ABAP Load 1521
CUA load 16
Mode opt
DB client lib. OCI_920_SHARE
DB releases ORACLE 9.2.0..,
DBSL version 640.00
DBSL Patch Level 109
SAP_ABA 640 0016 SAPKA64016 Cross-
Application Component
SAP_BASIS 640 0016 SAPKB64016 SAP Basis
Component
PI_BASIS 2005_1_640 0007 SAPKIPYJ67 Basis Plug-In
(PI_BASIS) 2005_1_640
SAP_BW 350 0016 SAPKW35016 Business
Information Warehouse
BI_CONT 353 0009 SAPKIBIFP9 Business
Intelligence Content
AOFTOOLS 400_640 0000 - Add-On
Assembly Kit (AOFTOOLS 400_640)
Enterprise Portal 6.0:
J2EE Engine 6.40 PatchLevel 104329.313
Portal 6.0.17.0.0
Knowledge
Management
Collaboration 6.0.17.0.0 (NW04 SPS17)

Hello Veer .
Please try to do the following  ...
<b>ORA-01017: Invalid username/password; logon denied</b>
Message ORA-01017 can occur both in step 1a) and in step 1b) or 2). Depending on this, the problem can be corrected as follows:
1a) log entries:  Logon as OPS$ user to get <sapowner>'s password
                  Connecting as /@<sid> on connection 0 ...
ERROR => OCI-call 'olog' failed: rc = 1017
ERROR => CONNECTfailed with sql error '1017'
If you intend to use the standard password for <sapowner> anyway, you can ignore the error message at this point, as the OPS$ mechanism is not needed at all and the connect is carried out using <sapowner>/sap successfully afterwards. Note, however, that BR*TOOLS require a working OPS$ mechanism when executing via DB13!
           Otherwise, make sure that an appropriate OPS$ user is set up. To do this, proceed as follows:
Check whether the parameter
os_authent_prefix = ops$
is set correctly in init<sid>.ora. If you have to make a change, restart the database afterwards.
On Windows, make sure that the following parameter is set in sqlnet.ora:
SQLNET.AUTHENTICATION_SERVICES = (NTS)
Determine which operating system user <os_user> wants to create the connection. If this involves a connect initiated out of the R/3 System (for example, work process connect, DB13 actions), user <sid>adm is used under UNIX and user sapservice<sid> under NT. If you manually called the program that executes the connect, the user you are using is decisive here.
Use SVRMGRL to check whether the user OPS$<os_user> (or OPS$<domain>\ <os_user> for NT with Oracle >= 8.1.5) has been created at database level:
SELECT * FROM DBA_USERS WHERE USERNAME = 'OPS$<os_user>';
(for <os_user>, always use upper case)
If the system does not return an entry, create the user:
CREATE USER "OPS$<os_user>" DEFAULT TABLESPACE <user_tsp>
  TEMPORARY TABLESPACE PSAPTEMP IDENTIFIED EXTERNALLY;
Note that the name of the OPS$ user must be specified completely in uppercase letters (also the host and domain names in case of NT and W2K), since a logon as OPS$ user will not work if it is not:
  wrong:   CREATE USER "OPS$c11adm" DEFAULT TABLESPACE ...
          CREATE USER "OPS$sapdom\C11ADM" DEFAULT TABLESPACE ...
  correct: CREATE USER "OPS$C11ADM" DEFAULT TABLESPACE ...
           CREATE USER "OPS$SAPDOM\C11ADM" DEFAULT TABLESPACE ...
Tablespace <user_tsp> is used when newly creating objects, when no explicit tablespace name is specified. In connection with R/3, this is almost never the case. Therefore, you can specify any tablespace. Proposal:
         R/3 <= 4.6D:  <user_tsp> = PSAPUSER1D
        R/3 >= 6.10:  <user_tsp> = PSAP<sid>USR
Check whether the OPS$ user has sufficient authorizations. The following statement must at least return CONNECT and RESOURCE:
SELECT GRANTED_ROLE FROM DBA_ROLE_PRIVS
  WHERE GRANTEE = 'OPS$<os_user>';
If CONNECT and/or RESOURCE is missing, you can grant theseauthorizations as follows:
GRANT CONNECT, RESOURCE TO "OPS$<os_user>";
If all the settings described above have been made correctly on NT/ Windows 2000, but the error ORA-01017 is still displayed during the OPS$ Connect, the cause may be a start user set incorrectly for the SAP Service. Change to the services overview of the operating system and check the user who starts the service SAP<sid>_<instance_number>. If the user is not sapservice<sid>, enter sapservice<sid>. Other users (such as the local administrator) do not have an OPS$ user in the database, which leads to error ORA-01017. Check also whether the start user sapservice<sid> is a local user or a domain user. Domain users can be identified by the preceding domain name. Depending on this, the following OPS$ user should exist on database level:
Domain user:    <domain>\sapservice<sid>
OPS$ user:       OPS$<domain>\sapservice<sid>
Local user:      sapservice<sid>
OPS$ user:       OPS$<local_host>\sapservice<sid>
1b) log entries:  Logon as OPS$ user to get <sapowner>'s password
                  Connecting as /@<sid> on connection 0 ...
                  Now I'm connected to ORACLE
                  Got <sapowner>'s password from table SAPUSER
                  Disconnecting from connection 0 ...
                  Now I'm disconnected from ORACLE
                  Try to connect with the password I got from OPS$-user
                  Connecting as <sapowner>/<pwd>@<sid> on connection 0
ERROR => OCI-call 'olog' failed: rc = 1017
ERROR => CONNECTfailed with sql error '1017'
           An ORA-01017 message at this point indicates an incorrect <sapowner> password in the SAPUSER table. In this situation, proceed as follows.
Set the password consistently in SAPUSER and in the Oracle DDIC using the following BRCONNECT call (BRCONNECT >= 6.10):
brconnect -u system/<password> -f chpass -o <sapowner> -p <password>
Otherwise, change the password in the SAPUSER table:
DELETE FROM "OPS$<sid>ADM".SAPUSER;
INSERT INTO "OPS$<sid>ADM".SAPUSER VALUES ('<sapowner>', '<password>');
Important: The SAPUSER table should only exist once in every system: for OPS$<sid>ADM. For this reason, only execute the above-mentioned statements for OPS$<sid>ADM - irrespective of the operating system user actually being used. All other OPS$ users can access the SAPUSER table using a synonym.
If the connect still terminates in the same way, check once more the section "General checks".
2) log entries:  Try to connect with default password
                Connecting as <sapowner>/<pwd>@<sid> on connection 0
ERROR => OCI-call 'olog' failed: rc = 1017
ERROR => CONNECT failed with sql error '1017'
If you want to use the standard password sap and do not need the OPS$ mechanism, reset the <sapowner> password to sap:
ALTER USER <sapowner> IDENTIFIED BY sap;
If you do not want to use the standard password, the error cannot be avoided at this point. Set up the OPS$ mechanism as described above instead.
Regards
Rahul
Please Award points if help is useful  *****

Similar Messages

  • SYNTAX_ERROR unable to log in to SAP system Syntax error in program "SAPMSE

    hi SAP Experts,
    I have applied Basis patch 12 and I scheduled the background.  Backgroud job was terminated. System became slow. Then I stopped the server and restarted.  Now, I am unable to log in to SAP GUI by entering Username and Password and getting syntax error.
    Syntax error in program "SAPMSEM1".
    What happened?
    Error in the ABAP Application Program
    The current ABAP program '????????????????????????????"
    terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occured in program "SAPMSEM1" in include
    "CL_SALV_FORM_ELEMET==========CU" in
    line 13:
    "the type "IF_SALV_FORM_CONFIG" is unknown."
    The include has been created and last changed by:
    Created by: "SAP "
    Last Changed by: "SAP "
    I am unable to access any transction code.
    Please help me..
    Thanks in advance...
    Raju

    hi,
    Thanks for your response.
    i haven't take any back up.  can u pls tell me step by step procedure to implement the SP with TP.
    your answer will be helpful..
    Regards
    Raju

  • Unable to log in to SAP ES workplace HU2 system; Client 800

    Hi,
    I'm unable to access the below SAP IDES system using the link https://esworkplace.sap.com
    System  - HU2
    Client *   - 800
    User *    - P610131
    I get this message. 
    User account not in validity date.
    To log on please register on SCN: http://www.sdn.sap.com/irj/sdn/soareg
    Assistance regarding SOA can be received in the SCN forum:
    Service-Oriented Architecture (SOA) and SAP
    You can report problems on single services by creating a Customer Messages on the respective application component.
    For assistance with ES Workplace systems use CA-SOA-SWP.
    Request to provide the necessary access. If this is not the right forum to have this posted, please let me know the right forum to raise this issue.
    Thanks
    G Raj

    Hi Raj,
    It sounds like your access is expired. Have you tried re-registering?
    Best Regards, Trevor

  • How to log on to SAP GUI 6.4?

    Hi
    after installing SAP gui 6.4 i have to log on into sap
    i read many Documents that says i have to copy a saplogon.ini
    to the SAP directory when i copy this file in description
    i have logon names.when i logon with one of them i have to connect to Internet and have a username and password.
    but i want to make logon without connect to internet.
    what should i do?

    Hi Javad,
    the server installations I mentioned are compete insofar as you can run them and connect to the server using SAP GUI. You can also run the basic transactions and do ABAP development.
    I assume when you say 'complete system' you mean including all business applications. This is not available as some sort of download, and I don't think it's feasible to set this up just for testing.
    Best regards,
    Christian

  • Unable to log into the SAP River RDE environment (HTTP Status 405)

    Hi All,
    Is anyone else facing this issue as well? I have previously been able to access the River RDE, but now I am unable to login.
    From the Hanatrial cockpit, when I access my RDE subscription, and click on the rde link, I get an error message as follows:
    HTTP Status 405 -
    type Status report
    message
    description The specified HTTP method is not allowed for the requested resource.

    Getting the same error. Last week the RDE subscription did work. So I think that there is a general config problem (cause also no updates were done in the River RDE setting up documentation -> SAP HANA Cloud Platform).
    Regards, Florian

  • Send error logs email through SAP workplace

    Hi,
    I need to send 4 different error log files to a unique user's email using SAP workplace, from my program. Plz provide a solution.
    Thanks.

    Hi,
    I need to send 4 different error log files to a unique user's email using SAP workplace, from my program. Plz provide a solution.
    Thanks.

  • Unable to log in B/W

    Hi !
    1)During logging in B/W module through Programmes - system throws error message as "Runtime error 91";object variable or with block not set.
    2)When I tried to log in through SAP GUI of B/W system throws an error as
    "http://sapprbiw.hcc-india.com:8100/sap/bw/BEx?cmd=idoc&infocube=ZPS_MC01_Q0004&sap-lang application not found"
    2nd message after that comes is "E3:unable to start child process"
    Executable file name
    "http://sapprbiw.hcc-india.com:8100/sap/bw/BEx?cmd=idoc&infocube=ZPS_MC01_Q0004&sap-lang application not found"
    Windows NT error 5:DLL or net access
    3) But if I keep my Internet explorer open (any page even home page) I am able to log in & see my querries..
    What is the problem?How I can get rid of it?

    Shailesh,
    try the following :
    1. Disable friendly HTTP warnings in IE ( under advanced settings under options )
    2. http://sapprbiw.hcc-india.com:8100/sap/bw/BEx?cmd=idoc&infocube=ZPS_MC01_Q0004&sap-lang application not found - what are you trying to do here ?
    Please explain the process / procedure being attempted by you.
    Arun
    Assign points if it helps..

  • Unable to Log-in *SAP System Message : Error while reading a Dynpro*

    Hi,
    We are facing issues while logging-in through SAP logon 710.
    The system throws an error dialog box with the below message:
    SAP System Message : Error while reading a Dynpro
    At the OS level Java process  server0 is in stop status with exit code -11113. In ABAP WP Table all processes are in wait status.

    Hi Please find the contents of std_server.out below.
    stdout/stderr redirect
    node name   : server0
    pid         : 4124
    system name : KEC
    system nr.  : 01
    started at  : Mon Jul 27 15:44:57 2009
    [Thr 5656] MtxInit: -2 0 0
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    SAP J2EE Engine Version 7.00   PatchLevel 110760.44 is starting...
    Loading: LogManager ... 250 ms.
    Loading: PoolManager ... 0 ms.
    Loading: ApplicationThreadManager ... 47 ms.
    Loading: ThreadManager ... 16 ms.
    Loading: IpVerificationManager ... 0 ms.
    Loading: ClassLoaderManager ... 16 ms.
    Loading: ClusterManager ... 93 ms.
    Loading: LockingManager ... 32 ms.
    Loading: ConfigurationManager ... 1032 ms.
    Loading: LicensingManager ... 0 ms.
    Loading: CacheManager ... 93 ms.
    Loading: ServiceManager ...
    Loading services.:
      Service runtimeinfo started. (16 ms).
      Service cross started. (31 ms).
      Service file started. (31 ms).
      Service memory started. (31 ms).
      Service timeout started. (16 ms).
      Service trex.service started. (32 ms).
      Service userstore started. (0 ms).
      Service jmx_notification started. (15 ms).
      Service p4 started. (62 ms).
      Service classpath_resolver started. (16 ms).
      Service deploy started. (3722 ms).
      Service MigrationService started. (31 ms).
      Service bimmrdeployer started. (0 ms).
      Service log_configurator started. (5177 ms).
      Service locking started. (0 ms).
      Service http started. (126 ms).
      Service naming started. (157 ms).
      Service failover started. (16 ms).
      Service appclient started. (31 ms).
      Service javamail started. (47 ms).
      Service ts started. (47 ms).
      Service jmsconnector started. (47 ms).
      Service licensing started. (15 ms).
      Service connector started. (93 ms).
      Service iiop started. (94 ms).
      Service configuration started. (16 ms).
      Service webservices started. (265 ms).
      Service dbpool started. (1204 ms).
      Service UT started. (0 ms).
    Jul 27, 2009 3:45:09 PM         com.sap.security.core.persistence [SAPEngine_System_Thread[impl:5]_54] Fatal: Initialization of ABAP data source (com.sap.security.core.persistence.datasource.imp.R3Persistence) failed: "     Error while reading a dynpro                                        ". This message is critical if it appears during the startup of the AS Java.
    Jul 27, 2009 3:45:09 PM  ...re.server.ume.service.UMEServiceFrame [SAPEngine_System_Thread[impl:5]_54] Fatal:
      service com.sap.security.core.ume.service ================= ERROR =================
    Core service com.sap.security.core.ume.service failed. J2EE Engine cannot be started.
    com.sap.engine.frame.ServiceException: Start of UME service failed. Check help topic "Start of UME Service Failed". Technical details:      Error while reading a dynpro                                       
         at com.sap.security.core.server.ume.service.UMEServiceFrame.start(UMEServiceFrame.java:398)
         at com.sap.engine.frame.ApplicationFrameAdaptor.start(ApplicationFrameAdaptor.java:31)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:81)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:152)
    Caused by: com.sap.security.core.persistence.datasource.PersistenceException:      Error while reading a dynpro                                       
         at com.sap.security.core.persistence.datasource.imp.R3PersistenceBase.newPersistenceException(R3PersistenceBase.java:236)
         at com.sap.security.core.persistence.datasource.imp.R3PersistenceBase.init(R3PersistenceBase.java:491)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactoryInstance.<init>(PrincipalDatabagFactoryInstance.java:446)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.newInstance(PrincipalDatabagFactory.java:164)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.getInstance(PrincipalDatabagFactory.java:117)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.getInstance(PrincipalDatabagFactory.java:63)
         at com.sap.security.core.InternalUMFactory.initializeUME(InternalUMFactory.java:221)
         at com.sap.security.core.server.ume.service.UMEServiceFrame.start(UMEServiceFrame.java:287)
         ... 6 more
    com.sap.engine.frame.ServiceException: Start of UME service failed. Check help topic "Start of UME Service Failed". Technical details:      Error while reading a dynpro                                       
         at com.sap.security.core.server.ume.service.UMEServiceFrame.start(UMEServiceFrame.java:398)
         at com.sap.engine.frame.ApplicationFrameAdaptor.start(ApplicationFrameAdaptor.java:31)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:81)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:152)
    Caused by: com.sap.security.core.persistence.datasource.PersistenceException:      Error while reading a dynpro                                       
         at com.sap.security.core.persistence.datasource.imp.R3PersistenceBase.newPersistenceException(R3PersistenceBase.java:236)
         at com.sap.security.core.persistence.datasource.imp.R3PersistenceBase.init(R3PersistenceBase.java:491)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactoryInstance.<init>(PrincipalDatabagFactoryInstance.java:446)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.newInstance(PrincipalDatabagFactory.java:164)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.getInstance(PrincipalDatabagFactory.java:117)
         at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.getInstance(PrincipalDatabagFactory.java:63)
         at com.sap.security.core.InternalUMFactory.initializeUME(InternalUMFactory.java:221)
         at com.sap.security.core.server.ume.service.UMEServiceFrame.start(UMEServiceFrame.java:287)
         ... 6 more
    [Framework -> criticalShutdown] Core service com.sap.security.core.ume.service failed. J2EE Engine cannot be started.
    Jul 27, 2009 3:45:09 PM             com.sap.engine.core.Framework [SAPEngine_System_Thread[impl:5]_54] Fatal: Critical shutdown was invoked. Reason is: Core service com.sap.security.core.ume.service failed. J2EE Engine cannot be started.

  • Diagnosing if the EUP is up from inside SAP GUI??

    What transaction code, will show you if users are logged in through the GUI or the Portal. Through sm04 you can see the session type as being "GUI" but how can I diagnose, from the SAP side whether users are able to get in through the portal. I always thought that a "RFC" (Remote Function Call) would show up as being the session type through sm04, if the user was coming in through the Portal…I'm a SAP Basis Admin, who only comes in through the GUI. Please advise..Thanks.

    Hello James,
    it depends what iViews are used. If the Users use RFC-IViews then you will see RFC Sessions. When they use a SAP Transactin iView you will see a GUI Session. But they can also use BSP IViews.
    Regards
    Gregor

  • Unable to Logon to the SAP System after Installing SAPNW2004sSneakPreviewAB

    Hi
       I Installed SAPNW2004sSneakPreviewABAP.
       If i am trying to run the NSP Server it first Starting (Showing Blue Color ) and after few seconds it is becoming Yellow in Color. When i cross checked in Process list it is showing one of the process in yellow color i.e.
    disp+work.EXE whose description is Dispatcher
    and Status is showing as "Running but Dialog Queue standstill"
    May be because of this i am unable to log on the SAP System.
    One more thing i got a licence key from SAP but when i am trying to intall licence key using saplicence -install this is also not working it is showing following error message.
    SAPLICENSE (Release 700) ERROR ***
        ERROR:   Can not set DbSl trace function
        DETAILS: DbSlControl(DBSL_CMD_IMP_FUNS_SET) failed with return code 20
        RC-INFO: error loading dynamic db-library - check environment for:
                 dbms_type = <db-type>  (e.g. ora)
                 DIR_LIBRARY = <path to db-dll>  (e.g. /usr/sap/SID/SYS/exe/run)
    Could you please help in this

    Please refer to this post as this is a duplicate.
    Problem after installing SAPNW2004sSneakPreviewABAP
    Please close this post.  Thanks.
    Regards,
    Rich Heilman

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

  • Regarding SAP GUI For HTML

    Hi Everyone,
    My Requirement is Endusers needs to access applications from portal using SAP GUI For HTML.
    Because Some users in site or remote place they need Need to access applications.
    The Problem With SAP GUI For Windows it requires SAP GUI S/W Every Workstation.
    Before What i requires and what approach should i follow.
    What i will do in Portal,ITS And WAS.
    Please Do Needful.
    Thanks
    SubbaRao Chinta

    Hi Sarkar,
    I Follow Your Article.i created service under its in ecc and activate the service.
    and login portal and created sap IAC iview.after i click on preview
    i got the error below
    The following error text was processed in the system ECC : System error
    The error occurred on the application server epsap05_ECC_15 and in the work process 1 .
    The termination type was: ABORT_MESSAGE_STATE
    The ABAP call stack was:
    SYSTEM-EXIT of program SAPLSU
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system ECC in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server epsap05_ECC_15 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then yo
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    What Can i DO for enabling Apllications Through SAP GUI.
    Thanks
    SubbaRao

  • REG: Employee Full & Final Settlement through SAP

    Dear All,
    We have oflate implemented SAP HCM ECC5.0 version. We have started running the activities like payroll, personal actions etc throu it.
    As on date we are running the seperation actions through PA40 but unable to run FFS through SAP. Could anyone help me in telling the process how to run Full & Final Settlement in SAP.
    The entire system is configured, but we are unaware of the t.code and process we need to follow for doing the same.
    Pls. Advise on the T.Codes and the process we need to follow.
    Thanks,
    Srikanth

    Hi Srikanth,
    This link gives you complete details of Termination work Bench.
    http://help.sap.com/saphelp_erp2005vp/helpdata/EN/dd/38a63a04227748e10000000a11402f/frameset.htm
    Regards,
    Evani

  • SAP GUI Logon does not have any anything to log on under systems

    Hi everyone!
    My friend installed SAP GUI 7.10 patched to 15 a few months back.
    She was able to log in during that time since there were many servers/groups under the systems tab.
    Right now, after her laptop has been recently cleared of a virus attack, she could no longer log on to any servers/groups because there were nothing there!!!
    She is worried for a few questions:
    FIRST: If she uninstall the program, will she lose her saved files that she worked on during those few months??
    SECOND: Where can the saved files be located?? So that backup can be done when uninstalling SAP GUI 7.10
    I really hope to get a reply soon!!! ( She needs to get her SAP up and running so she can continue on with her practicals since there is some kind of test related to SAP also... )
    Thanks!!!!!!!!!!!!! Really grateful if there is a reply...

    Hello
    Please also be aware that there is the option to re-install the latest SAP GUI with latest patch.
    563161 - SAP GUI, SAP ITS & SAP IGS patches on Service Marketplace
    If you would like to be notified when one of the patches is released please subscribe to the following thread in SAP Developer Network: Notification service for news about SAP GUI for Windows
    1053737 - Expected release dates for SAP GUI for Windows & ITS patches
    Regards.

  • Problem opening Crystal Report from SAP GUI through VPN

    Hi Everyone,
      I am facing an issue with opening the crystal report from SAP BW Role menu(SAP GUI). The issue is only with the BW Users who are connecting to the Client systems through VPN. All the settings are done perfectly in the Transaction /CRYSTAL/RPTADMIN and SICF for the CE_URL.
    For those who are in the client network it works fine. Please see the URLs generated in both the cases,below.
    From Client N/W
    [http://sapbobj:8080/SAP/jsp/Action_Dispatch/dispatch.jsp?sap_client=100&cmsname=sapbobj:6400&language=EN&sap_sysid=D40&bw_id=4HUFYJ3XBZ7QLP5HIDYPR7PR6&sap-client=100&actionName=SAP_CrystalReport_View&appKind=InfoView&service=%2FInfoViewApp%2Fcommon%2FappService.do&loc=&initialFolderId=null]
    Through VPN
    [http://sapbwd.abc.com:8100/sap/bw/ce_url?(ce_protcl):(DS)(ce_server)/(ce_path_pr)/viewreport.csp(Q)bw_id=4HUPI3I78CG4S4EDH7XSDP736&sap_sysid=(sysid)&sap_client=100&language=EN&sap-client=100]
    where "sapbobj" is the BOBJ system and "sapbwd" is the SAP BW Dev box.
    For me it seems to be something related to the N/W. Please provide me your valuable inputs to solve this issue.
    Thanks in Advance,
    Koka M
    Edited by: Madan Koka on May 19, 2010 5:18 PM

    Hi,
    I'm also facing the same issue. when try to open my report the URL doesn;t taking "bw_id".
    It is blank for all transported reports.
    Any advice..
    Thanks,
    Jothi

Maybe you are looking for

  • Cannot resolve symbol java.awt.graphics

    // DrawRectangleDemo.java import java.awt.*; import java.lang.Object; import java.applet.Applet; public class DrawRectangleDemo extends Applet      public void paint (Graphics g)           // Get the height and width of the applet's drawing surface.

  • Filtering out rows which include 2 underscores

    I was wondering if anyone has an example of code which you can exclude data which includes 2 underscores next to each other. Here is my query which doesn't work: SELECT i.interface_id, i.interface_name, s.site_id, s.site_name, s.database_server_id FR

  • Have a schema derived from object model, but only traditional DB tools?

    Have a customer name, need to find the orders he placed, and the line items of the orders? You need to enter 3 queries: select * from customer where customer_name = ... select * from order where customer_id = ... select * from line_items where order_

  • Where can I find what cameras are supported by 3.2.4?

    Where do I find the list of cameras supported by Aperture 3.2.4

  • How to make Matcher stop once a reg exp match is found

    Is there a way to make the regular expression Matcher stop reading from the underlying CharSequence once it finds a match? For example, if I have a very long String and a match for some regular expression is at the beginning of the String, can I make