Max # of Prefs?

Hi All,
We have a portlet that allows users to configure a variable numbers of preferences and are striking an issue where one user has configured a large number of prefferences (approx. 70) and that then breaks the portlet and the prefs page. The only way to get the portlet operating again is to delete a few prefs from the database. I have managed to reproduce the problem in our development environment.
Can anyone tell me what limits are imposed by Plumtree on the size or number of preferences?
-Steve

Hi Steve,
You're probably encountering a problem with the size of the HTTP Header - it may be too large for the web server. What HTTP response code are you getting from the portlet? The link below is to a MS support article with instructions on how to amend the registry to circumvent this problem. I've never done this and don't recommend it - try to use a workaround instead of changing the registry - as the support article indicates, it is a security risk to change this setting.
http://support.microsoft.com/default.aspx?scid=http://support.microsoft.%20com:80/support/kb/articles/q310/1/56.ASP&NoWebContent=1
Hope this helps,
Davin

Similar Messages

  • I do not know how

    how to add some button at my bottom?
    import java.awt.BorderLayout;
    import java.awt.Color;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    import javax.swing.UIManager;
    import javax.swing.WindowConstants;
    import com.jgoodies.forms.builder.PanelBuilder;
    import com.jgoodies.forms.layout.CellConstraints;
    import com.jgoodies.forms.layout.FormLayout;
    public final class anotherSubMenu extends JPanel {
         private JTextField inspectorField;
        private JTextField referenceNoField;
        private JTextField     anotherNew;
        private JComboBox  approvalStatusComboBox;
        private JPanel button;
         private JButton add;
         private JButton clear;
         private JButton edit;
         public anotherSubMenu(){
              setLayout(new BorderLayout());
              setBackground(Color.white); 
              System.out.println("test1");
                    add = new JButton("Add");
                  clear = new JButton("Delete");
                  edit = new JButton("Edit");
                  System.out.println("test2");
                 buildButton();
                 add(button, BorderLayout.SOUTH);
        public static void main(String[] args) {
            try {
                UIManager.setLookAndFeel("com.jgoodies.plaf.plastic.PlasticXPLookAndFeel");
            } catch (Exception e) {
                // Likely PlasticXP is not in the class path; ignore.
            JFrame frame = new JFrame();
            frame.setTitle("Member Information Center!");
            frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            JComponent panel = new anotherSubMenu().buildPanel();
            frame.getContentPane().add(panel);
            frame.pack();
            frame.setVisible(true);
        private void buildButton() {
              // TODO Auto-generated method stub
              button = new JPanel();
              button.add(add);
              button.add(clear);
              button.add(edit);          
         private void initComponents() {
            inspectorField         = new JTextField();
            referenceNoField       = new JTextField();
            anotherNew                  = new JTextField();
            approvalStatusComboBox = createApprovalStatusComboBox();
        private JComboBox createApprovalStatusComboBox() {
            return new JComboBox(
                new String[] { "Sungai Besi", "Damansara", "Taman Megah" ,"Cheras"});
        public JComponent buildPanel() {
              initComponents();
             FormLayout layout = new FormLayout(
                     "right:max(40dlu;pref), 3dlu, 70dlu, 7dlu, "
                   + "right:max(40dlu;pref), 3dlu, 70dlu",
                     "p, 3dlu, p, 3dlu, p, 3dlu, p, 9dlu, " +
                     "p, 3dlu, p, 3dlu, p, 3dlu, p, 9dlu, " +
                     "p, 3dlu, p, 3dlu, p, 3dlu, p");
             PanelBuilder builder = new PanelBuilder(layout);
             builder.setDefaultDialogBorder();
             CellConstraints cc = new CellConstraints();
             // Fill the table with labels and components.
             builder.addSeparator("Update Center.",    cc.xyw(1,  1, 7));
             builder.addLabel("Name",             cc.xy (1,3));
             builder.add(inspectorField,          cc.xyw(3, 3, 3));
             builder.addLabel("ID_NUM",     cc.xy (1, 5));
             builder.add(referenceNoField,        cc.xy (3, 5));
             builder.addLabel("Address",          cc.xy(1, 7));
             builder.add(anotherNew,               cc.xyw(3, 7,5));
             builder.addLabel("Branch",           cc.xy (1, 9));
             builder.add(approvalStatusComboBox,  cc.xy (3, 9));
             return builder.getPanel();
       

    this code i change again..the Jgoodies part is fine..juz correct the way i put them together..help..
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    import javax.swing.UIManager;
    import javax.swing.WindowConstants;
    import com.jgoodies.forms.builder.PanelBuilder;
    import com.jgoodies.forms.layout.CellConstraints;
    import com.jgoodies.forms.layout.FormLayout;
    public class newSubMenu extends JFrame{
         private JTextField inspectorField;
        private JTextField referenceNoField;
        private JTextField     anotherNew;
        private JComboBox  approvalStatusComboBox;
        private JPanel button;
        private JPanel upperPart;
        private JPanel insidePart;
         private JButton add;
         private JButton clear;
         private JButton edit;
         private static final long serialVersionUID = 1L;
         public newSubMenu (){
              super("Client User Interface");
              addWindowListener(new WindowAdapter(){
                   public void windowClosing(WindowEvent e){
                        System.exit(0);
              add = new JButton("Add");
             clear = new JButton("Delete");
             edit = new JButton("Edit");
              buildMenu();
              //buildButton();
              add(button, BorderLayout.SOUTH);
              add(insidePart,BorderLayout.NORTH);
              buildPanel();
         private void buildMenu(){
              JMenuBar mb = new JMenuBar();
              JMenu file = new JMenu("File");
              JMenu edit = new JMenu("Edit");
              JMenu source = new JMenu("Source");
              JMenuItem item = new JMenuItem("Exit");
              //Closes the application from the Exit
              //menu item.
              item.addActionListener(new ActionListener(){
                   public void actionPerformed(ActionEvent e){
                        System.exit(0);
              });// Ends buildMenu method
              file.add(item);
              mb.add(file);
              mb.add(edit);
              mb.add(source);
              setJMenuBar(mb);     
         public static void main(String[] args) {
            try {
                UIManager.setLookAndFeel("com.jgoodies.plaf.plastic.PlasticXPLookAndFeel");
            } catch (Exception e) {
                // Likely PlasticXP is not in the class path; ignore.
            JFrame frame = new JFrame();
            frame.setTitle("Member Information Center!");
            frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            JComponent panel = new anotherSubMenu().buildPanel();
            frame.getContentPane().add(panel);
            frame.pack();
            frame.setVisible(true);
         private void buildPanel(){
              upperPart = new JPanel();
              setLayout(new BorderLayout());
              upperPart.setBackground(Color.white);
              upperPart.add(buildButton());
              upperPart.add(insidePart());
         private Component insidePart() {
              initComponents();
            FormLayout layout = new FormLayout(
                    "right:max(40dlu;pref), 3dlu, 70dlu, 7dlu, "
                  + "right:max(40dlu;pref), 3dlu, 70dlu",
                    "p, 3dlu, p, 3dlu, p, 3dlu, p, 9dlu, " +
                    "p, 3dlu, p, 3dlu, p, 3dlu, p, 9dlu, " +
                    "p, 3dlu, p, 3dlu, p, 3dlu, p");
            PanelBuilder builder = new PanelBuilder(layout);
            builder.setDefaultDialogBorder();
            CellConstraints cc = new CellConstraints();
            // Fill the table with labels and components.
            builder.addSeparator("Update Center.",    cc.xyw(1,  1, 7));
            builder.addLabel("Name",             cc.xy (1,3));
            builder.add(inspectorField,          cc.xyw(3, 3, 3));
            builder.addLabel("ID_NUM",     cc.xy (1, 5));
            builder.add(referenceNoField,        cc.xy (3, 5));
            builder.addLabel("Address",          cc.xy(1, 7));
            builder.add(anotherNew,               cc.xyw(3, 7,5));
            builder.addLabel("Branch",           cc.xy (1, 9));
            builder.add(approvalStatusComboBox,  cc.xy (3, 9));
            return builder.getPanel();
         private Component buildButton() {
              // TODO Auto-generated method stub
              button = new JPanel();
              button.add(add);
              button.add(clear);
              return button.add(edit);          
         private void initComponents() {
            inspectorField         = new JTextField();
            referenceNoField       = new JTextField();
            anotherNew                  = new JTextField();
            approvalStatusComboBox = createApprovalStatusComboBox();
        private JComboBox createApprovalStatusComboBox() {
            return new JComboBox(
                new String[] { "Sungai Besi", "Damansara", "Taman Megah" ,"Cheras"});
    }

  • Dynamic width in JTable

    Hi!. I�m a newbie and i have a problem with adjusting the widths of the columns in a JTable. How can they be resized in runtime? I tried getTableHeader.setResizingAllowed(true);
    but it doesn�t work properly.
    What�s wrong?
    Thanks in advance.

    Thanks, Dr. Is it possible to achieve a "more dynamic behaviour"?. The parameters min,max and pref in
    tc.setMinWidth(min);
    tc.setMaxWidth(max);
    tc.setPreferredWidth(pref);
    are fixed. Besides this way, I wonder if JTable can automatically resize the columns� widths with the data length at run time, and you don�t have to worry at all about widths.I supposed that AUTO_RESIZE_ALL_COLUMNS would be the key but it doesn�t work so.
    Thanks again

  • AL screenshots (Archival, see other screenshots thread)

    One thing I noticed is we dont really have any screenshots of AL, so if we all post ours here maybe the gods will make use of them on the www.archlinux.org.
    To us that are in the know, yes a desktop will look the same no matter what distro if u want it to.. but you know what end users are like... and we get to laugh at each others desktops in the mean time.
    http://netrux.com/ody.jpg  <<-- mine on my lappy, fresh install of AL with KDE 3.1 and my own tweaks..

    Rouslan wrote:There's some option in /usr/lib/mozilla-1.3b/unux.js (?). I do not really rememeber and I'm not at home right now - run `locate unix.js`to find it. For mozilla, it's somewhere in /opt/mozilla.
    Oh, well... I'l post its exact path and option you need to change later tonight.
    // TrueType
    pref("font.FreeType2.enable", true);
    pref("font.freetype2.shared-library", "libfreetype.so.6");
    // if libfreetype was built without hinting compiled in
    // it is best to leave hinting off
    pref("font.FreeType2.autohinted", false);
    pref("font.FreeType2.unhinted", true);
    // below a certian pixel size anti-aliased fonts produce poor results
    pref("font.antialias.min", 10);
    pref("font.embedded_bitmaps.max", 1000000);
    pref("font.scale.tt_bitmap.dark_text.min", 64);
    pref("font.scale.tt_bitmap.dark_text.gain", "0.8");
    // sample prefs for TrueType font dirs
    pref("font.directory.truetype.1", "/user/fonts");
    //pref("font.directory.truetype.2", "/u/sam/tt_font2");
    //pref("font.directory.truetype.3", "/u/sam/tt_font3");
    that part
    It's very straigt forward, find the code, enable xft and point to a tt font dir. Startup mozilla/phoenix again and make it use the right fonts. (of course you need the xft2 package)

  • No sound with either headphones or internal speakers

    I have no sound suddenly, with Itunes or CDs. Nothing from the headphones or the internal speakers. Mute is not on and Internal Speakers is selected for use of internal speakers. Has anyone else had this problem?

    Hi Nancy-
    I have a 17" G4 1.5MHz aluminum PowerBook, 10.4.8, with no audio, too. Volume = max, System Prefs sound-in = internal mic, out = internal spkrs. Microphone shows no input. Connecting an iMic (w/external microphone) via USB causes sound-in pane to recognize the USB device, and both line-in and internal mic show a very regular pulse (about 1-2 per second) but no sign of any real audio from mic. Disconnecting the USB device, closing then reopening System Prefs sound pane, causes pulse to disappear.
    Tried all the usual suspects: Zap PRAM, reset PMU, different login, even tried the Garage Band classical piano trick (play a few notes, audio might return), but nothing worked.
    Machine was purchased in '04, well out of warranty. I found the sound board's flex cable had somehow popped loose; reseating that flex cable (next to hard drive) solved all audio issues since the sound card was essentially disconnected. (Taping it down might be a good idea.) Of course, this requires opening the machine.....
    Connector might have been jarred loose from rough handling, I dunno. Might be worth checking.

  • Firefox stops loading websites (even after configuring about:config)

    I have FireFox 8 installed, and it always stops loading websites. I've read this thread:
    https://support.mozilla.com/en-US/questions/881844
    And I followed the chosen solution by "archeocyathan" that is in this thread, and I went to about:config and changed the "max-connections" from 96 to 48.
    When I change the "max-connections" - it works fine but only for a few minutes, and then the settings go back again to 96 and I have to change them again.
    Questions:
    1) Why is that?
    2) Is there any way to FORCE about:config to stay with "max-connections" on 48 ? I looked online for ways to save it, but I understand once you make changes they are saved - so why it always changes back from 48 to 96?
    3) Any way you can help out with it?
    It's FireFox 8 as I mentioned, the latest version of FireFox ... I even uninstalled my Antivirus and nothing worked so far.

    The current default of the network.http.max-connections pref in Firefox 8 on Windows should be 48
    See:
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.com/kb/Preferences+are+not+saved
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Not able to see max, pref and timeout value in the debug output

    Hi,
    I have enable connection pooling for the ldapcontext. and have set init, pref and max pool size as 1,3,5 respectively.
    However when i am running this program i am getting following output...
    Also it is returning me busy connections some times?
    I am using auth type as 'none simple' and protocol as 'plain'. [i am using jdk 1.5.0_2].
    What can be the problem?
    =======
    ***** start *****
    idle timeout: 0
    maximum pool size: 0
    preferred pool size: 0
    initial pool size: 1
    protocol types: plain
    authentication types: none simple
    anonymous pools:===== Pool start ======================
    maximum pool size: 0
    preferred pool size: 0
    initial pool size: 1
    current pool size: 0
    ====== Pool end =====================
    simple auth pools:
    ===== Pool start ======================
    maximum pool size: 0
    preferred pool size: 0
    initial pool size: 1
    current pool size: 0
    ====== Pool end =====================
    ***** end *****
    LdapPoolManager: using authmech: none
    com.sun.jndi.ldap.pool.Pool@14693c7 {}.get(): ldap.openldap.org:389:plain:
    =======

    Hello Prakash,
    Thanks for the reply
    I am able to see the mail in SOST but when I click on the Display Document to see the content of the mail then I am getting this error of 'you are not connected to the internet'
    My Program is to put the logo in my email body
    I am sending you the attached image

  • Network.http.max-persistent-connections-per-server keeps reverting to user set 4

    I didn't used to have this problem as far as I'm aware, but as of recently, I've noticed that if I try to download more than 4 of one thing at a time from the same site, it would fail. For instance, if I have up 5 web pages of streaming content, only 4 will load, the other 5th one will do nothing until I finish one of the others. Upon looking up some information on this, I saw that the network.http.max-persistent-connections-per-server is set at "user set = 4", and if I change that number to anything else, it corresponds. If I click to 'reset' the number, it goes to the default of 6 - which is still less than what it used to be. I used to not even have a limit on this as far as I'm aware, or if I did, it was well beyond 10 and that wasn't a product of me manipulating it.
    What I'm asking is this:
    1) How do I make this so it permanently switches to a higher number? Every time I reset it to 6 or I manually change the number to something higher, once I close it, those settings go back to 4.
    2) Why is it reverting and not staying the way I change it?
    3) What's the purpose of this and why is it just recently doing it when I haven't put any new add-ons or made any other refinements to Firefox that I'm aware of?
    Any help would be appreciated

    Two possible causes for it resetting to 4 that I can think of.
    # You have an add-on handing that pref and that is resetting it to 4 when Firefox is restarted.
    # That pref is set via user.js and that causes it to go to that value as Firefox starts.
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes <br />
    http://kb.mozillazine.org/User.js_file

  • RoboHelp HTML 9 Search Pane Max results controls

    RoboHelp HTML 9 with WebHelp as output...
    I have a two part question. By default when our users do a search in compile dhelp, they see 10 search results per page. Is there a place in my RoboHelp interface where I can change that to larger number? I have found a line of code in a *.js file where it looks like I could manually change it, but would prefer not to have to do it that route in case that causes unintended hiccups elsewhere.
    var nMaxResult = 10 ; 
    Second part of my question is related to statement in release notes/new features notes for RoboHelp 9 that state users can control the max search results per page on-the-fly as they use the Search pane. This feature only applies to WebHelp or WebHelp Pro and my output is WebHelp. I can see a line of code for that feature in the whfform.htm file but nothing shows up like that in the Search pane within compiled help. Is this a bug or is there a control somewhere in RoboHelp project settings that allows me to enable that option for users? The last 2 lines below would seem to control this area. The Search pane items referenced in first 4 lines do show up ok in my Search pane.
    gsTitle = "Type in the word(s) to search for:";
    gsTitle = "Type in the word(s) to search for:";
    gsHiliteSearchTitle = "Highlight search results";
    gsHiliteSearchTitle = "Highlight search results";
    gsMaxSearchTitle = "Search results per page" ;
    gsMaxSearchTitle = "Search results per page";
    Thanks for any insight you can provide,
    KF

    I know this is an old topic, but I was trying to figure this out myself today and finally found it. In case others have been looking for this, it's in in this file:
    whform.js
    find this variable:
    var gnMaxRslt = 10;
    and then change the 10 to the number you want.
    If you do that in the generated help, the number will change in the Search pane, but it will still display only 10 results. To get it to actually display more than 10 results, I had to edit the RoboHelp file, not the generated help. I made a copy of C:\Program Files (x86)\Adobe\Adobe RoboHelp 10\RoboHTML\WebHelp5Ext\template_stock\whform.js before I edited it. (Right-click the file, click Copy, then right-click in the folder and click Paste. Edit the one that doesn't say Copy in the filename. Then if you want to back it out, delete the one you edited and remove Copy from the original.) If you have your project open in RoboHelp, close it, then reopen it so it can "grab" the new info.
    This ought to be in the WebHelp Setting dialog box on the Search pane.
    --Karla--

  • I am trying to configure my SCXI-1540 card for excitation voltage and frequency using MAX - but it is not giving me that option when I click on the card and then properties​, am I looking in the wrong place?

    I am trying to configure my SCXI-1540 w/1315 card for excitation voltage and frequency using MAX - but it is not giving me that option when I click on the card and then properties, am I looking in the wrong place?
    I have LabVIEW Express 7.0 Professional - SCXI-1000 Chassiss - along with SCXI-1112, and SCXI 1520/1314 - cable to the PCI-6052E is attached to the 1520 card.
    MAX says it recognizes all the cards in the chassiss.

    Jeremy, Thanks for the reply.
    I tried to set up the system as DAQmx.
    I had MAX auto-detect the set-up - and it recognized all the cards - but did not select the 1315 accessory on the 1540 card - I had to do that manually - but in the configuration section I would select the accessory and it would deselect itself. I had to get out of the set-up and then right click on the 1540 card and click on the "Accessories" tab and select the 1315 terminal block that way.
    It didn't seem right that the system should behave that way, but I pressed onward.
    I then tried to create a new DAQmx Task
    When I create new DAQmx task and then click on Analog Input no "Position" Tab appears for me to select, all I get are:
    Analog>>Voltage
    Analog>>Temperature
    Ana
    log>>Strain
    Analog>>Current
    Analog>>Resistance
    Analog>>Frequency
    Analog>>Custom Voltage with Excitation
    Do you think there might be something wrong with either my hardware or perhaps my configuration that is not allowing it to recognize the 1540/1315 in DAQmx?
    I had included the system report of what programs I am using, etc. as attached file nireport.txt
    After the DAQmx did not work I tried installing everything as Traditional DAQ and it did let me set-up the 1540 Card with Excitation Voltage and Frequency and gain - I then went in to the VI that I had built and tried to use the Express DAQ Assisant to read the channel that I am connected to on the 1315/1540 - when I try to use DAQ Assistant it gives me an error saying that "Device not available in NI-DAQmx. It is possible that the device is being use by traditional NI-DAQ"
    Which I guess it is since both configurations are now set-up in MAX.
    I would PREFER to use the DAQmx set-up, but I am confused as to WHY it won
    't come up with
    Analog input>>POSITION>>LVDT
    When I try to create a new DAQmx task.
    Thanks for the help so far! As you can probably tell I am new at this.
    Ryan
    Attachments:
    nireport.txt ‏2 KB

  • How to give for a text field 'max+1' value instead of sequence .

    HI All,
    I have a requirement like ,
    For my text field i applied sequence by using groovy expression.Now i need to change that to 'max+' value of table Grid and display in the text field. Can please suggest me how can i implement .(JDev 11.1.1.3 v)
    Regards,
    Sindhu.

    hi user,
    if you want perform some increment operation . in auto means. donot prefer these thread given below..
    there is lot thread of for creating sequence. based on the sequence it works perfect.
    if i understud correctly means follow this
    Increment operation // it perfoms some increment operation. not using sequennce.
    button press
    compliation problem // have a look at this
    if cumes under cirumstance for multiple user on that scree or ui . probabaly this idea(max)or (some increment) will fails.
    i i will prefer sequqnecs._
    IN ADDITION INFO TO USER
    JOHN SAYIGN EXACTLY
    Edited by: Erp on Sep 25, 2011 9:46 PM

  • ACR PSD files - larger file size and max compatible

    When using ACR > Save As to save a bunch of PSD files from raw files the resulting PSD file sizes are larger.
    for example:
    if I output and save from ACR directly to a folder as a PSD, I'm seeing the file size at 63.1 MB
    If I open the raw file to PS and save it within Photoshop to a PSD file the file size is 56.1 MB ( this is true whether the Max Compatible is turned on or off... probably because it's a flat PSD file)
    why the difference?  same output settings from ACR, bit depth etc.
    Also,
    The file saved out of ACR appears to be "tagged" as a Maximum compatible file even though it is flat, so subsequent saves, even if the PS pref is set to Never for maximum compatibility are disregarded. Whereas the same file that was opened into PS from ACR and then saved with the Never PS pref behaves correctly.
    Is there a preference setting within ACR to not save the PSD's as Maximum compatible?
    thanks
    j
    ACR 6.4
    PS 12.0.4
    10.6.7

    Hi Noel
    I may not have been clear in my post. It's not about PSD v. Raw file size, just comparing PSD files.
    Starting with a raw file ( in this case a 5DmII CR2)
    Using the same settings (mid-bottom of ACR window) when saving a file using the "save image" within ACR or opening the file into PS and then saving. This is where I'm seeing the file size difference.
    The second part of the problem is that PSD files that are saved directly out of ACR using the "save image" (bottom left of ACR window) are all set as Maximum Compatibility. As a result opening these files will always be have the extra data and saving time that files with Maximum Compatibility enabled have. The only way to get around this is to have your PS prefs set to Never or Ask and the "Save As" to overwrite the file.
    I just reprocessed a folder of PSD's that were saved out of ACR by overwriting as above and the 36 files (with layers, retouching etc) went from 6.9GB to 5.6GB, and the save time is also faster.
    This isn't intended to be a discussion about the benefits or disadvantages of the Maximum Compatibiliy "feature", but just a question as to whether it can be turned off in PSDs saved from ACR.
    thanks
    j

  • What is the max charge cycle?

    What is the max charge cycle?
    If it reach the max, will apple replace it under warrenty? or it not covered, and I have to buy new battery?
    Like when you go to System Pref > About this mac > Power > Recharge Cycle.
    It will tell you the amount of charged you made. What is the max you can recharge?

    A properly maintained Apple notebook battery is designed to retain up to 80% of its original capacity after 300 full charge and discharge cycles. See http://www.apple.com/batteries for lots of good info on Apple batteries.

  • Max allowed No of rows in SAP NetWeaver BW Connection

    Hi Experts,
    I am building a dashboard using SAP Netweaver BW Connection.
    Query results in approx 4000 rows of data.(we know its not preferred to go with >512 rows of data but client is ok with the performance issue because of more data).
    When i publish the dashboard its showing initializing.... and not moving any further.
    I have changed the max. no of rows in the xcelcius(File->Preferences->Excel options->5000).
    Please help me in solving this problem ASAP.
    Thanks a ton in advance,
    Bhargava Bommidi.
    Edited by: BHARGAVA  BOMMIDI on Mar 31, 2010 11:42 AM

    Hi Bhargav,
    I'm also facing the same issue.
    Have done all the process given in,SAP Note 1307538.Also changed necessary parameters in Xcelsius.(File->Pref.->Excel Options)
    Still the issue is... LiveOffice brings the whole data (approx.>1500 rows) in excel successfully,but when I run the dashboard through parameter/ prompt to webi report it again truncates row after 512 rows.
    Looking fwd for help.
    Regards,
    Chitra

  • What are Sys Prefs for View desktop on TV monitor

    I have the cable connected to the computer and a flat screed TV.
    i get the startup display on the monitor, the mouse tracks and the screen saver works but the screen saver pictures are not the same.
    I cannot get the computer desktop on the TV monitor so that I can use the computer super drive as a DVD player to watch a movie.
    Is there a specific setup fot the system preferences?

    I am assuming you have a mini-displayport/thunderbolt to HDMI adapter and of course a HDMI cable.
    Set the TV to the input you connected the HDMI cable to.
    On your computer, if you open the Displays preferences and do not see an Arrangement tab (or there is an Arrangement tab that shows only a single monitor) then there is something physically wrong with your connection.  Try clicking Detect Displays just to see if the computer can now sense the presence of the connection. Check your cables and make sure the mini-displayport plug is pushed firmly in so that essentially all the metal part disappears inside the socket.  Mini-displayport plugs can be a little tricky in that you need to make sure the plug is fully seated in their socket.
    If you do have an Arrangement tab, and it shows two screens, then click Gather Windows to bring the TV's Displays preferences on to your main screen if the TV is not yet showing an image.  Set the proper resolution (probably 720p, 1080i, or 1080p).  Set the refresh rate (probably 60Hz) if that preference is shown.  You should see a picture at this point.  I  recommend turning off mirrored displays if it is enabled (more about this below).
    You may have to play with the underscan/overscan settings on your TV and the displays prefs for the TV if the picture is too small or larger for the TV screen.
    Also, you need to set your Sound preferences to output to the HDMI connection.  If the MBP doesn't support audio through the mini-displayport then you will need to connect your stereo audio out to your TV (3.5 mm  stereo jack for the compter to usually RCA jacks on the TV).
    Arrangements, Menu Bar, Extended Displays, and Mirrored Displays
    When you have multiple monitors (and the TV is considered just a monitor) only one monitor is designated as the "main" monitor.  That's the one with the menu bar.
    If you look at the Arrangement tab in your Displays preferences you will see both monitors.  One will have a little white "menu bar" on it.  That's your main monitor.  You can drag the little menu bar to the other monitor if you wish to make it the main monitor.
    You cannot make both monitors main monitors.  However there is a third party app called MenuEverywhere that allows you to do that (it has mixed reviews).
    Your two monitors can be spatially arranged with the Arrangement in Displays as well.  Drag the monitors around each other to define their relationship.  Then you can drag the mouse or windows across with in that "space".  This is extended desktop mode and I recommend that to be able to use all the available screen real estate.  However there is a checkbox in the Arrangement to run in mirrored mode.  Now the two images are identical on both screens albeit the max screen size is determined by the smallest screen in the mirrored set.  You would of course have the menu bar on both screens since they are mirrors of each other.  But I think it's a waste of good screen real estate.

Maybe you are looking for

  • What can i do for a botched repair?

    Hi all, i've experienced a problem with a "repair" done at the Rozzano (Italy) genius bar, is there anything i can do? When i brought my computer to the apple store it had one broken cpu fan and one working. When i got it back both fans weren't worki

  • 10.4.8 and Safari crashes

    Since installing 10.4.8 (and repairing permissions, and despite trashing plist preferences for Safari) the application crashes repeatedly for random reasons. What to do?

  • JButton disappear after minimizing the window

    Hello, I am working on a project where user can create JButton dynamically using drag-and-drop. Now the issue is that when I minimize the window and then maximize it, the dynamically created JButton disappear whereas the static ones remain as it is.

  • RH_INSERT_INFTY

    I'm trying to create a new infotype 1028 for one of the object of the structure. Unfortunatly I cannot use the function module RH_INSERT_INFTY... Is there any other function modules to be used?   data : lit_1028 type standard table of hrp1028,       

  • Question on Browser and mail

    my 1st question, Is there any way (or an easy way) to set the browser so when you click on it,it will open the search page. I have been having a hard time getting to the page at times I cant always get it to open by just hitting the H key. 2nd questi