Strange User Interface Behaviour

Dear all, I have a "funny" problem. Below is my code :
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class Interface extends JFrame implements ActionListener
     Processes processes_this;
     JButton Bttn_Add, Bttn_Left, Bttn_Right, Bttn_Up, Bttn_Down, Bttn_Remove, Bttn_Test;
     JLabel Label_FocusTitle, Label_Focus, Label_XTitle, Label_X, Label_YTitle, Label_Y;
     JTextArea TextArea_ComponentList;
     JMenuBar MenuBar_AllMenu;
     JMenu Menu_File, Menu_Edit;
     JMenuItem MenuItem_New, MenuItem_Open, MenuItem_Close, MenuItem_Save, MenuItem_SaveAs, MenuItem_Print, MenuItem_Exit;
     JMenuItem MenuItem_Add, MenuItem_Remove;
     JPanel Panel_Main, Panel_Format, Panel_Button, Panel_Arrow;
     JScrollPane ScrollPane_TextArea;
     SpringLayout layout = new SpringLayout();
     public Interface(Processes p)
          processes_this = p;
          processes_this.recordLog("Start Interface.Interface");
          this.initButton();
          this.initLabel();
          this.initTextArea();
          this.initMenu();
          this.initPanel();
          this.setConstraint();
          this.initialCondition();
          this.initFrame();
          processes_this.recordLog("End Interface.Interface");
     private void initButton()
          processes_this.recordLog("Start Interface.initButton");
          Bttn_Add = new JButton("ADD");
          Bttn_Add.setPreferredSize(new Dimension(125,40));
          Bttn_Add.setActionCommand(GenVar.General.ACTION_COMMAND_ADD);
          Bttn_Add.addActionListener(this);
          Bttn_Remove = new JButton("REMOVE");
          Bttn_Remove.setPreferredSize(new Dimension(125,40));
          Bttn_Remove.setActionCommand(GenVar.General.ACTION_COMMAND_REMOVE);
          Bttn_Remove.addActionListener(this);
          Bttn_Test = new JButton("TEST");
          Bttn_Test.setPreferredSize(new Dimension(125,40));
          Bttn_Test.setActionCommand(GenVar.General.ACTION_COMMAND_TEST);
          Bttn_Test.addActionListener(this);
          Bttn_Up = new JButton("U");
          Bttn_Up.setPreferredSize(new Dimension(50,80));
          Bttn_Up.setActionCommand(GenVar.General.ACTION_COMMAND_UP);
          Bttn_Up.addActionListener(this);
          Bttn_Down = new JButton("D");
          Bttn_Down.setPreferredSize(new Dimension(50,80));
          Bttn_Down.setActionCommand(GenVar.General.ACTION_COMMAND_DOWN);
          Bttn_Down.addActionListener(this);
          Bttn_Left = new JButton("L");
          Bttn_Left.setPreferredSize(new Dimension(80,50));
          Bttn_Left.setActionCommand(GenVar.General.ACTION_COMMAND_LEFT);
          Bttn_Left.addActionListener(this);
          Bttn_Right = new JButton("R");
          Bttn_Right.setPreferredSize(new Dimension(80,50));
          Bttn_Right.setActionCommand(GenVar.General.ACTION_COMMAND_RIGHT);
          Bttn_Right.addActionListener(this);
          processes_this.recordLog("End Interface.initButton");
     private void initLabel()
          processes_this.recordLog("Start Interface.initLabel");
          Label_FocusTitle = new JLabel("Focus : ");
          Label_FocusTitle.setFont(new Font("Times New Roman",Font.BOLD,16));
          Label_Focus = new JLabel("focus");
          Label_Focus.setFont(new Font("Times New Roman",Font.BOLD,16));
          Label_XTitle = new JLabel("X : ");
          Label_XTitle.setFont(new Font("Times New Roman",Font.BOLD,16));
          Label_X = new JLabel("999");
          Label_X.setFont(new Font("Times New Roman",Font.BOLD,16));
          Label_YTitle = new JLabel("Y : ");
          Label_YTitle.setFont(new Font("Times New Roman",Font.BOLD,16));
          Label_Y = new JLabel("999");
          Label_Y.setFont(new Font("Times New Roman",Font.BOLD,16));
          processes_this.recordLog("End Interface.initLabel");
     private void initTextArea()
          processes_this.recordLog("Start Interface.initTextArea");
          TextArea_ComponentList = new JTextArea("");
          TextArea_ComponentList.setEditable(false);
          ScrollPane_TextArea = new JScrollPane(TextArea_ComponentList);
          //ScrollPane_TextArea.setPreferredSize(new Dimension(168, 150));
          processes_this.recordLog("End Interface.initTextArea");
     private void initMenu()
          processes_this.recordLog("Start Interface.initMenu");
          MenuBar_AllMenu = new JMenuBar();
          MenuItem_New = new JMenuItem("New");
          MenuItem_New.setMnemonic(KeyEvent.VK_N);
          MenuItem_New.setActionCommand(GenVar.General.ACTION_COMMAND_NEW);
          MenuItem_New.addActionListener(this);
          MenuItem_Open = new JMenuItem("Open");
          MenuItem_Open.setMnemonic(KeyEvent.VK_O);
          MenuItem_Open.setActionCommand(GenVar.General.ACTION_COMMAND_OPEN);
          MenuItem_Open.addActionListener(this);
          MenuItem_Close = new JMenuItem("Close");
          MenuItem_Close.setMnemonic(KeyEvent.VK_C);
          MenuItem_Close.setActionCommand(GenVar.General.ACTION_COMMAND_CLOSE);
          MenuItem_Close.addActionListener(this);
          MenuItem_Save = new JMenuItem("Save");
          MenuItem_Save.setMnemonic(KeyEvent.VK_S);
          MenuItem_Save.setActionCommand(GenVar.General.ACTION_COMMAND_SAVE);
          MenuItem_Save.addActionListener(this);
          MenuItem_SaveAs = new JMenuItem("Save As");
          MenuItem_SaveAs.setMnemonic(KeyEvent.VK_A);
          MenuItem_SaveAs.setActionCommand(GenVar.General.ACTION_COMMAND_SAVEAS);
          MenuItem_SaveAs.addActionListener(this);
          MenuItem_Print = new JMenuItem("Test Print");
          MenuItem_Print.setMnemonic(KeyEvent.VK_P);
          MenuItem_Print.setActionCommand(GenVar.General.ACTION_COMMAND_PRINT);
          MenuItem_Print.addActionListener(this);
          MenuItem_Exit = new JMenuItem("Exit");
          MenuItem_Exit.setMnemonic(KeyEvent.VK_X);
          MenuItem_Exit.setActionCommand(GenVar.General.ACTION_COMMAND_EXIT);
          MenuItem_Exit.addActionListener(this);
          MenuItem_Add = new JMenuItem("Add");
          MenuItem_Add.setMnemonic(KeyEvent.VK_A);
          MenuItem_Add.setActionCommand(GenVar.General.ACTION_COMMAND_ADD);
          MenuItem_Add.addActionListener(this);
          MenuItem_Remove = new JMenuItem("Remove");
          MenuItem_Remove.setMnemonic(KeyEvent.VK_R);
          MenuItem_Remove.setActionCommand(GenVar.General.ACTION_COMMAND_REMOVE);
          MenuItem_Remove.addActionListener(this);
          Menu_File = new JMenu("File");
          Menu_File.setMnemonic(KeyEvent.VK_F);
          Menu_File.add(MenuItem_New);
          Menu_File.add(MenuItem_Open);
          Menu_File.addSeparator();
          Menu_File.add(MenuItem_Save);
          Menu_File.add(MenuItem_SaveAs);
          Menu_File.addSeparator();
          Menu_File.add(MenuItem_Print);
          Menu_File.add(MenuItem_Exit);
          Menu_Edit = new JMenu("Edit");
          Menu_Edit.setMnemonic(KeyEvent.VK_E);
          Menu_Edit.add(MenuItem_Add);
          Menu_Edit.add(MenuItem_Remove);
          MenuBar_AllMenu.add(Menu_File);
          MenuBar_AllMenu.add(Menu_Edit);
          processes_this.recordLog("End Interface.initMenu");
     private void initPanel()
          processes_this.recordLog("Start Interface.initPanel");
          Panel_Button = new JPanel(layout);
          Panel_Button.setPreferredSize(new Dimension(500,100));
          Panel_Button.setBackground(Color.RED);
          Panel_Button.add(Bttn_Add);
          Panel_Button.add(Bttn_Remove);
          Panel_Button.add(Bttn_Test);
          Panel_Button.add(Label_FocusTitle);
          Panel_Button.add(Label_Focus);
          Panel_Button.add(Label_XTitle);
          Panel_Button.add(Label_X);
          Panel_Button.add(Label_YTitle);
          Panel_Button.add(Label_Y);
          Panel_Arrow = new JPanel(layout);
          Panel_Arrow.setPreferredSize(new Dimension(300,250));
          Panel_Arrow.setBackground(Color.BLUE);
          Panel_Arrow.add(Bttn_Up);
          Panel_Arrow.add(Bttn_Down);
          Panel_Arrow.add(Bttn_Left);
          Panel_Arrow.add(Bttn_Right);
          Panel_Format = new JPanel(layout);
          Panel_Format.setPreferredSize(new Dimension(500,550));
          Panel_Main = new JPanel(layout);
          Panel_Main.setPreferredSize(new Dimension(800,600));
          Panel_Main.setBackground(Color.GREEN);
          Panel_Main.add(Panel_Button);
          Panel_Main.add(Panel_Arrow);
          Panel_Main.add(Panel_Format);
          processes_this.recordLog("End Interface.initPanel");
     private void setConstraint()
          processes_this.recordLog("Start Interface.setConstraint");
          layout.putConstraint(SpringLayout.WEST, Bttn_Up, 125, SpringLayout.WEST, Panel_Arrow);
          layout.putConstraint(SpringLayout.NORTH, Bttn_Up, 15, SpringLayout.NORTH, Panel_Arrow);
          layout.putConstraint(SpringLayout.WEST, Bttn_Down, 125, SpringLayout.WEST, Panel_Arrow);
          layout.putConstraint(SpringLayout.NORTH, Bttn_Down, 63, SpringLayout.SOUTH, Bttn_Up);
          layout.putConstraint(SpringLayout.WEST, Bttn_Left, 35, SpringLayout.WEST, Panel_Arrow);
          layout.putConstraint(SpringLayout.NORTH, Bttn_Left, 100, SpringLayout.NORTH, Panel_Arrow);
          layout.putConstraint(SpringLayout.WEST, Bttn_Right, 70, SpringLayout.EAST, Bttn_Left);
          layout.putConstraint(SpringLayout.NORTH, Bttn_Right, 100, SpringLayout.NORTH, Panel_Arrow);
          layout.putConstraint(SpringLayout.WEST, Bttn_Add, 40, SpringLayout.WEST, Panel_Button);
          layout.putConstraint(SpringLayout.NORTH, Bttn_Add, 15, SpringLayout.NORTH, Panel_Button);
          layout.putConstraint(SpringLayout.WEST, Bttn_Test, 10, SpringLayout.EAST, Bttn_Add);
          layout.putConstraint(SpringLayout.NORTH, Bttn_Test, 15, SpringLayout.NORTH, Panel_Button);
          layout.putConstraint(SpringLayout.WEST, Bttn_Remove, 10, SpringLayout.EAST, Bttn_Test);
          layout.putConstraint(SpringLayout.NORTH, Bttn_Remove, 15, SpringLayout.NORTH, Panel_Button);
          layout.putConstraint(SpringLayout.WEST, Label_FocusTitle, 10, SpringLayout.WEST, Panel_Button);
          layout.putConstraint(SpringLayout.SOUTH, Label_FocusTitle, -5, SpringLayout.SOUTH, Panel_Button);
          layout.putConstraint(SpringLayout.WEST, Label_Focus, 5, SpringLayout.EAST, Label_FocusTitle);
          layout.putConstraint(SpringLayout.SOUTH, Label_Focus, -5, SpringLayout.SOUTH, Panel_Button);
          layout.putConstraint(SpringLayout.EAST, Label_Y, -10, SpringLayout.EAST, Panel_Button);
          layout.putConstraint(SpringLayout.SOUTH, Label_Y, -5, SpringLayout.SOUTH, Panel_Button);
          layout.putConstraint(SpringLayout.EAST, Label_YTitle, -5, SpringLayout.WEST, Label_Y);
          layout.putConstraint(SpringLayout.SOUTH, Label_YTitle, -5, SpringLayout.SOUTH, Panel_Button);
          layout.putConstraint(SpringLayout.EAST, Label_X, -30, SpringLayout.WEST, Label_YTitle);
          layout.putConstraint(SpringLayout.SOUTH, Label_X, -5, SpringLayout.SOUTH, Panel_Button);
          layout.putConstraint(SpringLayout.EAST, Label_XTitle, -5, SpringLayout.WEST, Label_X);
          layout.putConstraint(SpringLayout.SOUTH, Label_XTitle, -5, SpringLayout.SOUTH, Panel_Button);
          layout.putConstraint(SpringLayout.WEST, Panel_Button, 0, SpringLayout.WEST, Panel_Main);
          layout.putConstraint(SpringLayout.NORTH, Panel_Button, 0, SpringLayout.NORTH, Panel_Main);
          layout.putConstraint(SpringLayout.EAST, Panel_Arrow, 0, SpringLayout.EAST, Panel_Main);
          layout.putConstraint(SpringLayout.SOUTH, Panel_Arrow, 0, SpringLayout.SOUTH, Panel_Main);
          layout.putConstraint(SpringLayout.WEST, Panel_Format, 0, SpringLayout.WEST, Panel_Main);
          layout.putConstraint(SpringLayout.SOUTH, Panel_Format, 0, SpringLayout.SOUTH, Panel_Main);
          processes_this.recordLog("End Interface.setConstraint");
     private void initFrame()
          processes_this.recordLog("Start LoginScreen.initFrame");
          this.setTitle("TVP1500 Form Creator");
          this.setIconImage(new ImageIcon("Icon.JPG").getImage());
          this.setName(GenVar.General.FRAME_NAME_MAIN);
          this.getContentPane().add(Panel_Main, BorderLayout.CENTER);
          this.setJMenuBar(MenuBar_AllMenu);
          this.setResizable(false);
          this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          this.pack();
          Dimension Dimension_Temp = this.getSize();
          this.setLocation((processes_this.getScreenWidth()-Dimension_Temp.width)/2,(processes_this.getScreenHeight()-Dimension_Temp.height)/2);
          this.setVisible(true);
          processes_this.recordLog("End LoginScreen.initFrame");
     public void initialCondition()
          processes_this.recordLog("Start LoginScreen.initialCondition");
          Label_Focus.setText("");
          Label_X.setText("   ");
          Label_Y.setText("   ");
          Bttn_Add.setEnabled(false);
          Bttn_Test.setEnabled(false);
          Bttn_Remove.setEnabled(false);
          Bttn_Up.setEnabled(false);
          Bttn_Down.setEnabled(false);
          Bttn_Left.setEnabled(false);
          Bttn_Right.setEnabled(false);     
          processes_this.recordLog("End LoginScreen.initialCondition");
     public void actionPerformed(ActionEvent e)
          processes_this.recordLog("Start Interface.actionPerformed");
          if(e.getActionCommand().equals(GenVar.General.ACTION_COMMAND_NEW))
               processes_this.createNewFile();
          processes_this.recordLog("End Interface.actionPerformed");
     public void makeItGone()
          processes_this.recordLog("Start Interface.makeItGone");
          this.setVisible(false);
          processes_this.recordLog("End Interface.makeItGone");     
     public void makeItAppear()
          processes_this.recordLog("Start Interface.makeItAppear");
          this.setVisible(true);
          processes_this.recordLog("End Interface.makeItAppear");     
     public void enableMe()
          processes_this.recordLog("Start Interface.enableMe");
          this.setEnabled(true);
          processes_this.recordLog("End Interface.enableMe");
     public void disableMe()
          processes_this.recordLog("Start Interface.disableMe");
          this.setEnabled(false);
          processes_this.recordLog("End Interface.disableMe");
     public void addFormToPanel(JPanel p)
          processes_this.recordLog("Start Interface.addFormToPanel");
          Panel_Format.add(p);
          layout.putConstraint(SpringLayout.WEST, p, 50, SpringLayout.WEST, Panel_Format);
          layout.putConstraint(SpringLayout.NORTH, p, 100, SpringLayout.NORTH, Panel_Format);
          Panel_Format.revalidate();
          this.repaint();
          processes_this.recordLog("End Interface.addFormToPanel");
}At the initial calling, the display seems ok. But when I call addFormToPanel(JPanel p), in sudden my JFrame only show the Panel_Arrow, started from position (0,0). Does anyone can help me with this issue ? Thank you very much.....

UPDATE...
I have been in safe mode for a while... When I was login into safe mode the I suffered one of those graphical glitches... I took a photo. After that, when it finished to load the screen went black and nothing more happened... The computer was working... but not graphical interface at all... just a black screen.
Then, I decided to force to turn off.... and try again to login into safe mode. That time worked well and normal.
However, while I was in safe mode the mac behaved strange graphically, as you can see in this video. I really do not know if that is a normal behaviour in safe mode. Finally, while I was finishing the email to reply the apple support a heavy graphical glitch happened after the screen went black, as you can see in these photos ( 1, 2 and 3). I decided to turn of the computer and back to the normal mode.
I have collected another console log, it can be seen in the previous link to the error logs or in this link. The glitch occurred around 14.10 h today.
Thanks in advance for the help and your time!!! it is really appreciated!!!!

Similar Messages

  • Strange User Account behaviour at Log In - not solved re duplicate thread

    This morning I cold booted my laptop and strangely after signing in it declared that it was "Preparing Windows." I was then taken to a desktop with empty Documents etc. folders. Panicking I went to the User Accounts and found all my folders and data intact but not accessible through the "account" I had been forced to log in to. Licensed software that was not installed as multiple user wouldn't show as licensed so I must assume that some sort of default new profile had been created. However, in User Accounts there didn't seem to be anything new. 
    In addition to my account and that of my wife there were three other folders that I am sure have always been there. (1) Default (with user empty subfolders) (2) An alphanumeric (temp?) folder ... empty except for Appdata / Local / Temp ... itself empty (3) UpdatusUser - used by Nvidia to update the graphics driver (with user empty subfolders) (4) Public - usual subfolders. 
    I solved the problem by logging out and logging back in with my usual login credentials. (Switching user didn't work).
    What happened please and how can I prevent it happening again?

    This morning I cold booted my laptop and strangely after signing in it declared that it was "Preparing Windows." I was then taken to a desktop with empty Documents etc. folders. Panicking I went to the User Accounts and found all my folders and data intact but not accessible through the "account" I had been forced to log in to. Licensed software that was not installed as multiple user wouldn't show as licensed so I must assume that some sort of default new profile had been created. However, in User Accounts there didn't seem to be anything new. 
    In addition to my account and that of my wife there were three other folders that I am sure have always been there. (1) Default (with user empty subfolders) (2) An alphanumeric (temp?) folder ... empty except for Appdata / Local / Temp ... itself empty (3) UpdatusUser - used by Nvidia to update the graphics driver (with user empty subfolders) (4) Public - usual subfolders. 
    I solved the problem by logging out and logging back in with my usual login credentials. (Switching user didn't work).
    What happened please and how can I prevent it happening again?

  • Row currency has changed since the user interface was rendered on create

    Hi all,
    I am getting "Row currency has changed since the user interface was rendered. The expected row key was oracle.jbo.Key" error on create action. Use case is simple. There is view table and a create button. When I click to the create button i am getting this error. Browser back button is never used.
    The strange thing is i am not getting this error when i run my application on local envirionment. However after i had deployed it to the real development environment, it started to throw this error and i am not getting this error on other pages.
    JDeveloper Version: 11.1.2.2.0 (JSF 2.0)
    Development environment Weblogic Version: 11.1.1.6
    Regards,
    Anil

    Hi Timo,
    I changed my create button to create insert. The "Row Currency" error has gone and page is opened properly. However when i open a LOV (inputComboboxListOfValues and inputListOfValues), it throws an exception. I checked WLS logs and it logged the following error which i was never encounter.
    javax.servlet.ServletException: java.lang.NoSuchMethodError: oracle.jbo.uicli.binding.JUSearchBindingCustomizer.rebuildVCTree(Loracle/adf/model/binding/DCBindingContainer;)V
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:342)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused by: java.lang.NoSuchMethodError: oracle.jbo.uicli.binding.JUSearchBindingCustomizer.rebuildVCTree(Loracle/adf/model/binding/DCBindingContainer;)V
    at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding$AdfConjunctionCriterion._loadCriterionList(FacesCtrlSearchBinding.java:3342)
    at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding$AdfConjunctionCriterion.getCriterionList(FacesCtrlSearchBinding.java:3250)
    at oracle.adfinternal.view.faces.renderkit.rich.query.QueryBehavior.shouldShowInstructionText(QueryBehavior.java:58)
    at oracle.adfinternal.view.faces.renderkit.rich.QueryRenderer._createInfoFacet(QueryRenderer.java:1810)
    at oracle.adfinternal.view.faces.renderkit.rich.QueryRenderer.renderContentRow(QueryRenderer.java:720)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer.encodeAll(PanelHeaderRenderer.java:248)
    at oracle.adfinternal.view.faces.renderkit.rich.QueryRenderer.encodeAll(QueryRenderer.java:427)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer.renderChildrenAfterHelpAndInfo(PanelHeaderRenderer.java:637)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer._renderContentCell(PanelHeaderRenderer.java:1169)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer.renderContentRow(PanelHeaderRenderer.java:575)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelHeaderRenderer.encodeAll(PanelHeaderRenderer.java:248)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelGroupLayoutRenderer._encodeChild(PanelGroupLayoutRenderer.java:447)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelGroupLayoutRenderer.access$1500(PanelGroupLayoutRenderer.java:30)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelGroupLayoutRenderer$EncoderCallback.processComponent(PanelGroupLayoutRenderer.java:734)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelGroupLayoutRenderer$EncoderCallback.processComponent(PanelGroupLayoutRenderer.java:637)
    at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:187)
    at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:318)
    at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:283)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelGroupLayoutRenderer.encodeAll(PanelGroupLayoutRenderer.java:360)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelWindowRenderer.encodeContent(PanelWindowRenderer.java:689)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelWindowRenderer.encodeAll(PanelWindowRenderer.java:534)
    at oracle.adfinternal.view.faces.renderkit.rich.DialogRenderer.encodeAll(DialogRenderer.java:143)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
    at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)
    at oracle.adfinternal.view.faces.renderkit.rich.PopupRenderer.encodeAll(PopupRenderer.java:845)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase._renderPopup(SimpleInputListOfValuesRendererBase.java:886)
    at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase.renderElementContent(SimpleInputListOfValuesRendererBase.java:452)
    at oracle.adfinternal.view.faces.renderkit.rich.FormInputRenderer.encodeAllAsElement(FormInputRenderer.java:152)
    at oracle.adfinternal.view.faces.renderkit.rich.FormElementRenderer.encodeAll(FormElementRenderer.java:164)
    at oracle.adf.view.rich.render.RichRenderer.delegateRenderer(RichRenderer.java:1700)
    at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.renderFieldCellContents(LabeledInputRenderer.java:228)
    at oracle.adfinternal.view.faces.renderkit.rich.LabelLayoutRenderer.renderFieldCell(LabelLayoutRenderer.java:528)
    at oracle.adfinternal.view.faces.renderkit.rich.LabelLayoutRenderer.encodeAll(LabelLayoutRenderer.java:305)
    at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.encodeAll(LabeledInputRenderer.java:215)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer._encodeFormItem(PanelFormLayoutRenderer.java:1088)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer.access$100(PanelFormLayoutRenderer.java:50)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer$FormColumnEncoder.processComponent(PanelFormLayoutRenderer.java:1604)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer$FormColumnEncoder.processComponent(PanelFormLayoutRenderer.java:1523)
    at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:187)
    at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:318)
    at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:283)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer._encodeChildren(PanelFormLayoutRenderer.java:420)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer.encodeAll(PanelFormLayoutRenderer.java:208)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
    at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2194)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer.access$500(PanelBoxRenderer.java:40)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer$ChildEncoderCallback.processComponent(PanelBoxRenderer.java:2413)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer$ChildEncoderCallback.processComponent(PanelBoxRenderer.java:2396)
    at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:187)
    at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:318)
    at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:283)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer._encodeAllChildren(PanelBoxRenderer.java:1510)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer._renderContentRow(PanelBoxRenderer.java:1440)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer.encodeAll(PanelBoxRenderer.java:381)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
    at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2194)
    at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.access$400(RegionRenderer.java:50)
    at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer$ChildEncoderCallback.processComponent(RegionRenderer.java:707)
    at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer$ChildEncoderCallback.processComponent(RegionRenderer.java:692)
    at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:187)
    at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:318)
    at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:283)
    at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer._encodeChildren(RegionRenderer.java:297)
    at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.encodeAll(RegionRenderer.java:186)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at oracle.adf.view.rich.component.fragment.UIXRegion.encodeEnd(UIXRegion.java:323)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at oracle.adfinternal.view.faces.taglib.region.IncludeTag$FacetWrapper.encodeAll(IncludeTag.java:547)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeCenterFacet(PanelStretchLayoutRenderer.java:879)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeCenterPane(PanelStretchLayoutRenderer.java:1294)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeMiddlePanes(PanelStretchLayoutRenderer.java:351)
    at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeAll(PanelStretchLayoutRenderer.java:316)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
    at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)
    at oracle.adfinternal.view.faces.renderkit.rich.PageTemplateRenderer.encodeAll(PageTemplateRenderer.java:68)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
    at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)
    at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:274)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:624)
    at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:641)
    at oracle.adf.view.rich.render.RichRenderer.encodeAllChildrenInContext(RichRenderer.java:3062)
    at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1275)
    at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
    at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:923)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1681)
    at oracle.adfinternal.view.faces.context.PartialViewContextImpl._processRender(PartialViewContextImpl.java:321)
    at oracle.adfinternal.view.faces.context.PartialViewContextImpl.processPartial(PartialViewContextImpl.java:152)
    at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:974)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1674)
    at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:91)
    at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:399)
    at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:350)
    at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:131)
    at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:273)
    at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:165)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1032)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:339)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:237)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:509)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    ... 33 more
    Edited by: AnilA on 15.Nis.2013 16:36

  • Reading the output values after each step executes in LabVIEW User Interface

    Hello all,
    Development environment: TestStand 2010 SP1 and LabVIEW 2010 SP1
    Problem: is there a way to execute the subsequent steps programatically and get the output values from each of them?
    I have already extended a little bit a Full OI interface for TestStand to load up any sequence, choose some of the steps and run them step by step (something like option to Run Selected steps). What I am trying to do is to add some actions between each step and do that in User Interface (I can't modify the sequence!), so I am starting the NewExecution with some previously configured InteractiveArgsParam and set an option breakAtFirstStep to True. Afterwards I am just doing something like Step Over when debugging the sequence and this works good, but I didn't fine a way yet to read the output values from the steps...
    Then, if I wait until the execution finishes I can read my Results by processing the ResultObject, but this works only after finalizing of the test sequence. Since I wanted to stop after each step, read the values, do some actions and continue to the next step I tried to register an event callback for Trace of Execution View Manager. I can see that after each executed step this event is triggered, but when I try to read a ResultObject returned in Event Data it is not filled with values (ResultList seems to be empty?). Is it a proper behaviour or maybe I am doing the readout in wrong way? (It is the same VI as for reading ResultObjects after sequence finishes and there it works fine for arrays, containers and other data types).
    Like I mentioned I can't modify the Test sequences, I can't add a UImessages.
    What are my options? Should the trace event returns all output values from each steps or is it just used for status checking? Or maybe there is completely different approach to that matter?
    Thanks in advance for any suggestions,
    Best Regards.
    CLA, CTD, CLED @ Test & Measurements Solutions Poland
    Solved!
    Go to Solution.

    Thanks for your replay, I have tried to build it in my LabView Block Diagramm, es seems like this image.
    But the variable GetNumSubProperties ist always 0. Why?
    PS: I need only the variable "Step.Result.PassFail" from the last step, do you know, how can I get it? I think, it is maybe easier than read all the "Result".
    Attachments:
    ReadStepResultInLabview.JPG ‏39 KB

  • Master Detail Wizard and User Interface Defaults

    Trying to create a master/detail form (on one page, no report).
    1. Wizard is giving the option to use User Interface Defaults for the master table, but not for the detail (I don't want to for either) - is this the expected behaviour? If so, why the inconsistency? Will/can this be changed in the future?
    2. Despite selecting NOT to use UI defaults, and entering new region titles, wizard is creating default region titles using the UI defaults. Is this a bug?
    3. Supplementary: Is it possible to get rid of UI defaults?
    HTML DB 1.6.0.00.87

    I asked about this last month:
    Master Detail Wizard and User Interface Defaults
    with no response.
    Anyone?

  • Lost User interface in Premiere Pro ?

    A couple of weeks ago I signed up for Creative Cloud. I started using Premiere Pro CC. I knew I couldn't take advantage of the Mercury Engine because I only have ATI Radeon HD 4870 512 MB. I was still able to edit and work. Today I went to send the timeline to Speed grade and it took for ever to export, finally half way through the send I aborted and relaunched Premiere Pro. When Premiere opened up my user interface was gone. The drop down menus were all their but the user interface disappeared. If I went into create new Title I could see that window, but the timeline, bins, source and record windows were not visible. I know the sequence is still there because if I hit the space bar the sequence plays through my Kona card. I closed Premiere and I had a pop up menu Nvidia Cuda asking my to update drivers. This is strange because I have an ATI card not an Nvidia card. If I open any other apps After Effects or Photoshop all of the use interface is there. What gives?
    My specs: Processor  2 x 2.26 GHz Quad-Core Intel Xeon,
    Memory  12 GB 1066 MHz DDR3 ECC,
    Graphics  ATI Radeon HD 4870 512 MB
    AJA Kona IO Card

    Thanks Ann for the info Ann. However I realized it was just that the interface was dragged all the way to the top under the white bar that says Premiere Projects.
    When I saw the arrow pointing down I realized I just had to drag the interface down. Simple mistake. Thanks again.
    Patch

  • Nokia 9500 - Front User Interface Screwing Up

    For some strange reason the graphics on the front user interface on my 9500 get all scrambled up and messed up for no discernable reason. Initially, I thought that the problem was due to a possible low memory level or maybe a software conflict issue. However, I have performed a hard reset on several occassions and have run only the most minimal of applications with zero items added to the phone's memory and I have received the same result. Thankfully, the front interface is the only part of the phone that has given me any probelms. Can anyone out there help??? Please!!!

    Send it back, my friend. This seems to be a serious error. My phone did the same. With only a few weeks to run for the warranty to end, I sent my phone to Nokia for repairs. The had to change the phone (I got a new IMEI) which meant that even they could not fix it.

  • Safari graphical user interface poor quality on Macbook Pro Retina

    I’ve noticed that the Safari graphical user interface quality is not good on my Macbook Pro Retina display. Although it has been optimized for Retina displays I keep seeing strange artifacts or glitches from time to time, while this one is persistent, check out the dark stripe behind the bookmarks toolbar : https://www.dropbox.com/s/pa7zizpbi7vdx41/Screen%20Shot%202013-04-21%20at%2012.5 6.11%20PM.png (if the link doesn’t open on click just do the right click - open in new tab) There are also same “spots” on toolbar buttons (bookmark folders) as well, but they are a bit harder to discern.
    I don’t think it is a graphic card or display issue since almost all of retina-ready apps work just fine (I have replaced my LG with a Samsung screen, btw).
    I wonder does anybody have the same experience with Safari? And if so, has anyone managed to solve the issue?

    Try creating a brand new account (in System Preferences -> Users & Groups) and test there.
    Tried. The same.
    I don't actually have a retina machine, but I see no reason for this to be related to the fact that you have a retina MBP. Unless you have information that suggests it is present on other similar machines...?
    At first I thought that it was just on the Retina, but then I really looked into my external monitor and saw it — looking at it right now. It seems to me that when Always show tab bar is ON the space between Bookmarks bar and the tab is sloppy sliced.
    The hDPI screen reveals the graphic irregularities from regular DPI screens without a problem.
    The reason I posted this here is because I saw many people are having glitches, artifacts and flickers with Safari (on Retina).

  • FlexCube user interface

    Our Client ( Bank ) wanted to implement Oracle FlexCube Direct Banking Solution. We are goint to branding their Screens.
    We asked to follow Oracle FlexCube Direct Bannking User Interface Manual to create the screens ( Login page, Transaction page, DashBoard, etc).
    The document describes the css used in the design pages.
    Initially they (Oracle ) has sent us CSS files, JS Files used in Screens (CSS, JS, amd jsDIR ) explained in the manual.
    Later they sent us only XSL files for designing the login page and dashboard ( login.xsl and dashboard.xsl).
    We assume that Oracle also should give us the .XML template files for each relevant .XSL files to transorm the XSL into HTML.
    But they did not give us such files.
    Also we found there is a tool from Oracle called "Oracle Direct Banking WorkBench" to design these pages.
    Please adives us
    1. Do we need to get XML files from ORacl to do the work
    2. Do we need to buy WorkBench Tool
    3. Do we need to buy any other tools to design the pages. 
    Please help us

    Hi!
    I haven't noticed much - only one strange thing: When pressing the Attachement-button in Mail, nothing happens. I tried it just now, because of your comment, and exactly the same thing happens as in Aperture.
    Thank you for showing me that!
    But now: How can I fix this?
    Best regards

  • SE41-User interface

    Hi,
    I want to copy Screen user interface from one server to other server.
    I copied the program from 4.7 Version to ECC 6.0 version,I want to copy
    4.7 server SE41-user interface to ecc6.0 user interface,how can i do that?
    Thanks
    Naveen

    Hi!
    I haven't noticed much - only one strange thing: When pressing the Attachement-button in Mail, nothing happens. I tried it just now, because of your comment, and exactly the same thing happens as in Aperture.
    Thank you for showing me that!
    But now: How can I fix this?
    Best regards

  • How can I display step info in User Interface with Tracing Disabled?

    I'm trying to modify the CVI Operator Interface application to update the execute panel with some step information during the execution of the program. i.e. I want to display the measurement, high & low limits during the run WHEN TRACING IS DISABLED. (Doing this, when tracing is enabled is easy, all you do is access the step record that's been constructed (I can cope with that!))
    I've successfully implemented a User defined execution event to signal the User Interface application when the current step is a result (using TS_UIMsg_UserMessageBase etc. I'm posting a UI Message in the Process Model under the ProcessModelPostStep so that I will only display if its a result step.) I've added a user defined
    entry in the execute.c module execution event switch statement which will call a function in the exedisp.c module to update the display. However, I don't have a context to the step that I can use. (I can't use e.g. the exeRec record since this is only completed with the context if tracing is enabled.) I've got a handle to the correct panel to write the information to, but how do I get the context to the current step when tracing is disabled?
    Regards,
    Brian

    Hi,
    no problem - btw, if you wanted to acheive this in TS 1.x, you could always write to a local variable with the ActiveX reference for the step concerned, and then use the msg reference that you have in the OI within the UI Message handler, to dig through to the Execution ->Sequence File->Sequence->Locals, or Execution->Thread->SequenceContext (and you can get almost anywhere from that).
    Hope that helps
    S.
    // it takes almost no time to rate an answer

  • Error while creating a callable object - User Interface

    Hello,
    When i'm trying to create a callable object - User Interface in the guided procedure design time. i'm getting an error. An internal server error. This is happening while i'm trying to create a guided procedure with webdynpro's.
    Is there any body who allready had somthing like this.
    Greetings
    Kurt

    Hi Raja Akella,
    I allready had the roles and my portal version is upgraded until SP8 and all the possible patches.
    I get an internal server error when i want to create a callable object. specially when i want to create a webdynpro ( ABAP / JAVA).
    In the visual administrator i get the following  errors.
    <b>Error 1</b>
    Exception occured during processing of a Web Dynpro application: "com.sap.tc.webdynpro.repository.RepositoryRuntimeException: Failed to get Related Model Object for the object com.sap.caf.eu.gp.dt.comp.semanticbrowser.SemanticBrowserApp, relation Component.".
    [EXCEPTION]
    com.sap.tc.webdynpro.repository.RepositoryRuntimeException: Failed to get Related Model Object for the object com.sap.caf.eu.gp.dt.comp.semanticbrowser.SemanticBrowserApp, relation Component.
         at com.sap.tc.webdynpro.repository.model.DelegatorRepositoryModelClass.getRelatedModelObject(DelegatorRepositoryModelClass.java:640)
         at com.sap.tc.webdynpro.progmodel.repository.IWDApplicationInfo$Implementation.getComponentInternal(IWDApplicationInfo.java:286)
         at com.sap.tc.webdynpro.progmodel.repository.IWDApplicationInfo$Implementation.getComponent(IWDApplicationInfo.java:270)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.COConfigWDApp.addWdappsElement(COConfigWDApp.java:646)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.COConfigWDApp.readWebDynproApps(COConfigWDApp.java:631)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.COConfigWDApp.readApplications(COConfigWDApp.java:308)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.wdp.InternalCOConfigWDApp.readApplications(InternalCOConfigWDApp.java:190)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.VSelect.initCreate(VSelect.java:306)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.VSelect.onPlugFromDispatch(VSelect.java:174)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.wdp.InternalVSelect.wdInvokeEventHandler(InternalVSelect.java:168)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.navigate(ClientApplication.java:826)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.navigate(ClientComponent.java:873)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doNavigation(WindowPhaseModel.java:498)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:144)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:330)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:299)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:711)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:665)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:232)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:152)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.tc.webdynpro.repository.RepositoryRuntimeException: XMLParser: Bad attribute list. Expected WhiteSpace, / or >: (:main:, row:1, col:491)
         at com.sap.tc.webdynpro.repository.persistence.xml.XMLConfigurationParserWriter.startParsing(XMLConfigurationParserWriter.java:178)
         at com.sap.tc.webdynpro.repository.persistence.xml.XMLPersistence.doReadVMO(XMLPersistence.java:126)
         at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.readVMO(RepositoryPersistence.java:356)
         at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.doFindRepositoryObject(RepositoryPersistence.java:598)
         at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.findRepositoryObject(RepositoryPersistence.java:170)
         at com.sap.tc.webdynpro.repository.model.Repository.findRepositoryObjectInternal(Repository.java:590)
         at com.sap.tc.webdynpro.repository.model.RepositoryObjectRelation$XMLGuidWrapper.getModelObject(RepositoryObjectRelation.java:462)
         at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.getCurrentLayerObject(RepositoryPersistence.java:702)
         at com.sap.tc.webdynpro.repository.model.Repository.getCurrentLayerObject(Repository.java:1483)
         at com.sap.tc.webdynpro.repository.model.NonSharedRelationToOne.doMergeInheritedTarget(NonSharedRelationToOne.java:85)
         at com.sap.tc.webdynpro.repository.model.NonSharedRelationToOne.mergeInheritedTargets(NonSharedRelationToOne.java:49)
         at com.sap.tc.webdynpro.repository.model.RelationToOne.getTarget(RelationToOne.java:93)
         at com.sap.tc.webdynpro.repository.model.AbstractRepositoryModelClass.getRelatedModelObject(AbstractRepositoryModelClass.java:234)
         at com.sap.tc.webdynpro.repository.model.DelegatorRepositoryModelClass.getRelatedModelObject(DelegatorRepositoryModelClass.java:636)
         ... 39 more
    Caused by: com.sap.engine.lib.xml.parser.NestedSAXParserException: XMLParser: Bad attribute list. Expected WhiteSpace, / or >: (:main:, row:1, col:491)(:main:, row=1, col=491) -> com.sap.engine.lib.xml.parser.ParserException: XMLParser: Bad attribute list. Expected WhiteSpace, / or >:(:main:, row:1, col:491)
         at com.sap.engine.lib.xml.parser.SAXParser.parse(SAXParser.java:148)
         at com.sap.tc.webdynpro.repository.persistence.xml.XMLConfigurationParserWriter.startParsing(XMLConfigurationParserWriter.java:166)
         ... 52 more
    Caused by: com.sap.engine.lib.xml.parser.ParserException: XMLParser: Bad attribute list. Expected WhiteSpace, / or >:(:main:, row:1, col:491)
         at com.sap.engine.lib.xml.parser.XMLParser.scanAttList(XMLParser.java:1566)
         at com.sap.engine.lib.xml.parser.XMLParser.scanElement(XMLParser.java:1687)
         at com.sap.engine.lib.xml.parser.XMLParser.scanDocument(XMLParser.java:2792)
         at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:227)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:141)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:156)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:259)
         at com.sap.engine.lib.xml.parser.Parser.parseWithoutSchemaValidationProcessing(Parser.java:278)
         at com.sap.engine.lib.xml.parser.Parser.parse(Parser.java:340)
         at com.sap.engine.lib.xml.parser.SAXParser.parse(SAXParser.java:125)
         ... 53 more
    <b>error 2</b>
    Processing HTTP request to servlet [dispatcher] finished with error. The error is: com.sap.tc.webdynpro.repository.RepositoryRuntimeException: Failed to get Related Model Object for the object com.sap.caf.eu.gp.dt.comp.semanticbrowser.SemanticBrowserApp, relation Component.
         at com.sap.tc.webdynpro.repository.model.DelegatorRepositoryModelClass.getRelatedModelObject(DelegatorRepositoryModelClass.java:640)
         at com.sap.tc.webdynpro.progmodel.repository.IWDApplicationInfo$Implementation.getComponentInternal(IWDApplicationInfo.java:286)
         at com.sap.tc.webdynpro.progmodel.repository.IWDApplicationInfo$Implementation.getComponent(IWDApplicationInfo.java:270)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.COConfigWDApp.addWdappsElement(COConfigWDApp.java:646)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.COConfigWDApp.readWebDynproApps(COConfigWDApp.java:631)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.COConfigWDApp.readApplications(COConfigWDApp.java:308)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.wdp.InternalCOConfigWDApp.readApplications(InternalCOConfigWDApp.java:190)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.VSelect.initCreate(VSelect.java:306)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.VSelect.onPlugFromDispatch(VSelect.java:174)
         at com.sap.caf.eu.gp.ui.co.config.wdapp.wdp.InternalVSelect.wdInvokeEventHandler(InternalVSelect.java:168)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.navigate(ClientApplication.java:826)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.navigate(ClientComponent.java:873)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doNavigation(WindowPhaseModel.java:498)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:144)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:330)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:299)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:711)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:665)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:232)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:152)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.tc.webdynpro.repository.RepositoryRuntimeException: XMLParser: Bad attribute list. Expected WhiteSpace, / or >: (:main:, row:1, col:491)
         at com.sap.tc.webdynpro.repository.persistence.xml.XMLConfigurationParserWriter.startParsing(XMLConfigurationParserWriter.java:178)
         at com.sap.tc.webdynpro.repository.persistence.xml.XMLPersistence.doReadVMO(XMLPersistence.java:126)
         at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.readVMO(RepositoryPersistence.java:356)
         at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.doFindRepositoryObject(RepositoryPersistence.java:598)
         at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.findRepositoryObject(RepositoryPersistence.java:170)
         at com.sap.tc.webdynpro.repository.model.Repository.findRepositoryObjectInternal(Repository.java:590)
         at com.sap.tc.webdynpro.repository.model.RepositoryObjectRelation$XMLGuidWrapper.getModelObject(RepositoryObjectRelation.java:462)
         at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.getCurrentLayerObject(RepositoryPersistence.java:702)
         at com.sap.tc.webdynpro.repository.model.Repository.getCurrentLayerObject(Repository.java:1483)
         at com.sap.tc.webdynpro.repository.model.NonSharedRelationToOne.doMergeInheritedTarget(NonSharedRelationToOne.java:85)
         at com.sap.tc.webdynpro.repository.model.NonSharedRelationToOne.mergeInheritedTargets(NonSharedRelationToOne.java:49)
         at com.sap.tc.webdynpro.repository.model.RelationToOne.getTarget(RelationToOne.java:93)
         at com.sap.tc.webdynpro.repository.model.AbstractRepositoryModelClass.getRelatedModelObject(AbstractRepositoryModelClass.java:234)
         at com.sap.tc.webdynpro.repository.model.DelegatorRepositoryModelClass.getRelatedModelObject(DelegatorRepositoryModelClass.java:636)
         ... 39 more
    Caused by: com.sap.engine.lib.xml.parser.NestedSAXParserException: XMLParser: Bad attribute list. Expected WhiteSpace, / or >: (:main:, row:1, col:491)(:main:, row=1, col=491) -> com.sap.engine.lib.xml.parser.ParserException: XMLParser: Bad attribute list. Expected WhiteSpace, / or >:(:main:, row:1, col:491)
         at com.sap.engine.lib.xml.parser.SAXParser.parse(SAXParser.java:148)
         at com.sap.tc.webdynpro.repository.persistence.xml.XMLConfigurationParserWriter.startParsing(XMLConfigurationParserWriter.java:166)
         ... 52 more
    Caused by: com.sap.engine.lib.xml.parser.ParserException: XMLParser: Bad attribute list. Expected WhiteSpace, / or >:(:main:, row:1, col:491)
         at com.sap.engine.lib.xml.parser.XMLParser.scanAttList(XMLParser.java:1566)
         at com.sap.engine.lib.xml.parser.XMLParser.scanElement(XMLParser.java:1687)
         at com.sap.engine.lib.xml.parser.XMLParser.scanDocument(XMLParser.java:2792)
         at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:227)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:141)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:156)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:259)
         at com.sap.engine.lib.xml.parser.Parser.parseWithoutSchemaValidationProcessing(Parser.java:278)
         at com.sap.engine.lib.xml.parser.Parser.parse(Parser.java:340)
         at com.sap.engine.lib.xml.parser.SAXParser.parse(SAXParser.java:125)
         ... 53 more
    <b>error 3</b>
    Processing HTTP request to servlet [dispatcher] finished with error.
    The error is: com.sap.tc.webdynpro.repository.RepositoryRuntimeException: Failed to get Related Model Object for the object com.sap.caf.eu.gp.dt.comp.semanticbrowser.SemanticBrowserApp, relation Component.
    Exception id: [00505691431B006F0000003E00000FE800041B45B87F7617]
    thanks in advance
    Kurt

  • UI (User Interface) text size and colors

    Recent versions of Elements (7, 8, 9) have changed to a user interface which is predominantly shades of gray and black with few if any user options for color or font. The font size cannot be altered because Adobe use their own pixel-based font which is not compatible with Windows Desktop settings. So on many flat screens with high resolutions the font becomes almost unreadable. The upper case 'E' in the menu bar Edit for example, is a mere 2.03mm high on a 22" display at 1920x1080 resolution.
    This has been mentioned a number of times over these releases to no avail, but at last there may be a change on the way for PSE 10 (later later this year?).
    So if you feel the gray/black UI needs attention I suggest you visit
    http://feedback.photoshop.com/photoshop_family/topics/my_eyes_need_help_with_photoshop
    where there are a number of comments. This is monitored by Adobe so may influence the next release. The more request there are I suspect the more likely some action. Adobe have already commented: "The amount of conversation that this thread has generated among Elements customers was unanticipated." on the thread.
    If you wish to place a comment you will need a Photoshop Account and to be logged in. If you didn't create an account when you installed the product then just click Create Account at the top of the link above.

    Font sizes are hard-coded in teh apps and there is no way to change that. The new CC versiosn support high-DPI displays and resolve those issues (mostly).
    Mylenium

  • Status LIS9 of the User interface MP000200 missing

    Hi All,
    While creating leaving action. System is giving error (Status LIS9 of the User interface MP000200 missing.
    Mentions below are my configuration.
    Infogroup
    COP 0001 Org assignment
    LIS9 0002 Personal Data
    LIS9 0006 address
    LIS9 0105 Communication
    And Personnel Action type are:- 0 0 0 MSN20 (Tick) (Tick) (Not tick)
    Let me know how to resolve it.
    Regard
    Ashish

    Hi,
    make sure that LIS9 should not be used to the Infotypes which are having Time  Constraint 1
    Check V_T582A for time constratints and also check V_T588D to remove the operation LIS9 forLeaving/ termination action.
    for your information
    Infotype 0002 should NEVER be delimited as part of the Leaving Action.
    The help text for the Operations field of the Info Group states the following:
    In the Leaving action, use the "delimit" (LIS9) operation to delimit records.
    Please remove the infotype 0002 from the info group, then run the leaving action, you will not find an error message
    The reason why you get the error is because the status LIS9 does not exist on MP000200 .
    You can see this via the menu painter via SE41.
    regards,
    mohammed
    Edited by: 0mohammed1 on Oct 14, 2011 1:51 PM

  • User Interface Template for Interactive Report Region

    In 3.2, where do we set the user interface template for Interactive Reports region?
    No matter what out of the box theme I switch to, the Interactive Reports region shows the same. What and where do I change the template so that alternating rows use two different colors?

    There is no template for Interactive Reports like for a "normal" report. You need to modify the CSS and supply your own for this to happen.
    I believe most things are tagged with #apexir - firebug with Firebox is invaluable. This thread may help:
    Re: changing the look and feel of interactive report.

Maybe you are looking for

  • MiniDVI to HDMI adaptor doesn't work

    I've currently got my Mini connected to a projector via Mini Display Port to VGA adaptor, then a long VGA cable. It works, but I can't get full image size. Meanwhile, I've got a DVD player connected via HDMI to the same projector. That works great an

  • Solaris 10 and NFS/Automount into Solaris 8 Env.

    Hello fellow Administrators, I have recently upgraded my own station to Solaris 10 6/06 update 2 in a Solaris 8 NIS/Automount environment. How ever, i have noticed that my station from time to time 'frezzez' and becomes unresponding. It's as if the s

  • How to call Outbound interface using report programs

    Hi experts,     i want to call outbound i/f prog using 2 report programs...one report prg passing 2 parameters to outbond i/f prg & another report prg simply calling the outbond i/f prg... either report1 or report2 call this outbond i/f prg. for inst

  • Reduce time to build setup project and size of .msi

    I have noticed that since we started working with Crystal 2008 (previously we used version 8.5), the merge module added to the Visual Studio 2005 setup project seems to cause the build process to take much longer than before (nearly 10 minutes), and

  • Leading Zero w/ variable field length...

    I'm creating a form in which I need a particular field to: - Accept/Display a leading zero (or multiple leading zeros); - Accept numbers numbers; - Have a maximum field length of six numerals, but with the ability to accept fewer; - Display an error