User defined name in place of application server in SAPGUI 6.40

Hi,
Can anybody please let me know how to define company name in place of static Ip in SAPGUI 6.40.
I am using AIX 5.3L / Oracle 9.x / ECC 5.0
I have given static IP in the space provided for application server which I don't want. I want to give company initials (XYZ) in place of application server for the safety purpose.
Thanks in advance
Sanjay

U can put the ip of the host server or the hostname of the server. How can you put the company's name. And wven if you put the company name which machine it will connect.
But if you want to do it by any means then do it as under\
In the frontend computer got to---->Windows->system32-->Drivers--->etc
There will be a file hosts.
make the following entry in this file
192.168.0.xxxx     company name
means the ip of the sap server   your company name
Use this name in the sapgui setting.
But the restriction is that in every frontend machines this entry has to be mentioned.
Pl dont forget to award points
Regards

Similar Messages

  • Password cache - for user identity that share the same application server

    I have different user identity that share the same application server passwords.
    When I create a password cache entry for an an application server I have to be specified the User identity for the application server. Is there a way to indicate multiple User identity in order to avoid to create different entry (one for each user identity)?

    No. An SGD user can only have a single username for an application server.
    There may be a way to craft a solution:
    - create several ENS application server objects pointing to the same real application server
    - cache different usernames against each ENS application server
    - create multiple, identical application objects, assigning a different application server to each, OR
    - create a single application object and assign all the ENS servers to it, along with the "SGD Broker" for dynamic launch.

  • How to change the excel file name which is in Application server...

    hi friends,
    my requirement is getting failed, when i'm trying to change the file name which is in Application server using the FM: SXPG_COMMAND_EXECUTE.
    when i execute above FM, i can see all my required details in SM69 like:
    COMMAND NAME: ZSPOOL_TEST1      
    OS: Windows NT
    TYPE: Customer 
    OS COMMAND: cmd rename Y:\OBRZ.PDF OBRZ38582.PDF
    once the above FM is executed, i'm getting SY-SUBRC = 2 (exception: COMMAND_NOT_FOUND).
    so, can any one guide me how to resolve this issue or is there any other way to rename the file which is in AS?
    thanks in advance...

    Hi ,
    First you can tranfer the AS server file to a new application server file.
    Then you delete the original file .
    To do that you can write code as follows --
    DATA : w_file(8) TYPE c VALUE 'FILE_NAM', " your present AS file name
           w_new(8) TYPE c VALUE 'NEW_FILE',
           fs_itab(255) TYPE c,
           t_itab LIKE TABLE OF fs_itab.
    OPEN DATASET w_file FOR OUTPUT IN BINARY MODE.
    DO.
      READ DATASET w_file INTO fs_itab. " Reading value from the AS file to field string
      IF sy-subrc NE 0.
        EXIT.
      ELSE.
        APPEND fs_itab TO t_itab. " Populating internal table form the file value
      ENDIF.
    ENDDO.
    OPEN DATASET w_new FOR INPUT IN BINARY MODE. " creating a new file if that does not exist
    LOOP AT t_itab INTO fs_itab.
      TRANSFER fs_itab TO  w_new. " Transfering to file
    ENDLOOP.
    CLOSE DATASET w_file..
    DELETE DATASET w_file. " Dleting the old file
    CLOSE DATASET w_new.  " Closing the final file
    Regards
    Pinaki

  • What is the purpose of User-Defined Functions under Excel Service Application?

    Hello, I have done a lot of research and have concluded that we cannot use VBA present under Excel sheet code in sharepoint.
    Today I was reading on excel services in sharepoint. I came across User-defined functions under Excel Service Application settings. I believe that User defined functions refer to the Calculations and VBA (am I wrong on this?).
    If true, then, does this bring hope that we can use embedded VBA code present into excel sheet in SharePoint also?

    Hi Nachiket,
    When you set  ‘Allow External Data’ to None, it disables all external data connections for the trusted file location.
    When you set  ‘Allow External Data’ to ‘Trusted data connection libraries and embedded’, it enables connections that are embedded in the workbook file or connections that are stored in a trusted data connection library.
    More information, please refer to the link:
    http://technet.microsoft.com/en-us/library/jj219699.aspx
    As your description, when you tried to set Allow External Data to None, the external data also was displayed, it may be caused by data cache or time delay.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Changing existing Material Group  user defined names  to new mat groups

    Hi Gurus,
    My client is using conventional Material Groups user defined names for ages in their system.
    Now they have requested us to workout for switching over to UNSPSC material groups Global Standardization.
    While carrying out the exerice, they have asked us to completely clean up the entire system to replace the new material group with old in all Masterdata, transaction data including statistics table in pr, po, stock and in everything
    If any one of you have carried out this exercise and if you have any useful documentation, please inform me
    Thanks and Best Regards,
    Mohan

    Hi,
    If you change the Material groups in Material master the system the system will not update the PR/PO/Stock or others.
    You need to change all the documents to update the New Material groups.
    For Material master update you can use the LSMW.
    You can update the PR/PO also but if the PR/PO is subjected to Release Strategy then you need to derelease then change the material group then update and if it is based on the Material group then while update the new release strategy will apply and you have to change everything.
    Think of that if you have huge data then it is very difficult to change all the documents. if the data is Less you can proceed .
    Instead of deleting old material groups just add the new material groups and use them in future for all your process.
    rgds
    Chidanand

  • User Role problems in Sun Java Application Server Platform Edition 8

    I am having two problems setting up user roles in Sun Java Application Server Platform Edition 8. At first, I thought that it was a problem with the higher level features that I was using, so I created a very simple example using the simplest authentication I can use, but the problem still occurs. I am using the file realm and configuring the users in the App Server Admin Console. I create 2 users in different roles. One user should have access, the other should not.
    1) The first problem is that both users can access the page
    2) The second problem is that the isUserInRole() method returns false for both users with the role that it should be authenticating against.
    Here is a sample of my code:
    Users Configured in Console:
    username password roles
    user1 ********** admin
    user2 ********** noaccess
    web.xml
         <security-role>
              <role-name>admin</role-name>
         </security-role>
         <security-constraint>
              <web-resource-collection>
                   <web-resource-name>My Protected Area</web-resource-name>
                   <url-pattern>/*</url-pattern>
              </web-resource-collection>
              <auth-constraint>
                   <role-name>admin</role-name>
              </auth-constraint>
              <user-data-constraint>
                   <transport-guarantee>NONE</transport-guarantee>
              </user-data-constraint>
         </security-constraint>
         <login-config>
              <auth-method>BASIC</auth-method>
              <realm-name>file</realm-name>
         </login-config>
         <servlet>
              <servlet-name>
                   TestServlet
              </servlet-name>
              <servlet-class>
                   mypackage.TestServlet
              </servlet-class>
              <security-role-ref>
                   <role-name>admin</role-name>
                   <role-link>admin</role-link>
              </security-role-ref>
         </servlet>
         <servlet-mapping>
              <servlet-name>
                   TestServlet
              </servlet-name>
              <url-pattern>
                   /TestServlet
              </url-pattern>
         </servlet-mapping>
    TestServlet.java:
              out.println("admin role: " + request.isUserInRole("admin") + "<BR/>");
    Thanks before hand for any responses.
    - Brian

    Hi Jeanfrancois,
    Your suggestion has lead me to find my problem. There were actually three problems.
    1) First, you suggestion to reorder my xml file did not cause any errors to occur. I got suspicious that my web.xml file was wrong. I looked at some sample web-xml files and found that I was missing the header as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN' 'http://java.sun.com/dtd/web-app_2_3.dtd'>
    2) When I added this information, the deploy feature failed stating the my web.xml file was out of order. I fixed the ordering. It now deployed, but the security still wasn't working.
    3) I then added the sun-web.xml file. This file was missing before hand as I thought it was unnessary. However, this file added the essential mapping from a role to a group. After adding this, it now started to work.
    Thanks so much for you time and effort. You really did help me.
    - Brian Blank

  • How to check if a user session is active in Java application server

    Hi Experts,
          We have a online scenario with a third party system by which a portal user will launch the third party application in a new window from portal. The SSO will work at the third party web application with the dynamic key that is generated by calling a webservice for that user. Now, as the user works on the launched screen, they will have to check whether the user (logged in portal) session is still active. ie., they will be periodically calling a service hosted by SAP java application server to find out whether the corresponding user who launched the session is still logged in or logged out.
    So, my question is, how can i find out programatically whether a user/user's session is still logged in/active in SAP Netweaver Java AS? We are in version 7.3.
    Kindly help me in this regard.
    Regards
    Vijay.K

    Hi Vijay,
    Could you check below links
    Tracing Single User Sessions - Administration - SAP Library
    Display and Manage User Sessions (SAP Library - Tools for Monitoring the System)
    Hope this helps.
    Regards,
    Deepak Kori

  • Can we Customize Edit User-Defined Table Screen in Fusion Application

    Hi All,
    We have a requirement to add a ADFDI functionality to the 'Edit USer-Defined Table' screen by adding a 'Mass Upload' Button.
    Normally for Some of the screens (Fusion Compensation) i am seeing 'Personalize -> Edit Current Page' Option on Menu items on top. But on 'Edit User-Defined Table' i am not seeing this option in 'Personalize' Menu.
    So the questions is is this screen Customizable in Fusion Application? If So What will be EAR file which we need to use for Customization.
    The screen where we need to add ADFDI Functionality is under 'oracle/apps/setup' path.
    Can anyone point me to the Exact EAR on this and also let me know if we can customize it or not
    Thanks
    Kaja

    Generally the code structure can be observed run-time [url https://blogs.oracle.com/fadevrel/entry/finding_code_artifacts_for_customization]using the composer, however in your case the content comes through a portlet in which case the method does not work as you cannot drill down to the specific region details in the composer. Based on a search through the code I think the regions you are interested are:
    <li>hcmPayroll/userTables/ui/public_html/oracle/apps/hcm/userTables/ui/page/UserTableSearch.jsff --> This is the details page with header "Manage User-Defined Tables"
    <li>hcmPayroll/userTables/ui/public_html/oracle/apps/hcm/userTables/ui/page/ManageUserStructure.jsff --> This is the details page with header "User-Defined Table: <TABLE_NAME>"
    These would presumably be in EarHcmPayroll. I'll see if I can find out how the portlet content can be observed from the RT application..
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Pull compressed file (.gz format) via FTP and place on Application server

    Hello!
    Greetings.
    We have a requirement where a compressed file in the format *.gz is to be pulled via FTP and saved to the application server after extracting.
    I searched the forums and found options to pull text or XL files, but nothing about pulling a compressed file. I wished to know if there is any process for the same. After pulling the file, it is to be saved to Application server after extracting. My doubts are as below:
    1. How to pull a *.gz file via FTP (Need batch processing)
    2. Can I extract and rename th file before saving it to applciation server? Or I need a temporary location to place the file before extraction?
    Any inputs are appreciated.
    Thanks,
    Shishir.

    Hi Sandra.
    Thanks for the confirmation.
    There is a change is the requirement. We need to Poll the FTP server for the file for the duration of one week every month.
    When the file is found, we are to take the *.gz file, extract and put on the application server.
    My question is how do we poll the application FTP server? I searched  the forums and found a few threads that say that an FTP adapter is to be setup for polling the FTP server and then we can schedule it using u201CAvailability Time Planningu201D.
    /people/shabarish.vijayakumar/blog/2006/11/26/adapter-scheduling--hail-sp-19-
    I wished to know if that is the only way to approach this requirement.
    Any help is appreciated.
    Thanks and Regards,
    Shishir.
    Edited by: Shishir Kinkar on Apr 26, 2011 11:07 AM

  • Message Server in place of Application Server in DS Datastore

    Hi,
    I'm trying to configure my SAP Application Datastore, linking it to the SAP message server instead of one of the four SAP application nodes available.
    The idea is to let the message server manage on which node the DS abap will be executed.
    I tried by replacing the Application server name both with message server ip and its fully qualified domain name, leaving target host empty, but it does not work.
    Both changes returned a "Cannot establish database connection" as I tried  to apply them.
    Any suggestion ?
    Thanks and Happy New Year
    Achille
    P.S.: DS version is 12.2.2.0

    U can put the ip of the host server or the hostname of the server. How can you put the company's name. And wven if you put the company name which machine it will connect.
    But if you want to do it by any means then do it as under\
    In the frontend computer got to---->Windows->system32-->Drivers--->etc
    There will be a file hosts.
    make the following entry in this file
    192.168.0.xxxx     company name
    means the ip of the sap server   your company name
    Use this name in the sapgui setting.
    But the restriction is that in every frontend machines this entry has to be mentioned.
    Pl dont forget to award points
    Regards

  • User Defined Types menuitem not appears in Server Explorer at Remote Server

    Hi,
    I'm working on oracle 10g,odp.net with 2.0. i created two types which are input and output parameters for a function. I installed odp.net (ORACLE DATA PROVIDER FOR .NET 11.1.0.6.20) and generated UDT custom class code. It's working in my system. But when i installed odp.net (ORACLE DATA PROVIDER FOR .NET 11.1.0.6.20) in my remote server, its not showing the UDT Custom Class Code Generation Wizard to create UDT Custom Class Code. I have installed oracle Client 10g,.Net Framework 2.0 and ODP.Net(11.1.0.6.20) in the server.
    In my Local system server explorer it's showing
    Tables
    Views
    Procedures
    Functions
    Packages
    Synonyms
    Sequences
    XML Databases
    Java Classes
    User-Defined Types
    In server explorer it's showing only
    Tables
    Views
    Synonyms
    Sequences
    Procedures
    Functions
    Packages
    Package Bodies
    Why its not showing User-Defined Types.
    Pls Help.
    Ideas are highly appreciated.
    Anil

    As you noticed, not all database objects are available in Server Explorer, and because of this they can't have scripts generated for them, nor can they be compared with Schema Compare.
    In a pinch, you should be able to use SQL Developer to do this.

  • RME: User defined groups on basis of snmp server-location

    Hi,
    We have abt 3500 devices in LMS3.2.1, and we want to make user defined groups in RME on the basis of devices configuration of snmp server-location ...
    Please advise that it is possible or not?
    Thanks

    Hi Michel and thanks for the reply.
    The "Physical Location" groups magically started working.  I had tried to apply a bunch of device update packages a couple of days ago.  I thought they all failed but maybe some of them actually applied.  I have no idea but the 2 groups with a rule like this one are now populating:
    Device.Hostname startswith "XYZ"
    However, the groups with the rule below are still failing to populate in the device selector even though if I edit the group the "Objects matching criteria" list contains the correct members:
    Device.Admin_responsibility equals "XYZ"
    Admin_responsibility is user defined field 1 (Admin => Device Credential Settings => User Defined Fields).
    If you mean "dynamic" in that they are supposed to automatically update then yes these are dynamic public groups.  I had them defined this way for years in LMS 2.6, though the "dynamic" part never worked.  I always had to go into group admin and manually refresh to get the groups to update.  I have tried that several times in 4.1 with no luck.
    -Jeff

  • How to make user defined packages visible in Web Applications

    Hello,
    I am not new to JSP and I develop a web based geographical information system. I use MapViewer Application Server (Oracle) as run time environment. I do not encounter any problems in running JSP files. However, I have my own package under WEB-INF/classes/tr/com/bizyaptik/cgs and
    when importing a Class in my JSP file, the web server says:
    500 Internal Server Error
    OracleJSP: oracle.jsp.provider.JspCompileException:
    Errors compiling:C:\mapviewer1012_qs\mv1012qs\oc4j\j2ee\home\application-deployments\mapviewer\web\persistence\_pages\_cgsworkspace\_cgsproject\_public__html\_multiplesp.java
    Line # Error
    7
    package tr.com.bizyaptik.cgs.beans does not exist import tr.com.bizyaptik.cgs.beans.ContainerBean;
    10
    package tr.com.bizyaptik.cgs does not exist import tr.com.bizyaptik.cgs.PathManager;
    11
    package tr.com.bizyaptik.cgs.util does not exist import tr.com.bizyaptik.cgs.util.NetworkProperties;
    83
    [jsp src:line #:44]
    cannot resolve symbol symbol : class ContainerBean location: class cgsworkspace.cgsproject._public__html._multiplesp ContainerBean cb = new ContainerBean();
    83
    [jsp src:line #:44]
    cannot resolve symbol symbol : class ContainerBean location: class cgsworkspace.cgsproject._public__html._multiplesp ContainerBean cb = new ContainerBean();
    92
    [jsp src:line #:53]
    cannot resolve symbol symbol : class PathManager location: class cgsworkspace.cgsproject._public__html._multiplesp PathManager pm = new PathManager();
    92
    [jsp src:line #:53]
    cannot resolve symbol symbol : class PathManager location: class cgsworkspace.cgsproject._public__html._multiplesp PathManager pm = new PathManager();
    93
    [jsp src:line #:54]
    cannot resolve symbol symbol : class NetworkProperties location: class cgsworkspace.cgsproject._public__html._multiplesp NetworkProperties np = new NetworkProperties();
    93
    [jsp src:line #:54]
    cannot resolve symbol symbol : class NetworkProperties location: class cgsworkspace.cgsproject._public__html._multiplesp NetworkProperties np = new NetworkProperties();
    I use JDeveloper editor, worked hard to find the neccessary configuration but I failed. I also inserted ...... WEB-INF/classes into my classath but it didn't work.
    So, could anybody tell me the main concept of introducing packages and class files to a web server ?

    Farrukh,
    I don't know if your error is about a missing class from your custom package, ... what track did you followed to say that?
    To use your package in the implementation of you web service, you should only follow the rules of making a web application: put your package jar in your \lib directory inside WEB-INF/ or your package classes unjared in classes (also in WEB-INF/).
    As I already said, I have doubts that your error should be originated from a missing class from your package, but:
    -try to see the logs (errors?) when you deploy your web service that could give a hint about the problem.
    -try to see if you can access your endpoint through your browser to see if there is a online status
    -display your config/WSDL file, and the steps you did to build your web service.
    regards,
    Pedro Salazar.

  • Pricing - Condition Types 0PR0 v/s user defined name

    Hi All
    Please clarify the difference in using the condition type 0PR0 (For Basic Price)and a user defined or created condition type for the purpose of Creating Pricing procedures.
    Regards
    Mohammed

    Hello Mohammed,
    If you create your condition type as a copy of 0PR0 or you create it with the same settings in condition type customizing then the functionality would be exactly the same as if you used 0PR0.
    Best Regards
    Luis Rivera

  • How to bind the user-defined watch to a specific server so that server's Health would show green ball and is linked to Monitoring watch?

    Hi,
    I create a user defined watch for BI4.1 ExplorerExplorationServer server in CMC -> Monitoring.
    Caution:
    node.ExplorerExplorationServer$'Server Running State'==1 ||
    node.ExplorerExplorationServer$'Server Running State'==2 ||
    node.ExplorerExplorationServer$'Server Running State'==4 ||
    node.ExplorerExplorationServer$'Server Running State'==6 ||
    node.ExplorerExplorationServer$'Server Running State'==7 ||
    node.ExplorerExplorationServer$'Health State'==1
    Danger:
    node.ExplorerExplorationServer$'Server Running State'==0 ||
    node.ExplorerExplorationServer$'Server Running State'==5 ||
    node.ExplorerExplorationServer$'Health State'==0
    However, in CMC -> Servers -> Explorer Services, the ExplorerExplorationServer shows "Information is not available" blue ball in Health.
    How do I bind the user-defined watch to a specific server so that server's Health would show green ball and is linked to Monitoring watch?
    Regards,
    Jin-Chong

    Hello JinChong,
    We had created User-defined Explorer watches on our environments and have run into issues.
    Have received many false alerts even though Explorer servers are running fine.
    After creating an AGS case it was informed to us that Explorer does not have monitoring capabilities.
    AGS is checking with solution architect of Explorer application about when the monitoring watches for explorer would be included.
    Regards,
    Rohit

Maybe you are looking for

  • Sent faxes show wrong date on HP Officejet 4630 e-All-in-One Printer

    The date shown on faxes I send show dates in March, 2014; the time of day is correct. There was nothing in the setup process that referred to dates. This question was solved. View Solution.

  • Peculiar object creation

    Hello all, I had a quick question regarding a peculiar call to construct a new object. I have a couple of example classes (deliberately not checked for clarity or consistency), one of which extends the other. The call shouldn't work, but I'm just not

  • DVD's read as blank even though they have been written.

    The problem is the following: DVD's that I burned using both Tiger and Leopard 10.5 (before 10.5.1) are not being recognized as blank. These discs are NOT blank and they display their contents in other Macs and PC's. When they are inserted in my driv

  • Converting ALV output into Spreadsheet.

    Hi friends, I have generated one alv report.. there are 65 outfields which are dynamically created according to input. when i am converting output to spreadsheet after 27 columns its going to next line. i want all 65 columns in single line. Pls anybo

  • Question about Dates in java.

    Hello , I have a JTextfield in a swing app. that is supposed to hold date and saves its values to a database column of Date type . All I want is when i get the text from the TextField to use it in the prepared statement is to be of Date type not stri