Web client and desktop client not available for Interactive reporting 11.1.2.2

Hi team,
Currnetly we are usning EPM 11.1.2.2 , we are trying to install and configure
Interactive reporting in Linux 64 bit system.
we are few questions jotted below:
Interactive reporting studio client & Interactive reporting Dashboard Development Studio client are disabled.
post installation we are not able to see IR Client folder in <EPM HOME> location.
while launching workspace we are not able to see the WEB Client Interactive reporting under TOOLS-->INSTALL.
we read in a blog, which states it  Interactive reporting needs a license. whether it needs any special License for using it?
we downloaded the Entire Dump of EPMS 11.1.2.2  from Oracle Edelivery website.
Kindly let us know we are missing any where?
we are strucked at this point.
Regards
Chinu

If you want the 11.1.2.0 assemblies you will need to contact Oracle as they have been removed from edelivery.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Renew my subscription to Adobe ExportPDF and tells me not available for my country, I have to do ???

    Renew my subscription to Adobe ExportPDF and tells me not available for my country, I have to do ???

    Hi Miguel,
    We don't have any record of you subscribing to ExportPDF. Did you sign up via the Reader mobile app? If you did, you would need to contact Apple about your subscription.
    And, if you haven't subscribed yet, but would like to, you should be able as long as you have an email address and credit card billing address in one of the countries listed in this document: Countries where ExportPDF is available for purchase.
    Best,
    Sara

  • Tabular form validation(Checkbox) is not working for Interactive report

    Hi,
    I am using the oracle apex 4.0 and oracle 11g.
    I have written a below select query on interactive report as
    select
    apex_item.checkbox(1,RESIDD)||apex_item.hidden(2,RESIDD) row_selector,
    apex_item.text(3,RESNUM) as resnum
    from "PDRRES"
    and written the validation to display the error message( Function returning error text ) as
    DECLARE
    vRow BINARY_INTEGER;
    BEGIN
    -- apex_application.g_print_success_message := NULL;
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    vRow := apex_application.g_f01(i);
    apex_application.g_print_success_message := apex_application.g_f01(i)||'-'|| apex_application.g_f03(vRow) ;
    END LOOP;
    END;
    Output : No data found error message
    As far as it work for sql report with above logic because apex built in row selector
    but it fails in case of interactive report for some reason.
    Please suggest.

    Saroj Nayak wrote:
    Hi,
    I am using the oracle apex 4.0 and oracle 11g.
    I have written a below select query on interactive report as
    select
    apex_item.checkbox(1,RESIDD)||apex_item.hidden(2,RESIDD) row_selector,
    apex_item.text(3,RESNUM) as resnum
    from "PDRRES"
    and written the validation to display the error message( Function returning error text ) as
    DECLARE
    vRow BINARY_INTEGER;
    BEGIN
    -- apex_application.g_print_success_message := NULL;
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    vRow := apex_application.g_f01(i);
    apex_application.g_print_success_message := apex_application.g_f01(i)||'-'|| apex_application.g_f03(vRow) ;
    END LOOP;
    END;
    Output : No data found error message
    As far as it work for sql report with above logic because apex built in row selector
    but it fails in case of interactive report for some reason.
    Please suggest.NO DATA FOUND usually occurs when an i mplicit select does not find anything. It can also occur when referencing a collection element that has not been defined.
    You have 2 collectinons in the code you posted, apex_application.g_f01() and apex_applciation.g_f03. Since you are looping therough the COUNT attribute of g_f01 its reference ("I") is probably okay and the value store in vRow is probably not right. You can check this by using RAISE_APPLICTION_ERROR to see the value something like
    raise_application_error(-20000,'vRow="'||vRo2||'"');Remember that working with checkboxes is tricky. If the box is not checked nothing will be sent. You may need to define a default value when no value is submitted.

  • Xls/pdf Download Options not available in interactive report on group by

    Hello All,
    I have the similar problem like mentioned here:
    export from IR with group by
    there I didn't find any response, Please let me know why it is happening, is there any solution to this.
    thanks
    Tauceef
    Edited by: Tauceef on Feb 9, 2011 4:02 PM

    Can anyone please tell me why it is happening,
    is it a bug?
    or it is a property of Interactive Report which I can't change?
    Please, because I didn't find any documentation for this.
    Thanks
    Tauceef
    Edited by: Tauceef on Feb 14, 2011 6:47 PM

  • Java clients and IUserPrincipal class not working for authentication

    I'm developing a Java client which talks to EJBs on the iAS server via
    iiop.
    I've already developed EJBs, and they work fine. I'm trying to do user
    authentication per the examples in the Rich Client section.
    Here are the steps I've taken:
    1. I've created a class (achp.security.AchpPrincipal) which implements
    com.netscape.ejb.client.IUserPrincipal.
    2. I've added the class to the initial context via the following line:
    env.put("com.netscape.ejb.client.PrincipalClass",
    "achp.security.AchpPrincipal");
    3. I do a home lookup with the above initial context when the
    application starts, create a bean, and then invoke a method on the bean.
    When I do the home lookup, according to the manual, my AchpPrincipal
    class should be instantiated (which brings up a login window which then
    records username and password for future use).
    This never happens. The AchpPrincipal class is never instantiated,
    although the home lookup occurs successfully and the bean method call is
    also performed successfully.
    I'm running server on my Win2K desktop, with SP3. And, of course, I've
    properly installed the CXS server (as indicated by the fact that I can
    communicate with the EJBs at all though the Java client).
    Any help would be appreciated.
    Thanks,
    Douglas Bullard
    Multnomah County ISD

    I'm developing a Java client which talks to EJBs on the iAS server via
    iiop.
    I've already developed EJBs, and they work fine. I'm trying to do user
    authentication per the examples in the Rich Client section.
    Here are the steps I've taken:
    1. I've created a class (achp.security.AchpPrincipal) which implements
    com.netscape.ejb.client.IUserPrincipal.
    2. I've added the class to the initial context via the following line:
    env.put("com.netscape.ejb.client.PrincipalClass",
    "achp.security.AchpPrincipal");
    3. I do a home lookup with the above initial context when the
    application starts, create a bean, and then invoke a method on the bean.
    When I do the home lookup, according to the manual, my AchpPrincipal
    class should be instantiated (which brings up a login window which then
    records username and password for future use).
    This never happens. The AchpPrincipal class is never instantiated,
    although the home lookup occurs successfully and the bean method call is
    also performed successfully.
    I'm running server on my Win2K desktop, with SP3. And, of course, I've
    properly installed the CXS server (as indicated by the fact that I can
    communicate with the EJBs at all though the Java client).
    Any help would be appreciated.
    Thanks,
    Douglas Bullard
    Multnomah County ISD

  • Whats the difference between Rich Client and Desktop Client? (BO XI 3.2)

    Hello,
    maybe someone has a matrix oder something like that?
    Thanks for helping...
    Biegel

    There are a number of reasons for using Web Intelligence Rich Client to
    work with WID documents:
    u2022 You want to work with Web Intelligence documents but you are unable
    to connect to a CMS (while traveling, for example).
    u2022 You want to improve calculation performance: Web Intelligence Rich
    Client performs calculations locally, rather than on the server, and local
    calculations can perform better than server calculations.
    u2022 You want to work with Web Intelligence documents without installing a
    CMS or application server.
    Deski
    1. VB Macro
    2. Slice and Dice functionality
    3. Database Ranking is not there
    4. Column can be conditionally hidden
    5. Free-hand sql, SP can be used as data providers
    6. No time out error.
    7. Needs to be installed on all the desktop machines
    Gracias...!!

  • Why are apps like ibooks and itunes u not available for macbooks?

    I have bought my kids Macbook Pros as an educational tool.....thinking that the ipads were a little limited. Problem is that every time I hear about a great educational app and go to the app store to purchase it I can only get it for iphone or ipad. Why??

    Because the iTunes App Store only sells iOS apps. Look in the Mac App Store or the developer's site for Mac OS X applications; some applications haven't been written for Mac OS X.
    (63355)

  • Data Collector Reports not available for SQL Reporting Services only SSMS

    I never understood this one, why would you program Reporting Services (SSRS) reports inside SQL Server Management Studio (SSMS)?
    The reports are available only through the SSMS interface, buried somewhere in the GUI, not easy to find. 
    Please make the MDW reports available on Reporting Services!

    Hello,
    These are not SSRS reports, these are RDLC reports for local rendering in a client application like SSMS; similar, but not the same. The reports are embedded as a resource in an assembly, that's
    the reason why you can't find them.
    You can have a SQL Server installation without Reporting Services; where should be the reports hosted then, if not in SSMS?
    You can create your own SSRS based report; simply use SQL Profiler to capture the queries used by the origin reports.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • MSS Reports Local File (export to) icon not available for some reports

    Hello experts,
    When we run MSS reports some of the generated reports give us the option to export the file as a local object while with other reports the icon is missing. What is the reason for this? Please let me know know. Thank you!

    Hi ,
    Check out this link. This might help. The value set in ~WEBGUI_SIMPLE_TOOLBAR determines the button displayed on portal. Check the authorization provided to end user . The visibility of buttons depend upon authorizations as well.
    http://wiki.sdn.sap.com/wiki/display/HOME/Article+-+Employ+SAP+GUI+for+HTML+instead+of+an+Internet+service.
    Regards,
    Navya.

  • Finder is not available for standard user

    Hi,
    I recently installed OS X (10.8.2) from app store. We created "Data" folder and created few admin and non admin users. Granted access to both users to same folder. When admin logged off and standard user logged in, he could not find Finder. Repeated this with 8 standard users and Finder is not available for all 8 standard users. For 2 admin users Finder is available.
    We did not change any settings whatsoever, so not sure this behavier is by design or I am missing something.
    Please help
    Thanks in advance.

    Are you running OS X 10.8 client or Server (is Server.app installed)? If you are using OS X Server, are these local accounts or network accounts?
    What do you mean by "could not find Finder?" As in could not log in? Could not access this 'Data' folder in Finder?

  • "Track and Protect" is not applicable for W350i handset?

    Dear Sir / Madam,
    Kindly reply why software "Track and Protect" is not applicable for W350i handset?  I had tried to download in my hand set by using link "http://wap.sonyericsson.com/fun/ ", but I did not find the application in list. If I can down load it, please send me how I can get the application. If this application is not supporting handset W350i then please make it compatible to W350i handset. In fact it should be supported by all handset.
    Regards

    Hi everyone,
    Thanks for contacting the Track and Protect team and referring to this topic.
    Unfortunely, Track and Protect is not available for non-Android or Symbian OS powered Sony Ericsson handsets. We had many requests for this, and it is  something that we would really like to do for you, but we're bound to current technical limitations of these phones. But we promise to keep investigating them, who knows, one day...
    Best regards and thanks for contacting us.
    Klomptek, the Netherlands,
    the Track and Protect team
    Track and Protect is a remote management tool and security application that allows users to monitor, lock and wipe data from a lost or stolen cell phone. In addition to being able to secure content on the device through remote commands sent via the TnP web service, users are able to track the location of the missing phone in real time through the TnP online mapping system and take
    photographs from the device of its present surroundings, with the ability to listen in and capture images of the phone’s current possessor. TnP allows users to collect enough information -- including current location, new phone number, operator ID and facial photographs -- to generate a substantive police report. All features are operable even after illegal SIM change.

  • F4 help is not available for cost center in Confirmation

    Hi
    We are working on SRM 4.0
    During the Confirmation of services through WEB portal   ( F4 ) option is not available for Cost Center
    Through GUI ( Backend) we are able to see the Values in Drop down , but when we select them un able to copy them to Confirmation screen.
    Through Web front end F4 help also not appearing.
    We have applied the OSS Note 935201 in spite of which, it is not working
    please give me inputs on it.
    Regards,
    Neelima
    Edited by: S Neelima on Dec 9, 2009 4:54 AM

    Any inputs???
    Regards,
    Neelima

  • Firefox not available for samsung galaxy y??

    Firefox for mobile is not compatible with all smart phones available in market?? This is very disappointing....am a hardcore firefox fan and firefox is not available for my samsung galaxy y....firefox us known for reaching to all kind of people around th

    Guys go to www.galaxywhy.tk blog for galaxy y in right cornor of the blog mozilla is available for download (armv6)

  • Software metering date not available for selection sccm 2012

    Hi
    I have installed SCCM 2012. 
    While viewing a report for software metering date and year are not available for selection. they are blank. 

    thaks 
    I is showing after restart. 
    Now there is another problem. 
    When I see the software metering report for enabled rule i.e. KasperskyAdminKit I can not understand the figures
    Computers that have run a specific metered software program  
    NetBIOS Name
    Installed Site Code
    Last Usage
    Total Usages
    Average Usages per Day
    Total Duration (min)
    Average Duration of Use (min)
    Average Duration per Day (min)
    WIL-WNR-AV
    PUN
    11/16/2012 5:13:35 PM
    1
    0.03
    7384.27
    7384.27
    246.14
    How to know the the explanations for the underlined items ? 

Maybe you are looking for

  • Best practice for frequently needed config settings?

    I have a command-line tool I wrote to keep track of (primarily) everything I eat and drink in the course of the day.  Obviously, therefore, I run this program many times every day. The program reads a keyfile and parses the options defined therein. 

  • IOS 8 update deleting picture

    When I updatd my iPad to iOS 8 like 600 pictures went missing. I cannot find them in any folder, I never put them in iCloud. What do I do? And why is my iPad mini so slow with iOS 8 when my friends ipad 2 from 2011 is way faster?

  • Dynamic KM Document IView

    Hi,      Is there any way to use a single KM Document IView for all of my KM Documents?  I'd like the KM Document location/name to be used as a parameter so I don't have to create an IView for each document.  This way I could use the same IView as ma

  • Report Application Server won't start. CCM always says Starting....

    I am complete newbie to doing admin for Crystal Servers, forgive the question: (Win Server 2003 r 2 / CR XI) Report Application Server won't start which is preventing other servers from starting in CCM. Reboot machine several times and still having t

  • Tried to upgrade Firefox, followed all the steps, but on homepage still says I need to upgrade to the latest version.

    On the start page it said that I needed to update Firefox to the latest version. So I clicked on update and followed all the steps. I clicked to save to desktop, but there is no icon there and when I go to the start page, it keeps saying that I need