How to recognize web browser refresh command in bsp code

Hi,
I have designed a bsp page on my solman system on which there are some buttons. When I refresh the web browser my last button command is executed again. Is there any way to prevent the last bsp command when I refresh the web browser.
Regards,

Hello Ekrem,
I developed standard BSP (Page With Flow Logic) and I checked it behavior.
From what I saw: when I pressed the Refresh button it didn't get into OnInputProcess method. only to OnIntialization method, so the button doesn't executed again.
Try to clear event variables after you use it, may be it will help.
Good Luck
Eli Steklov
Please Reward Points If It Helped

Similar Messages

  • Can't remember how to enlarge web browser screen on OSX 10.6. Can anyone help?

    Can't remember how to enlarge web browser screen on OSX 10.6. Can anyone help?

    Hi ..
    Click and drag out the bottom right corner of any Safari window.

  • How to open web browser from midlet on emulator

    Hi,
    I am using Java ME Platform 3.0 SDK. I want to open web browser on emulator.
    What should I do?
    Thanks.

    Hi,
    web browser is not a part of the emulator. The first think you have to do is to download mobile web browser. If you have mobile web browser downloaded go to Java ME SDK 3.0. There is Device Selector window in the bottom left corner. In this window you can see all emulators available in Java ME SDK 3.0. Choose an emulator you want to use and right click on it. In popup menu select "Run JAR or JAD..." action, in file chooser browse you mobile web browser and open it. That's all.

  • Web Browser.....Code is inside...but clarify few things!

    HI All,
    this is pilot ..sorry to bother u again but this time its kinda important
    here is my program for a web browser--
    now i wanna know a few things HyperlinkListener just not support javascript nor does it support flash ...thats 2 and i wanna know wht else restrictions that are in this simple browser....
    and can u tell me how can i make this browser more faster and i wanna add a JProgressBar to it and i have no clue...please help/
    import javax.swing.JFrame;
    import javax.swing.JTextField;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JEditorPane;
    import javax.swing.JLabel;
    import java.io.IOException;
    import java.awt.GridBagLayout;
    import java.awt.GridBagConstraints;
    import java.awt.BorderLayout;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import javax.swing.UIManager;
    import javax.swing.JEditorPane;
    import javax.swing.event.HyperlinkListener;
    import javax.swing.event.HyperlinkEvent;
    import javax.swing.JOptionPane;
    public class Browser implements ActionListener
         JTextField t1;
         JLabel l1;
         JButton b1;
         GridBagLayout gbl;
         GridBagConstraints gbc;
         JPanel p;
         JFrame frame;
         JScrollPane scrollPane;
         JEditorPane jep;
         static String initialPage;
    public Browser()
         //JFrame.setDefaultLookAndFeelDecorated(true);
         /*try
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
         catch(Exception e)
             e.printStackTrace();
         frame=new JFrame("Simple Web Browser");
         gbl=new GridBagLayout();
         gbc=new GridBagConstraints();
         p=new JPanel();
         p.setLayout(gbl);
         jep = new JEditorPane();
         t1=new JTextField();
         b1=new JButton("Check it out!");
         b1.addActionListener(this);
         frame.getRootPane().setDefaultButton(b1);
         l1=new JLabel("Address");
         gbc.anchor=GridBagConstraints.NORTHEAST;
         gbc.fill=GridBagConstraints.HORIZONTAL;
         gbc.gridx=0;
         gbc.gridy=0;
         gbc.weightx=0.0;
         gbl.setConstraints(l1,gbc);
         p.add(l1);
         gbc.anchor=GridBagConstraints.NORTHEAST;
         gbc.gridx=1;
         gbc.gridy=0;
         gbc.weightx=1.0;
         gbl.setConstraints(t1,gbc);
         p.add(t1);
         gbc.anchor=GridBagConstraints.NORTHWEST;
         gbc.gridx=2;
         gbc.gridy=0;
         gbc.weightx=0.0;
         gbl.setConstraints(b1,gbc);
         p.add(b1);
        scrollPane = new JScrollPane(jep);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(p,BorderLayout.NORTH);
         frame.getContentPane().add(scrollPane);
        frame.setSize(1000,700);
        frame.setVisible(true);
    public void actionPerformed(ActionEvent e)
              initialPage=t1.getText();
              char a=initialPage.charAt(0);
              char b=initialPage.charAt(1);
              char c=initialPage.charAt(2);
              char d=initialPage.charAt(3);
              char ea=initialPage.charAt(4);
              char f=initialPage.charAt(5);
              char g=initialPage.charAt(6);
              if((a=='h')&&(b=='t')&&(c=='t')&&(d=='p')&&(ea==':')&&(f=='/')&&(g=='/'))
                   initialPage=t1.getText();
              else
                   initialPage="http://"+initialPage;
              jep.setEditable(false);
              jep.addHyperlinkListener(new second(jep));
             try
               jep.setPage(initialPage);
             catch (IOException ae)
                JOptionPane.showMessageDialog(frame,new String("Error: "+ae));
    public static void main(String[] args)
              new SimpleWebBrowser();
    class second implements HyperlinkListener
      private JEditorPane pane;
      public second(JEditorPane pane)
        this.pane = pane;
    public void hyperlinkUpdate(HyperlinkEvent evt)
       if (evt.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
          try
           pane.setPage(evt.getURL());
         catch (Exception e){}
      }}}

    Broken Browser excuse me/...check this out ---> run it and tell me if the code is broken...
    import javax.swing.JFrame;
    import javax.swing.JTextField;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JEditorPane;
    import javax.swing.JLabel;
    import java.io.IOException;
    import java.awt.GridBagLayout;
    import java.awt.GridBagConstraints;
    import java.awt.BorderLayout;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import javax.swing.UIManager;
    import javax.swing.JEditorPane;
    import javax.swing.event.HyperlinkListener;
    import javax.swing.event.HyperlinkEvent;
    import javax.swing.JOptionPane;
    public class Browser implements ActionListener
         JTextField t1;
         JLabel l1;
         JButton b1;
         GridBagLayout gbl;
         GridBagConstraints gbc;
         JPanel p;
         JFrame frame;
         JScrollPane scrollPane;
         JEditorPane jep;
         static String initialPage;
    public Browser()
         //JFrame.setDefaultLookAndFeelDecorated(true);
         /*try
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
         catch(Exception e)
             e.printStackTrace();
         frame=new JFrame("Simple Web Browser");
         gbl=new GridBagLayout();
         gbc=new GridBagConstraints();
         p=new JPanel();
         p.setLayout(gbl);
         jep = new JEditorPane();
         t1=new JTextField();
         b1=new JButton("Check it out!");
         b1.addActionListener(this);
         frame.getRootPane().setDefaultButton(b1);
         l1=new JLabel("Address");
         gbc.anchor=GridBagConstraints.NORTHEAST;
         gbc.fill=GridBagConstraints.HORIZONTAL;
         gbc.gridx=0;
         gbc.gridy=0;
         gbc.weightx=0.0;
         gbl.setConstraints(l1,gbc);
         p.add(l1);
         gbc.anchor=GridBagConstraints.NORTHEAST;
         gbc.gridx=1;
         gbc.gridy=0;
         gbc.weightx=1.0;
         gbl.setConstraints(t1,gbc);
         p.add(t1);
         gbc.anchor=GridBagConstraints.NORTHWEST;
         gbc.gridx=2;
         gbc.gridy=0;
         gbc.weightx=0.0;
         gbl.setConstraints(b1,gbc);
         p.add(b1);
        scrollPane = new JScrollPane(jep);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(p,BorderLayout.NORTH);
         frame.getContentPane().add(scrollPane);
        frame.setSize(1000,700);
        frame.setVisible(true);
    public void actionPerformed(ActionEvent e)
              initialPage=t1.getText();
              char a=initialPage.charAt(0);
              char b=initialPage.charAt(1);
              char c=initialPage.charAt(2);
              char d=initialPage.charAt(3);
              char ea=initialPage.charAt(4);
              char f=initialPage.charAt(5);
              char g=initialPage.charAt(6);
              if((a=='h')&&(b=='t')&&(c=='t')&&(d=='p')&&(ea==':')&&(f=='/')&&(g=='/'))
                   initialPage=t1.getText();
              else
                   initialPage="http://"+initialPage;
              jep.setEditable(false);
              jep.addHyperlinkListener(new second(jep));
             try
               jep.setPage(initialPage);
             catch (IOException ae)
                JOptionPane.showMessageDialog(frame,new String("Error: "+ae));
    public static void main(String[] args)
              new Browser();
    class second implements HyperlinkListener
      private JEditorPane pane;
      public second(JEditorPane pane)
        this.pane = pane;
    public void hyperlinkUpdate(HyperlinkEvent evt)
       if (evt.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
          try
           pane.setPage(evt.getURL());
         catch (Exception e){}
      }}}

  • Web Browser Hidden Commands

    http://windowssecrets.com/newsletter/little-known-browser-commands-and-functions/

    boy, ...weird as it sounds, the older I get the more I DONT wanna mess around with stuff anymore.
    I guess if I had to I could dig up tools for windows 32 bit stuff ( dependence walker comes to mind )...  and all that background stuff that used to be fascinating to me and really helpful besides...especially when solving problems with my machine...but NOW.... I am getting more and more into NOT doing anything anymore to solve problems...and more into just doing what I need to do...if there is a client involved or some way to make money or a product out of that " time" I spend on this stuff.
    I guess what I'm saying is... if I don't HAVE to do something now I shy away from it.... and just keep this machine as lean as possible so I dont have to deal with surprises from installed junk hooking me into something I dont want.
    The browsers and social media things are the worst IMO now... and search engines and all that junk...and the relationships they have with each other...
    At some point all this will come to some giant wall...where serious computer users will not even have their work stations hooked up to the internet...
    And they will be the minority.
    The business and profit etc will continue along the lines of cookies and all that...and browsers, search engines, social media, etc...and probably dick tracy watch phones and little phones with screens and all that, which I have absolutely no interest in.
    But anyway, thanks for posting this link cause back in the day this stuff was very helpful to me depending on what browser I was using etc.
    Right now though, my biggest concern is trying to avoid the giant frog on the kids course when I'm supposed to be on the adult course ....
    YIKES !

  • How to execute solaris lpd printing command from java code

    hi folk,
    I want to print a post script file on a network printer (my java code will receive the Printer's IP Address and the filename ) , i'm using the solaris lpd printing command :
    lpadmin -p banana_ps -o protocol=bsd,dest=IP -v /dev/null
    -m netstandard -T PS -I postscript
    my question is how execute this command from the java code :)
    i really appreciate ur advices

    Hi,
    See RunTime.getRuntime ().exec (...).
    Hope that help,
    Jack

  • How to process AT END OF command for company code and transaction number.

    Hi,
      I  have report with selection screen with company code and key date.  Based ON key date given I should calculate Accrued interest for all transaction with in each company code.
        When I run report with one company code it works fine. But when I run with multiple company codes the amounts are messed up.
    I am getting all company codes with transaction details in to ITAB1 like this below, and PERFORM get_processdata. has my calculation for interest rate.
      SORT itab1 BY company_code  transaction.
      LOOP AT itab1 INTO wa_tab1.
        itab2 = wa_tab1.
        APPEND itab2.
        AT END OF transaction.
           PERFORM get_processdata.
        ENDAT.
      ENDLOOP.
    Thank you.

    Hello,
    You need to use AT New event to clear your total variables.
    AT New - this will go for first time also but we want to clear variables from second time. it requires flag to stop going it first time
    Pseudo code:
    clear: flag.
    Loop at itab1 to itab2.
    At New.
    if flag eq c_x.
    clear: <total variables>, intenal tables.
    move c_x to flag.
    endif.
    tab2 = wa_tab1.
    APPEND itab2.
    AT END OF transaction.
    PERFORM get_processdata.
    ENDAT.
    ENDLOOP.

  • Uregnt - How to Load Flat File into BW-BPS using Web Browser

    Hello,
    We have followed the 'How to Load Flat File into BW-BPS using Web Browser' guide to build BSP web front-end to upload flat file.  Everything works great but we have a requirement to populate the Planning Area Variables based on BSP drop down list with values.  Does anyone know how to do this?  We have the BSP coded with drop down list all we need to do now is populate variables.  We can populate the variables through the planning level (hardcoded) but we need to populate them through the web interface.
    Thanks,
    Gary

    Hello Gary,
    We have acheived the desired result by not too a clean method but it works for us.
    What we have done is, we have the link to load file in a page where the variables can be input. The user would then have the option to choose the link to load a file for the layout in that page.
    By entering the variable values in the page, we are able to read the variables for the file input directly in the load program.
    Maybe this approach might help.
    Sunil

  • How display a JOotionPane on client WEB browser ?

    Could some body tel if is it possible to use a JOptionPane on a web browser..
    In this code line :
    JOptionPane.showMessageDialog(null,"Le contenu " + chaine + " du "+ champs +" n'est pas valide","Validation",JOptionPane.ERROR_MESSAGE);
    The first paramter is the contener which will display the error message frame..
    Is there any way to set this paramter to the client web browser...
    I use Servlet and JSP with MVC architecture : All my error message are only diplay on a WEB server if i put null in a first parameter of the showMessageDialog..
    How could il display the JOptionPane on a client web broswer ?

    If you want to execute any java code on the client machine (web browser) you MUST write an applet. Consult the tutorials section on the java.sun.com to learn about applets and how to run them.
    Sai Pullabhotla

  • HT1677 How can I change default web-browser?

    Dear Apple
    I love my iPhone 4S and iPad. But I can't find how change default web browser on iOS? If this OS doesn't do it. Could you tell about it in future?

    You can indicate your interest in such a feature to Apple via their feedback pages:
    http://www.apple.com/feedback
    We're all just fellow users here.
    Regards.

  • Exception when using browser refresh button

    When using the browser refresh button, there is a prompt to re-submit data. Once the user selects Retry, an exception is thrown (see below).
    The SelectBean is of ViewScope and is listed in adfc-config.xml as such. The SelectBean is used to set session attributes based user selection of a row from a af:table.
    Is this the incorrect set up? Should this be a backing bean instead? We were expecting to see a prompt of navigating away from the page (similar to the behaviour here: [http://andrejusb.blogspot.ca/2011/07/how-to-handle-web-browser-buttons-in.html] ) instead of a resubmission prompt to be able to handle a user using the browser buttons.
    Thanks!
    Error 500--Internal Server Error
    javax.el.PropertyNotFoundException: Target Unreachable, 'SelectBean' returned null
         at com.sun.el.parser.AstValue.getTarget(Unknown Source)
         at com.sun.el.parser.AstValue.setValue(Unknown Source)
         at com.sun.el.ValueExpressionImpl.setValue(Unknown Source)
         at javax.faces.component.UIComponent.processEvent(UIComponent.java:2312)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$EventDeliverer.visit(LifecycleImpl.java:834)
         at com.sun.faces.component.visit.FullVisitContext.invokeVisitCallback(FullVisitContext.java:151)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:531)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at oracle.adf.view.rich.component.rich.layout.RichPanelBox.visitChildren(RichPanelBox.java:344)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at oracle.adf.view.rich.component.fragment.UIXRegion.visitChildren(UIXRegion.java:970)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXShowOne.visitTree(UIXShowOne.java:135)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitAllChildren(UIXComponent.java:437)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:415)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitChildren(UIXComponent.java:695)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:558)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:354)
         at org.apache.myfaces.trinidad.component.UIXDocument.visitTree(UIXDocument.java:82)
         at javax.faces.component.UIComponent.visitTree(UIComponent.java:1496)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._deliverPostRestoreStateEvents(LifecycleImpl.java:785)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._restoreView(LifecycleImpl.java:724)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:341)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         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:300)
         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:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:122)
         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 userframework.UFservletFilter.doFilter(UFservletFilter.java:42)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         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:136)
         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:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         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:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    Try something like requestScope or backingBeanScope.

  • How to refresh layout in BSP ?

    Hi,
    In a BSP application, I need to let people enter special information (text...) so I created an HTML form (<form method=post...). The HTML form is customized in the BPS web application as a "text-html" item. It is taken in account in the generated BSP code. Then I added ABAP in the generated BSP to use the information sent by the form.
    This is working well, but I would like it to refresh the BPS layout that is in the same page when the information is sent. It is never refreshed, unless we change the variable value !
    Do you know how to induce the layout refresh in the BSP (reload of the cube data), in java or other, to have the same effect as when we change the variable value ?
    Thanks in advance for your help !
    Laurent

    Just an idea.....
    Have you tried to include your html-coding into an Inline Frame (<iframe>your code</iframe>)?
    We always integrate queries this way and only like this they refresh automatically when changes are done in the layout.
    Regards,
    Beat Stoller

  • Trouble Loading a flat file into BPS using a Web Browser, Please help ?

    Hi Gurus,
    I'm in BW 3.5.
    I did everything and also followed the How to .. paper to upload a flat file into BPS tran cube via a Web browser.
    I created a Web Browser and generated a BSP application. When I run the BSP application I get the following error:
    "The generated data is not contained in the selection condition" UPC204
    The error message also says:
    "The error message can appear when you use a planning function to generate data that is outside the data range specified by the selection conditions of the planning package"
    When I save the variables that I select in the web interface they are getting saved in a table(UPC_VAR_CHA_ACT), but somehow the BSP application cannot look into those values, which I think is the cause of above issue.
    Please help.
    Venkat

    Hi,
    This type of error is quite common in BPS operations. This generally happens due to some missing values in the restriction of the planning levels and the packages.
    The error message is "The generated data is not contained in the selection condition" UPC204
    Check in the planning level and the package, all the restrictions that have been defined and verify whether the values which are getting uploaded through the flat file are present in the election condition of the level or in the package.
    Please award points if helpful.

  • Source code of a web browser

    Does any one knows how to get a example source code of a web browser?
    Or the source code of the HotJava browser???

    Hello,
    If you seeing a sample code. Please refer to java.sun.com's Java Tutorial
    Topic :: How to use JEditorPane.
    These Java Packages can help you.
    Javax.swing for JEditorPane
    javax.swing.text for Document class
    Javax.swing.event for HTML Listener(to open hyperlink and pictures)
    For a Complete Solution please go to any S/W Company and make your own browser.

  • Start Web Browser from ABAP in WINGUI with SSO

    Hi,
    I'm using WINGUI 6.20 patch 47. I need to start a separate web browser to display a BSP.
    The difficulty is that we want single sign on to work. We have the portal set up for authentication and our instance is set up to create and accept logon tickets.
    We've tried to use the html viewer control but I think this only works within the html gui ?
    We've tried the CALL_BROWSER function but it doesn't seem to pass along the logon ticket.
    Is there a way to do this ?
    Thanks for your help.
    Thierry Dagnino
    Systems Architect
    Hydro-Quebec

    Hi Thomas,
    the suggested solution works at 90 %.
    The BSP we display in the html control calls another bsp in a popup window.
    The popup requests the login again. I think this is because the popup starts a new Internet Explorer browser which has no session state.
    The strange thing is that if I first start a browser and authenticate to the server and then run the function which displays the bsp in the html viewer, it works great. I think it uses the logon ticket that the browser received.
    Everything else works but we can't use it if popups don't work since CRM 4.0 uses a lot of them.
    Also, if we use the show_url_in_browser function, it works. The problem is we have a useless window displayed. Is there a way to close this window immediately after the show_url_in_browser method is called ?
    Thanks.
    Message was edited by: Thierry Dagnino

Maybe you are looking for

  • Open url from applets

    Hello friends i have one very important job to do i would like my applet to open a browser window with the url that i specify in the textfield of my applet this is how it starts i open the applet that has a textfield and a button i enter the url in t

  • Syncing issues with 3GS ical and address book

    I have been using Entrourage 2008 with success for a good few months - had a few issues to start with but thought I'd cracked it!  However, I have now found that when I syn my 3gs I have to ensure that I tick replace information in the itunes sync be

  • Cm:select - howo to use distinct and such

    Hello: I need to do SELECT DISTINCT object_name FROM content How do I do that using cm:select? Is there a document anywhere that would explain the cm:select query language syntax? Any help is appreciated Thanks

  • Image Load Area

    Hello. I am trying to make my images load in a specific area on my html page when the thumbnails are clicked. I have tried a few javascript tutorials but none that do exactly this. Could anyone recommend a good one? I have 6 thumbnails to the right o

  • Erecruiting-To Be Deleted status for object Requisition

    Hi All, For the requisition created it is not possible to select the status 'To be Deleted'. Following error message is displayed "Cannot be deleted since open assignments exist". Please help.