Interactive Report Subscription - missing search functionality

Hi,
when receiving the output of a report subscription in Apex 4.1.1, the search Box is missing, only the Text string 'Suche:' is displayed.
If i download the report as Email or html, the search box is there and usable.
Maybe i'm wrong, but this was not under Apex 4.0.2.
Has anyone the same disfunction?
regards,
Wolfgang

Hi Christina,
i have a smilar problem with Email subscriptions, i don't use items, but i use collections in the where clause!
Example:
select * from PUMA_MMRDB_GSM_LB a
where
case
when (select C001 from APEX_COLLECTIONS where COLLECTION_NAME = 'TMP_SELECTION') = 'BRD' then 1
when (select C001 from APEX_COLLECTIONS where COLLECTION_NAME = 'TMP_SELECTION') = 'REGION' and (a.Region in (select C001 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'REGION_M')) then 1
when (select C001 from APEX_COLLECTIONS where COLLECTION_NAME = 'TMP_SELECTION') = 'NL' and (a.NL in (select C001 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'NLK')) then 1
end = 1
Sometimes i see the Errror ORA-01722 in the 'error message' field of the apex_application_page_ir_sub view. I don't know if this related to the above.
Can you point me in the right direction?
thanks,
Wolfgang

Similar Messages

  • Interactive Report Subscriptions

    Apex Version: 4.1.1.00.23
    Internet Explorer 7
    Oracle Database Version 10.2
    Server Linux
    I have not seen a viable solution to this issue of subscriptions being wiped out when exporting from a development environment to a production environment. I understand internal ids will be different and I shouldn't have to write a bunch of code to try to offset the numbers as I have seen in some posts.
    When exporting I am exporting the entire application.
    Under the export preferences I am setting all to Yes. Still no subscriptions.
    I have even tried to do an export/import of the wwv_flow_worksheet_notify and get error: Parent key not found. I don't know what parent key is failing.
    I have looked at the export file searching for wwv_flow_api.create_worksheet_notify. It is not there.
    I need a solution ASAP. I have to manually recreate each subscription for the end user, that is if I remember to capture it before I import it!
    Thanks so much,
    Becky

    Hello Becky,
    While exporting from DEV you should set NO for following options
    <li> Export Private Interactive Reports
    <li> Export Interactive Report Subscriptions
    Because, Private Reports and Subscriptions will be made by end-users and they will be made on Prod systems. So if you export them from DEV and import into PROD, then all private reports and subscriptions will be lost on PROD.
    Regards,
    Hari

  • Interactive Report with PL/SQL Function Source

    Is it possible to create interactive report with PL/SQL function source returing a query? If not, has anyone done any work to simulate the interactive reporting feature for a normal report using API?

    I haven't tried that before but you could:
    1. create a collection from your result set returned by a dynamic query,
    2. create a view on that collection,
    3. use the view in your interactive report.
    The usability of this proposal depends from a question how "dynamic" your query is - does it always have the same number of columns or not.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Interactive Report Subscription emailing different dataset

    Hi All,
    I am having a bit of strange problem with subscriptions email on an interactive report.
    I have the report to email users every morning from an interactive report.  The dataset that is emailed is not the same as the report on the interactive report screen.  The variance between what is emailed and what is on the report screen page is quite large and it is not an issue of the data changing between the email fist going out and the report screen being viewed.
    Also, is there a way for a user to 'unsubscribe' from a report?
    Any help would be great,
    Thanks
    Chris
    APEX Version v:  Application Express 4.0.0.00.46

    Hello Becky,
    While exporting from DEV you should set NO for following options
    <li> Export Private Interactive Reports
    <li> Export Interactive Report Subscriptions
    Because, Private Reports and Subscriptions will be made by end-users and they will be made on Prod systems. So if you export them from DEV and import into PROD, then all private reports and subscriptions will be lost on PROD.
    Regards,
    Hari

  • Interactive Report with additional search filters

    Hi all,
    I want to implement a functionality where I have an interactive report which comes with default Search / Filter option , but I also want to have additional filters which are drop-downs in this case and based on the values selected from the drop-down lists , report displays the values ! How can I implement this functionality where after selecting a value from the drop-down list and then further using interactive report filter to retrieve the results.
    Below is my SQL
    select * from Atoms_FULL
    WHERE (:P6_ANO IS NULL OR ANO = :P6_ANO )
    OR (:P6_ATYPENAME IS NULL OR ATYPENAME = :P6_ATYPENAME)
    When I implemented this , only the interactive report filters are working but not the customized filters WHICH ARE :P6_ANO AND :P6_ATYPENAME (Drop-down Lists)
    I hope I have made the question clear. Let me know if you need any more clarifications.
    Would really appreciate if anyone can help in this issue asap.
    Thanks,
    Rads

    What version of apex are you on?
    You have to set the session state of page items, this can be achieved by adding your items as comma seperated into the Page Items to Submit attribute, This attribute is available under Interactive Report region source, Dynamic Actions etc.
    Thanks,
    Vikram

  • Interactive report : subscription problem

    I had set subscription for an interactive report. The frequency is Daily and there is no ending day.
    The report is received daily on my mail in html format, but it is blank (2.4 KB). Only search field & search button are displayed.
    There are not parameters to generate the report.
    Please suggest the solution.
    Sanjay
    Edited by: user12957777 on Oct 6, 2012 2:44 AM

    Hi Christina,
    i have a smilar problem with Email subscriptions, i don't use items, but i use collections in the where clause!
    Example:
    select * from PUMA_MMRDB_GSM_LB a
    where
    case
    when (select C001 from APEX_COLLECTIONS where COLLECTION_NAME = 'TMP_SELECTION') = 'BRD' then 1
    when (select C001 from APEX_COLLECTIONS where COLLECTION_NAME = 'TMP_SELECTION') = 'REGION' and (a.Region in (select C001 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'REGION_M')) then 1
    when (select C001 from APEX_COLLECTIONS where COLLECTION_NAME = 'TMP_SELECTION') = 'NL' and (a.NL in (select C001 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'NLK')) then 1
    end = 1
    Sometimes i see the Errror ORA-01722 in the 'error message' field of the apex_application_page_ir_sub view. I don't know if this related to the above.
    Can you point me in the right direction?
    thanks,
    Wolfgang

  • Interactive report from PL/SQL function

    Hello All,
    i have a pl/sql function that dynamically builds up a sql query and returns it as a varchar2.
    when i create a new report then i can use this function in the report like
    return f_function(param1,param2,v('APP_ID'), v('APP_SESSION'));
    and this works fine.
    Except i cannot create an interactive report for this function, because it is not allowed !!!!
    So how can i use the function in an interactive report ?
    Thanks in advance,
    Marco

    Marco,
    Another rather extreme approach would be to go all the way and make your function pipelined (that is not only build but also execute the query) and then select from it in your interactive report.
    The disadvantage here would be that any supplementary filtering would act on the result set of the function (not as an addition to the where clause of the original query). But if you can live with that...
    The advantage would be that there's less fiddling with column headers.
    Regards,
    Iulian

  • Interactive Report Attributes: Missing a column?

    This is for Application Express 3.2.1.00.12
    I'm working on a report with the columns pulled in a SQL statement in the Region Definition section of the Interactive Report Attributes screen. We want to alter the column names so they are more user friendly, so on the Report Attributes tab, I'm looking for the column name we wish to alter, but it is not showing up. Now, in the final report, the column is visible with the header from the name of the column from the database, so the system is aware of the column and can display it, but for some reason we can't see it in the Report Attributes tab.
    Why would a column be invisible or inaccessible in the Report Attributes tab? There are 100 columns displayed in the Report Attributes: Column Attributes section. Is that the reason I'm missing some columns; 100 is a hard column limit on that page?
    Thanks in advance for all help you can provide.
    Matthew Nagler
    Edited by: user13579247 on Jul 20, 2011 10:45 AM
    Edited by: user13579247 on Jul 20, 2011 12:20 PM

    Hi,
    You are almost right place. You need click icon before 100th column name, order to go screen where you can edit column attributes.
    In that screen right top is buttons (Cancle, Apply, < and >)
    Regards,
    Jari
    Edited by: jarola on Jul 21, 2011 5:43 PM
    It might documentation guides you to right screen
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/app_comp.htm#sthref978
    >
    To access Column Attributes:
    1. On the Workspace home page, click the Application Builder icon.
    2. Select the application.
    3. Select a page. The Page Definition appears.
    4. Under Regions, click Interactive Report next to the name of the report region you want to edit.
    The Interactive Report Attributes page appears with the Column Attributes section at the top of the page.
    5. To access the Column Attributes page, click the Edit icon next to the appropriate column Alias.
    >
    Edited by: jarola on Jul 21, 2011 5:44 PM

  • How to send a conditional email with interactive report subscription

    Hi,
    i have an interactive report with subscription.
    I would like to send an email with the attachment only when the query returns one or more records.
    How to to this?
    Apex 4.0.2
    Thanks in advance
    lukx

    Well, to understand your requirements can I ask this:
    You said earlier you want a report sent whenever records that meet a criteria exist, correct? So you want the application to query for a condition, and when that condition occurs (a row with primary Key = X, a select COUNT(1) for rows with column X returns a result of 1 or more)
    Then you would schedule a batch job:
    BEGIN
    -- Job defined entirely by the CREATE JOB procedure.
    DBMS_SCHEDULER.create_job (
    job_name => 'Send_Email_Procedure',
    job_type => 'PLSQL_BLOCK',
    job_action => 'BEGIN Test_For_COND_SEND(); END;',
    start_date => SYSTIMESTAMP,
    repeat_interval => 'freq=hourly; byminute=0',
    end_date => NULL,
    enabled => TRUE,
    comments => 'Job defined entirely by the CREATE JOB procedure.');
    END;
    This would in theory run hourly and run your test_for_cond_Send process, in which you would test for the condition and send an e-mail if it was found that would contain the results from your query/report.
    Here is a link to generate a PDF report that could be sent via e-mail: Re: how to save pdf in APEX 3.0
    Thank you,
    Tony Miller
    Webster, TX
    While it is true that technology waits for no man; stupidity will always stop to take on new passengers.

  • Interactive Reports and PL/SQL Functions

    Hi,
    Am new to the interactive reports, and it appears to be I can only use a single SELECT statement to populate the report.
    I need to convert some older reports to the new interactive reports, but these are populated using PL/SQL functions, as the WHERE clause is built up depending on the selection of items on the web page.
    How can I replicate this with the new interactive reports? Have used CASE statements within a SELECT statement before, can I also use these in a WHERE clause as well?
    Regards
    Simon

    To my knowledge, currently the only way to use Interactive Reports is on a static query. And unfortunately you can't use CASE statements in the WHERE clause of a query, only in the select list.
    The way I would (and have) attacked this is to:
    1. Write the base static query as the basis of the interactive report
    2. Access the interactive report in while logged in as a developer
    3. Build a filter (or set of filters) and save the report. You have the choice of saving it as a named report or as the default report.
    This gives the user one to many filter sets they can use as a starting point and tweak, and gives them examples as to how they can and should use the interactive filtering.
    Doug

  • Interactive Report based on a function returning SQL query?

    Hi guys!
    I'm wondering if the IR based on a function returning SQL query will be available on the final release of APEX 4.0..I can't see this functionality in EA1 and EA2 and I think it should be there..dont you think?
    With regards,
    PsmakR

    Hi!
    You're absolutely sure you're talking about the Interactive Report region and not about the default SQL Report region ?
    With regards,
    PsmakR

  • Interactive Report with custom search criteria must behave as search bar

    Hi,
    I have a region where I have 3 textfields and a Submit button. Then, another report region where I have a query with the where condition that makes reference to the 3 texfields. This is:
    Select * from ANYTABLE
    where column1 = :P1_TEXTFIELD1
    and column2 = :P1_TEXTFIELD2
    and column3 = :P1_TEXTFIELD3
    When I click the submit button, the report is reloaded (in fact, all the page) with all the conditions (in textfields) correctly.
    Now, what I need is that when I click the submit button, the filter appears in the screen; I mean, show the funnel with the filter conditions as if I made it since the search bar.
    Could someone help me with this?

    1002610 wrote:
    Hi, Welcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and update your forum profile with a real handle instead of "1002610".
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    I have a region where I have 3 textfields and a Submit button. Then, another report region where I have a query with the where condition that makes reference to the 3 texfields. This is:
    Select * from ANYTABLE
    where column1 = :P1_TEXTFIELD1
    and column2 = :P1_TEXTFIELD2
    and column3 = :P1_TEXTFIELD3
    When I click the submit button, the report is reloaded (in fact, all the page) with all the conditions (in textfields) correctly.
    Now, what I need is that when I click the submit button, the filter appears in the screen; I mean, show the funnel with the filter conditions as if I made it since the search bar. Remove the WHERE clause from the report query and use declarative filters in a branch on page submission to set the filter predicates.

  • Interactive Report Chart Missing Labels

    I have a simple horizontal bar chart on an Interactive Report... There are 22 bars but only half of them (11) have labels. Bars 1, 3, 5, 7, etc have labels. If I click on the other bars I can see their labels but this is of no use when printing. The same issue happens frequently in various other charts whenever there are more than a few items to display. Our users have to download the reports to Excel and create the charts there in order to print or make presentations.

    Hi Rick,
    The behaviour you are seeing, where not all labels are displayed, is expected given the size of the region the chart is being displayed in and the number of labels you wish to display. AnyChart will automatically handle the display of the labels in this case, and it is not possible to customise an Interactive Report chart to override this behaviour. My suggestion would be that you create a new Chart region, where you have more control over the chart you generate. Please refer to the section Creating Charts - http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/app_comp.htm#CHDFEJAB - in Chapter 8 - Adding Application Components of the APEX User's Guide for more information. Once you have generated your chart, you can increase the height of your chart on the Chart Attributes page, and this will allow for the display of additional labels on the X-axis of your chart. Alternatively, you could look at the option of using the AnyChart axis label Stager mode, as outlined in the online AnyChart documentation here: http://anychart.com/products/anychart/docs/users-guide/axes-labels-text-formatting.html#stager. As the mode name suggests, the positioning of the axis labels will be staggered, which will allow for the display of all of your labels without having to adjust the chart height. For your presentations, you can easily create the chart regions on the same page as your existing Interactive Reports, and you'll also have the ability to print the charts, save them as an image or as PDF.
    I hope this helps.
    Regards,
    Hilary

  • Apex 3.1, Interactive Report Row Text Search, image bitmap as TEXT?

    I think this IR thing is powerful which could save me lots of time in development.
    One question: does the row text search(default: all columns) treat image column as regular text(string)? I did the following search on:
    SAMPLE APPLICATION-->Products, I put 300 in the search column( for $300 list-price search), the search produces 3 lines( should only have 2). the 3rd line's list price is $1999, I looked it in SQL*PLUS and saw its image bitmap (long string) includes a "300" inside, so I believe the "default all columns search" treat image as regular string.
    How can I avoid the image bitmap search included in IR? This bitmap strings are very long for each image and can EASILY match searching conditions for something like PRODOUCT DESCRIPTION, PRODUCT PRICE for our products data( about 25000)? thanks
    sean

    Sean / Russell,
    Thanks for reporting this, it's certainly a bug.
    By the way, the search is performed in SQL, on whatever column values are being displayed (run the page in debug mode to see the full SQL). So in the case of the sample application, it is not matching the image bitmap, but the image size, which is selected in the SQL. The bug is that the full search should not include columns which have filtering disabled or one of the special image format masks. We'll try to fix this for an upcoming patch.
    Thanks,
    Marco

  • Missing Search Functionality in Addressbook for "C...

    Is there any possibility to search in Addressbook for "Company" name?
    In Communicator 9300i this was automatically done when typing a name (either person's name or company's name).
    Is there any solution for this?

    yes...that WAS a great part of the s80 symbian.
    i brought this up to the dev. manager in san mateo. 
    i hope they do update the search to do a better job.
    it is inconsistant accross the contacts/email/sms.

Maybe you are looking for

  • Drag and Drop to Change Order in a List

    Does anyone know of an example where there is the ability to drag and drop elements in a list and thus change their order? (I.E. drag item one below item two and then item one and two change locations) Thanks!

  • Inspecyion lot for delivery item

    Hi Experts, Please help. I have created sales order. Then created Production order with reference to that sales order. Processed poduction order. Stock posted to QM stock. Done Result recording & UD. Stock posted to Unres.use stock. Now I want to qua

  • How to pass DB link dynamically

    Hi, I need to pass DB link dynamically to SQL i.e, if I run in stage DB then I wanted to pass @DBSTAGE , if I run in prod DB then I wanted to pass @DBPROD to my report SQL. How can I achieve this? Thanks in advance for your help.

  • Performence issues on WDA FlashIsland Application

    Hi all, we have developped a WDA application with a full front end UI in Flex, for the data transfer between the WD and the front end we use 25 data sources mapped to 25 contexts, and 20 properties mapped to one WD context. We use the ususal "fire Ev

  • How do I change the bit-ra

    All my?music is at bit-rate 92kbps (MP3 Format) but I'd like to lower it so I can fit more music on my Creative Zen. I think it's possible to do in Creative MediaSource but I can't work out how!? Can anyone help?Thanks!