GUI Configuration

Hi All,
What are the steps to configure GUI in Content-Cache Server?
Thank You,
Manoj

Hi manoj,.
Content server GUI means CSADMIN. There is a GUI to monitor SAPDB database.
Whenever you install the SAPDB, it's icon will created. click on it sapdb gui will open.
Regards,
NitiN
Award point if useful

Similar Messages

  • Can you save a GUI configuration??

    Hi everyone,
    I am learning java and have a question.
    I have a jdesktop pane and it has multiple internal frames in it. Now I open a bunch of frames and place it the way I want.
    Now can I do something like save this configuration in any file say for example an XML file and then when i open the program again I can just load the configuration file and everything comes back the same way it was when i had saved it.
    Is this possible if yes then how will I be able to do it???
    Here is the code which I using to display my internal frames.
    //Import files
    public class InternalFrameDemo extends JFrame implements ActionListener {
         JDesktopPane desktop;
        public InternalFrameDemo() {
            super("DashBoard");
            //Make the big window be indented 50 pixels from each edge
            //of the screen.
            int inset =250;
            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            setBounds(inset, inset,
                      screenSize.width  - inset*2,
                      screenSize.height - inset*2);
            //Set up the GUI.
            desktop = new JDesktopPane(); //a specialized layered pane
            setContentPane(desktop);
            setJMenuBar(createMenuBar());
            desktop.setBackground(Color.lightGray);
            //Make dragging a little faster but perhaps uglier.
            desktop.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
        protected JMenuBar createMenuBar() {
            JMenuBar menuBar = new JMenuBar();
            //Set up the lone menu.
            JMenu menu = new JMenu("NEW");
            menu.setMnemonic(KeyEvent.VK_D);
            menuBar.add(menu);
            //Set up the first menu item.
            JMenuItem menuItem = new JMenuItem("LED Panel");
            menuItem.setMnemonic(KeyEvent.VK_L);
            menuItem.setAccelerator(KeyStroke.getKeyStroke(
                    KeyEvent.VK_L, ActionEvent.ALT_MASK));
            menuItem.setActionCommand("new");
            menuItem.addActionListener(this);
            menu.add(menuItem);
          //Set up the second menu item.
            JMenuItem menuItem2 = new JMenuItem("Digital Clock");
            menuItem2.setMnemonic(KeyEvent.VK_D);
            menuItem2.setAccelerator(KeyStroke.getKeyStroke(
                    KeyEvent.VK_D, ActionEvent.ALT_MASK));
            menuItem2.setActionCommand("new2");
            menuItem2.addActionListener(this);
            menu.add(menuItem2);
          //Set up the Third menu item.
            JMenuItem menuItem3 = new JMenuItem("Analog Clock");
            menuItem3.setMnemonic(KeyEvent.VK_A);
            menuItem3.setAccelerator(KeyStroke.getKeyStroke(
                    KeyEvent.VK_A, ActionEvent.ALT_MASK));
            menuItem3.setActionCommand("new3");
            menuItem3.addActionListener(this);
            menu.add(menuItem3);
          //Set up the Fourth menu item.
            JMenuItem menuItem4 = new JMenuItem("Signal Levels");
            menuItem4.setMnemonic(KeyEvent.VK_S);
            menuItem4.setAccelerator(KeyStroke.getKeyStroke(
                    KeyEvent.VK_S, ActionEvent.ALT_MASK));
            menuItem4.setActionCommand("new4");
            menuItem4.addActionListener(this);
            menu.add(menuItem4);
          //Set up the fifth menu item.
            JMenuItem menuItem5 = new JMenuItem("GPS Status");
            menuItem5.setMnemonic(KeyEvent.VK_G);
            menuItem5.setAccelerator(KeyStroke.getKeyStroke(
                    KeyEvent.VK_G, ActionEvent.ALT_MASK));
            menuItem5.setActionCommand("new5");
            menuItem5.addActionListener(this);
            menu.add(menuItem5);
            //Set up the Quit menu item.
            menuItem = new JMenuItem("Quit");
            menuItem.setMnemonic(KeyEvent.VK_Q);
            menuItem.setAccelerator(KeyStroke.getKeyStroke(
                    KeyEvent.VK_Q, ActionEvent.ALT_MASK));
            menuItem.setActionCommand("quit");
            menuItem.addActionListener(this);
            menu.add(menuItem);
            return menuBar;
        //React to menu selections.
        public void actionPerformed(ActionEvent e) {
            if ("new".equals(e.getActionCommand())) { //new
                createFrame();
            } else if("new2".equals(e.getActionCommand())) {
                createButtons();
            }else if ("new3".equals(e.getActionCommand())){
                 createAnalog();
            }else if ("new4".equals(e.getActionCommand())){
                 createBoxes();
            }else if ("new5".equals(e.getActionCommand())){
                 createGPS();
            else{
                 quit();
        protected void createFrame() {
            MyInternalFrame frame = new MyInternalFrame();
            TestApplet clock = new TestApplet();
            clock.init();
            frame.getContentPane().add(clock);
            frame.setSize(150, 150);
            frame.setVisible(true); //necessary as of 1.3
            desktop.add(frame);
            try {
                frame.setSelected(true);
            } catch (java.beans.PropertyVetoException e) {}
        protected void createAnalog() {
            MyInternalFrame frame = new MyInternalFrame();
            AnalogClock clock = new AnalogClock();
            frame.getContentPane().add(clock);
            frame.setSize(180, 200);
            frame.setVisible(true); //necessary as of 1.3
            desktop.add(frame);
            try {
                frame.setSelected(true);
            } catch (java.beans.PropertyVetoException e) {}
        protected void createBoxes() {
          //Code
        protected void createButtons(){
             MyInternalFrame frame = new MyInternalFrame();
             final DigitalClock dc = new DigitalClock();
              dc.setBackground(Color.black);
              frame.getContentPane().add(dc);
               frame.setSize(290, 120);
            frame.setVisible(true); //necessary as of 1.3
            desktop.add(frame);
            class Task extends TimerTask {
                 public void run() {
                      dc.repaint();
              java.util.Timer timer = new java.util.Timer();
             timer.schedule(new Task(),0L,250L);
            try {
                frame.setSelected(true);
            } catch(java.beans.PropertyVetoException e) {}
        protected void createGPS() {
            MyInternalFrame frame = new MyInternalFrame();
            gpsstatus clock = new gpsstatus();
            frame.getContentPane().add(clock);
            frame.setSize(300, 190);
            frame.setVisible(true); //necessary as of 1.3
            desktop.add(frame);
            try {
                frame.setSelected(true);
            } catch (java.beans.PropertyVetoException e) {}
        //Quit the application.
        protected void quit() {
            System.exit(0);
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            InternalFrameDemo frame = new InternalFrameDemo();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Display the window.
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

    FanJava wrote:
    Hi everyone,
    I am learning java and have a question.
    I have a jdesktop pane and it has multiple internal frames in it. Now I open a bunch of frames and place it the way I want.
    Now can I do something like save this configuration in any file say for example an XML file and then when i open the program again I can just load the configuration file and everything comes back the same way it was when i had saved it.yes.
    Is this possible if yes then how will I be able to do it???you need to design your GUI using absolute layout--null layout manager, that way you can specify how big and exactly where you want all of your components.

  • SAP GUI Configuration for Mac OSX

    Hi Everyone,
    I work for the UW-Milwaukee University Alliance hosting center, and am having trouble trying to figure out how to create a server configuration file that can be easily distributed to all of our customers.
    I'm not really sure what files are necessary for the SAP GUI application to load our specific settings.  Obviously it has something to do with the "connections" file located at USER/LIBRARY/PREFERENCES/SAP.
    When I enter all of the connections manually through the "expert" settings, the connections will show up and work, but when I go to close the program and open it again, they're all gone.  The server list is still in the "connections" file though.
    If anyone has some insight as to how this application works, configuration-wise, any help would be appreciated.
    Thanks in advance!

    Let's separate the issues of creating appropriate configuration files and distributing the files to your Mac users.
    With respect to distributing the files:
    This is explained in the HTML documentation distributed with the JavaGui, in the "Installing Custom Templates" section of the Administration > Configuration Files page.
    After you've created "connections" and "settings" files that you want to distribute, rename them to "connections.template" and "settings.template", respectively. Then use the command
    "jar -cf ./templates.jar settings.template connections.template"
    to make a "templates.jar" file containing them. Before the JavaGui is installed, put the "templates.jar" file in the same directory as the PlatinGUI-MacOSX-710rnumber.jar file. This will produce the "connections.template" and "settings.template" in the same directory as the JavaGui application, typically "/Applications/SAP Clients/SAPGUI 7.10revnumber".
    When a user launches the JavaGui application, if he DOESN'T ALREADY HAVE "connections" and "settings" files in his <home-directory>/Library/Preferences/SAP directory, the "connections.template" and "settings.template" files will be copied to his <home-directory>/Library/Preferences/SAP directory with the names "connections" and "settings", respectively.
    With respect to creating the "connections" and "settings" files, I'm not sure why what you are doing is not working.
    Which version of the JavaGui are you using?
    I assume that after configuring the connections, you clicked the "Save" button.
    When you go to SAPGUI > Preferences > Configuration > SAP Logon is anything listed there?
    As another approach, you might want to consider using central configuration files as shown in the HTML documentation Administration > Overview on Local/Central Files page.

  • ACE 4710 Appliance GUI configuration

    I am having an issue with configuration of the GUI for the 4710. If I am using local authentication, the GUI works fine. However when I turn on aaa and use radius to authenticate, I am unable to log into the GUI.
    When I place the 4710 into debug for aaa, I am sucessfully authenticating. My radius server's logs state the same.
    Has anyone run across this?

    Are you able to login to the CLI using AAA? Have you configued the role and domain for the user on your AAA server? Here is some documenation on configuring the role and domain for a use on the AAA server:
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/ace_appliances/vA1_7_/configuration/security/guide/aaa.html#wp1321891

  • SICF - GUI configuration

    Hi there,
    When a Internet browser running a BSP application is closed without using a 'Logoff' button the SAP session is not terminated keeping all the locks (if any) active.
    I found that parameter ~DISCONNECTONCLOSE helps you close ITS sessions but does not work for BSP applications. I am not sure whats the difference between these two are.
    Can any one please help me close the sessions when a user closes the internet browser.
    Thanks in advance,
    Prasad

    Hi,
    Please see the Standard application HTMLB_SAMPLES, This has a page called log-off.htm
    I don't remember how we used it but I remember for sure we used this page when to log him off the user closed the window...
    Also have a look at the BSP application SYSTEM.
    This should help you.
    Thanks,
    Tatvagna.

  • What is the current way of managing the CSM using a GUI?

    Hi, My customer is using CiscoView device manager 1.1 for the content switching module but it's a nightmare and full of bugs, it's also end of life.
    Does anyone know the current way of monitoring or configuring the Content Switching Module?
    Many Thanks in advance
    Dom

    Hi Dom,
    I believe what you are looking for is called the Cisco Application Networking Manager 3.0.  This is the GUI configuration, management, and monitoring tool for the Application Control Engine (ACE), but also supports the managment of CSS, CSM, CSM-S, and GSS.  See the link for more details.
    Also, it should be noted that both the CSM and CSM-S have recently been announced End-of-Life.  The ACE would be your path after the CSM.  See the link for more details on that too.
    Hope this helps,
    Sean

  • Printing configuration can be a nightmare

    I thought many here would be interested in reading this post by Grant Taylor[1] regarding the difficulty that one can encounter in configuring CUPS. He describes some of the reasons printing systems can be so troublesome and gives Apple plaudits for their GUI configuration tools.
    [1]Grant Taylor is the founder of the Linux Printing website and original author of Foomatic, a print driver configuration tool.
    Matt
    Mac Mini; B&W G3/300    

    An agent can only be assigned to one team; however, their team assignment has no impact on how the Resource Groups or Skills and CSQs function. The team is used primarily to group agents and CSQs together for supervisors when using CSD. Other less common purposes are to group what agents can chat with one another using the intra-team chat button in CAD and the QM/WFO products.
    While an agent cannot be associated to more than one team a person can be given supervisor rights to see more than one team. This would allow supervisors who need to support/backup their peers to see other groups.
    Please remember to rate helpful responses and identify helpful or correct answers.

  • Problems moving from 2 independent drives to RAID1 configuration

    Hi: My NAS200 has been running successfully configured as two independent drives: Public Disk 1/ and Public Disk 2/. I will refer to these as PD1 and PD2. I mostly use PD1 and have been using PD2 to make occasional backups of PD1 (I didn't like the idea of running in mirrored Raid1 mode based on a prior experience). Today I was trying to clone the contents of PD1 and decided to try turning on the RAID1 function, thinking it would make an exact duplicate of PD1 on PD2. My plan was to then break up the RAID mirror again and end up with two identical copies of PD1. However, after the RAID mirroring finished (took about 6 hours), I can no longer see PD1 or PD2 on the mirrored disks, nor Public Disk (PD) for that matter. Can anyone tell me what has happened and how I might recover from it? I have access to a SATA-USB converter and can use it to mount each individual disk onto either a linux or Windows system (via ext2ifs software). When I do this (on Windows), I see that there are three partitions on the disk, and I can name them with ext2ifs, but I can't see any of the contents. I'm currently running DiskInternals Linux Recovery 2.7 on Windows and it is scanning the disk for lost files. It seems to be finding data, but is running very slowly (20 minutes for 3%). Any leads appreciated. Thanks in advance! Maurice Lampell
    Solved!
    Go to Solution.

    The file system is XFS if you have the NAS200 configured for journaled file system, or ext2 if you are using unjournaled file system. ext2ifs can read (and write?) ext2 under Windows but XFS is not supported by any Windows software that I'm aware of.
    The RAID configuration is independent from the journaled vs non-journaled configuration: you can have journaled non-raid, journaled raid, non-journaled non-raid and non-journaled raid. RAID configurations are implemented using mdadm.
    You can download a SystemRescueCD image from the link in my signature to access the files on the disks from a PC. You burn that image to a CD and boot from it. SystemRescueCD understands SATA disks connected via a USB-SATA dongle, you just need to be able to boot from a CD-ROM drive which is something that all PCs less than about 10 years old can do. SystemRescueCD supports all the necessary file systems and I believe it automatically tries to mount any RAID-formatted disks. The partitions on the hard disk are (1) your data, (2) configuration files and (3) swap. So if you want to recover files, you can ignore the second and third partitions.
    I don't think the NAS can convert the configuration from separate disks to RAID without reformatting, so the files that were there in separate-disk mode are propbably lost. You may need another tool to recover the files.
    I don't know why your Public Disk shares don't show up, unless you made a change to the configuration so that the shares are hidden from your user name. If you have the web GUI configured to hide the share from guest logins, then maybe you're logged in as guest because you have "change failed logins to guest logins" enabled; you should disable this option.
    Your plan of mirroring the disks and then breaking the mirror to put one of the drives away as backup is not a good one, IMHO (and by the way, you really shouldn't remove the drive while the NAS is running). When the NAS loses a drive from the RAID, it will try to rebuild the RAID as soon as you restart with a second drive installed, and it will give the existing drive priority over the older one, so instead of restoring a backup after you lose your files, it will overwrite the backup with the other drive's data so you lose the lost files from the backup too. Also, rebuilding a mirror takes extremely long on the NAS200. It's better to use Separate Disks and run a scheduled backup from one disk to the other; if you delete a file by accident you only have to retrieve that one lost file which takes seconds instead of hours.
    ===Jac
    Frequent NAS200 Answers:
    1. DISABLE the "convert failed logins to guest logins" option to fix permission problems.
    2. NEVER insert or remove hard disks while the power is on. NAS200 doesn't support hot swapping.
    3. ALWAYS use the power button to turn the NAS200 off, don't just unplug it.
    4. Don't trust RAID. Make BACKUPS!
    5. To ACCESS the disks directly, you will need ext2 and/or XFS file systems. I recommend using SystemRescueCD.
    6. Disks will get HOT with standard fan, use "green" disks or consider replacing the fan.
    7. FTP server is insecure and doesn't work behind a NAT router. Use my firmware and SCP instead.
    8. MY FIRMWARE supports SSH shell prompt and SCP for secure file access, and allows running other software.

  • SQL Developer and Java GUI problems

    I am having a problem with all the java apps i use, including Oracle SQL Developer. When i load up SQL developer, the top of the "Connections" text is chopped off as well as all the table names in the list when I make a connection. Also the java buttons are rather large. Almost as if they have a carriage return in the text of the button.
    Its seems the gui configuration for java has been corrupted, but i cannot find where to modify those settings. I cant find anything on the internet on this. I have checked my video card settings and modified them to see if that is the issue, but it doesnt fix the problem.
    Since other java apps do the same thing, I know its a java issue, but Ive uninstalled all the JRE's and JDKs i have and reinstalled them, and I still have the problem.
    Im on an Windows XP box and running the JDK and JRE 1.5.0_09 versions. Any help would be appreciated. its very annoying to not be able to read some of the text in the java apps including sql developer due to the tops being cut off.
    I have an ATI RADEON 7000 on an DELL optiplex gx620.
    any help would be appreciated

    The first thing to try, if you haven't already, is to update your video driver.

  • SAP Logo/Title Bar (SAP GUI for HTML)

    Hello all,
    Anyone know how to disable the SAP logo/title bar that appears via an SAP GUI for HTML transaction (ie. PZ56)?  I'm trying to get the transaction to show in the Portal using the SAP Transaction iView, but it displays this SAP title bar with the SAP logo which I don't want.
    Thanks,
    Mike

    hi Mike ,
    this can be done using the Configuration.
    Go to transaction SICF and see the webgui internet service .
    in that , you will have a button called GUI CONFIGURATION
    and then, you insert another parameter caller ~noHeaderOKCode to 1 which will solve your problem.
    Hope this helps...
    Take care
    Anil

  • SAP GUI 7.20 Security Rules - How to 'Always Allow' Everything?

    The SAP GUI 7.20 comes with a list of security rules.
    What is the best way to allow all access so that user's wont get any security prompts?

    @Sven, section 2.5 refers to 'Central Repository for Security Configuration'. Like Michael, I have a large number of users and we package and distribute software using non-SAP software. We can't have a central repository that all users can connect to so the 'Location' registry entry wouldn't work for us.
    @Michael:
    > Under the SAP GUI Configuration / Security / Security Settings you can change the default of "Customized" to Disabled.
    Do you mean 'Default Action = Allow'? Mine is set to that, but I still get pop-up prompts.
    Would setting 'SecurityLevel = 0' result in the SAP GUI have the required result?
    I realise that this process would need to be followed:
    - Administrator should install a new version of the SAP GUI 7.20 onto a PC
    - Administrator should edit the registry values using the rule editor in the 'Security' node of the SAP GUI options dialogue
    - A saprules.xml file will then be generated
    - The saprules.xml file should then be copied from the %APPDATA%\SAP\Common folder to the location specified in the registry value 'Location' (maybe make Location a folder on the PC? and put the saprules.xml file into there?)
    - The saprules.xml file in the location specified in the registry value 'Location' will not be overwritten by SAP GUI patches or new installations, however it may need to be updated to include new features
    Note:
    - Registry values are stored in different places for 32 bit and 64 bit PC's

  • How configure AIR-1142N AP as a Repeater?

    Hi all.
    Is it possible to do that?
    I want to try to configure some APs as Repeaters, as I can't get a cat5 to some locations.
    I've tried 1130 and 1140 CLI commands, but they didn't work. Couldn't find anything in WLC 2112 GUI configuration window as well.
    For AP mode, there is no option as Repeater.
    I'll be highly appretiated if someone will show me the right direction.
    Regards.

    Hi,
    i am totally agreed with Surendra that
    Repeater is ios based access points terminalogy
    please let us know are you using WLC in your wirelss Lan infrastruture ?
    if yes than you can't achieve this OR
    if no you can configure one access point
    as a Root and the rests as repeater
    only in ios based (without Controller) access points.
    please let me know if this answered your question
    Thanks
    FARRAKH

  • [SOLVED] Arch Kernel Configuration

    Hi, I'd like to compile recompile the Kernel but I would like to know wich are the default configuration settings that the compiled kernel26 of the core repository has. I would like to tweak some things but starting from that configuration not from the defaul Kernel configuration found in www.kernel.org.
    I would like to know it ABS could be used to do it, or if I can get a configuration file somewhere and use it with ABS.
    Thank you very much.
    Last edited by KaoDome (2009-01-14 00:24:56)

    KaoDome wrote:
    Ok thank you very much! I've found the configuration within the ABS package. The I can edit it running make menuconfig (or the GUI configurator) and then save the edited file as config (in my case, if it was a x84_64 it would be config.x86_64.
    I had to change the checksum for that file in the PKGBUILD file in order to it to work.
    It's now compiling!
    Another question... Does it uses the CFLAGS defined in /etc/makepkg.conf when compiling the Kernel? I hope so...
    Once more, thank you very much for all!
    You can also use the ABS PKGBUILD, and add the "make menuconfig" option to be able to change the -ARCH settings.... then when you press exit it will save (and use) your newly created .config.
    # load configuration
    make menuconfig
    # build!
    So it will load the default -ARCH generic setup and then you can modify to your hardware specs.
    My AMD64 300HZ -Os Low-Latency kernel:
    $ uname -osrpmi
    Linux 2.6.28-ARCHtestAMD x86_64 AMD Turion(tm) 64 X2 Mobile Technology TL-60 AuthenticAMD GNU/Linux
    Last edited by methuselah (2009-01-14 18:58:30)

  • OpenSSO 8 configurator error due to special characters in password

    We got the same AMSetupServlet StringIndexOutOfBoundsException described in thread 5356908 when running the GUI configurator in OpenSSO Enterprise 8.0 Update 1 Patch 1.
    As in that posting, the error was caused by a special character in the password ($ in this case).
    So it seems that the fixes mentioned by kujalli didn't address this issue.

    Hello All,
    the second issue is resolved as i replaced some other character and included the two necessary for me and the issue is solved.
    For first issue, i found an OSS notes 173241, which says character # cannot be loaded alone. But the OSS notes is for version 3.1 and i am not sure whether the issue is fixed in 7.0 version
    Regards
    Suresh Kumar

  • Cannot open survey files from email after upgrading SAP gui to 720

    Cannot open survey files attachments from email after upgrading SAP gui from 640  to 720.
    Tried uninstalling & reinstalling but still error persists,
    Error is : cannot split connection string: /h/server name/s/sapdp00 ( from SAP GUI security )
    Please advise.

    Can't say I have seen this error before but if it is pertaining to the new security module within 7.20, which are much more strict then 6.40, I would look under the SAP GUI configuration options.  Focus on Security > Security settings.
    There are pages and pages of rules which can be defined.
    A test could be to disable all of them on an isolated machine and set them to allow and see if your problem persists.  If the error is resolved, it is something in there you need to address.
    Regards,
    Zecher

Maybe you are looking for

  • How to separate debit and credit values in gl statement report (daywise)

    hi experts, i have report. selection criteria is chars of account. gl account date . how to separate debit and credit values in gl statement?.(i know there is a indicator shkzg). but send me code. op date,   total credit,total debit , balances. also

  • Can't find the original sound card

    I have an HP Media Center m7334n desktop pc with xp multimedia.  It came with a Realtec sound card, and I installed a second C Media sound card to use with an external interface.  It was set up so that the Realtec handled all sounds for the pc such a

  • Serial Number Not Valid

    After installing new hard drive, I tried to reinstall acrobat standard version7.  During activation I was redirected due to technology issues, whateve that means. I downloaded from web site and could not activate because serial number (from cd case)

  • [AS][INDCC] How to set Color Conversion field to No Color Conversion when creating PDF Export preset

    How can i set Color Conversion field in Export to PDF dialog to No Color Conversion when creating PDF Export preset? i have done a bit of searching and have found where it has been recommended to set effective pdf destination profile to use no profil

  • Passing System.out/System.err as parameters

    I'm sure there must be a simple answer to this that I'm just not seeing, suggestions please. I have a method in a logging utility that takes either a PrintWriter or a Printstream parameter as a target for logging and a second method that closes the l