Sharing Interactive Reports

Once a person has created an interactive report (not the working report). The new report will only appear for the user who created it.
Is it possible to shate the report with other users.
Gus

Thanks, Joel. I suppose that would serve our needs for the standard reports we want to make available to all users. I guess I was thinking in the context of our old web application where "reports" and "search results screens" are considered two different things (Crystal report versus web page). The only downside I see is that the development environment would be "flooded" with a ton of these report pages and our actual application pages would be mixed with them - but I guess we could use the apex page group feature to help keep the pages organized.
>> 100 different interactive reports on the same underlying dataset? Or 100 different interactive reports, all on different datasets?
Does this matter? Wouldn't the solution you provided work in either case? Over half of our reports are based on the same set of underlying tables, but the others are various reports on different modules in our application. Seems like that's not relevant to the solution, but maybe I'm missing a technical reason (I'm new to apex).
Thanks
Darrin

Similar Messages

  • Public / Sharing of Interactive Reports

    The new Interactive Reports are a great feature that will be extremely helpful for both our development team and our users. However, currently when a user saves an interactive report, there's no way to share it with other users or to make it a public report that can be viewed by everyone. This is because the report is saved with the user's name and can only be viewed by that particular user. This really limits the usefulness of the interactive reports. For example, we would like to enable our power users, administrative users, and even regular end users to be able to create and modify reports and share them with others. In addition, our company has several hundred Crystal reports that we would like to replace with interactive reports. However, if our development team creates all of these as interactive reports (using the “Save Report” feature, not as separate pages), there is no way to make them public so that all of our users can then access them. I've read several requests in this forum for this type of enhancement. I've also read that the apex team intends to implement this sharing feature soon. In the meantime, I've figured out a work-around. This work-around saves and retrieves all interactive reports using a generic, fictitious user name. Using the Page Sentry Function under the Authentication Scheme, we switch the APP_USER to a generic, fictitious user only for the interactive report pages, and set APP_USER back to the original, correct user on the other pages. Here's the code I'm using in the Page Sentry function:
    declare
    c owa_cookie.cookie;
    begin
    if :app_page_id in (1,51,52) then
    APEX_CUSTOM_AUTH.SET_USER('REPORT_USER');
    else
    c := owa_cookie.get('LOGIN_USERNAME_COOKIE');
    APEX_CUSTOM_AUTH.SET_USER(c.vals(1));
    end if;
    return true;
    end;
    This code will set the APP_USER to "REPORT_USER" on pages 1, 51, and 52. Therefore, when interactive reports are saved or retrieved on these pages, they will use the user named "REPORT_USER" regardless of the user that actually logged into the application. This concept can also be expanded to limit certain reports to certain users (or groups of users) by calling a custom function in the database.
    I tried using the SET_USER code within a page process (PL/SQL anonymous block), and although it changed the APP_USER, it did not affect the interactive report. I assume this is because the interactive report “does its thing” prior to the firing of the processes on a page. However, the Page Sentry function apparently fires earlier in the sequence (before the interactive report processing).
    This will make the interactive reports much more useful for our company and I hope it will be useful to some of you as well.
    Darrin

    Scott-
    Thanks for the feedback. I tried both the Session Verification Function and the VPD attribute and neither one accomplished the goal. The VPD attribute PL/SQL code apparently fires too late in the process, so although it changed the APP_USER, it had no affect on the interactive report. And the Session Verification Function had adverse affects on the authentication. So rather than mess around with the security settings in the application, I came up with a different work-around.
    Here's the new work-around.
    On the interactive report page I created a page process (PL/SQL anonymous block) and set the process point to "On Load - Before Header". For the process I entered the following pl/sql code:
    begin
    update FLOWS_030100.WWV_FLOW_WORKSHEET_RPTS
    set APPLICATION_USER = :APP_USER
    where ID = :REPORTID
    and session_id is null;
    end;
    This code changes the application user in the underlying interactive report table. It sets the user to the current APP_USER only for the report being viewed. Therefore, when the interactive report processing happens, it thinks the report is for the current APP_USER and renders the report just fine. It also saves any changes to the report back to the base report so other users can view the modifications as well.
    I have the tab feature turned off on my interactive reports. Instead I have another page that lists all the interactive reports. When a user clicks one of the reports in the list, I set the REPORTID variable and pull up the corresponding interactive report (that's why I'm using REPORTID in the where clause). For users that are using a tabbed approach, they may have to set the application user for all of the base reports (or figure out another way to determine which individual report tab is being viewed). If they were setting it for all the base reports, it would look like this:
    begin
    update FLOWS_030100.WWV_FLOW_WORKSHEET_RPTS
    set APPLICATION_USER = :APP_USER
    where session_id is null;
    end;
    This solution isn't ideal when lots of users are hitting the same interactive report. It's possible that if two user attempt to load the same interactive report at the same time, the following might happen.
    1. User A triggers process to update underlying table
    2. User B triggers process to update underlying table
    3. User A triggers process to run interactive report (and therefore does not see the report because the report is now set to User B)
    4. User B triggers process to run interactive report (and sees report just fine)
    So the solution isn't ideal, but it's the best I could come up with until the apex team implements real report sharing. I've tested it with a handful of users and it's worked very well so far.
    Darrin

  • Interactive Reports - Database Hack for sharing developer saved reports

    Just this morning I posted to another thread about not being able to create and save multiple reports, but after a bit of database hacking, I've got it working in version 3.1.2.
    I take no responsibility in anything that may happen to your APEX install because of what I am about to tell you.  If you try this, you do so at your own risk.
    That's right, you CAN create multiple default views for your users.
    Background:
    <ul><li>     I created 1 interactive report.</li>
    <li>     I added criteria and saved the report with the name Report1.</li>
    <li>I modified the criteria and saved the report with a new name 3 additional times.</li>
    <li>I am now seeing 5 tabs
    <ul><li>Working Report</li>
    <li>Report1</li>
    <li>Report2</li>
    <li>Report3</li>
    <li>Report4</li>
    </ul>
    </li>
    <li>At this point, other users can not see the reports because they are private to me.</li>
    </ul>
    So, how can I make these reports public to other users?
    <ul><li>Logon to your APEX database as a user that has privileges to select and update the WWV_FLOW_WORKSHEET_RPTS table.</li>
    <li>Browse the table and find the 4 rows of the new reports that were created above.</li>
    <li>Set the SESSION_ID and BASE_REPORT_ID columns to NULL</li>
    <li>Set the APPLICTION_USER column to 'APXWS_DEFAULT'</li>
    <li>Set the STATUS column to 'PUBLIC'</li>
    <li>Set the IS_DEFAULT column to 'Y'</li>
    </ul>
    It seems to be the combination of APPLICATION_USER and IS_DEFAULT that really makes it work, but I set the other fields to make them look like the row for the working report.
    So, now after making these changes, I had two other users login to the site and look at the interactive report, and viola, 5 default tabbed reports!
    Hope this helps someone!!!
    Kris

    Hello,
    Just to stress, that the moment you do direct modifications to WWV_FLOW_WORKSHEET_RPTS (or indeed any 'internal' table) via this non-supported route you are probably making your APEX installation non-supported by Oracle (hopefully someone from Oracle can speaking officially on that).
    Even if your update works today, tomorrow, in a months time, you have still done something that you were not supposed to do.
    So, do you really want to do that in production?
    Just playing Devils Advocate.
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • Export XML from interactive report

    Hi all,
    is there a way to export the resulting output of an interactive report as XML (inline and/or attachment), like a normal report can do? (with FLOW_XMLP_OUTPUT_R<region_ID>)
    The download option for ir provide only CSV and PDF.
    Regards,
    Marco

    I explain my request.
    I have a very complex SQL query, which is (much) more than 4000 characters and it works well in the interactive report.
    As the interactive report is quite different from the normal report and the procudure FLOW_XMLP_OUTPUT_R<region_ID> doesn't seem to work, I'm obliged to create a report query in the shared components to get also the XML output, but shared report query accepts query less than 4000 characters long.
    Any idea?
    Marco

  • Dynamic Checkboxes on Interactive Report

    I have an interactive report that currently lists a row of values:
    Field1
    Val1
    Val2
    Val3
    I would like to place a text-field at the top of this interactive report with a submit button:
    [textbox] [submit button]
    Field 1
    Val1
    Val2
    Va3
    Then I would like to have checkboxes [] appear in each row:
    [textbox] [submit button]
    Field1 | Checkbox
    Val1 | []
    Val2 | []
    Val3 | []
    Then I would like to make it so that the user enters some text into the textbox and selects any number of the row checkboxes. Upon hitting submit, a procedure will run that accepts each Field1 value and inserts a record into a table containing 2 fields: the Field1 value and the textbox text.
    So the following user input:
    [Test text in the textbox.] [submit button]
    Field1 | Checkbox
    Val1 | []
    Val2 | [x]
    Va3 | [x]
    After hitting the submit button, a procedure would be called that would insert 2 records into a table:
    Field1 | Field2
    Val2 | Test text in the textbox.
    Val3 | Test text in the textbox.
    Note that there is no entry for Val1 because its checkbox was not checked when the user pressed submit.
    What can I do to make this happen? I appreciate any help you can offer.

    Thanks for sharing
    I am having exactly the same problem.
    I have an interactive report with the following SQL.
    select RSN_CD,
        DESC,
    APEX_ITEM.CHECKBOX(1,RSN_CD) "Select"
    from CAN_RSN
    I've set the 'Select' column's type to 'Standard Report Column'.  But the checkbox does not appear on the report. 
    Apex Version: 4.0.1.00.03
    Thanks.

  • Interactive Report - Display New/Changed Columns

    Hi,
    when I add or change a column in Interactive Reports, APEX doesn't show me the new column automatically.
    Everytime the user log in, he has to go on "Actions" and "Select Columns" manually, otherwise the new/changed column won't be displayed.
    How can I do that the column is displayed automatically after login?
    I am using APEX 4.0.2.00.07.
    Regards,
    Marc

    Either you, as a Developer, can save the report as Public.
    Or an aithorized user can save the report as a General/Shared Report.
    Or the user can save the report as a Private one.
    Pick the columns you/user wants to see. Then [Action -> Save]

  • Changing the default number of rows displayed in a interactive report

    Hi,
    I have a sql query based interactive report but i cant change the default number of pages i.e 15.
    is there any way to change the number of rows displayed.
    Thank you,
    rakesh

    Hi,
    That was very useful document that you shared, yes that is correct we can so it this way but there is another way doing it where in if you go to the report attribute section and in that there is Layout and Pagination and under
    that you can fix the number of rows, and over there we can also accept values from page item such as if the page item value changes the number of rows displayed in the report changes dynamically.
    In my report i get only pagination but not a option for layout.
    Any help will be appreciated.
    And also where i can get the links to the similar document that you have shared ?
    TY
    rakesh
    Edited by: rakesh119 on Apr 30, 2013 12:10 PM

  • ORA-20876 in csv export from interactive report = Possibly a bug?

    Hi Apex team,
    yesterday i tried to download data to csv from an interactive report. The resulting csv file contained a "ORA-20876: Stop APEX Engine" only and no other data. I played around with other reports in my application and had no problems with exports.
    After some investigation i found out that the buggy report contains a column of display type "Display as text (based on a LOV, escape special characters)". When I changed this column type to "Standard Report Column" for example, the error didn't appear anymore and the csv export contained complete data.
    Maybe this is a bug? The environment is Apex 4.1.1.00.23 on 11g (UTF-8). Is there a workaround available?
    Regards,
    Jens
    Edited by: j.gauger on 06.02.2013 14:10
    Additional Information
    The problem seems to occur only if a Shared Components LOV of type "Static" is referenced in the IR column.

    Hi,
    what happens if you take the query from IR report and create a new classic report?
    On this report enable csv export and then try the export.
    Maybe that (format) data are causing export to fail.
    Try to export just one row in your IR report (and classic report), so that you add where rownum < 2.
    Regards,
    Aljaz
    Edited by: Aljaz on 6.3.2012 23:11
    Edited by: Aljaz on 6.3.2012 23:29

  • How to get .oce to talk to DAS & bring back data in Interactive Reporting?

    Hi Hyperion Experts,
    This is also a fairly basic question, I use Hyperion 9.3.1 and I have Shared Services, Workspace and Interactive Reporting Studio running on our Windows 2003 Server.
    My goal is to import a .bqy document I created in Interactive Reporting Studio into workspace, and be able to click on the "refresh" button and see it refreshes the data from the backend Oracle 10g database.
    I have completed the following steps so far,
    1. I have created a DSN. This DSN, named "Oracle 10g Data Source", when I clicked on "Test Connection" button, It ran successfully.
    2. I have created a new Datasource entry in the DAS service. If I double click on the newly created Datasource entry, the screen would display the following details.
    Connectivity Type = Oracle Net
    Database Type = Oracle
    Enter the name of the Data source = Oracle 10g Data Source
    Select the name of the Data source (it is grayed out, nothing selected)
    Server/File (it is grayed out, nothing entered)
    then, followed by some default connection parameters.
    3. I have created a "Oracle 10g Data Source.oce" file using the Interactive Reporting Studio. I saved the .oce file at
    C:\Hyperion\BIPlus\data\Open Catalog Extensions\Oracle 10g Data Source.oce
    4. I created a new constrProj_Oracle10gOCE.bqy, during the creation, I chose
    "Create a new document with Recent Database Connection File" option, then I chose the Oracle 10g Data Source.oce that I have created in step 3. After I log in with host user/password, I have created a data model and I see that it brings back a data set when I clicked on the "process" button. I saved this .bqy document.
    5.
    I imported the Oracle 10g Data Source.oce and constrProj_Oracle10gOCE.bqy into the workspace under a folder called
    Root/MYBI/Test
    6. I right click on the constrProj_Oracle10gOCE.bqy document, and chose "Open". It opened with Results section highlighted on the left hand side, and with data showing on the right hand side. However, when I clicked on the "refresh" button, I'd get a message box with a red X. It says,
    An Interactive Reporting Service error has occurred -
    Failed to acquire requested service.
    (2001)
    I guess the data I see in this constrProj_Oracle10gOCE.bqy was just the cached data that was brought back when I hit the process button of this .bqy when it was first created in the Studio, and that it never established any connection via the DAS service to the backend.
    Could someone please show me what I have done wrong here?
    thanks,
    hypuser1010

    EricaHarris,
    Yes, the issue is still open. Obviously, I have gone down the path of "Scenario One".
    Based on your reply, I have done the following.
    There are three things I am configuring here: DSN, DAS and OCE.
    1) When I created the DSN,
    I started the ODBC Data Source Administrator, Click on second tab "System DSN". I added a new ODBC Data Source.
    Data Source Name = Oracle 10g Data Source
    TNS Service Name = //146-abc.xyz.com:1521/MYORCL0617
    2) I re-created the DAS entry, per your suggestion, I made sure that "the name of the data source will be the host name you specified in your OCE".
    Connectivity Type = Oracle Net
    Database Type = Oracle
    Enter the name of the data source= //146-abc.xyz.com:1521/MYORCL0617
    3) for my OCE, I specified
    Connection Software = Oracle Net
    type of Database = Oracle
    on the first screen.
    then, on the next screen, I specified
    Host = //146-abc.xyz.com:1521/MYORCL0617
    I reployed the OCE, the .bqy document and restarted DAS. Yes, my .bqy document does refresh its data successfully from the backend.
    However, I am not 100% convinced that the .bqy uses the OCE which talks to the DAS, which talks to the DSN entry and brings data back to the .bqy document.
    Here is what I did,
    I opened up the DSN entry, changed the TNS Service Name from //146-abc.xyz.com:1521/MYORCL0617 to
    //146-abc.xyz.com:1521/NONSENSE. I then restarted DAS and redeployed the .bqy document. the .bqy document is still able to refresh its data. So, I have just proven that the .bqy document does not need a valid DSN entry to work, how come??
    Can you (or anyone) please explain the phenomenon that I see?
    Also, a very basic question. you know that when you create a .bqy in the Studio, you "import" an OCE into the .bqy document so that the .bqy knows that it should use this OCE to talk to the backend data source. but, when you deploy this .bqy in workspace, how does the .bqy know that it is supposed to go through DAS (and DSN) to interact with the database, rather than the "internal" OCE that was pre-built with this .bqy?
    thanks,
    hypuser1010

  • Interactive Reporting is not opening in Hyperion workspace

    Hi,
    I have installed Hyperion Foundation Services 11.1.1.1.0 and IR 11.1.1.1.0
    I am trying to access IR through Workspace
    I could see the procedure like File-> New-> Document_> interactive reporting document.
    Then i have selected a .oce file to make connection. but i am not able to progress to the next window.
    after selecting .oce file a new pop up is getting populated.Then it is closed automatically in a fraction of second...
    I dont know what is the problem.
    Kindly Help.
    Thank you.
    Regards
    GATHATHARAN K
    Hi all,
    I have tried the same with Mozilla Browser.
    Here I am ablwe to open a page saying
    Checking Hyperion Interactive Reporting Web Client status......
    then another one new win dow is getting opend.
    In that window It was asking for the
    "Press the 'Begin' button to start the installation."
    asking for a confirmation.
    I hav pressed Begin then an error comes
    "Firefox could not install the file at
    http://10.23.7.6:45000/InsightInstaller/Insight.xpi?-l0009
    because: Download error
    -228"
    Please help me
    Thank you.
    Reagrds
    GATHATHARAN K
    Edited by: gatha_vdm on Mar 23, 2009 8:25 AM
    Edited by: gatha_vdm on Mar 23, 2009 8:37 AM

    Hi bhanu,
    Thanks a lot for ur immediate reply
    I couldnt see any service in the name of IR.
    I could see only "Hyperion Annotation Server"
    I have started the service as follows... please check.
    Hyperion Apache 2.0-(Apache/2.0.61 (Win32) mod_jk/1.2.25)
    Hyperion Foundation OpenLDAP
    Hyperion Foundation Shared Services - Web Application
    (Hyperion Shared Services that support Hyperion applications, including authentication, user provisioning, task flow management, data and metadata synchronization.)
    Hyperion Workspace - Agent Service
    (HyS9Core1, Provides service infrastructure to run services locally).
    Hyperion Annotation Server
    (HyS9Annotation - Provides Annotation support for Hyperion products).
    Hyperion Workspace - Web Application
    (HyS9Workspace - Hyperion Workspace - Web Application web application for Tomcat 5.)
    For the second error
    I could not see any option named
    programs--Hyperion--Intercative Rporting--Utilities and Administratio--Service Configurator--Local Service Configurator
    i could see only a service configurator under workspace-> utilities and administration.
    Thanks a lot
    Regards
    Gathatharan K

  • How to apply an accent-insensitive search to an interactive report?

    Hello all!
    I'm trying to put an accent-insensitive search on an interactive report here. For example, if I'm on the page that has the interactive report and if I click the column header of the interactive report, I get to see a search bar that dynamically shows the results that match your input. Now, when I enter "jager", I want to see *"Jägermeister"* as a search result. The search must be accent-insensitive, so that I don't have to enter the ä every time.
    My code is as follows:
    SELECT name
    FROM food_1
    WHERE name LIKE 'Jagerme%'
    AND NLSSORT(name) IS NOT NULL
    ORDER BY NLSSORT(name, 'NLS_SORT=GENERIC_M_AI');As you can see, I first tried getting a result through the SQL Command. It should return the row that has "Jägermeister" as name. However, it doesn't. It tells me "No data found". So, how do I alter my NLSSORT to search accent-insensitive?
    Some extra information, I edited the interactive report source to the following:
    SELECT DISTINCT a.name, a.foodid
    FROM food_1 a INNER JOIN foodunit_1 c
    ON a.foodid = c.foodid
    WHERE a.foodlanguageid = :P17_SET_LANGUAGE
    AND NLSSORT(a.name) IS NOT NULL
    ORDER BY NLSSORT(a.name, 'NLS_SORT=GENERIC_M_AI');I also tried doing ALTER SESSION before the SQL code, but it still gives me the same result: No data found.
    I'm using APEX version 4.1.1.00.23.
    Help and suggestions are more than welcome. ;)
    Thanks in advance,
    Magali

    I found it out!
    It's really ridiculous, actually.
    Remember this code?
    execute immediate ('ALTER session SET NLS_COMP=LINGUISTIC');
    execute immediate ('ALTER session SET NLS_SORT=BINARY_AI');Well, this code is perfectly fine. Only, it doesn't execute. This is because it was misplaced...This process is not executed when you place it in the current authentication scheme, under the "Post-Authenticatoin Process" part.
    You might wonder why this is, but I have the explanation to that.
    You see, when you use an interactive report, the page processing isn't executed when you use the search function of that interactive report... Because it's an interactive report, I guess.
    BUT.
    An ALTER SESSION from the security attributes, that will execute.
    So, the solution to my problem was, in this case:
    Go to "Application" --> "Shared Objects" --> "Security Attributes" --> "Database Session" --> "Initialization PL/SQL code". In there, you need to put:
    BEGIN
    EXECUTE IMMEDIATE 'ALTER session SET NLS_COMP=LINGUISTIC';
    EXECUTE IMMEDIATE 'ALTER session SET NLS_SORT=BINARY_AI';
    END;By doing this, there's no longer any need to edit the source code of the report!
    So, that's the solution. I can finally enter text without special characters in it, and get the corresponding data, with special characters... Ahh. :)
    I hope this is helpful to others as well now. ;)

  • Data model in Interactive Reporting

    Hi,
    Could any one clarify me on What is Data model in Interactive report and how we can use exactly.

    A data model is the physical representation of your tables joined together.
    In SQL terms it the FROM and WHERE (JOIN) clauses.
    an IR Query section depends on a Data Model. That Data Model can be a Master Data Model (Shared with many Query Sections) or a regular Data Model.
    Master Data Models cannot be changed within the Query Section - Their Background is Grey and will indicate so in the upper left corner of the screen...
    Locked Data Model: {data model section name}
    Master Data Models are useful in that you only design it once and then it and its connection are shared with many Query Sections. And modifications to the Data Model are then applied in the Data Model Section and each dependent Query Section has those changes.
    For a more comple defintion open Interactive Reporting and go to HELP. In the Search type "Data Modeling"
    You will have plenty to read.
    Wayne Van Sluys
    TopDown Consulting

  • TITLE for the Interactive report

    Hi,
    I like to show a Title for the Interactive Report in several different languages.
    But it seems if I just pick Interactive report, there will be no Title shown.
    What is proper way of doing this ?
    So, what I did was, I created a HTNL region, just to show the Title, but it seems the translation and XLF file doesn't pick it up
    Please help
    --John                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    I have further to report.
    It looks like a bug.
    The REGION title text is missing in "TRANSLATE APPLICATION" in "SHARED COMPONENTS" under WINDOWS environment.
    The REGION title text is in SUN environment, but does not shown as translated in the browser.
    Thx
    --John                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Interactive Report NLS Language

    Hi again,
    Apex 3.2.0
    Oracle XE
    I was wondering if you could help.
    I have a combo box on a form region that selects a language. The idea of this is to change the number and date formats when displaying data in reports and on forms.
    On my reports and forms my format strings are set to a page item e.g. :P10_CURRENCY_FORMAT which contains the oracle currency format I need, e.g. FML999G999G999G999G990D00.
    I can then set the NLS_CURRENCY value by either altering the session or via the apex.util:
    ALTER SESSION SET NLS_CURRENCY='£';
    or
    APEX_UTIL.SET_SESSION_STATE('FSP_LANGUAGE_PREFERENCE','en-gb');
    and the correct currency symbol appears in front of the number in the report.
    This all works fine until I get to filtering interactive reports.
    The problem is when I want to filter interactive reports all the currency settings are set back to the APEX defaults set in APPLICATION/GLOBALIZATION.
    I then created a BEFORE HEADER process to alter the session, however when filtering interactive reports, the page isn't refreshed so this takes no effect.
    So I have ended up with £ symbols in my report columns and when I filter it, they all change to $ symbols, the next page reverts back to £ until I filter again.
    Am I going about it all the wrong way, or does anybody have any ideas?
    Thanks,
    Blackstone.

    This approach won't work with interactive reports as the Before Header process is not executed by the AJAX call that refreshes the report.
    This is a deficiency in IR operation that we can hope will be addressed by a future enhancement to provide the ability to run processes pre- and post-IR refresh.
    In the meantime, IR refreshes do run the Virtual Private Database PL/SQL call defined in the application security attributes, so putting the NLS modification code there will work. Go to Application > Shared Components > Edit Security Attribute | Virtual Private Database (VPD), and make the call from there. Due to the specific requirements of the code that has to be called from here when used for security purposes, this is probably best done by setting this up to make 2 separate calls to packages defined outside APEX, one to handle security-related details and the other to orchestrate any other code that has to be run. (For example, in this case it may not be desired to alter the NLS environment on every page, so the program could take a parameter specifying the current page and apply the ALTER SESSION conditionally on this.)
    [See this thread|http://forums.oracle.com/forums/thread.jspa?threadID=936753] for a similar issue.

  • Interactive reporting service1 not running

    Hi All,
    Whenever i try to logon to Workspace i am getting this message "Could not find a Hyperion Reporting and Analysis - System 9 server running on <servername> at port 6800. Please verify your server connect string and confirm that the server is up."
    Earlier i was able to log on to workspace without any error. I tried to track down the error and found that "Hyperion S9 BI+ Interactive reporting Service" is not running. I tried to run it both from front and back end but it is not getting started.
    I then tried to re-configue it with shared service but it is getting failed now. The configerr log says
    (Jun 02, 2010, 10:37:51 AM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    java.lang.NoClassDefFoundError: com/brio/one/config/ConfigurationManager
         at com.hyperion.avalanche.config.AvalancheHubUtils.store(AvalancheHubUtils.java:65)
         at com.hyperion.avalanche.config.AvalancheHubRegistration.storeInfo(AvalancheHubRegistration.java:179)
         at com.hyperion.avalanche.config.AvalancheHubRegistration.setHubUrl(AvalancheHubRegistration.java:82)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeHubRegistrationTask(RunAllTasksWizardAction.java:339)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:165)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    Please help...i am badly stuck.
    Thanks in advance
    Suman

    Hi, Check the Core Services exists. If not you might have to reconfigure the Reporting and Anlaysis services again.
    Thanks
    Radhika

Maybe you are looking for

  • Drop down list in Excel Layout

    Hi, I'm trying to have in the header a dropdown list so that users can select Cost Center's for example. But can not get it when in the Planning Level or Planning Package the Cost Center is left blank. Do you have to restrict it in order to be able t

  • My calendars became reminder lists and I deleted them. How do I get my calendars back?

    I was in the Reminders app on my iPhone 5 and empty lists named after my calendars showed up randomly (first my personal calendar, then my school one). I thought it was some strange bug so I deleted them. When it happened today with my school calenda

  • Connectivity from Oracle8i (8.1.6) to Oracle7 (7.1.6)

    Hi all, I am going to connect from Oracle8i release 2 running on Unixware 7.1.1 to Oracle7.1.6 running on Sco Openserver. I am getting end_of_communication_channel (03113). From 7.1.6 to 8.1.6 there is no problem. Should I set anything special? Pleas

  • Ola_42

    Trouble printing to PDF. Purchased and loaded Acrobat X1 Standard on Windows 7 computer. Message on trying to print to a PDF in micorsoft word and other programs is: 'Unable to find adobe PDF resource files'. When i look in appdata\roaming\adobe\adob

  • "system has recovered from a serious error" problem

    I just built a PC on a MSI PT880-Neo (running XP professional), and most of my configurations and whatnot has been worked out.  However, I'm finding that my PC will every so often, inexplicably, just freak out and go to a blue screen with lots of whi