View button issue in BI publisher 101.3.4.0 and 10.1.3.4.1

Hi,
Initially I had a BI Publisher 10.1.3.4.0 in OAS 10.1.3.4.0 that I sorted out from Oracle_Home\config\ias.properties file
Then my clients were facing an issue with the View Button, when u'd want to print or generate reports in whichever available format.
The issue was that the view button does not get disabled after clicking it for the first time. If its a huge report, it wud take time to get generated. However clients impatiently click on the view button again an again thinking that they would get quicker response.
The underlying concept, when the first request is not completed, and then you send a second request and third and fourth..... there springs up heavy load on the database end.
I had raised an SR with Oracle on Metalink. Oracle is unable to provide a solution.
Ofcourse the asked me to upgrade it to 11g, which is not possible.
Eventually they gave me patch 11931697.
I went ahead and successfully applied the patch.
But the problem continues during report generation. The VIEW button still is active and allows my clients to click on it any number of time eventually causing heavy load on the Database end.
Please help...
Regards
Lam.

Hello Jorge,
My extreme apologies. Didn't know I was actually talking to a Pro.
What I did is, I deployed the xmlpserver application from 10.1.3.4.1 in BI publisher 10.1.3.4.0, and only kept the xmlp folder and xmlp-server-config.xml file the same.
At least the hour glass/clock is now seen rotating when the report is generated. That way my customers are assured that processing is going on and they can wait patiently unlike in the earlier case, no hour glass and customers thinks they need to press the VIEW button again and again undesirably.
Seen your BLOG, am really impressed Sir..! Allow me to call you "Sir". Its outta deep Respect.
However I am still waiting for Oracle for their Final say on this case. They have converted my SR to a BUG. :-)
Cheers.
Lam

Similar Messages

  • Connecting view button to player! help

    hi! I have posted my codes for Client and ClientChoice.
    in the actionlistener event of the ClientChoice(gui) have i have called the Client class where the player is found and where connection is made to the server. the error i get is that the .class of the Client is:
    mainCl(java.lang.String[]) in Client cannot be applied to (java.lang.String,java.lang.String)          cl.mainCl(a,b);
    can anyone help me ! am i doing the right thing or someway else plz help me......i have a week on that and i'm being late. here are the code:
    //Client.java
    //package ana;
    import java.io.*;
    import java.awt.*;
    import java.net.*;
    import java.awt.event.*;
    import java.util.Vector;
    import javax.media.*;
    import javax.media.rtp.*;
    import javax.media.rtp.event.*;
    import javax.media.rtp.rtcp.*;
    import javax.media.protocol.*;
    import javax.media.protocol.DataSource;
    import javax.media.format.AudioFormat;
    import javax.media.format.VideoFormat;
    import javax.media.Format;
    import javax.media.format.FormatChangeEvent;
    import javax.media.control.BufferControl;
    * Client to receive RTP transmission using the RTPConnector.
    public class Client implements ReceiveStreamListener, SessionListener,
         ControllerListener
    String sessions[] = null;
    RTPManager mgrs[] = null;
    Vector playerWindows = null;
    boolean dataReceived = false;
    Object dataSync = new Object();
    public Client(String sessions[]) {
         this.sessions = sessions;
    public Client(String a, String b)
         }//constructor
    protected boolean initialize() {
    try {
         mgrs = new RTPManager[sessions.length];
         playerWindows = new Vector();
         SessionLabel session;
         // Open the RTP sessions.
         for (int i = 0; i < sessions.length; i++) {
              // Parse the session addresses.
              try {
              session = new SessionLabel(sessions);
              } catch (IllegalArgumentException e) {
              System.err.println("Failed to parse the session address given: " + sessions[i]);
              return false;
              System.err.println(" - Open RTP session for: addr: " + session.addr + " port: " + session.port + " ttl: " + session.ttl);
              mgrs[i] = (RTPManager) RTPManager.newInstance();
              mgrs[i].addSessionListener(this);
              mgrs[i].addReceiveStreamListener(this);
              // Initialize the RTPManager with the RTPSocketAdapter
              mgrs[i].initialize(new RTPSocketAdapter(
                             InetAddress.getByName(session.addr),
                             session.port, session.ttl));
              // You can try out some other buffer size to see
              // if you can get better smoothness.
              BufferControl bc = (BufferControl)mgrs[i].getControl("javax.media.control.BufferControl");
              if (bc != null)
              bc.setBufferLength(350);
    } catch (Exception e){
    System.err.println("Cannot create the RTP Session: " + e.getMessage());
    return false;
         // Wait for data to arrive before moving on.
         long then = System.currentTimeMillis();
         long waitingPeriod = 30000; // wait for a maximum of 30 secs.
         try{
         synchronized (dataSync) {
              while (!dataReceived &&
                   System.currentTimeMillis() - then < waitingPeriod) {
              if (!dataReceived)
                   System.err.println(" - Waiting for RTP data to arrive...");
              dataSync.wait(1000);
         } catch (Exception e) {}
         if (!dataReceived) {
         System.err.println("No RTP data was received.");
         close();
         return false;
    return true;
    public boolean isDone() {
         return playerWindows.size() == 0;
    * Close the players and the session managers.
    protected void close() {
         for (int i = 0; i < playerWindows.size(); i++) {
         try {
              ((PlayerWindow)playerWindows.elementAt(i)).close();
         } catch (Exception e) {}
         playerWindows.removeAllElements();
         // close the RTP session.
         for (int i = 0; i < mgrs.length; i++) {
         if (mgrs[i] != null) {
    mgrs[i].removeTargets( "Closing session from AVReceive3");
    mgrs[i].dispose();
              mgrs[i] = null;
    PlayerWindow find(Player p) {
         for (int i = 0; i < playerWindows.size(); i++) {
         PlayerWindow pw = (PlayerWindow)playerWindows.elementAt(i);
         if (pw.player == p)
              return pw;
         return null;
    PlayerWindow find(ReceiveStream strm) {
         for (int i = 0; i < playerWindows.size(); i++) {
         PlayerWindow pw = (PlayerWindow)playerWindows.elementAt(i);
         if (pw.stream == strm)
              return pw;
         return null;
    * SessionListener.
    public synchronized void update(SessionEvent evt) {
         if (evt instanceof NewParticipantEvent) {
         Participant p = ((NewParticipantEvent)evt).getParticipant();
         System.err.println(" - A new participant had just joined: " + p.getCNAME());
    * ReceiveStreamListener
    public synchronized void update( ReceiveStreamEvent evt) {
         RTPManager mgr = (RTPManager)evt.getSource();
         Participant participant = evt.getParticipant();     // could be null.
         ReceiveStream stream = evt.getReceiveStream(); // could be null.
         if (evt instanceof RemotePayloadChangeEvent) {
         System.err.println(" - Received an RTP PayloadChangeEvent.");
         System.err.println("Sorry, cannot handle payload change.");
         System.exit(0);
         else if (evt instanceof NewReceiveStreamEvent) {
         try {
              stream = ((NewReceiveStreamEvent)evt).getReceiveStream();
              DataSource ds = stream.getDataSource();
              // Find out the formats.
              RTPControl ctl = (RTPControl)ds.getControl("javax.media.rtp.RTPControl");
              if (ctl != null){
              System.err.println(" - Recevied new RTP stream: " + ctl.getFormat());
              } else
              System.err.println(" - Recevied new RTP stream");
              if (participant == null)
              System.err.println(" The sender of this stream had yet to be identified.");
              else {
              System.err.println(" The stream comes from: " + participant.getCNAME());
              // create a player by passing datasource to the Media Manager
              Player p = javax.media.Manager.createPlayer(ds);
              if (p == null)
              return;
              p.addControllerListener(this);
              p.realize();
              PlayerWindow pw = new PlayerWindow(p, stream);
              playerWindows.addElement(pw);
              // Notify intialize() that a new stream had arrived.
              synchronized (dataSync) {
              dataReceived = true;
              dataSync.notifyAll();
         } catch (Exception e) {
              System.err.println("NewReceiveStreamEvent exception " + e.getMessage());
              return;
         else if (evt instanceof StreamMappedEvent) {
         if (stream != null && stream.getDataSource() != null) {
              DataSource ds = stream.getDataSource();
              // Find out the formats.
              RTPControl ctl = (RTPControl)ds.getControl("javax.media.rtp.RTPControl");
              System.err.println(" - The previously unidentified stream ");
              if (ctl != null)
              System.err.println(" " + ctl.getFormat());
              System.err.println(" had now been identified as sent by: " + participant.getCNAME());
         else if (evt instanceof ByeEvent) {
         System.err.println(" - Got \"bye\" from: " + participant.getCNAME());
         PlayerWindow pw = find(stream);
         if (pw != null) {
              pw.close();
              playerWindows.removeElement(pw);
    * ControllerListener for the Players.
    public synchronized void controllerUpdate(ControllerEvent ce) {
         Player p = (Player)ce.getSourceController();
         if (p == null)
         return;
         // Get this when the internal players are realized.
         if (ce instanceof RealizeCompleteEvent) {
         PlayerWindow pw = find(p);
         if (pw == null) {
              // Some strange happened.
              System.err.println("Internal error!");
              System.exit(-1);
         pw.initialize();
         pw.setVisible(true);
         p.start();
         if (ce instanceof ControllerErrorEvent) {
         p.removeControllerListener(this);
         PlayerWindow pw = find(p);
         if (pw != null) {
              pw.close();
              playerWindows.removeElement(pw);
              //p.close(); //i added to know if player close when click
         System.err.println("Client internal error: " + ce);
    * A utility class to parse the session addresses.
    class SessionLabel {
         public String addr = null;
         public int port;
         public int ttl = 1;
         SessionLabel(String session) throws IllegalArgumentException {
         int off;
         String portStr = null, ttlStr = null;
         if (session != null && session.length() > 0) {
              while (session.length() > 1 && session.charAt(0) == '/')
              session = session.substring(1);
              // Now see if there's a addr specified.
              off = session.indexOf('/');
              if (off == -1) {
              if (!session.equals(""))
                   addr = session;
              } else {
              addr = session.substring(0, off);
              session = session.substring(off + 1);
              // Now see if there's a port specified
              off = session.indexOf('/');
              if (off == -1) {
                   if (!session.equals(""))
                   portStr = session;
              } else {
                   portStr = session.substring(0, off);
                   session = session.substring(off + 1);
                   // Now see if there's a ttl specified
                   off = session.indexOf('/');
                   if (off == -1) {
                   if (!session.equals(""))
                        ttlStr = session;
                   } else {
                   ttlStr = session.substring(0, off);
         if (addr == null)
              throw new IllegalArgumentException();
         if (portStr != null) {
              try {
              Integer integer = Integer.valueOf(portStr);
              if (integer != null)
                   port = integer.intValue();
              } catch (Throwable t) {
              throw new IllegalArgumentException();
         } else
              throw new IllegalArgumentException();
         if (ttlStr != null) {
              try {
              Integer integer = Integer.valueOf(ttlStr);
              if (integer != null)
                   ttl = integer.intValue();
              } catch (Throwable t) {
              throw new IllegalArgumentException();
    * GUI classes for the Player.
    class PlayerWindow extends Frame {
         Player player;
         ReceiveStream stream;
         PlayerWindow(Player p, ReceiveStream strm) {
         player = p;
         stream = strm;
         public void initialize() {
         add(new PlayerPanel(player));
         public void close() {
         player.close();
         setVisible(false);
         dispose();
         public void addNotify() {
         super.addNotify();
         pack();
    * GUI classes for the Player.
    class PlayerPanel extends Panel {
         Component vc, cc;
         PlayerPanel(Player p) {
         setLayout(new BorderLayout());
         if ((vc = p.getVisualComponent()) != null)
              add("Center", vc);
         if ((cc = p.getControlPanelComponent()) != null)
              add("South", cc);
         public Dimension getPreferredSize() {
         int w = 0, h = 0;
         if (vc != null) {
              Dimension size = vc.getPreferredSize();
              w = size.width;
              h = size.height;
         if (cc != null) {
              Dimension size = cc.getPreferredSize();
              if (w == 0)
              w = size.width;
              h += size.height;
         if (w < 160)
              w = 160;
         return new Dimension(w, h);
    public static void mainCl(String argv[])
         if (argv.length == 0)
         prUsage();
         Client avReceive = new Client(argv);
         if (!avReceive.initialize()) {
         System.err.println("Failed to initialize the sessions.");
         System.exit(-1);
         // Check to see if Client is done.
         try {
         while (!avReceive.isDone())
              Thread.sleep(1000);
         } catch (Exception e) {}
         System.err.println("Exiting Client");
    static void prUsage() {
         System.err.println("Usage: Client <session> <session> ...");
         System.err.println(" <session>: <address>/<port>/<ttl>");
         System.exit(0);
    }// end of Client
    //package ana;
    import javax.swing.*;
    import javax.swing.UIManager;
    import java.awt.*;
    import java.awt.event.*;
    public class ClientChoice
         public static void main(String args[])
              try
                             UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
                        catch(Exception e)
         }//main
         JFrame frame=new JFrame("--- New Line Movie ---");
         //Create the menu bar
         JMenuBar menuBar;
         JMenu menu;
         menuBar = new JMenuBar();
         //Build the file menu in the menu bar
         menu = new JMenu("File");
         menu.setMnemonic(KeyEvent.VK_F);
         menuBar.add(menu);
         JMenuItem menuItem= new JMenuItem("Exit",KeyEvent.VK_X);
         menuItem.addActionListener(new ActionListener()
              public void actionPerformed(ActionEvent e)
                        System.exit(0);
         menu.add(menuItem);
         //Build help menu in the menu bar.
         menu = new JMenu("Help");
         menu.setMnemonic(KeyEvent.VK_H);
         menuBar.add(menu);
         JMenuItem help_item=new JMenuItem("Help Topics",KeyEvent.VK_T);
         menu.add(help_item);
         JMenuItem about_item=new JMenuItem("About Us");
         menu.add(about_item);
         frame.setJMenuBar(menuBar);
              ImageIcon icon=new ImageIcon("images/potter.jpg","");
              JButton clickmovie=new JButton(icon);
              //final JLabel latest=new JLabel("<html><caption>Harry Potter</caption></html>");
              //clickmovie.add(latest);
              final JLabel welcome1=new JLabel("<html><font color=blue face=arial size=3><strong>New Line Movie</strong> gives you the possibility to view your favorite movies.<br>You can choose your category of movies below and click on any movie to get more information about it. <br>Latest News about new movies are also available. ENJOY!!!</font></html>");
              frame.getContentPane().add(welcome1,BorderLayout.EAST);
              final JLabel copyright=new JLabel("<html><font color=blue face=arial size=3><p align=center>&copy Copyright 2004</p></font></html>");
              //frame.getContentPane().add(copyright,BorderLayout.EAST);
              JPanel actionPanel=new JPanel();
              JPanel cartoonPanel=new JPanel();
              JPanel comedyPanel=new JPanel();
              JPanel fictionPanel=new JPanel();
              JPanel mainPanel=new JPanel();
              mainPanel.setLayout(new GridLayout(2,1,5,5));
              mainPanel.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
              mainPanel.add(actionPanel);
              mainPanel.add(cartoonPanel);
              mainPanel.add(comedyPanel);
              mainPanel.add(fictionPanel);
              //mainPanel.add(copyright);
              actionPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Action"),BorderFactory.createEmptyBorder(5,5,5,5)));
              cartoonPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Cartoon"),BorderFactory.createEmptyBorder(5,5,5,5)));
              comedyPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Comedy"),BorderFactory.createEmptyBorder(5,5,5,5)));
              fictionPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Science Fiction"),BorderFactory.createEmptyBorder(5,5,5,5)));
              frame.getContentPane().add(mainPanel,BorderLayout.SOUTH);
              frame.getContentPane().add(clickmovie,BorderLayout.WEST);
              // Create combo box with action movies choices
              final JComboBox actionChoices;
              String[] actionmovie={"-Select a movie-","X-Men","Spiderman"};
              actionChoices=new JComboBox(actionmovie);
              actionChoices.setSelectedIndex(0);
              actionPanel.add(actionChoices);
              actionChoices.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        JComboBox cb = (JComboBox)e.getSource();
                        String act = (String)cb.getSelectedItem();
                        if(act=="X-Men")
                             JFrame action_xmen= new JFrame("--- New Line Movie: X-Men --- ");
                   action_xmen.setSize(400,350);
                   JPanel main=new JPanel();
                   main.setLayout(new GridLayout(2,1,5,5));
                             main.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
                             ImageIcon icon_men=new ImageIcon("images/x-men.jpg","");
                   JButton clickmovie_men=new JButton(icon_men);
                   final JLabel xmen_overview=new JLabel("<html><font color=blue face=arial size=3><b>Title:</b></font> <font color=black><strong>X-Men 2 </strong></font> <br><br><font color=blue face=arial size=3><b>Starring:</b> Hugh JACKMAN and Halle BARRY<br><br><b>Story:</b> The time has come for those who are different to stand united. <br><br>A military officer with a link to Wolverine's mysterious past conspires <br><br>to eradicate the mutant population for once and all. In order to defeat <br><br>this new menace, the X-men will be forced to join forces with Magneto. <br><br><b>Duration:</b> 1hr45min </font></html>");
                   final JLabel copyright=new JLabel("<html><font color=blue face=arial size=3><p align=center>&copy Copyright 2004</p></font></html>");
                             action_xmen.getContentPane().add(copyright,BorderLayout.SOUTH);
                   JButton view=new JButton("View");
                   view.setLayout(new BoxLayout(view,BoxLayout.X_AXIS));
                                            view.add(Box.createHorizontalGlue());
                             view.add(Box.createRigidArea(new Dimension(30,0)));
                   view.setMinimumSize(new Dimension(20,100));
                   view.setPreferredSize(new Dimension(20,100));
                   view.setMaximumSize(new Dimension(Short.MAX_VALUE,Short.MAX_VALUE));
                   view.setMnemonic('v');
                   view.addActionListener(new ActionListener()
                                  public void actionPerformed(ActionEvent e)
                                            String a="172.22.45.44/42050";
                                            String b="172.22.45.44/42052";
                                            String argv=a+b;
                                            Client cl= new Client(a,b);
                                            cl.mainCl(a,b);
                                            //this is the code i added so that on clicking the view button
                                            //the client is automatically connected to the server and the player
                                            //plays on the current machine
                   main.add(clickmovie_men);
                             main.add(view);
                             //action_xmen.getContentPane().add(view,BorderLayout.SOUTH);
                   action_xmen.getContentPane().add(main,BorderLayout.WEST);
                   action_xmen.getContentPane().add(xmen_overview,BorderLayout.EAST);
                   action_xmen.show();
                        else if(act=="Spiderman")
                             JFrame action_spider= new JFrame("--- New Line Movie: Spiderman --- ");
                             action_spider.setSize(400,350);
                   action_spider.show();
              //Create combo box with cartoon movies choices
              JComboBox cartoonChoices=null;
              String[] cartoonmovie={"-Select a movie-","Le Roi Lion"};
              cartoonChoices=new JComboBox(cartoonmovie);
              cartoonChoices.setSelectedIndex(0);
              cartoonPanel.add(cartoonChoices);
              //cartoonChoices.addActionListener();
              //Create combo box with comedy movies choices
              JComboBox comedyChoices=null;
              String[] comedymovie={"-Select a movie-"};
              comedyChoices=new JComboBox(comedymovie);
              comedyChoices.setSelectedIndex(0);
              comedyPanel.add(comedyChoices);
              //comedyChoices.addActionListener();
              //Create combo box with fiction movies choices
              JComboBox fictionChoices=null;
              String[] fictionmovie={"-Select a movie-","ET"};
              fictionChoices=new JComboBox(fictionmovie);
              fictionChoices.setSelectedIndex(0);
              fictionPanel.add(fictionChoices);
              //fictionChoices.addActionListener();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
              frame.setVisible(true);
    //Implement player function here
    }//end of ClientChoice

    You are passing two String objects to a method that accepts an String array.
    try this to get rid of one error.
    Client cl = new Client(a, b);
    String[] c = {a,b};
    Client.mainCl(c);

  • Can't uninstall iTunes. "Store View Button" as the issue. What do I do?

    I tried to add new music from my computer to my ipod and there was a problem that would not allow it to happen. I decided to uninstall and then reinstall itunes. Problem - I am unable to uninstall the entire program. I have an error that discusses "Store View Button" as the issue and it will not allow me to uninstall iTunes. I can't even reinstall iTunes. It always says there is an error What do I do?

    Make sure you signed in with same email address on your Computer, website and Ipad.
    To check
    Open Creative Cloud App and Click Gear icon on the top Right corner, then open preferences.
    Click on accounts.
    Also make sure you have enough space in your cloud account
    If the email address is same then check.
    http://helpx.adobe.com/creative-cloud/kb/arent-my-files-syncing.html
    http://helpx.adobe.com/creative-cloud/kb/creative-cloud-connection-known-issues.html
    Creative Cloud desktop app | Unable to turn-on File sync

  • Issues with BI publisher report in dashboard

    Hello all,
    I got some issues about BI publisher reports in a dashboard.
    I use a dashboard prompt in combination with a BIP report.
    1.) I don't want to see the publisher control bar in my dashboard. Now you can't view the report anymore after using the dashboard prompt. Because it says you have to press the view button which is on the publisher control bar.
    So when I add the bar. Then I have first to press on go in the dashboard prompt and after that I have to press on view in the publisher control bar.
    2.) When I open my dashboard I see a scroll bar in my BIP report. Now when I use the dashboard prompt, it disappears. So I can't view the entire report anymore
    3.) I like to develop in english, but the test must be in dutch. Now I have a english dashboard with a dutch control bar. Also logging in to BIP in english and then navigating to analytics will not help.
    4.) I can't use I-bots on BI publisher reports, or can I?
    5.) This is not really an issue, but more like a problem but I want that users can view the BIP report on the dashboard only in HTML, but I want that they only can export to excel, is this possible?
    Hoping for some answers ;)
    Thanks in advance!
    Message was edited by:
    Remc0

    Hi Venkat,
    Thanks for your quick respond.
    1.) Auto Run is enabled. And the report runs automatically as well. But then it ignores the dashboard prompt (as a regular report would do as well). But when I choose some values in the prompt and then press go. Then it says I have to press on view as well.
    2.) no that is not the case. My report is so big that it always need a scroll bar ;) also adjusting the size settings in the dashboard doesn't help. The only occurs when viewing in HTML, when previewing in excel or RTF it all just work fine.
    3.) true, but ow well this is the least importetant one ;) so if this doesn't work, than it doesn't work ;)
    4.) Ok, I will have a look on that.
    5.) I did enabled HTML and EXCEL outputs in my BIP report. But when the first point is working, then I don't want to see the control bar anymore and I want to have the output on the dashboard in HTML and then I want to build a button, or a link or something that exports the request to excel. Is that possible?

  • Buttons not working in published project in Captivate 4

    Hi,
    I have been able to create projects using powerpoint 2007 and Captivate 4, and when published, the buttons connect to the appropriate URL's.  I just started a new project, importing a powerpoint.  When I preview it, the buttons work and the URL's open.  However, when I publish using the email option, and view the project, the buttons don't work. I don't think I'm doing anything differently from previous projects.  I've installed the latest version of Flash, and they are still not working.  I'm not sure what to do next.
    Thanks!

    Welcome to our community
    If you are emailing the Captivate published file, likely the end user is running it from a temporary folder from their C drive. And that causes a security issue with Flash.
    If you insist on using the eMail method of distribution, you need to also instruct the user to save the attached files to a specific location, launch the HTML file. Then ensure they configure their Flash player security settings to acknowledge the location where they saved the files as being safe.
    Click here for more
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • "Archive" and "View" buttons don't work after folio update

    Hi all,
    I have a subscription to the professional edition and I have built a custom viewer app for Android. I have built about 10 folios and at first download all is ok, the folios are displayed without problems and the app works fine except for one issue: "Archive" button don't work, when I tap on it, near folio cover, nothing happens, the folio does not disappear from folios list.
    But the serious problem occurs when I perform a folio update from Folio Producer ('Update content' from adobe dashboard DPS): both "Archive" and "View" buttons stop working, nothig happens when I tap tap on them and I am forced to uninstall and reinstall the application on tablet (.apk file) to see folio changes in my custom viewer.
    This is very annoying as well as time expensive.
    Tablet is Samsun Galaxy Tab SII with Android 3.2.
    Any help is appreciated.

    To the best of my knowledge, the SII is a smartphone and not a tablet device, and the official claim is (correct me if I'm wrong) that DPS on Android is corrently tablet only.
    Anyway, it seems strange to me so checked and found out that even though the DPS apps are not available when you search for them in the Play Market of a smartphone you can still force load them to the phone and run them.
    I've done it on both a Samsung SIII running Android 4.0.4 and a Samsung GT-I9070 running Android 2.3.6 (I currently don't have a device running Android 3.2)
    The interface is so small that it's hardly possible to use it, but it works.

  • Save and Close button issue in CRM 2013 for Activity Type Appointment

    Hi All,
    Have come across a strange behavior in CRM 2013 and would like  to be sure that it really is an issue which others have encountered too.
    Open a Case record, and click on Activity navigation link to see the Open Activity Associated View. Then try creating an Activity of type Meeting and click on
    Save & Close button (not just Save). When you refresh the view, the activity might show up. But repeat the same steps and create another Activity of Type Meeting and this activity will not show up. It doesnt show up even in the All Activities
    view. Seems like the activity does not get created when using Save and Close button.
    This behavior is replicated even on online 30 day trial version. Any inputs?
    Regards,
    Yogesh

    The problem only occurs when your appointment times clash.   "Save and close" just throws the appointment away.  "Save" tells you about clash (or perhaps it's just unavailability) and allows you to ignore and continue with the
    save.

  • I have a document made up of separate PDF files which reside in a folder and are linked to each other via hyperlinks. Each pdf file is set to open with bookmarks displayed, however if I link from one PDF file to another and use the "Previous View" button

    I have a document made up of separate PDF files which reside in a folder and are linked to each other via hyperlinks. Each pdf file is set to open with bookmarks displayed, however if I link from one PDF file to another and use the "Previous View" button to navigate back to my starting point the bookmarks are replaced by "page thumbnails". Is there anyway to stop this from happening?

    Hi Pusman,
    While setting up the links, if you choose to open the file in a new window then you won't face this issue, then you can simply switch to the previous file and bookmark view will remain as it is.
    Does that helps with your query?
    Regards,
    Rahul

  • Exit button issue in Captivate 5

    Hi,
    This is regarding the exit button on the playback controls. I have been using Captivate from version 2. Recently, started using version 5. When I published my simulation, the exit button is not working as earlier. It is also not working from- web server(IIS, Apache), when opened as pop-up as well. In local too however not working. I tried in both IE 7 and Firefox latest version.
    I have seen the response from Adobe on this issue on this forum. It was quite surprising; it did not talk about the solution at all;
    What I am not sure about is -
    1. Why the exit button was working earlier versions.. why is it not working in latest?
    2. Why should when simple code like top.close(); works fine (when coded inside the Captivate)?
    3. Why is Adobe not acknowledging the issue?
    4. Why there is no working around provided in the forums for this issue?
    Could anybody please help me understanding this problem? I am really frustrated.
    Thanks.

    Happy New to all as well!
    You are absolutely correct! The moment reporting is activated, the EXIT no longer functions. Although in my case, we are not using the time/slider bar but custom navigation buttons with an exit button on the last slide (and at the top of each slide).
    This whole EXIT button issue (not just Cp 5 but Cp 6 as well) is nearly bringing me to the point of tears! This is really ridiculous! I am in a tough position right now where my manager may be wondering if I am right person for this job because I cannot make a little EXIT button work in our lessons.
    "Solutions" or excuses that I have received
    - Just remove the EXIT button -- No, we use a standard corporate template which hundreds of employees are already familiar with. To remove the EXIT button and instruct the learner to just close the browser would be unacceptable and a rather inelegant way to exiting a lesson.
    - It is a tough issue that isn't Captivate's fault
      With all due respect to the awesome person who keeps stating that, I have a feeling that you have not used other rapid elearning tools. Building an EXIT button in all the other major elearning tools is easy and works every time.
    The source of my personal difficulty is that every other course that was built by previous developers (not using Captivate), all open in a child window and all have a working EXIT button.
    I believe the PRIMARY reason for this problem might be in the fact that... inexplicably... Captivate does not offer an option to start a lesson in a CHILD window (i.e. separate browser window). This is why no javascript in the world will allow the tab to close (e.g. EXIT button). Closing a tab or browser window via javascript only works when the same instance was previously opened by a script using the window.open method. In other words, you can only use the javascript method to close an instance that was spawned via javascript.
    This should explain why lessons published in Lectora (et al) always have working EXIT buttons every time and in every browser (minor exception is Opera for unrelated reasons).
    The second red box is just another one of my problems with Captivate 6 (not related to this topic).
    Solution????
    I've been racking my brain trying to modify Captivate's HTML/javascript in order to carry over the AICC (or SCORM - same process) variables into a child window.
    Like another participant stated, you can't simply rename the original index.html to index2.html and create a redirection like this:
    <script type="text/javascript">   
    window.open("index2.html","lesson","location=0,toolbar=0,status=0,resizable=1,width=975,he ight=600");</script>
    <body>
    Yes, I tried this as well... but unfortunately, it breaks the AICC to LMS connection. *BUT* I can promise one thing... using the above redirection, does guarantee that your EXIT button works every time! Pity the LMS connection breaks!
    QUESTION?
    Does anyone have advanced knowledge of javascript in order to code the INDEX.HTML to open the lesson in a child windows AND maintain a connection to the LMS?

  • Error When I hit the View Button

    Hi All,
    Let me confess before hand I am new to the BI publisher.
    I have it set I guess, I can log in could connect to the local database and generated the report but when I hit the view button, it says an error occurred contact the Administrator. I am logging in as Administrator.
    Are there any configuration settings that I need to make?
    I did change the model to be XDO and then I have installed BI-Publisher Desktop. I can see on my word Tool bar. Is there anything else i need to configure.
    When I hit error details i get
    Unexpected element: :report
    Are there any log files which I can dig in and see what is wrong.
    Thanks in advance I appreciate
    MCP

    Hi,
    depending the combination of your Firefox-Version (3) and your BIP-Version (10.1.3.3.3) that happens every time. Is fixed (see Note 605403.1)
    Regards
    Rainer

  • Enabling "Save This View" button - change does not stick

    Running SharePoint 2013 Server Standard
    I have several sites.  For some the "Save This View" choice when filtering a view is enabled.  However, there are some for which the choice does not display.
    I located the setting for this in Editing the Page, Miscellaneous options for which the check button is "Disable 'Save This View'" button.  I uncheck the box, hit Apply or OK.  No errors.  However, the change does not get executed.
    I have admin rights to do anything.
    Please advise as to other settings that may be overriding this.
    Any ideas?  Seems to be a bug.

    Check below:
    http://www.sharemuch.com/2014/03/13/how-to-do-advanced-sharepoint-list-view-filtering-with-query-string-paramters/
    http://office.microsoft.com/en-in/sharepoint-help/use-the-list-view-web-part-HA102771012.aspx
    Check server render option
    If this helped you resolve your issue, please mark it Answered

  • The "view" buttons in the showcase page are not visible in iPad, iPhone and Android device

    I was trying to test the demo in the showcase page (http://html.adobe.com/edge/animate/showcase.html) in my iPad, iPhone and HTC device. None of them has the "view" button visible, so I cannot check the demo at all. Do you encounter the same issue? Any thoughts?
    thanks,
    Wenlong

    Hi Elaine,
    Yes, I understand! Actually we have tested the previous examples last month before the new release! In general they were working fine but with some bugs in the mobile devices.
    Is there any possibility we could test some live examples via mobile devices?
    In the past years we have heavily relied on flash tools. With the rapid growth of the usage of tablets and smart phones in our business, we will have to get rid of flash tools as soon as possible. We are in the phase to select and test new development environment intensively. Unfortunately I have aleady shared the same link with many of my colleagues for testing (didn't realize that they are not working any more). Any suggestion would be great!
    Thanks,
    Wenlong

  • The firefox button and the panorama view button are both missing in FF4 RC1

    I updated to FF4 RC1 two days ago and noticed that the panorama view button was missing and the firefox button, which is supposed to replace the File, Edit, View etc. menus had not done so. So basically, I'm still stuck with the FF3 style menu buttons.

    The Firefox button is default on Windows Vista and 7, but not on XP. The best explanation I can find was on one of the bug reports.
    "In terms of external consistency, nearly every app on XP uses a traditional menu bar (windows explorer, etc.) While some users will prefer to switch to the Firefox button, I think we should stick to the native interactive style for each platform to reduce overall confusion and allow for an easy transition to the new version."
    There were a few reasons for not displaying the panorama button by default. It can be confusing to those who have never seen it before if they click on the button, and there are some issues concerning memory usage that have still to be sorted out.

  • "CRVS2010 Beta - viewer size issue

    Hello,
    I'm having an issue with the Crystal Reports viewer in a web application. I'm using visual studio 2010 with CRVS2010 Beta 2 installed. In design mode, the web form shows the report in full size as expected, but when I run the application and pull up the report, all I see is the Group Tree icon.
    I've tried setting the height and width on the viewer, but it doesn't seem to have any effect. I placed a border around the viewer so I could be sure it wasn't resizing, and it wasn't.
    I also have a button outside of the viewer that saves the report off as pdf, and that seems to be working just fine. The report saves with all the data and looks perfect.
    I've installed both the 32 bit and 64 bit runtimes on my development machine, but it did not help. I set the application to target 32 bit only, but no help. I set IIS App Pool to Classic mode, no help.
    This is an app that was converted from VS 2008 / .NET Framework 3.5 on a new development machine running VS 2010 & 4.0, so there was no previous version of CR installed.
    I'm running Windows 7 Ultimate N 64bit as OS.
    Here is the code for the viewer.
    <CR:CrystalReportViewer ID="crvPrintPOC" runat="server" AutoDataBind="true"
            BorderStyle="Inset" BorderWidth="2" BestFitPage="True" SeparatePages="True"
            DisplayToolbar="True" HasPageNavigationButtons="True"
            PrintMode="Pdf" HasCrystalLogo="True"
            ReportSourceID="CrystalReportSource1" Height="705px" Width="900px" />
    <CR:CrystalReportSource ID="CrystalReportSource1" runat="server">
            <Report FileName="reports\CPRPT-201 CB_Proof_Claim.rpt">
            </Report>
    </CR:CrystalReportSource>
    Thank You!

    Thank you for the suggestions Ludek and Adam,
    I tried deleting the viewer and adding it again, but still get the same result. You can view a screen capture at http://www.flickr.com/photos/54613233@N07/
    I also removed the property BestFitPage, but it didn't make any difference.
    Here is how the code looks now
    <CR:CrystalReportSource ID="CrystalReportSource1" runat="server">
         <Report FileName="reports\CPRPT-201 CB_Proof_Claim.rpt">
         </Report>
    </CR:CrystalReportSource>
    <CR:CrystalReportViewer ID="crvPrintPOC" runat="server"
            AutoDataBind="true" ReportSourceID="CrystalReportSource1" />
    Edited by: dav1_1 on Oct 6, 2010 8:56 PM

  • Panel covers important "view" button;Internet Explorer is fine with this.

    My online banking page has a window where I can choose to see transactions completed 2,4,6 or more weeks previously. Next to the window SHOULD be a "VIEW" button which I click to get the desired transactions. For a few months now, there is a Self Service panel which covers the "VIEW" button; I cannot access the desired information. Before that, it worked fine. Using my Internet Explorer browser, I can access the page and the "VIEW" button is easily accessible. There's something wrong with my banking page.

    If you have increased the minimum font size then try the default setting "none" as a high value can cause such issues.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow websites to choose their fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced > [X] "Allow pages to choose their own fonts, instead of my selections above"
    See also:
    *https://support.mozilla.org/kb/Changing+fonts+and+colors

Maybe you are looking for