New syntax for Go URL in Analytics 10.1.3.2 onwards

Can someone please share the location of any documentation for parameter passing in version 10.3.4.1 ?
Specifically, I am having difficulty getting the BETWEEN qualifier to function as expected: *&op1=bet*
Almost all of the GO URL examples that reference the new variable passing style simply use *&col1=* and *&val1=* and leave off the optional operator, letting it default to *&op1=eq*. Filtering for a single date using &op1=eq, &op1=gt, &op1=le works just fine. But when I try to overload the new &val1= pararameter the same method that the older syntax uses
&P3=2+"8/12/2012 12:00:00 AM"+"08/18/2012 12:00:00 AM"
&val1=2+"8/12/2012 12:00:00 AM"+"08/18/2012 12:00:00 AM" or any variant of date/time then it fails.
I need to be able to filter for a specific range of dates and tried every combination of escaped sequences that I can think of with no success.
Thanks in advance for any suggestions or links,
-Marco
(Dallas, TX)

Thanks, I have the docs for the older &P0, &P1-P3, &P4-P6, etc. structure. I prefer the newer and cleaner format of the &col1= and &val1=, especially given the fact that there isn't a limit on the number of filters, the old approach cannot have more than 6 conditions.
I really don't want to have to code for both formats since I already have a lot of queries built using the newer syntax. Surely, Oracle still supports the BETWEEN operator.

Similar Messages

  • New syntaxes for Obsolete ones

    Can anyone tell me the new syntaxes for these-
    1) Using 'occurs' for creating an internal table is obsolete now.
    2) Move statement is obsolete. For a unicode upgrade what is the solution for these?
    Search before posting further
    Edited by: Vijay Babu Dudla on Jan 15, 2009 4:28 AM

    Hai,
    TYPes: begin of ty_tab,
               f1 type element,
              f2 type element2,
    end of ty_tab.
    types: ty_it_tab type table of ty_tab.
    data: it_table type ty_it_tab.
    data: wa type ty_tab.
    Use explicit work areas for the internal tables. you can also use field-symbols if required.
    Regards,
    Venkatesh

  • 11gR2 SELECT statement: new syntax for specifying partition key

    I have an Oracle 11gR2 table which is interval partitioned on a single NUMBER column.
    I am trying to query a single partition using the new SELECT ... FOR ( < partition key> ) syntax.
    I keep getting an ORA-00905 error as follows, any ideas what I am doing wrong?
    SQL*Plus: Release 11.2.0.2.0 Production on Wed Dec 12 10:34:36 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select * from rpt_dif_daily_instance_fact for ( 41215 )
    2 /
    select * from rpt_dif_daily_instance_fact for ( 41215 )
    ERROR at line 1:
    ORA-00905: missing keyword
    SQL> show sqlpluscompatibility
    sqlpluscompatibility 11.2.0

    Welcome to the forum!
    Thanks for providing your 4 digit Oracle version. You should always do that when you post since functionality may be different between versions.
    >
    I have an Oracle 11gR2 table which is interval partitioned on a single NUMBER column.
    I am trying to query a single partition using the new SELECT ... FOR ( < partition key> ) syntax.
    I keep getting an ORA-00905 error as follows, any ideas what I am doing wrong?
    SQL*Plus: Release 11.2.0.2.0 Production on Wed Dec 12 10:34:36 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select * from rpt_dif_daily_instance_fact for ( 41215 )
    2 /
    select * from rpt_dif_daily_instance_fact for ( 41215 )
    ERROR at line 1:
    ORA-00905: missing keyword
    >
    As bencol said you are not using the new syntax. See the SQL Language doc 'partition_extension_clause' for the syntax diagram that shows the syntax options.
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_10002.htm
    If you provide the partition name then the syntax is
    . . .PARTITION (partition)If you provide a partition key value the syntax is
    . . .PARTITION FOR (partition_key_value)

  • Opening a new browser for each url

    Hi
    I need some help with my Java... I'm using the following code to retrieve all the url from an xml file:
    public void openURL(l)
    for(i=1; i<10; i++)
    String filePath = menuDefn.getFilePath();
    try
    Program.launch(filePath);
    catch(Exception e){}
    How do I get it to open the url to open in separate browsers (internet explorer browsers), rather than just open in the one browser.
    Any help will be appreciated
    Thanks!!!

    ok... here's the code... it's a long one... the class is provided by IBM:
    * Copyright (c) 2000, 2004 IBM Corporation and others.
    * All rights reserved. This program and the accompanying materials
    * are made available under the terms of the Common Public License v1.0
    * which accompanies this distribution, and is available at
    * http://www.eclipse.org/legal/cpl-v10.html
    * Contributors:
    *     IBM Corporation - initial API and implementation
    package org.eclipse.swt.program;
    import org.eclipse.swt.internal.*;
    import org.eclipse.swt.internal.win32.*;
    import org.eclipse.swt.*;
    import org.eclipse.swt.graphics.*;
    import java.io.IOException;
    * Instances of this class represent programs and
    * their assoicated file extensions in the operating
    * system.
    public final class Program {
         String name;
         String command;
         String iconName;
    * Prevents uninitialized instances from being created outside the package.
    Program () {
    * Finds the program that is associated with an extension.
    * The extension may or may not begin with a '.'.  Note that
    * a <code>Display</code> must already exist to guarantee that
    * this method returns an appropriate result.
    * @param extension the program extension
    * @return the program or <code>null</code>
    * @exception SWTError <ul>
    *          <li>ERROR_NULL_ARGUMENT when extension is null</li>
    *     </ul>
    public static Program findProgram (String extension) {
         if (extension == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
         if (extension.length () == 0) return null;
         if (extension.charAt (0) != '.') extension = "." + extension; //$NON-NLS-1$
         /* Use the character encoding for the default locale */
         TCHAR key = new TCHAR (0, extension, true);
         int [] phkResult = new int [1];
         if (OS.RegOpenKeyEx (OS.HKEY_CLASSES_ROOT, key, 0, OS.KEY_READ, phkResult) != 0) {
              return null;
         int [] lpcbData = new int [] {256};
         TCHAR lpData = new TCHAR (0, lpcbData [0]);
         int result = OS.RegQueryValueEx (phkResult [0], null, 0, null, lpData, lpcbData);
         OS.RegCloseKey (phkResult [0]);
         if (result != 0) return null;
         return getProgram (lpData.toString (0, lpData.strlen ()));
    * Answer all program extensions in the operating system.  Note
    * that a <code>Display</code> must already exist to guarantee
    * that this method returns an appropriate result.
    * @return an array of extensions
    public static String [] getExtensions () {
         String [] extensions = new String [1024];
         /* Use the character encoding for the default locale */
         TCHAR lpName = new TCHAR (0, 1024);
         int [] lpcName = new int [] {lpName.length ()};
         FILETIME ft = new FILETIME ();
         int dwIndex = 0, count = 0;
         while (OS.RegEnumKeyEx (OS.HKEY_CLASSES_ROOT, dwIndex, lpName, lpcName, null, null, null, ft) != OS.ERROR_NO_MORE_ITEMS) {
              String extension = lpName.toString (0, lpcName [0]);
              lpcName [0] = lpName.length ();
              if (extension.length () > 0 && extension.charAt (0) == '.') {
                   if (count == extensions.length) {
                        String [] newExtensions = new String [extensions.length + 1024];
                        System.arraycopy (extensions, 0, newExtensions, 0, extensions.length);
                        extensions = newExtensions;
                   extensions [count++] = extension;
              dwIndex++;
         if (count != extensions.length) {
              String [] newExtension = new String [count];
              System.arraycopy (extensions, 0, newExtension, 0, count);
              extensions = newExtension;
         return extensions;
    static String getKeyValue (String string, boolean expand) {
         /* Use the character encoding for the default locale */
         TCHAR key = new TCHAR (0, string, true);
         int [] phkResult = new int [1];
         if (OS.RegOpenKeyEx (OS.HKEY_CLASSES_ROOT, key, 0, OS.KEY_READ, phkResult) != 0) {
              return null;
         String result = null;
         int [] lpcbData = new int [1];
         if (OS.RegQueryValueEx (phkResult [0], (TCHAR) null, 0, null, null, lpcbData) == 0) {
              result = "";
              int length = lpcbData [0] / TCHAR.sizeof;
              if (length != 0) {
                   /* Use the character encoding for the default locale */
                   TCHAR lpData = new TCHAR (0, length);
                   if (OS.RegQueryValueEx (phkResult [0], null, 0, null, lpData, lpcbData) == 0) {
                        if (!OS.IsWinCE && expand) {
                             length = OS.ExpandEnvironmentStrings (lpData, null, 0);
                             if (length != 0) {
                                  TCHAR lpDst = new TCHAR (0, length);
                                  OS.ExpandEnvironmentStrings (lpData, lpDst, length);
                                  result = lpDst.toString (0, Math.max (0, length - 1));
                        } else {
                             length = Math.max (0, lpData.length () - 1);
                             result = lpData.toString (0, length);
         if (phkResult [0] != 0) OS.RegCloseKey (phkResult [0]);
         return result;
    static Program getProgram (String key) {
         /* Name */
         String name = getKeyValue (key, false);
         if (name == null || name.length () == 0) return null;
         /* Command */
         String DEFAULT_COMMAND = "\\shell"; //$NON-NLS-1$
         String defaultCommand = getKeyValue (key + DEFAULT_COMMAND, true);
         if (defaultCommand == null) defaultCommand = "open"; //$NON-NLS-1$
         String COMMAND = "\\shell\\" + defaultCommand + "\\command"; //$NON-NLS-1$
         String command = getKeyValue (key + COMMAND, true);
         if (command == null || command.length () == 0) return null;
         /* Icon */
         String DEFAULT_ICON = "\\DefaultIcon"; //$NON-NLS-1$
         String iconName = getKeyValue (key + DEFAULT_ICON, true);
         if (iconName == null || iconName.length () == 0) return null;
         Program program = new Program ();
         program.name = name;
         program.command = command;
         program.iconName = iconName;
         return program;
    * Answers all available programs in the operating system.  Note
    * that a <code>Display</code> must already exist to guarantee
    * that this method returns an appropriate result.
    * @return an array of programs
    public static Program [] getPrograms () {
         Program [] programs = new Program [1024];
         /* Use the character encoding for the default locale */
         TCHAR lpName = new TCHAR (0, 1024);
         int [] lpcName = new int [] {lpName.length ()};
         FILETIME ft = new FILETIME ();
         int dwIndex = 0, count = 0;
         while (OS.RegEnumKeyEx (OS.HKEY_CLASSES_ROOT, dwIndex, lpName, lpcName, null, null, null, ft) != OS.ERROR_NO_MORE_ITEMS) {     
              String path = lpName.toString (0, lpcName [0]);
              lpcName [0] = lpName.length ();
              Program program = getProgram (path);
              if (program != null) {
                   if (count == programs.length) {
                        Program [] newPrograms = new Program [programs.length + 1024];
                        System.arraycopy (programs, 0, newPrograms, 0, programs.length);
                        programs = newPrograms;
                   programs [count++] = program;
              dwIndex++;
         if (count != programs.length) {
              Program [] newPrograms = new Program [count];
              System.arraycopy (programs, 0, newPrograms, 0, count);
              programs = newPrograms;
         return programs;
    * Launches the executable associated with the file in
    * the operating system.  If the file is an executable,
    * then the executable is launched.  Note that a <code>Display</code>
    * must already exist to guarantee that this method returns
    * an appropriate result.
    * @param fileName the file or program name
    * @return <code>true</code> if the file is launched, otherwise <code>false</code>
    * @exception SWTError <ul>
    *          <li>ERROR_NULL_ARGUMENT when fileName is null</li>
    *     </ul>
    public static boolean launch (String fileName) {
         if (fileName == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
         /* Use the character encoding for the default locale */
         int hHeap = OS.GetProcessHeap ();
         TCHAR buffer = new TCHAR (0, fileName, true);
         int byteCount = buffer.length () * TCHAR.sizeof;
         int lpFile = OS.HeapAlloc (hHeap, OS.HEAP_ZERO_MEMORY, byteCount);
         OS.MoveMemory (lpFile, buffer, byteCount);
         SHELLEXECUTEINFO info = new SHELLEXECUTEINFO ();
         info.cbSize = SHELLEXECUTEINFO.sizeof;
         info.lpFile = lpFile;
         info.nShow = OS.SW_SHOW;
         boolean result = OS.ShellExecuteEx (info);
         if (lpFile != 0) OS.HeapFree (hHeap, 0, lpFile);
         return result;
    * Executes the program with the file as the single argument
    * in the operating system.  It is the responsibility of the
    * programmer to ensure that the file contains valid data for
    * this program.
    * @param fileName the file or program name
    * @return <code>true</code> if the file is launched, otherwise <code>false</code>
    * @exception SWTError <ul>
    *          <li>ERROR_NULL_ARGUMENT when fileName is null</li>
    *     </ul>
    public boolean execute (String fileName) {
         if (fileName == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
         boolean quote = true;
         String prefix = command, suffix = ""; //$NON-NLS-1$
         int index = command.indexOf ("%1"); //$NON-NLS-1$
         if (index != -1) {
              int count=0;
              int i=index + 2, length = command.length ();
              while (i < length) {
                   if (command.charAt (i) == '"') count++;
                   i++;
              quote = count % 2 == 0;
              prefix = command.substring (0, index);
              suffix = command.substring (index + 2, length);
         if (quote) fileName = " \"" + fileName + "\""; //$NON-NLS-1$ //$NON-NLS-2$
         try {
              Compatibility.exec(prefix + fileName + suffix);
         } catch (IOException e) {
              return false;
         return true;
    * Returns the receiver's image data.  This is the icon
    * that is associated with the reciever in the operating
    * system.
    * @return the image data for the program, may be null
    public ImageData getImageData () {
         int nIconIndex = 0;
         String fileName = iconName;
         int index = iconName.indexOf (',');
         if (index != -1) {
              fileName = iconName.substring (0, index);
              String iconIndex = iconName.substring (index + 1, iconName.length ()).trim ();
              try {
                   nIconIndex = Integer.parseInt (iconIndex);
              } catch (NumberFormatException e) {}
         /* Use the character encoding for the default locale */
         TCHAR lpszFile = new TCHAR (0, fileName, true);
         int [] phiconSmall = new int[1], phiconLarge = null;
         OS.ExtractIconEx (lpszFile, nIconIndex, phiconLarge, phiconSmall, 1);
         if (phiconSmall [0] == 0) return null;
         Image image = Image.win32_new (null, SWT.ICON, phiconSmall[0]);
         ImageData imageData = image.getImageData ();
         image.dispose ();
         return imageData;
    * Returns the receiver's name.  This is as short and
    * descriptive a name as possible for the program.  If
    * the program has no descriptive name, this string may
    * be the executable name, path or empty.
    * @return an the name of the program
    public String getName () {
         return name;
    * Returns true if the receiver and the argument represent
    * the same program.
    * @return true if the programs are the same
    public boolean equals(Object other) {
         if (this == other) return true;
         if (other instanceof Program) {
              final Program program = (Program) other;
              return name.equals(program.name) && command.equals(program.command)
                   && iconName.equals(program.iconName);
         return false;
    * Returns a hash code suitable for this object.
    * @return a hash code
    public int hashCode() {
         return name.hashCode() ^ command.hashCode() ^ iconName.hashCode();
    public String toString () {
         return "Program {" + name + "}"; //$NON-NLS-1$ //$NON-NLS-2$
    }

  • Authentication syntax for HTTP GET method using TCP functions in Labview on linux

    Hi,
    Currently, I am trying to communicate to web server. I have Labview installed on a Linux machine. The HTTP function blocks and other labview functions do not work. Hence, I am building a HTTP code string using TCP functions (port 80) to talk to the web server. I am successfully able to fetch a response from web sites (example www.ni.com) from my vi. However, when I try to communicate to my web server, it does not work. It requires an authentication. I am able to open http://ipaddress in my browser from my machine using username and password. Can someone help with Authentication string requirement for GET method?
    so far the string is:
    GET /index/ HTTP/1.1
    Host: http://xx.xx.xx.xx

    An easy option would be to try http://userassword@server syntax for the URL.
    Else I posted a Twitter fetcher once (won't work anymore since Twitter moved to Oauth authentication) at LAVA. Based on code from @cloew.
    The code is part of this LLB.
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • Looking for correct syntax GO dashboard URL

    hi all,
    according to the Oracle BI EE Presentation Services Guide, the URL syntax for going to a dashboard URL is ...
    http://localhost:9704/analytics/saw.dll?GO&NQUser=Administrator&NQPassword=Administrator&Path=/shared/Paint%20Demo/_portal/Paint%20Dashboard
    but this does not work. The error I get is ...
    Object expected: /shared/Paint Demo/_portal/Paint Dashboard
    Error Details
    Error Codes: GCARFLCS
    I've tried substituting the %20 with an actual space or a + sign without any success. Any ideas on how this should work?

    In addition to what Bryan said, you can get the Dashboard Pages URL by using Dashboard and PortalPages parameters. I have examples here http://oraclebizint.wordpress.com/2007/11/13/oracle-bi-ee-101331-bookmark-and-prompted-links-passing-prompt-values-to-dashboards/ and here http://oraclebizint.wordpress.com/2007/11/01/oracle-bi-ee-101332-hiding-banner-in-dashboards-using-go-url/
    Thanks,
    Venkat
    http://oraclebizint.wordpress.com

  • Firefox loads only blank new tabs for all web pages, with blank url bar.

    After a minor automatic update (16.0.1 --> 16.0.2), firefox is now completely unusable.
    Any time I attempt to load a page, it only shows a blank tab labeled 'new tab'.
    The url bar for this page will be blank if I try to open it from a link or bookmakrk.
    The url bar for this page will be exactly what I typed if I manually typed a url.
    Right-clicking the blank pages does nothing: no context menu.
    The 'troubleshooting information' page DID load properly though; it's the only page I've been able to display at all so far.
    Restarting firefox did not fix the issue.
    Restarting firefox in safe mode with addons disabled did NOT fix the issue -- so please don't waste time trying to tell me it's the addons.
    Changing network proxy settings did not fix the issue.
    There are no connection problems: IE can load pages just fine from the same computer.
    I love mah firefox... but now it's dead... please help!

    Update: Solved:
    Firefox works properly after restarting entire computer.
    It's poor form to require computer restarts for minor browser updates... and even poorer to not say so when you do.
    (Some of us are running servers in the background that should not be interrupted.)

  • Syntax for url

    hi @ all,
    i want create an url which contains an item on one page and a column name of a report like #column_name# in another page. it must be possible that the url fills the item at the one page with the column value of a row on the other page.
    can me help someone with the syntax of the url or is there a special thread
    thanks

    I don't know what you mean but I'm pretty sure there is no way to do anything like what I think you might mean. If you describe an example in precise detail, someone will probably be able to give a better answer.
    Scott

  • Somtimes Firefox loads a blank page; the Tab says "New Tab" and the URL is always "about:blank". What's up with that?

    Using Dogpile, I search and a list of URLs comes up. I select and click on one and Firefox opens a new tab. It responds promptly with a blank screen. The Tab says "New Tab" and the URL says "about:blank". The last one came up slowly in IE and turned out to be nothing more than a large pdf. Can you help me figure out what is happening and how to fix it, please? It is happening far too often. Running the virus, etc. software has not stopped this problem. Thank you very much for your help! Hutchy

    Using Dogpile, I search and a list of URLs comes up. I select and click on one and Firefox opens a new tab. It responds promptly with a blank screen. The Tab says "New Tab" and the URL says "about:blank". The last one came up slowly in IE and turned out to be nothing more than a large pdf. Can you help me figure out what is happening and how to fix it, please? It is happening far too often. Running the virus, etc. software has not stopped this problem. Thank you very much for your help! Hutchy

  • Create new session for each window opening

    From a jsp page i open a page called student.jsp by clicking on students admision no.Therefore lots of pages can be opend in new windows with relevent student details.
    but when i click on the link i called a servlet, get relevent details and redirect to student.jsp. The problem is ,all opened windows have same session id and there are session conflicts.
    How can i create new sessions for each page thru the servlet or is there any other alternatives

    I actually was working on a problem that was similar to this, and the problem is with how each web-browser works with sessions...
    Each browser window (Except in one case with IE) will use the same session in each window.
    However, you might be able to use URL-Rewritting to manage your sessions and get around using cookies for for session tracking. I personally haven't tried this, but I'm betting that it will work.
    Best of Luck,
    Nate

  • I live in Ireland. How can I buy a new battery for my N500?

    I need to buy a new battery for my Lenovo 3000 N500.   However, in the Ireland section of the Lenovo web site NONE of the dealers have this part in stock.   It is in stock on the US and UK sections of the web site, but apparently only people in those countries can buy it on line.   I would be prepared to buy it online from the US or the UK and pay the shipping charges to Ireland.  In more than 13 years on the web, Lenovo is the first company I've encountered where I haven't been able to use my credit card to purchase an item from the US or the UK.   I do this all the time with companies like Land's End, Amazon, James Meade etc etc.
    Fine, if I'm not allowed buy from the US and the UK.  But at least,then, make sure I have some other way of buying the part - either on line or from a store.

    According to Apple:
    iPod Owners
    Your one-year warranty includes replacement coverage for a defective battery. If it is out of warranty, Apple offers a battery replacement for $49 (iPod shuffle), $59 (iPod nano and iPod classic), and $79 (iPod touch) plus $6.95 shipping, subject to local tax. Apple disposes of your battery in an environmentally friendly manner.
    URL: http://www.apple.com/batteries/replacements.html

  • The main part of the safari page is grey and won't respond/can't type in any commands.  I can move back through the previous pages, and even open new ones via the URL, but can't get onto the main part of the page and I can't get onto the 9 page option. !?

    The main part of the safari page is grey and won't respond/can't type in any commands.  I can move back through the previous pages, and even open new ones via the URL, but can't get onto the main part of the page and I can't get onto the 9 page option. !?
    Help, please.

    Try clearing Safari's cache : Settings > Safari > Clear Cache (and Clear History)
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Steps to generate Token for opendoc url call in XI3.1

    Hi Guys,
    I am quite new to Sdk's and java programming .
    I am trying to get some help in generating token for opendoc url to avoid login while trying to access a report in Infoview.
    From a previous post I got this code:
    <%@ page import="com.crystaldecisions.sdk.framework.*" %>
    <%@ page import="com.crystaldecisions.sdk.exception.SDKException" %>
    <%@ page import="com.crystaldecisions.sdk.occa.security.*" %>
    <%
    boolean loginSuccessful = false;
    IEnterpriseSession boEnterpriseSession = null;
    String username = "Administrator";
    String password = "pwd";
    String cmsname  = "CMS";
    String authenticationType = "secEnterprise";
    try {
       //Log in.
       boEnterpriseSession = CrystalEnterprise.getSessionMgr().logon( username, password, cmsname, authenticationType);
       if (boEnterpriseSession == null) {
          out.print("<FONT COLOR=RED><B>Unable to login.</B></FONT>");
       } else {
          loginSuccessful = true;
    } catch (SDKException sdkEx) {
       out.print("<FONT COLOR=RED><B>ERROR ENCOUNTERED</B><BR>" + sdkEx + "</FONT>");
    if (loginSuccessful) {
       ILogonTokenMgr boLogonTokenMgr = boEnterpriseSession.getLogonTokenMgr();
       String logonToken = boLogonTokenMgr.createLogonToken("", 60, 1);
       String infoViewURL = null;
       String tokenParam = null;
       String redirectURL = null;
       infoViewURL = "http://server:8080/InfoViewApp/logon.jsp";
       tokenParam = "ivsLogonToken=" + logonToken;
       redirectURL = infoViewURL + "&" + tokenParam;
       response.sendRedirect(redirectURL);
    %>
    The problem is I don't know where to put this code in the opendoc.jsp file.
    I tried to create a custom OpenDoc.jsp with a above code, leaving the original opendoc.jsp as it is. And used this custom jsp file in the opendoc url. This is taking me to Infoview login page and I see taht a token is created at the end of the url but it is not passed.
    Can somebody help me to understand where exactly to put this code in the opendoc.jsp and any correction to this code or additional steps to get it working.
    Any help is greatly appreciated!

    The code above is meant to redirect you to InfoView. Change the last bit of code as follows:
    //add any opendocument parameters to the URL here
    openDocURL = "http://server:8080/OpenDocument/opendoc/openDocument.jsp"
    tokenParam = "token=" + logonToken;
    redirectURL = openDocURL + "&" + tokenParam;
    response.sendRedirect(redirectURL);

  • I look for integrated in the legend bloc of diaporama, a widget such as "Accordion" for, with a click, or passing with mouse, open a new legend for each photo. I tried with "Accordion" of Muse, it does not work. I tried copy/paste, mais no result. The wid

    Question.
    I look for integrated in the legend bloc of diaporama, a widget such as "Accordion" for, with a click, or passing with mouse, open a new legend for each photo. I tried with "Accordion" of Muse, it does not work. I tried copy/paste, mais no result. The widget disappear in bloc legend. disparaître. Have you one solution?
    Thank you,
    Loïc

    Accordion or Tabbed panel should to it, with click and open container.
    Please provide site url where this does not work, also if you can provide an example where we can see the exact action then it would help us.
    Thanks,
    Sanjit

  • What is the Opendocument syntax for java SDK -BOXI3.1

    Hi,
    We are using java sdk for BOXI3.1 to open the reports from J2EE Screens.
    Earlier we have used below syntax for opendocument in BOXIR2, it worked fine. Now our client is migrated to BOXI3.1 same URL syntax is not working.
    BOXIR2 we have used below syntax to open the webi reports from J2EE screen:
    URL: "http://" + CMS + ":8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?" + "iDocID=" + webiID + "&sType=wid&sWindow=Same&token=" + token;
    Please help in this regard.

    The URL path and such has changed.
    Here is a pdf for [XI 3.1 URL Reporting|http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_url_reporting_opendocument_en.pdf]
    Jason

Maybe you are looking for

  • New 27 iMAC keeps crashing iMovie and freezing videos on YouTube & Quicktime

    We just got a new Sept 2013 iMac three days ago, purchased refurbished from the Apple Store online. The whole point of the purchase was to be able to use iMovie to thoroughly edit videos for our YouTube channel, use garage band, lots of internet surf

  • Error in creating a trigger

    i am creating a trigger i am getting an error create or replace TRIGGER INS_Discharge AFTER INSERT ON Discharge FOR EACH ROW AS declare vr_DischargeType INT ; vr_Visit_ID INT ; vr_Discharge_Date DATE; vr_VisitDate DATE; vr_AdmTime varchar(5) ; vr_Tra

  • Display all sales order's smartform output in one spool request

    Hi, If suppose user has given sales order number from 01 to 14 then the output of all sales order should come in one print priview of spool request. How to do it? Please help. Thanks in advance, Rgds, Madhuri

  • Freeware UML tool, simple but nice

    There have been a couple questions lately about UML notation products. I've used Rose, and several other expensive packages, and now typically use Omondo with Eclipse. Omondo has a free "lamed" version for download. If you're looking for a simple, fr

  • Disk will not load on first pressing of power button

    I have a 2-3 month old HP Pavilion p6 Series HP P6-2317c- PC which is running Windows 8 64 bit  with IE 10. When I push the power button the disk light starts but will not load until I press the power button to restart 2 or 3 times then it works fine