No saved reports - no Public Option / private

I created a new application with several interactive reports.  However, when my users click on save report, there is no option to make the saved report, public or private, as indicated in the documentation.  I have it configured incorrectly?

Thank you.

Under the documentation:

Tip:

To save a public report, the developer must select Save Report Public must be selected under include in the Actions Menu on the report attributes page. Developers can also apply for authorization scheme to enable or disable save the Public report. See "Customizing the search report interactive bar".

So, it is possible that you don't have this game in your configuration of application report...

Thank you

Tony Miller

Software LuvMuffin

Blog: https://apex1.revion.com/pls/apex/f?p=217:1:P1_ARTICLE:

Tags: Database

Similar Questions

  • Apex 4 - saved reports list query

    Hello

    Y at - it Application view Express, or any other method, which will allow me to query a list of saved reports (primary, Public and private) for an interactive report.

    We want to be able to display a list of saved reports, possible combining lists multiple pages of IR, overflowing the list field drop-down report stored in the IR search bar.

    APEX_APPLICATION_PAGE_IR view allows us to lists IR and will show counties of reports saved in wwv_flow_worksheet_rpts but it doesn't seem to be a point of view that we ask wwv_flow_worksheet_rpts to find saved reports.

    Or am I missing something?

    Thank you
    Martin

    APEX_APPLICATION_PAGE_IR_RPT is the name of the view.
    You can query for a list of IRs.

  • Saved reports as tabs IR

    Hi all
    I use APEX 4.0 and you have a task of implementation of the former (older versions of the APEX) tabs for the IRR when they are registered. My users are not fan of the selection list when the SEIR is registered. I have found a site http://apex.oracle.com/pls/otn/f?p=2071:204:100958475171263: this was implemented but the tabs are not displayed in my application on apex.oracle.com, only the names of report recorded with no spacing. Can anyone help me to get the tabs to display and/or possibly adding a dash (-) between each saved report name? Thank you for reading this thread and here's the logic I have done so far.

    I added a report as a "PL/SQL dynamic content' area and added the code below in the Source. Am I missing something to get the tabs to display as in the example?
    DECLARE
      CURSOR cur_saved_ir (p_app_id IN NUMBER, p_page_id IN NUMBER, p_user IN VARCHAR2) 
      IS
        SELECT '<span id="'||REPORT_ID||'" onclick="gReport.pull('''||REPORT_ID||''')">'||
           NVL(REPORT_NAME, DECODE(REPORT_TYPE,'PRIMARY_DEFAULT','Working Report','???'))||'</span>' report_name
        FROM   APEX_APPLICATION_PAGE_IR_RPT
        WHERE  APPLICATION_ID = p_app_id
        AND    PAGE_ID = p_page_id
        AND    SESSION_ID IS NULL
        AND    (STATUS = 'PUBLIC' OR
                (STATUS = 'PRIVATE' AND APPLICATION_USER = p_user))
        ORDER BY REPORT_NAME nulls first;
      
      v_select VARCHAR2(4000);
    BEGIN
      FOR i IN cur_saved_ir(:APP_ID, :APP_PAGE_ID, :APP_USER) LOOP
        v_select := v_select || i.report_name;
      END LOOP;
      htp.prn(v_select);
    END;

    I guess you're missing a div around the space, try adding the underside of your area of PL/SQL dynamic content

    //Add this to region header
    
    //Add this to region footer

    Or you can add this in your pl/sql code to print these before and after the content.

  • I need to create public and private keys for the security certificate and I can not find the certificate. Where is he?

    I bought a security certificate, and the site tells me that it has been installed successfully. I need to export the certificate so that I can create public and private keys, but I can't find the certificate to do so.

    Firefox (Firefox Orange) > Options > Options > advanced > Certificates > authorities > export

  • Telepresence Content Server: Dissemination to the Public and private users

    *****

    Infrastructure:

    TMS 14.5 (private network)

    VCS - C 8.5.1 (private network)

    VCS-E 8.5.1 (Public network)

    S5.3 TCS (private network)

    Codian: Supervisor 8500, MSE 8510, 8321 ISDN (private network)

    *****

    New to this, so I don't know what would be the best way to do this, but basically the goal is to broadcast videos of TCS to the users of the network internal as live audiences without security problems. Try to do this without an external broadcast service.

    It is the State that works very well for internal users, but is not available to public users because it's on a private network.

    Any help is greatly appreciated.

    Thank you
    Mike

    You will need to provide public access to your Cameras, you can consult the administration of CHT Guide for a list of ports. We have our TCS on a private network and have the lanes of traffic through the network load balancers that rely on the public network to provide all access public and private.

  • How to send automatically updates the saved report?

    Hi all

    We have a lot of saved in my interactive reports report. I'm trying to find a way to send an e-mail automated as a job in the apex 4.1.

    I am able to send emails manually. Please help me how to plan an automatic email to saved report.

    Everybody help me is very appreciated.

    Concerning

    James,

    in IR subscription is a function in the action menu that does the same thing that you are expected

    Learn more about the customization of interactive reports

    and D'Souza Giffy Martin on Oracle APEX: APEX IR: subscriptions with Bind Variables and the CAE I hope this helps you...

    Leave.

  • How to get the public and private keys to use recaptcha?

    I registered with google to get a recaptcha for my Web site. I've gotten has been the key to site and the secret key! If I need to get the public and private key for muse!

    Hello

    Please use the site as a 'public key'key key and Secret as "clΘ privΘe".

    Concerning

    Vivek

  • Generate public and private keys within the smart card

    Hi all

    I use this code to generate public and private keys within the smart card.

    KeyPair kp = new pair of keys (KeyPair.ALG_RSA_CRT, KeyBuilder.LENGTH_RSA_512);
    kp.genKeyPair ();
    PrivateKey prikey = kp.getPrivate ();
    PublicKey pubkey = kp.getPublic ();

    This code runs without error.

    I need to obtain the public key of the smart card. So I need to get the public key to a byte array.
    But I can't get these keys in array of bytes of plain text.

    The methods I can get for pubkey object are

    pubkey.clearKey ();
    pubkey. Equals (obj);
    pubkey.getSize ();
    pubkey.getType ();
    pubkey.isInitialized (); only these.

    I use
    Eclipse Version: 3.4.1 (level of agreement of the compiler = 1.4)
    Jcop plugin (to connect with the real map and to test the java code in virtual card provided by JCOP)
    OmniKey5321 (characters without contact) card reader

    What is the reason to get those above methods pubkey object? Is it a version problem?
    How can I get the public key in ordinary byte array? Is this possible?
    If it is not possible, is there a way to get the public key as a certificate of export or something another solution?

    If my script is not a possible strategy, how can I use private public keys to send the applet-specific data? Is there a better way to do it?

    Published by: 863766 on June 6, 2011 12:16 AM
    RSAPublicKey pubkey = kp.getPublic();
    

    then

    pubkey.getExponent(...); pubkey.getModulus(...);
    
  • Oracle synonyms: public or private

    The LiveCycle installation instructions specify that for the creation and initial filling of the database THESAURUS 'CREATE' privilege is necessary. I presume this means LK who actually will use to create synonyms. The DBA is now whether these synonyms will be public or private, and I can't find in the documentation. Could someone advice?

    Can you share the URL where it is documented and the version of database you set up? In line with the preparation for installation , the Oracle user account must have the following privileges:

    • CREATE SEQUENCES
    • CREATE VIEW
    • UNLIMITED TABLESPACE
    • CREATE TABLE
    • CREATE THE CLUSTER
    • CREATE SESSION

    ~ Vishal

  • Public vs private

    When I publish my application through the creator of folio tools gives me the possibility of Public or private. Can someone explain exactly what they mean? If I put it to the private sector can I still share it with customers? They have to sign in their applications of Content Viewer with my login or can they still use their own? What about the Public? Who can see it then?

    I assume that these decisions have no impact when I eventually send the app to iTunes, or are they?

    When you publish a folio as private, the folio is published on the service of distribution (Akamai servers rather than acrobat.com servers), and it is available only in the viewer of the iPad. The private folio appears in the library without the blue band. When you publish a folio as Public, you make it available to all of you who have your custom Viewer.

  • Interactive report - how to override tab saved report color by using page 0

    Is it possible to replace the color of a tab in report interactive report saved (the 'current' tag) by using page 0?

    I have tried the approach suggested in this thread:
    Re: change the background color of the interactive reports

    While the method works for the interactive report (.apexir_WORKSHEET_DATA tr td) table rows, I manage not implemented of the saved report interactive report tab (tab 'in progress'-# .apexir_REPORT_TABS span.current). I guess my syntax CSS isn't correct, but it looks like the CSS in the file .css on the originating server, so I don't know where I am going wrong.

    < style type = "text/css" >
    Works:
    .apexir_WORKSHEET_DATA tr td {background: blue; color: white ;};}
    does not work; also tried without the ' # ':
    span.current # .apexir_REPORT_TABS {background: blue; color: white ;};}
    < / style >

    Try this

    On Page 0 create a region and add this style
    
    

    Thank you
    Manish

  • Choose a profile Public or Private Network?

    Am I right in thinking that the more secure option for a network is Public in windows 8?

    Only, I have a PC desktop that is connected to a router and a printer.

    Installing Windows missed me a private network setting. Should I change this in a framework of Public network or is it not really necessary?

    Am I being too cautious?

    Hello

    Means of private connections you'll have some active options by default for example sharing file and printer sharing, private means that you do not. It is recommended to use private house connections to ensure when you buy another system they can reach eachother.
    It is recommended that use you Public in cafes, trains, McDonald's and so on, to ensure that nobody can open a connection to your system and look at your files.
    So in theory I would say that the private home use, there is no need to worry about the aslong that others do not have access to your network, which they shouldn't have...
    Hope this helps you
    Yuri
    This is my own opinion and does not reflect the opinions of others.
  • order from the drop-down list of saved reports in the search bar of the IR

    Hello

    I often use the interactive reports and Apex 4.0. We saved a lot of public reports

    but How to manage the order of all the reports in the dropdown in the search bar?

    It seems to appear randomly.

    Thank you LeDi

    Le_di wrote:

    I often use the interactive reports and Apex 4.0. We saved a lot of public reports

    but How to manage the order of all the reports in the dropdown in the search bar?

    It seems to appear randomly.

    Fixed in 4.1 APEX. You will need to upgrade.

  • Producer of Folio is does not give me the 'Public' option when you try to publish my folios!

    I created all things and I'm willing to do a .zip file, but I thought that you had to do your "public" piece after selecting 'publish '?

    It will give me only the private option and I'm trying to put it in the app store.

    Thank you

    $50 / month is a creative cloud account and does not allow to publish applications multifolio. You can create only simple editing applications.

    A business account is $ 500 / month.

  • Password is saved to a Web site (I know, because it opens), but I can't find it in the passwords saved in the browser options.

    Hi people warned @ Firefox,.
    Could you tell me how it is possible that I have a password saved to my Hotmail account, but it does not appear in the list of the saved passwords? I know that it is saved because when I click on the link Outlook it opens Hotmail, and I can access my emails. How can I recover my password without going to Hotmail and reset?
    Thank you!

    As long as you can get in hotmail now, you stand a good chance of sorting out the password.

    I think Hotmail can use a site name, something like 'loginlive'.

    It may also be that you have not saved the password on Firefox. Hotmail itself has an option for the connection to persist and to remember, which will use cookies.

    Hotmail might have the password reset options, but that may depend on taking you measures in advance to set up an alternate e-mail address or other questions of method and or contact security. This is something that you should be able to do it right now if you are always connected to or able to connect.

Maybe you are looking for