Need to Read System Description in SAPGUI

Hi Experts,
I need to read the system description that we mention while creating a new server entry in SAPGUI.
I need to read in R/3. Can it be read from any system table at runtime or from any file in the installation place can be read for the description field in New entry action of SAP LOGON PAD.
Thanks
Depesh

thanks

Similar Messages

  • Creating New System Entry in SAPGUI 7.10

    Brief Description of the problem:
    I am unable to create a new system entry in SAPGUI 7.10 Logon Pad. It works fine if you choose "Custom Application Server" as Connection Type but when you choose "Group/Server Selection" instead the Next Button is still grayed out and hence unable to create a system.
    Earlier even the Group/Server box never used to get populated but after creating sapmsg.ini, i could go one step further and now I think it looks for some value in Saprouter field in order for the Next button to get activated.
    __*What I am Looking for:__*
    Can anyone tell me how could I incorporate a saproute.ini, as I not clear on the syntax and I never have to use the sapmsg.ini and saproute.ini in SAPGUI 6.40 for users who are connected to Internal network. so this is something new in SAPGUI 7.10 and I am still clueless on why Internal users have to use saproute.ini.
    <route name>=<route>
    Here <route> has the following form: /H/<hostname where saprouter is running>/S/<service saprouter is running>
    So in the above string, how will I find the service Saprouter is running.
    Thanks

    Thanks for the response.
    It will work if you add "sapmsSID 3600/tcp" to the etc\*Services* file.
    In SAPGui 6.40, i used to just have sapms00 3600/tcp and it works.
    so in SAPGUI 7.10 looks there is a slight change and need to suffix the SID details also. I still don't find any SAPGui 7.10 documentation regarding the change I did in services file.
    Surprisingly SAP support was recomending to add router entry inorder to make it work inspite teling them we don't need to access SAP systems through router since we access them internally. No good support from them and they just jump to conclusions and they keep repeating the same thing over and over again even if you try to make them understand that it's not what you need.
    Regards
    Vipin

  • Error message says need Adobe reader 8 or 9 installed to open pdfs from web pages yet Reader 9alredy

    Error message says need Adobe reader 8 or 9 installed to open pdfs from web pages yet Reader 9 is alredy installed on computer. Is this a 64 bit ossue although I am sure I did not have this problem prior to a replacement hard drive being installed.

    What is your operating system, browser?
    What is the exact message you are getting?

  • Need to read Unicode in a file

    Hi,
    My need to read Unicode from a file (on a Windows box) is due to the fact my software is used in different countries and on different keyboard naturally. All the users are not computer literate but, like me, they are all lazy and want to put their username and password in a config file my application reads. If their username or password contain Unicode characters I have a problem reading.
    They are simple users that I would like to advise them to open the config file using Windows Notepad, then type in their username and password, and save the file as Unicode. Notepad has four ways to save a file, ANSI, Unicode, Unicode big endian, and UTF-8 (I've tried them all except ANSI of course). Saving a file in a different format is as complicated as I would like it to get for them, some will have trouble even with this.
    I read the file like so:
    BufferedReader rdr =
        new BufferedReader(
            new InputStreamReader(new FileInputStream(file_name), "UTF-16"));
    String line;
    while ((line = rdr.readLine()) != null) {
        String[] pieces = line.split("[=:]");
        if (pieces.length == 2) {
            if (pieces[0].equals("PASSWORD")) {
                byte[] possibleUnicode = pieces[1].getBytes("various encodings");
                pieces[1] = new String(possibleUnicode, "various encodings");
            propertyTable.setProperty(pieces[0], pieces[1]);
    }All reading is perfect except for a username or password which can contain a real multi-byte character. I have used many variations of converting the string I get into a byte[] using string_in.getBytes("various encodings tried") and then back to a string but nothing has worked.
    I tried a regular FileReader to a BufferedReader and that didn't work. I tried a FileInputStreamto a DataInputStream and that didn't work. I accomplished the most with what I described above, FileInputStream to InputStreamReader to BufferedReader.
    Does anyone know how to read Unicode in a file on a Windows file system?
    hopi

    I have used the byte conversion technique before
    successfully when I loaded a set of properties
    from a URL openStream(). The properties load()
    method takes an InputStream and assumes ISO-8859-1
    so I converted the bytes from ISO-8859-1 to UTF-8.
    Garbage characters were cleared up perfectly.I think you just got lucky that time. For characters up to U+007F, the UTF-8 encoding is the same as ISO-8859-1 (and most other encodings, for that matter). Characters in the range U+0080 to U+00FF will be encoded with one byte in ISO-8859-1, and with two bytes in UTF-8. In most cases, each of the two bytes in the UTF-8 representation will have values that are valid in ISO-8859-1. The decoded characters will be incorrect (and there will be too many of them), but they effectively preserve the original byte values, making it possible for you to re-encode the characters and then decode them correctly. But there's a big gap in the middle where the UTF-8 bytes produce garbage when decoded as IS)-8859-1. Run the included program to see what I mean.
    I don't know what's going wrong with your application, but I do know that changing the encoding retroactively is not the solution. I also think you're right about asking users save files in a certain encoding. Considering how much trouble programmers have with this stuff, it's definitely too much to ask of users.
    import java.awt.Font;
    import javax.swing.*;
    public class Test
      public static void main(String... args) throws Exception
        JTextArea ta = new JTextArea();
        ta.setFont(new Font("monospaced", Font.PLAIN, 14));
        JFrame frame = new JFrame();
        frame.add(new JScrollPane(ta));
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        StringBuilder sb = new StringBuilder();
        for (int i = 0xA0; i <= 0xFF; i++)
          sb.append((char)i);
        String str1 = sb.toString();
        byte[] utfBytes = str1.getBytes("UTF-8");
        String str2 = new String(utfBytes, "ISO-8859-1");
        for (int i = 0, j = 0; i < str1.length(); i++, j += 2)
          char ch = str1.charAt(i);
          byte b1 = utfBytes[j];
          byte b2 = utfBytes[j+1];
          String s1 = Integer.toBinaryString(b1 & 0xFF);
          String s2 = Integer.toBinaryString(b2 & 0xFF);
          char ch1 = str2.charAt(j);
          char ch2 = str2.charAt(j+1);
          ta.append(String.format("%2c%10s%10s%3x%3x%3c%3c\n",
              ch, s1, s2, b1, b2, ch1, ch2));
        frame.setSize(400, 700);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }

  • Do i need a backup system hdd

    Hi,
    I have been thinking lately if i need a backup system for my raid setup. At the moment i have all my projects/media/exports on one 12tb raid 30 system, giving me 9tb or storage. and the raid setup can have upto 2x drive fail.
    is there any point for me to invest in an external backup sytem that will backup all my raid sytem. if so what would you recomend.
    Baz

    Baz,
    Just add two hot spares to the raid. Then you are safeguarded with even 4 disks failing at the same time.

  • Do I need a fast system drive if i also have a RAID 0 array for media?

    If my video and media files are all on a Fast RAID array then do i need a fast system drive?
    Im building a system. The only thing on my system drive will be programs. And I will have a RAID array for my video and PSD files - but my System drive is an older UltraDMA EIDE133 250g Maxtor. This system drive is testing at 51mb/s Read, and 26mb/s write. (According to Blackmagic disk speed check program)
    A New SATA drive tests at 53 write and 43 read. So should i bother upgrading my system drive to a RAPTOR 150 or stick with the older EIDE drive? Main Programs i use are Adobe After effects, premiere pro, Photoshop for uncompressed editing with blackmagic intensity.
    Specs:
    MB: Tyan K8WE
    AMD Opteron 270 (dual)
    4GB RAM.
    Nvidia Quadro FX 560
    Apple cinema Display 30'
    4x500gb RAID array (2TB total) on Nvidia SATA motherboard controler.

    Jeron,
    Yes, you are probably.
    - Its i either spend $900 dollars or $200.
    The best possible Rig is this; I spend $500 dollars on a dedicated PCI-X RAID controller card. I buy a Raptor 150g system drive $200. And then buying another 3 drives to add to the RAID array of 2 disks i already have = $300.
    Or option 2: My motherboard (K8WE) has 4 SATA-II ports. So I could set up a 4 disk raid with what i have right now and be achieving 210+ mb/s read and write. My system drive would be off the IDE/133 channel. Then i would only have to spend $200 on 2 disks.
    I have been trying to decipher if it is logical to spend that much more money - when it is possible i will only achieve maybe 50 more Megabytes a second. - and have windows and programs start faster.
    A part of me says - "any time i try to save money on something it comes with calamity and disaster". vs. a part of me that says - "you could get more bang for your buck".

  • Need to read Hex data format for Handheld device. (SAP AII RFID )

    Hello,
    we developed a custom screens for packing, unpacking, tag commission.. etc for handheld device for my client. the Serial number field  type is /ain/barcode. Its working fine. but for the new system need to read the Hex format. I created a new field in the screen. but the handheld device is not reading the Serial number in Hex format.
    Could anyone suggest me how to read Hex data in Handheld devices. We are using Motorola MC9090 Series.
    Regards,
    Kamal

    Hi
    Are you using the reader to read an RFID tag or for reading barcodes.
    Ideally, if you read an EPC Gen2 RFID tag, for example, the 96 bit encoded EPC is read and that can be converted to its equivalent  HEX format for posting the observation to SAP AII.
    In case of barcodes, the string is read as is printed on the barcode.

  • What is font book used for? I read the description but still unsure. Does it contain fonts that are not already on the computer

    What can I use font book for? I read the description but still don't get it. Does it contain fonts that are not already installed on my new Mac? Thanks.

    Disabling (turning off) a font will make it unavailable for use in any font menu. You can alwasy enable the font(s) again - they're not gone permanantly. DON'T disable System fonts, though -> that's just asking for trouble.
    Here's -> https://www.youtube.com/watch?v=JdR6-4lnF5A - a good video tutorial about using Font Book.
    Clinton

  • Reading System out stream ?

    Hi,
    I don't know whether I am asking a stupid question or not . But my problem is that in my thousand lines of code i wrote number of System.out.println(".....") statements to describe various situations / state of program which write those strings of messages to standard output i.e console . Here at this point of situation I was wondering that is there a possible way that i could read System.out stream by concurrently running a thread who could look on this stream and could redirect it to a file where i want. By achieving this I don't need to go at every piece of code where i have written System.out.println(".....") and change it to get desired result.
    If it is possible , please let me know ?
    Thanks in advance,
    Hemant.

    A suggestion - next time, set up a boolean - call it maybe "debugFlag" and check it befor a system.out write. That way all that's needed is to reset the flag and recompile when it goes to "production".
    And then the other possibility is to use your editor and do some global change all in your code.

  • I need a backup system, but do not need another wireless system. Does Time Capsule offer just a backup option?

    When I looked up Time Capsule on line, I found it provides backup and wireless connection. I don't want another wireless set up, just backup. Can I get just backup option with Time Capsule or do I have to seek an outside external backup device?

    Does the OP mean he doesn't need a "wireless" system or does he mean that he doesn't need an additional connection to the Internet?  The latter is my situation.  I'm just wondering -- if I'm perfectly happy with my current routers --will it be easy to add a TC to my current setup?   Would the TC get Ethernet-plugged into the router, or can it stand by itself (closer to where we have the printer)?

  • Everytime i try to download it says i need to contact system administrator but i am on system administrator but it still does not download

    everytime i try to download it says i need to contact system administrator but i am on system administrator but it still does not download

    I suspect you have a 2G iPod. Those can only go to iOS 4.2.1.
    Identifying iPod models
    iPod touch (3rd generation)
    iPod touch (3rd generation) features a 3.5-inch (diagonal) widescreen multi-touch display and 32 GB or 64 GB flash drive. You can browse the web with Safari and watch YouTube videos with Wi-Fi. You can also search, preview, and buy songs from the iTunes Wi-Fi Music Store on iPod touch.
    The iPod touch (3rd generation) can be distinguished from iPod touch (2nd generation) by looking at the back of the device. In the text below the engraving, look for the model number. iPod touch (2nd generation) is model A1288, and iPod touch (3rd generation) is model A1318.

  • I need a operating systems from my mac book pro. I will like to change my hard drive, I need a operating systems from my mac book pro. I will like to change my hard drive

    I need a operating systems from my mac book pro. I will like to change my hard drive, I need a operating systems from my mac book pro. I will like to change my hard drive

    To reinstall the original OSX in your rMBP, boot the MBP using the COMMAND-OPTION-R keys.  The display should show a picture if the planet earth and you will be connected to the Apple servers.   Make certain that you have a solid Internet connection and follow the instructions.
    For SSD options look at this link:
    http://eshop.macsales.com/shop/SSD/OWC/Air-Retina/Apple-MacBook-Pro-Retina-2012- Drive-Internal-Flash
    Ciao.

  • Need help reading burn CDR mp3 and dvdrw from my superdrive

    my Super Drive was fine untill i upgrade to Maverick now it wouldnt  read the music on all of my burn cdr disk and dvdrw . ALso .need help  reading my external 2TB External Ntfs Hard drive.....

    To many conflicting information...
    my Super Drive was fine untill i upgrade to Maverick
    Per your system profile: "Mac mini, Mac OS 9.1.x"
    Mac Minis do not have a superdrive.  You also posted in the Intel iMac forums.
    Please correct and/or update so that you will be provided w/the correct troubleshooting suggestions.

  • I don't want Adobe to open up and be selected immediately. I work with iPhoto and Ipages etc and preview which needs to be my main application for my work , but need adobe reader for other files... how can I do this please?

    I don't want Adobe to open up and be selected immediately. I work with iPhoto and Ipages etc and preview which needs to be my main application for my work , but need adobe reader for other files... how can I do this please?

    loopiloo1 wrote:
    I don't want Adobe to open up and be selected immediately.
    Sorry, I don't understand this - you don't want Adobe [Reader] not to open when doing what?  On what operating system?

  • Script to read IPTC description

    Hi,
    i need a script so that i can read the description field of the IPTC core of a selected file (and also preferabely the ability for selection of files) in bridge (in my case CS4)
    and also please introduce some string manipulation functions to apply to the read field.
    Thanks in advance.

    This will write the selected documents description field to the console in the ExtendScript Toolkit.
    You will have to be more precise on what you want to do with the string to be able to give an example.
    #target bridge
    loadXMPLibrary();
    for(var a in app.document.selections){
    var thumb = app.document.selections[a];
    if(thumb.hasMetadata){
            var selectedFile = thumb.spec;
      var myXmpFile = new XMPFile( selectedFile.fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_READ);
      var myXmp = myXmpFile.getXMP();           
       for(var i = 1;i <= items;i++){
    var Desc = ArrayItems(XMPConst.NS_DC, "description");
                $.writeln(Desc);
         unloadXMPLibrary();
    function loadXMPLibrary(){
       if ( !ExternalObject.AdobeXMPScript ){
          try{
             ExternalObject.AdobeXMPScript = new ExternalObject
                                        ( 'lib:AdobeXMPScript' );
          }catch (e){
             alert( ErrStrs.XMPLIB );
             return false;
       return true;
    function unloadXMPLibrary(){
       if( ExternalObject.AdobeXMPScript ) {
          try{
             ExternalObject.AdobeXMPScript.unload();
             ExternalObject.AdobeXMPScript = undefined;
          }catch (e){
             alert( ErrStrs.XMPLIB );
    function ArrayItems(ns, prop){
    arrItem='';
      var items = myXmp.countArrayItems(ns, prop);
      if(items > 0){ 
       for(var i = 1;i <= items;i++){
         arrItem += myXmp.getArrayItem(XMPConst.NS_DC, prop, i);
        return arrItem;

Maybe you are looking for

  • The application requires more database privileges than you have currently

    Hi, on 10g R2, no one can login to DB Control grid (not sys, not sysman nor system ). We get the following : The application requires more database privileges than you have currently been granted. Click on Help to get more version specific informatio

  • Regarding JSF Default action problem in IE

    Hi, I am using Jsf:Default action inside my submit button.In my form I have row of two buttons submit and reset.When I use my tab focus on reset button and when I am clicking enter submit default action is getting fired rather reset action.More over

  • Pattern fill question

    Hi i'm a student and learning how to work with with photoshop, indesign and illustrator. I've only been practesing for a month and a half now but we al had to start somewhere Now my question is: i've been trying to get a pattern fill in illustrator w

  • SOLVED :Flash Player fails installing on Windows XP SP3 ,error 1007

    Hi, I would like to report a failing installation for FlashPlayer. The good news is that using the offline installer ( also v 17.0.0.134 ) i have now the Flash Player installed and running :-) However i will tell my experience for later readers - and

  • How to remove member from Alias dimension in EPMA 11.1.1.3

    Hi, We are using EPMA for controlling master data for HP and HFM. While uploading members using Flat file import, by mistake, we have added a member called "French" in Alias dimension. Because of that, now all of the HFM applications, which were depl