How to disable access to Information OnDemand Services from InfoView

Is there any supported way of disabling 'Access Information OnDemand Services' option on InfoView
toolbar and home page in BOXI R2 SP3?

Hello,
This requires modifying JSP files. Please backup all files before mofying them.
Also, to the best of my knowledge this is supported. That said, this does not mean that the modifications will stick through updates/patches. Could someone from BO confirm?
This is how we did it (Java Infoview).
Go to
C:\Program Files\Business Objects\Tomcat\webapps\businessobjects\enterprise115\desktoplaunch\Infoview\main\
Open headerPlus.jsp, and comment out the following section:
<c_rt:if test="<%= isOnDemandInstalled %>">
<fmt:message var="ttOnDemandHome" key='main.home.link.ondemand'/>
toolbarCtrl.add (newIconWidget("btnOndemand",
"<%= context + schema.getUrl(application, "img.toolbar.ondemand") %>", onBtnOnDemandClick,null,
'<%= Encoder.encodeJS((String)pageContext.findAttribute("ttOnDemandHome")) %>', 16,16,3,3,25,3));
</c_rt:if>
There is an alternate way to do the same in the following SAP Note (I have not tested this)
1206230 - How to hide the OnDemand icon in infoview on Tomcat

Similar Messages

  • Remove 'Access Information OnDemand Services' Button from toolbar

    How can I remove the 'Access Information OnDemand Services' Button from the toolbar? I just upgraded BO XI R2 with SP4. I have to remove this button since we are hosting BusinessObjects on servers with multiple clients. They do not need, nor care about this (it will actually confuse them)...

    Hello,
    This requires modifying JSP files. Please backup all files before mofying them.
    Also, to the best of my knowledge this is supported. That said, this does not mean that the modifications will stick through updates/patches. Could someone from BO confirm?
    This is how we did it (Java Infoview).
    Go to
    C:\Program Files\Business Objects\Tomcat\webapps\businessobjects\enterprise115\desktoplaunch\Infoview\main\
    Open headerPlus.jsp, and comment out the following section:
    <c_rt:if test="<%= isOnDemandInstalled %>">
    <fmt:message var="ttOnDemandHome" key='main.home.link.ondemand'/>
    toolbarCtrl.add (newIconWidget("btnOndemand",
    "<%= context + schema.getUrl(application, "img.toolbar.ondemand") %>", onBtnOnDemandClick,null,
    '<%= Encoder.encodeJS((String)pageContext.findAttribute("ttOnDemandHome")) %>', 16,16,3,3,25,3));
    </c_rt:if>
    There is an alternate way to do the same in the following SAP Note (I have not tested this)
    1206230 - How to hide the OnDemand icon in infoview on Tomcat

  • How to disable access to internet completely in the jnlp file

    Hi All,
    Can someone help me in figuring out how to disable access to internet completely in the jnlp file.
    To be specific with the scenario if the client does not have the JRE installed, i would like to have it downloaded from the server where application runs instead of going to java.sun.com website which needs internet access.
    How can we configure it in such a way that it does not go to internet at all.
    Here is the snapshot of my jnlp file
    <j2se version="1.5.0+" href="http://java.sun.com/products/autodl/j2se" initial-heap-size="128m" max-heap-size="128m"/>
    I tried with the following and still unsuccessful.
    <j2se version="1.5.0+" initial-heap-size="128m" max-heap-size="128m"/>
    Could not find any useful information in the documentation.

    see post from Mike at:
    http://forum.java.sun.com/thread.jspa?threadID=704112&messageID=4082098#4082098
    for how to set up your own autodownload of jre from within your internet.
    /Andy

  • How can I call a SAPME web service from MII such as PlaceFutureHold?

    Dears,
    How can I call a SAPME web service from MII such as PlaceFutureHold?
    By using MII, I would like to develop some logic to check some values which query from SAPME database, if the value is out of spec, it needs to send a emal to inform user ans also hold the SFC.
    Thanks!

    With Web service action block you can view all ME available services
    in I.E
    https://sapme:5000/manufacturing-services/ProductionServiceService?wsdl  you could see your FutureHold service
    To do that in MII, you need Web Service action block. Have you work with MII transaction before?
    (saw your post in MII)

  • HT4847 how do i access movies I have downloaded from itunes and permanently erase them from my cloud?

    how do i access movies I have downloaded from itunes and permanently erase them from my cloud?

    Hey okapi22,
    Thanks for the question. Assuming you are attempting to clear up iCloud storage, it's important to note that iTunes purchases do not count against this storage. For more information, see the following:
    Your iCloud storage is used for iCloud Backup, app data and documents stored in iCloud, and iCloud Mail (your @icloud.com email account).
    iCloud: iCloud storage and backup overview
    http://support.apple.com/kb/PH12519
    Additionally, you are not able to delete purchases from iTunes in the Cloud, but you are able to hide them.  Take a look at the following article:
    iTunes Store: Hiding and unhiding purchases
    http://support.apple.com/kb/HT4919
    Thanks,
    Matt M.

  • Error when trying to access a secured web service from Forms 10g 10.1.2.3

    Hello,
    I'm trying to access a secured web service from Forms10g 10.1.2.3 but i'm getting the next error when pressing the button the first time:
    java.rmi.RemoteException: ; nested exception is: HTTP transport error: javax.xml.soap.SOAPException:
    java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Bad response: 401 UnauthorizeWhen i press the button a second time i got this error:
    javax.xml.rpc.soap.SOAPFaultException: The SOAP request is invalid. The required node 'Envelope' is missingThis is the code i have in my button:
    DECLARE
    jo ora_java.jobject;
    pdfObject ora_java.jobject;
    pdf     varchar2(900);
    rv varchar2(100);
    ex ora_java.jobject;
    BEGIN
    JO := SEARCHSOAPCLIENT.new;
    SEARCHSOAPCLIENT.setUsername(JO,'weblogic');
    SEARCHSOAPCLIENT.setPassword(JO,'welcome1');
    pdfObject := SEARCHSOAPCLIENT.quicksearch(JO,'1234',NULL);
    pdf := SEARCHSOAPCLIENT.tostring(pdfObject);
    message(pdf);
    message(' ');
    EXCEPTION
    WHEN ORA_JAVA.JAVA_ERROR then
    message('Unable to call out to Java, ' ||ORA_JAVA.LAST_ERROR);
    WHEN ORA_JAVA.EXCEPTION_THROWN then
    ex := ORA_JAVA.LAST_EXCEPTION;
    :error := Exception_.toString(ex);
    END;When i run it from JDeveloper it works, this is a portion of java code the proxy web service has:
    import oracle.webservices.transport.ClientTransport;
    import oracle.webservices.OracleStub;
    import javax.xml.rpc.ServiceFactory;
    import javax.xml.rpc.Stub;
    public class SearchSoapClient {
        private webservicesproxywebcontent.proxy.SearchSoap _port;
        public SearchSoapClient() throws Exception {
            ServiceFactory factory = ServiceFactory.newInstance();
            _port = ((webservicesproxywebcontent.proxy.Search)factory.loadService(webservicesproxywebcontent.proxy.Search.class)).getSearchSoap();
            this.setUsername("weblogic");
            this.setPassword("welcome1");
            System.out.println("callling from _port "+ _port.quickSearch("1234234", null));
         * @param args
        public static void main(String[] args) {
            try {
                webservicesproxywebcontent.proxy.SearchSoapClient myPort = new webservicesproxywebcontent.proxy.SearchSoapClient();
                System.out.println("calling " + myPort.getEndpoint());
            } catch (Exception ex) {
                ex.printStackTrace();
         * delegate all operations to the underlying implementation class.
        public QuickSearchResult quickSearch(String queryText, IdcPropertyList extraProps) throws java.rmi.RemoteException {
            return _port.quickSearch(queryText, extraProps);
        }Also the secured web service was generated from Webcenter Content 11.1.1.6 that is why it's a secured web service.
    Kind Regards
    Carlos

    Without going into any technical discussion about the code, my first question is what JDK version was used to create this which was imported into the form? Understand that Forms 10 runs on JDK 1.4.2, so if you used any newer JDK version, likely there will be problems.

  • How can I access files that I moved from an older MacBook Pro to a newer one via Firewire and Migration assistant.  The files show up on the new MacBook but cannot be opened.  Thanks!

    How can I access files that I moved from an older MacBook Pro to a newer one via Firewire and Migration assistant?  The files show up on the new MacBook but cannot be opened.  Thanks!

    Get info then check permissions then add your curent user name (it was probably different on old Mac) and give your username full read/write permissions.

  • HT204053 how do I access my Icloud email account from a Windows XP computer?

    how do I access my Icloud email account from a Windows XP computer?

    JonCarp wrote:
    i get a server error message
    Which browser do you use (and why iCloud when you are using a version of Windows that is not supported)

  • My Icloud has my music library- cant seem to access that library from my second computer- logged in to iclouds.. how do i access my cloud in Itunes from anotehr computer?

    cant seem to access that library from my second computer- logged in to iclouds.. how do i access my cloud in Itunes from anotehr computer?
    I also cn plug my device- iphone- into my computer.. but cant hear play back? What in the world am i doing wrong here?

    Ive done that.. a laptop at home and one at work.. one I can get it on- the other it shows the libary now that ive matched it- but its all grayed out and i cant access it

  • How do I access my back up files from the time machine if my computer was stolen?

    Hi, how do I access my back up files from the time machine if my mac book pro was stolen? I have a mac book air and mac too. But not sure how I can get back all the files from the stolen computer from my time capsule

    On the Mac Book Air or other Mac that you have, use Migration Assistant to transfer files from the Time Machine backups of the Mac that was taken.
    Macintosh HD > Applications > Utilities > Migration Assistant

  • How do i access my mac email account from another computer?

    How do I access my mac email account from another computer?

    Go to http://www.icloud.com/ and sign-in

  • How do I access my Me email account from any browser?

    How do I access my ME Email account from any browser?

    To access to your @me.com mail address, open http://www.icloud.com, login with your Apple ID and choose Mail. This is the only way to access to your @me.com email from a browser. This website won't work with iPhones, iPods touch and iPads, as @me.com email supports is integrated into the operating system

  • Help me!    How to use it as a web service from third party application?

    After using JDeveloper to develop BSSV object e.g. JP550010, how to use it as a web service from third party application?
    TKS!

    Obviously the OP is working on a project for the Bead Society of Southeastern Virginia http://www.bssv.org. Oh, wait, maybe he's researching the Blueberry Shoestring Plant Virus http://abbreviations.yourdictionary.com/bssv
    :D
    John

  • HT1841 How to disable some of the automatic function from my bluetooth (jabra) while iphone does not have the capacity to set up the bluetooth property like BB?

    How to disable some of the automatic function from my bluetooth (jabra) while iphone does not have the capacity to set up the bluetooth property like BB?

    Sorry. You're not making sense. Please re-phrase the question or post in your native language.

  • HT201317 New phone: lost old phone in a fire. How can I access my photos on iCloud from my old phone? In settings I see the storage for BOTH phones. They are separate but same account. Can I access iCloud through PC or is the info now useless since phone

    New phone: lost old phone in a fire. How can I access my photos on iCloud from my old phone? In settings I see the storage for BOTH phones. They are separate but same account. Can I access iCloud through PC or is the info now useless since phone is gone?

    What a crappy design. This is where Android is so much better. It seems to me like you have no control over your iPhone. It does whatever Apple has designed it to do without asking you first. On Android you can actually go in see all folders, document files, photo files etc and you have so much more control of everything. Apple s..cks!

Maybe you are looking for

  • Sharepoint 2013 vs Exchange 2010 SP3 search (Error while crawling LOB contents)

    Hi there: We are trying to solve the problem: ERROR CRAWLING LOB CONTENTS when we wish to search Exchange 2010 SP3 public folder content on Sharepoint 2013 Foundation. Quick briefing: Followed this instructions: http://technet.microsoft.com/en-us/lib

  • How to get the storage details during 5 min interval

    Hi, I used below java code to collect the storage details. But i didn't get any output. Without filter condition it display all the records available in table. How to get the last five min data. Based on this how to change the tablequery.? I used par

  • Upgrade from 9.2.0.5 to 9.2.0.7 on WNT

    Hi, I did some upgrade test with success from 8i to 9.2.0.1 and from 9.0 to 9.2.0.1 using either automatic migration tool and manual upgrade (running old release scipt @u090010.sql for example). but what about upgrading from 9.2.0.5 to 9.2.0.7 ? is a

  • Set/Change title of a report via remote RFC

    Hi there, does anyone know a standard RFC which may called by remote to change the description of a existing report. Thank you on advance, Andi

  • Msn messenger password and keychain

    i asked same thing months ago and i couldnt get an answer on that.. each time i change the username on msn , i need to enter password again.. if you dont change the user it is ok.. but i want it to remember all the usernames and passwords, if it is p