Select * and view editable on an interactive report

Hello

Here's my problem: my apex applications are copied from my main development application, and each one corresponds to a different (one per customer) schema.
But in one of my interactive reports, I use a view that changes to the structure (number of columns and the names), according to the customer.

I'm looking for a way to have a common query (select * from bird) but, in addition, to have a report which indicates the structure of the view and use it on each shipment.
It works with a classic report, but I need an interactive...

Should I look on the side of the dynamic actions or something else?

Thank you!!
Fanny

But you can use a collection in an IR to mimic the SQL function returning this standard of work fishing reports...: http://www.oracleapplicationexpress.com/tutorials/71

Thank you

Tony Miller
Webster, TX

Never give up dreams!
JMS

If you answer this question, please mark the thread as closed and give points where won...

Tags: Database

Similar Questions

  • Select columns when downloading interactive reports

    Hello
    We have a requirement defined by Oracle Corporate Security Architecture Review Board to prevent some columns to display when downloading interactive reports in csv format. They should appear on the report, but not on the csv output.

    I vaguely remember it was possible when interactive reports have been made public, but I can't find a way to do so at the ApEx 4.1? When I go to the print attributes > columns in the report, I can see the list of columns, and they all get to see the report = Yes, but there is no way to make it no. it seems that all the selected columns to display in the interactive report are automatically included in the download.

    Our applications are hosted on apex.oraclecorp.com, I can provide more details if necessary.

    Please inform if there is a way to exclude the columns during the download.

    Kind regards
    Isabelle Fallon

    Change the definition of column you want in the CSV file and add a conditional view:

    Condition of Type: Ask! = Expression 1
    Expression 1: CSV

  • IMAGE Blob of a view in an interactive report.

    From a view, I create an interactive report. Two tables of interest are the view:

    Customers (ID, name, Logo, Mimetype, Filename, Last_Update_Date)
    Projects (ID, title, CustomerID)

    View combines the two in
    QryProjectDashboard (ID, Title, CustomerID, CustomerLogo, LogoMimetype, LogoFilename, LogoLastUpdateDate)

    I hope that the joints and such are obvious.

    In preparing the report, I add all the columns above the view. In the settings field customer Logo, I tried to put in place the mask Format download BLOB that requires:

    1. the format of the mask = Download
    2 blob Table = QryProjectDashboard
    3 column = CustomerLogo Bob
    4 primary Key CustomerID = 1
    5 Col MimeType = LogoMimeyype
    6 Col Filename = LogoFilename
    7. last Udate pass BLOB = LogoLastUpdateDate
    8. content-disposition = Inline
    9 Download Link Text = DOWNLOAD

    BTW, I use all caps in the views and input fields, and double checked all the spelling.

    By clicking on apply in the format mask window is ok, but when I click on apply in the column definition window, he complains of 'QryProjectDashboard' does not exist. So, it doesn't seem to like the view.

    So the problem by using a view? How to wire to the top of the Blob object if the report is based on a view? All foreign keys are set up, and there is no private known issues.

    Hello

    I have not tested with view.
    But as workaround, if you just write even select in region report that you have in mind. Then use actual table to the BLOB format mask.

    BR, Jari

  • Parameter selection of interactive report list

    I have an optional parameter select list on my page of interactive reports for users to filter. When the user opens the page I want to all the output of show, but if they type something into the selection list I want to use this filter in my query and re-display the page. I created a selection list with submit ("P237_STUDENT_LIST") and by default the value of 'NONE '. I created a list of values and in clauses 'NONE' so it still shows upwards in the list.

    I put this in my report query:

    and (: P237_STUDENT_LIST = 'NONE' or)
    EXISTS (select ")

    I seem to have a problem with the session state from the element. When the page appears first, the session state for P237_STUDENT_LIST is empty and shows nothing. When I make a choice in the selection list, session state is ok, but if I go back to 'NONE', it is not reset it. I'm missing something or that the wrong way?

    Bob,

    The ApEx team believes people can do what you do and do an easier way. Put your selection list to select a standard. Then enter the details of the interactive report and scroll to advanced attributes > items to submit Page. Enter the name of the element there.

    Kind regards
    Dan

    http://danielmcghan.us
    http://sourceforge.NET/projects/tapigen

  • Calculations in APEX 4.2 on the interactive report and the update form

    Hello

    I know that people have asked similar questions, but I was not able to do this work. I'm doing some fairly simple math (addition, multiplication) in an application. I have 2 fields (VALUE_A, VALUE_B). I can get the addition and multiplication work in the interactive report, but I also need that it works correctly in the form of update. I also need update form to work dynamically so that if the values are changed, the correction calculated response is shown immediately on the update form and then reflected in the interactive report. I tried the dynamic action, with and without javascript without result. Any help would be appreciated.

    Request Express 4.2.6.00.03

    model application:

    https://Apex.Oracle.com/pls/Apex/f?p=82162:

    username: guest

    password: Peanut123

    Thank you

    Rachel

    ADD dynamic action

    After refresh of region

    Set value

    ELEMENT the VALUE to change

    check the fire on the load

    To source, use expression JavaScript

    If ($v ("P2_TEST_1")! = null & $v ("P2_TEST_2")! = null)

    {

    parseInt ($v ("P2_TEST_1")) + parseInt ($v ("P2_TEST_2"));

    }

    ElseIf ($v ("P2_TEST_1")! = null & $v ("P2_TEST_2") == null)

    {

    parseInt ($v ("P2_TEST_1"));

    }

    ElseIf ($v ("P2_TEST_1") == null & $v ("P2_TEST_2")! = null)

    {

    parseInt ($v ("P2_TEST_2"));

    }

    on the other

    { 0; }

    That add another dynamic action on change POINT P2_TEST_1 and set even with the same expression JavaScrit action. but NOT fire on the load
    Do the same for the ARTICLE P2_TEST_2

    And the same for A times B but change + to *.

    Here, I did samples for you with this code.

    https://apex.Oracle.com/pls/apex/f?p=83519 demo/demo

  • CASE statement (or a similar feature) in interactive report?

    Hello

    I wrote a report based on an anonymous PL/SQL block, which allows me to display an icon of a different color on the report based on the value of one of the columns - see the green if the value is less than x, show yellow if the value is between x and y and the show red if the value is greater to y.

    Here is the code block:

    I'm in (select proj_id, proj_name,)
    CASE
    "WHEN proj_cost < 10 THEN ' < img src =" #APP_IMAGES #green - circle.jpg ">"
    "WHEN proj_cost > 10 and proj_cost < 15 THEN ' < img src =" #APP_IMAGES #yellow - circle.jpg ">"
    "WHEN proj_cost > 15 THEN ' < img src =" #APP_IMAGES #red - circle.jpg ">"
    ANOTHER NULL
    END proj_cost
    of the project)

    loop
    HTP.p ('< p >' | i.proj_id |) ', ' || i.PROJ_NAME | i.proj_cost | (' < /p > ');
    end loop;

    Can I do something similar with an interactive report? I want that the flexibility of the interactive report but the ability to always include this customer's requirement in the report.

    Thank you!

    -melissa

    Hello

    You can use your select as the source of the interactive report region

    select proj_id,
    proj_name,
    CASE
    WHEN proj_cost < 10 THEN ''
    WHEN proj_cost > 10 and proj_cost <15 THEN ''
    WHEN proj_cost > 15 THEN ''
    ELSE NULL
    END proj_cost
    from projec
    

    It should work fine

    Just make sure that this column where is the image type is "Standard report column.
    If it's 'View text' it will not show HTML

    BR, JAri

    Published by: jarola on March 16, 2010 16:18

    substitution APP_IMAGES sting, you probably use & APP_IMAGES. instead of #APP_IMAGES #.
    Another Vice, it should be good

  • Display of precision for the timestamp interactive report

    Hi all

    I have converted to date of 'old' data type to "timestamp (1) with the local time zone" in the database tables.

    When I view these fields in interactive report, it appears with a precision of digits 6 (oracle default), but when I use the command SQL under APEX it display them with an accuracy of only 1 digit under the column of database definition.
    APEX always see these columns as a DATE type.

    Anyone know how to view these columns as they stored in the database? (i.e. precision of 1 digit)
    and how can I change time zone session inside the Apex to check this new columns works correctly?

    Thank you

    Published by: whYMe on February 3, 2010 11:38

    Hello

    -Change page
    -Interactive report (report attributes)
    -Edit the icons for the particular column
    -Number/Date format

    It looks like you want: DD-MON-YY hh. FF1 AM

    Mike

  • Several interactive reports on a single page?

    I use interactive reports in a few places in an APEX application. I find them valuable as a kind of "generator" that the user can do a lot with.
    On a particular page, I have a radio button, offering to the user two possibilities. As one that they select, I want to show another interactive report. Each of them running different SQL with different number of columns.
    By default I can't do that in APEX 3.1.2 - when I try to add the second I get the message + "interactive report already exists on the page...". "You can only add an interactive report by page +".
    I tried to set the view state so that one wouldn't show, but I'm still not allowed to create the second.
    I guess I could create a branch to two different pages, depending on radio button option the user selects, but the option box is one of a few other entries form I need of the user, the other being a few dates and selections from drop-down list box.
    I want to keep these elements form visible above the interactive report, and I do not know how if I'm leaving braching to different pages for interactive report.

    Hope this makes sense to someone...
    Thank you.

    The best way we found to include several Irs on one page is to copy... Either in the same page or on another page. When copying IR #2, we had the condition for IR #1 set to NEVER. Viewing the report of your choice can be done either by defining a list of radio with submit and conditional display for each report, or by allowing end users to customize the page, with a single report is displayed by default.

    I hope this helps.

    Vojin

  • Conditional display of interactive report based on the different SQL query

    Hello

    I have two drop-down list at the top of my page and below I have an interactive report.
    Based on the selection of the user from the drop-down list values, interactive report should change based on different SQL queries.

    Is it possible to have different SQL queries based on the drop-down list values and generate interactive report based on that?

    Thank you

    Hello

    You can't have IR based on function returning the query as you can have classic report

    But here is a workaround
    http://www.oracleapplicationexpress.com/tutorials/71

    Kind regards
    Jari

  • Create null values in the database for interactive report link column values

    Hello

    I'm pretty new to APEX and tries to create an interactive report with the form. This report examines essentially for more information for a particular employee. If the employee has any information in the table, the report presents information with a button change beside him. If there is no record in the table for this employee, a create button appears. Now when you click create, a new creation page. This page contains the employee number as a single display field with the value from the previous page. This value is displayed in the page, but it is not in the database. Create the page has view-only number and a couple of other columns. The other columns get inserted into the table with an empty number!

    Can someone please? Looks like the page keeps the value zero for the number of the employee who came during the search of the interactive report. Hope I made myself clear, being the newbie hope I haven't used any incorrect terminology.

    Thank you!
    Robet

    Without the DB column, apex will not determine which DB column the data in this field are mapped to (it would be quite impossible to guess the destination since the name of the element column).

    If you want to assign to the previous element of the page, use the default section

    return: P1_EMP_NUM

    By default the value Type: body of the PLSQL function

    and configure the attributes of source as I said before

  • Application set up interactive report

    Hello

    With the help of Apex 4.0:

    I create a report interactive customizable which has three items in the list select P1_A, P1_B, P1_C. My interactive report has matching columns that need to be filtered by the values of P1_A, P1_B and P1_C, click on the button 'Go '. I get the error of syntax for the query to the decoding function:

    where a_id = decode(:P1_A,'%null%',a_id,:P1_A)

    Error = > + "Query cannot be parsed, please check the syntax of your query. (ORA-00911: invalid character) « +

    Has anyone had a similar problem? Could you suggest what the problem with the decode function?

    Thank you
    Rajo

    You missed 'AND' keyword __ between the case WHERE your SQL query cluase filter or was it just a typing mistake?

    The following query report IR works very well for me

    WITH DAILY_STATUS_TEST_MASTER_JOIN AS
       (
         SELECT '0' PRODUCT_ID, '00' PLATFORM_ID , '000' RELEASE_ID FROM DUAL
         UNION ALL
         SELECT '1' PRODUCT_ID, '11' PLATFORM_ID , '11' RELEASE_ID FROM DUAL
         UNION ALL
         SELECT '2' PRODUCT_ID, '22' PLATFORM_ID , '222' RELEASE_ID FROM DUAL
       )
    select DAILY_STATUS_TEST_MASTER_JOIN.PRODUCT_ID as PRODUCT_ID,
           DAILY_STATUS_TEST_MASTER_JOIN.PLATFORM_ID as PLATFORM_ID,
           DAILY_STATUS_TEST_MASTER_JOIN.RELEASE_ID as RELEASE_ID
    FROM DAILY_STATUS_TEST_MASTER_JOIN
    where DAILY_STATUS_TEST_MASTER_JOIN.PRODUCT_ID = decode(:P18_PRODUCT,'%null%',PRODUCT_ID,:P18_PRODUCT)
          AND DAILY_STATUS_TEST_MASTER_JOIN.PLATFORM_ID = decode(:P18_PLATFORM,'%null%',PLATFORM_ID,:P18_PLATFORM)
          AND DAILY_STATUS_TEST_MASTER_JOIN.RELEASE_ID = decode(:P18_RELEASE,'%null%',RELEASE_ID,:P18_RELEASE)
    
  • It is possible to sort an interactive report with a default column?

    Hello

    I have a great request accompanied by an interactive report.
    select "ID", 
    "DATE_CREATION",
    "SERVICE",
    "RESPONSABLE",
    "NATURE_CONTRAT",
    "SOCIETE",
    "DATE_DEBUT",
    "DATE_FIN",
    "DELAI_RENOUVELLEMENT"
    from "#OWNER#"."CONTRATS_MAINTENANCE" 
    order by DATE_FIN desc
    Unfortunately, the interactive report not display using the order in the SLQ query.
    I tried to select the 'out' of each of the other columns in the attributes column Section, but without any improvement. If I remove the declaration of the order in the SQL query, nothing changes in the order.

    You have an idea on how to display the rows in the order of the sql query?

    Thank you for your knid answers!

    Geraldine

    Christian,

    This can be a little tricky at first. Try this:
    1 remove the order by clause of the query.
    2. close the application, not the generator, just the application.
    3 reconnect and try to use the interactive report options to sort the information.

    It work? If so:

    4. get the order of the way you want as the default. Note: you get more sort options if you use the Action Menu (milling wheel) and a sort by selecting more simply by clicking on the column headers.
    5. save the report by selecting the save the report option in the Action Menu. If you see a drop down, save the report 'by default'.
    6. close the app again and come back.

    It work?

    Kind regards
    Dan

    http://danielmcghan.us
    http://sourceforge.NET/projects/tapigen

    You can reward this answer by marking as being useful or correct ;-)

  • Number of lines displayed per page in an interactive report

    Hello

    I would like to know if it is possible to change the values of the selection list called "Rows" in an interactive report (which is displayed in the search bar).
    Indeed, I want to display 16 lines per page, and I can only choose from the values 1, 5, 10, 15, 20, 25, 30, 50, 100, 200...
    Thank you for your response.

    Emilie.

    Hi Emily,.

    Go to: Home > Application Builder > application 301 > Page 51 > report interactive attributes > Search Bar > lines per Page selector

    Remove the check mark and the line selector disappears.

    Greetings,

    Tobias

  • APEX 5.0 Interactive report (nopadding, how to set the line height)?

    APEX 5.0.

    Theme: 26. Productivity applications

    Interactive report region

    Where and how can I global set Dimensions height of the line and policies, etc., lines in interactive report?
    I use standard interactive report.

    Thank you

    user555867 wrote:

    Please help me in detail.

    The best way to get detailed help is to create an example on apex.oracle.com and share credentials of developer comments in the workspace here.

    I have:

    1 created a (= external CSS style sheet) file with the name 'ir_css_padding.css' local on PC (C:\tmp).

    2 added "Shared components"-> 'Static Application files'-> 'Download the file statistics Appl.': 'c:\tmp\ir_css_padding.css '.

    3. under "attributes of User Interface:

    (General properties)

    The value 'Statistics file prefix': ' #APP_IMAGES #ir_css_padding.css.

    'Media Type' value: text/css

    Why have you changed these settings? They are not relevant to the addition of static CSS files in the repository database. Read the help on line for these properties:

    Static file prefix

    Determines the virtual path of the Web server uses to point to static files when you use the #APP_IMAGES substitution string #.

    Do not specify what to do refers to files that are stored with your application definition in the database.

    For performance reasons, you can also store your application files on your Web server. Use a valid URL to refer to them.

    Media type

    Enter the Internet media type. An Internet media type is identifier into two parts for the formats of files on the Internet. A media type is composed of at least two parts: a type and a subtype and one or more optional parameters. This type of media used in the HTTP Content-Type header when the page is rendered.

    If both the values of page-level and the level of the application for the media Type are NULL, text/html is used.

    Two of these parameters must be null in your current environment.

    (The User Interface definition)

    "CSS File URL' value: 'text/css/ir_css_padding.css '.

    This parameter must use the static text of APP_IMAGES substitution string:

    &APP_IMAGES.ir_css_padding.css

    After that, I can't jerome in application. (See the only CSS text in the browser)

    --> WHAT IS THE PROBLEM?

    APEX is serving pages using the type of text/css media according to the incorrect media Type parameter described above. Remove and the app will return to normal.

    4. WHERE and HOW VALUE / reference the CSS file?

    I need this change for all interactive reports in my application, self think I can change my model that I use: 'interactive report Region '.

    Interactive report region isn't just a region container designed for use with interactive reports. It does not control the appearance of the interactive reports somehow. Not there at - it a report model for interactive reports. Their appearance can be changed using CSS.

  • Get total control of interactive reports paging lines

    I use APEX 4.2.5 on a 11g R2 database, and I'm trying to use jquery to get the total of the lines in an interactive report (user wants to see it is separate pagination control).  We use the X - Y of Z as a paging configuration.  I got the idea to use the following to get the value and assign it to a page element in a dynamic action.

    $('#apexir_DATA_PANEL.fielddata').text ();

    (Monday morning and I am facing a brainfart, OK...) Should be a simple question and answer, but this is not the case...)

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

    Found answer here its backlog of the forum: first and last pages of the interactive report

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

Maybe you are looking for

  • Can't get HP Office jet to analyze.

    HP Officejet 6500 has AIO.  communication scanner error cannot be established.  All my fine connection. This printer scanner worked fine in my old win xp Dell. New computer Lenovo K series. running Win 7-64.  Installed via disk and also I tried to do

  • mail to gmail business applications

    Thanks in advance for your attention to this request. I wish that our client apps to open gmail "compose mail" when you click on an email address. In Applications, I should be able to choose or there should be a script to load this feature. The modul

  • Cannot delete the Facebook of Skype contacts

    Hello I have looked & looked for a solution to my problem nothing works and I'm now out of my mind with this. A few months ago that I connected to Facebook to Skype thought it would be a good idea, but it is not good for business (I use Skype for bus

  • Skype installation program does not start

    Hello today I tried to start my Skype, but it did not work it says Skype do not respond and it freezes on the loading screen so I deleted and download the installer to reinstall Skype but when I run Setup it did nothing... I tried to use the compatib

  • Satellite L20-PSL2XE - wireless (Atheros) does not

    Hello a friend of mine gave me this laptop. I formatted (I don't have the Original recovery disk) and installed an original copy of Microsoft Windows XP Pro.I installed the drivers downloaded from this site. But... the Wireless does not work. He can