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

Similar Messages

  • How to log in standard sap way in a jsp/servlet project

    Hi expert,
    To log and trace in sap standard mechanism always confuse me a lot.
    Is there any how-to document for j2ee project?
    I know for wdj you can add log configuration by select 'create log configuration file' in context menu, but I can not find this for a j2ee project.
    I would like to see the log in LogViewer of VA, put all logs together in sap management make sense in our project.
    Thank you for your hints.
    William

    Hi,
    f
    ile=new FileLog("f:/WebServiceTrace/trace2.%g.log", 800000, 10,                                        new  TraceFormatter());
    The above code specifies the path for your log file.
    Then add this file as a log location and then log the traces. For this you can use the following code like:
    Location location=Location.getLocation(className);
              location.addLog(file);
              location.setEffectiveSeverity(Severity.ALL);
              location.entering(methodName);

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

  • How to log in to SAP MII by using a custom xApp?

    Hi there,
    I'm developing a custom xApp with a context root of /mycustomapp
    I use some security contraints for it so the user has to log in to view the xApp.
    As I use some MII services the user has to be logged in to SAP MII, too. However, logging in to SAP NetWeaver doesn't automatically sign in the user to SAP MII, too.
    Is it possible at all?
    Accessing /mycustomapp leads to a login mask, but the user should be logged in to SAP MII, too.
    Regards
    Tobias

    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
      xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
      id="WebApp_ID" version="2.5">
      <display-name>mycustomapp</display-name>
      <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.htm</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>default.html</welcome-file>
      <welcome-file>default.htm</welcome-file>
      <welcome-file>default.jsp</welcome-file>
      </welcome-file-list>
      <security-constraint>
      <display-name>Authentication of Users</display-name>
      <web-resource-collection>
      <web-resource-name>My Resource Name</web-resource-name>
      <url-pattern>/*</url-pattern>
      <http-method>GET</http-method>
      <http-method>POST</http-method>
      </web-resource-collection>
      <auth-constraint>
      <role-name>My_User_Role</role-name>
      </auth-constraint>
      </security-constraint>
      <login-config>
      <auth-method>FORM</auth-method>
      <realm-name>MyRealm</realm-name>
      </login-config>
      <security-role>
      <role-name>My_User_Role</role-name>
      </security-role>
    </web-app>
    web-j2ee-engine.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-j2ee-engine xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="web-j2ee-engine.xsd">
      <spec-version>2.4</spec-version>
      <security-role-map>
      <role-name>My_User_Role</role-name>
      <server-role-name>My_User_Role</server-role-name>
      </security-role-map>
    </web-j2ee-engine>
    Besides having the role My_User_Role my user also has the SAP_XMII_User role (and the corresponding developer roles).
    Regards
    Tobias My_User_Role

  • How to deliver items in SAP R/3 using sap gui

    Hi all,
        I have created an order.I want to deliver the items contained in it. pls tell me how to do it using sap gui.
    Regards,
    Kiran.

    Hi Anil
    You can create a normal ABAP report to delete or modify records from database table.
    You can use statements such as delete or modify for this purpose.
    First select the records from table bring them into internal table and use that table to delete the records from database.
    Note: If you are trying to delete records from Z tables then this approch can be adopted but if you are dealing with Standard tables it`s not a option to directly delte the reocrds from database table .
    For that purpose you can use BDC or any othe available FM/BAPI.
    Note :When you are deleting records from the database table please use locking function module to lock the database entries.
    Regards
    Neha

  • How to Install and configure SAP Java GUI on windows 2003 sp1.

    Dear All,
    Can I step-by-step on how to install and configure SAP GUI for Java on windows 2003 sp1.
    Pls come with brief as I am completely new to Java and I am practicing the same on my home system first. I have latest SAP Java Pack with me.
    Regards,
    Dillu

    hi,
    Please check this link and install accordingly
    SAP GUI Family
    Regards,
    Naveen.

  • 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

  • Webdynpro Vs SAP GUI

    Hi,
    Our requirement is to make SAP transactions available over internet.We are considering below two options.
    1) SAP GUI using VPN
    2) Portal with java webdynpro
    If we are not really interested in initutive UI , whay do we need to consider weebDypro as SAP GUI is the proven technology.
    WebDynpro is considerably slower than SAP GUI, What is the need for using webDynpro over SAP GUI.
    We have requirements for RF enabled trasactions.How simple to develop weebdypro applications for RF enabled devices.
    Please explain How webdynpro is better than SAP GUI via VPN considering the above scenario ?
    Thanks,
    Abdul Raheem S

    Hi,
    1)The SAP GUI for HTML is used in combination with the ITS technology. It runs inplace in the browser. The contents are generated by the Internet Transaction Server (ITS). The SAP GUI for HTML need not be installed separately on the client computers.
    2)SAP GUI for JAVA:  This GUI runs as Java applet inplace in the browser
    You must provide users with the SAP GUI for Java on the Web server and edit the properties in service file Transaction_Configuration. To do so follow this link
    http://help.sap.com/saphelp_nw70/helpdata/en/b7/17c43b6312210fe10000000a11402f/content.htm
    3)SAP gui for windows: SAP GUI for Windows must be installed locally on the client. It is started in the browser
    refer this link for more details
    http://help.sap.com/saphelp_nw70/helpdata/en/fe/13c43bb7137503e10000000a11402f/content.htm
    regards,
    Ameya
    ***reward points if useful***

  • Interactive SAP GUI Application - Publish-Subscribe Model

    Customers want to pay for such interactive applications: SAP GUI subscribes to external events, provides visual feedback for these events, and popups other screens related to events. And all this without user action (almost:).
    From my preliminary investigations, SAP implements https://www.sdn.sap.com/irj/sdn?rid=/webcontent/uuid/04291088-0901-0010-ebab-ccfd2c848355">web [original link is broken] [original link is broken] but this is a reference to the standards only without any clues how this is related to SAP GUI applications. What techniques has been really and successfully used?
    Sharing your experience writing interactive application will be greatly appreciated.

    You can deploy both Applications and Packages using the Application Catalog.
    Just make sure to target a user collection.
    Deploy to users as "Avaliable" and it will show up in the Application Catalog.
    Ronni Pedersen | Microsoft MVP - ConfigMgr | Blogs:
    www.ronnipedersen.com/ and www.SCUG.dk/ | Twitter
    @ronnipedersen

  • How to change Port for SAP Client on SAP R/3 Server?

    The defualt port for SAP GUI Client is 3200.
    How could I change the SAP GUI Client port to say 5222 instead of 3200?
    How can I view the full list of all ports required by SAP R/3?

    Freddy,
    I don't have the document handy but there was a document on service.sap.com/security which would give you a list of all the ports. SAP's wording is some thing like "specific ports are fixed and SAP does not support changing that port number".
    In case of GUI client and your example of 3200, as you know 00 is based on the fact that that is your instance number. You could change last two numbers by assigning a different instance number (and not 00).
    Thanks
    BMG

  • SAP GUI buffer

    Hi Guys,
    I need your help. I am not able to find buffer in SAP gui. Like if I access TSP01 table from SE16 earlier, but again if I run SE16 t-code but in table name area I cant find TSP01 table name in buffer. I hope you can understand. Please let me know how to activate buffer in SAP gui.
    Thanks & Regards,
    Charanjit Singh.

    There is a button called customize local layout -> options -> local data.
    Check this [screenshot|https://weblogs.sdn.sap.com/weblogs/images/251794761/sapgui.png]
    Cheers Michael
    BTW, it the cache might also not work, if you selected "slow connection" in the saplogon.

  • SAP license key error:  no valid license found:  cannot log into SAP GUI

    I deleted temp license from slicense on SM box, since I had already installed new digital license from SAP.  Well, later I tried to log in again and was locked out.  After some research, I found "sap license check failed" in the log files, java will not come up, and the hardware key has changed on me, so the valid license that was active before is not showing up now. 
    I applied for a new license with new hardware key and attempted to install from cmd prompt, using saplicense -install ifile=c:license.txt, but it gets an error.  I put a trace on it and appears it cannot read license file key.  I also tried to install another temp license, but that failed since no other previous valid license was found.  At this point, I'm thinking I need to manually insert the license key into the database, but not sure what table or exactly how.  SAP has not provided a solution yet.
    I believe the hardware key changed due to renaming the server (we took out a hyphen in name) and had also reinstalled afterwards.
    Has anyone else run into this issue?

    Yes, I wish it were that simple, but I cannot even bring up the logon screen.  SAP GUI returns a message, resource temporarily unavailable.  I looked in SAP MMC syslog and found several entries, "SAP-Basis System: No license found for hardware ID DLIC_HWIDKE"
    I tried to install temp license from cmd prompt, but it says refuses and says no old or expired license found.  I also tried to install the new license I applied for from SAP with new hardware key using saplicense -install ifile=license.txt and that failed as well. 
    For NW2004s, is it even possible to install a digital license using cmd prompt?
    Ben

  • Possible to view MS SQL Server Log in SAP GUI?

    Hi,
    I am wondering if I can view the SQL Server log in SAP GUI using a transaction code.
    I don't readily see how to do this with the TEs.  It would be helpful to see things like: who has tried to log into the SQL Server via a Database Management tool : agnostic to SAP.: is SQL Server Management Studio or DBArtisan or other services.
    thanks
    Chris

    Hi chris
    Yes,you can view the Sql server log in transaction code ST04 & DBA Cockpit in SAPGUI.
    Kindly refer the SAP notes.
    139945 - SAP Database Monitor for MS SQL Server
    1027512 - MSSQL: DBA cockpit for basis release 7.00 and later
    Regards
    Ram

  • How to log in to Service Desk to create sample message to SAP?

    Dear all,
    How to log in to Service Desk under my Solution Manager server to create sample message to SAP under Component: SV-SMG-SUP?
    Regards
    GN

    Hi GN,
    You have different options to create messages in test component SV-SMG-SUP-TST:
    1. if you are on 7.1 you can create message using CRM_UI
    2. If you are using lower vrsion then either you can create message using Workcenter or using transaction NOTIF_CREATE or using menu --> Help --> Create support message.
    Thanks
    Regards,
    Vikram

  • How to log in to the new installed SAP ABAP instance ?

    Dear Experts,
    In SAP ERP 2005 installation,
    I have done central system installation, Now I need to perform postinstallation steps,
    Could you please tell me,  how to log in to the new installed SAP ABAP instance and do the post installation?
    Regards,
    Madhavan K

    Hi,
    Check the list of post installation steps:
    http://www.saptechies.com/post-installation-steps-for-ecc-60/
    From my point of view basic post installation steps are:
    - Installing SAP License (from http://service.sap.com/licensekeys)
    - Setup TMS  (STMS)
    - Import profiles (RZ10)
    - Client Copy (SCC*)
    - Create users (SU01)
    However further many steps are required as per your requirements. Cehck the link for more detailed steps.
    Regards,
    Srikishan

Maybe you are looking for

  • My iPhone 4 stopped updating in the middle of the process and now I can't use my phone. Itunes also doesn't recognize it, but my computer does when it charges

    So I was talking to my friend on the phone and hooked it up to my computer to sync and the update thing appeared. I clicked on update and download the latest update for it and it was going smoothly. After the software/firmware (I can't remember which

  • Where did my library go?

    My classic iPod tragically died. My son gave me his old Touch, reset to factory settings. I went to my iTunes account. All my music is gone, both bought from iTunes store and put in library from cd's. My computer's library had been deleted. DId this

  • Workflow Manger 1.0 failed.

    Hi, I am trying to install Workflow Manager 1.0.  Installed successfully, but configuration is failed, getting following error. Add Host to workflow manager and configuration steps failed.  Please help.

  • RAC Pre-requisite Problem

    I would like to set up a RAC environment between 2 different sites. They are physically seperated in 2 different district. The ISP of machine A used is different from the ISP of machine B used. Do they need to be the same ISP in order to be RAC? if y

  • Iweb query - where are files I have created saved to?

    I have never previously used iweb in the 7 years I have had my computer.  Now I have created a small website on it but I am struggling to launch it.  I have chosen the FTP option and downloaded an FTP client (Classic FTP).  That client has offered me