Allow users to save Interactive Reports

I have scanned this forum but cannot seem to find what I'm looking for. Can someone please tell me exactly what needs to happen so that users can save their own versions of Interactive Reports? What do the authentication settings need to be? How does the user need to be logged in? Etc. We are using APEX 3.1 with 10g release 2. We use our own tables to do user authentication and authorization. Currently users are logged in using the post_login process so the APP_USER reflects their userid, but yet they do not see the Save Report option in an interactive report even though the option is checked. Any help would be greatly appreciated.
Thanks,
Rick

Thanks for the input. I think the issue may be that I am noit logging the user in correctly so they are still APEX_PUBLIC_USER. The way our authentication works is that I get the user's id from a cookie passed by our companies secured login process. Once I obtain their ID from the cookie, I want to log them into my applications using that ID. If the cookie does not exist, they are redirected to the corporate login page. Do you know how I should be loggin the users into my applications? As I said, I tried using the wwv_flow_custom_auth_std.post_login API to log them in with the user id from the cookie, but it doesn't seem to be doing what I need.
Rick

Similar Messages

  • How to: 1. Submitt form as PDF and not XML 2. Allow user to save to computer Thanks

    How to:
    1. Submitt form as PDF and not XML
    2. Allow user to save to computer
    Thanks

    Thanks For the Post!!
    Please be advised that this forum is for discussions about
    the Acrobat.com online services only. Your best source of questions
    and answers for Acrobat would be in the
    Acrobat Windows
    Forums or the
    Acrobat Macintosh
    Forums.

  • Allow users to save form data

    I am throughly confused about what I need, so I'm sorry, I'm sure this thread is a duplicate of several that are out there, but most of it seems to talk over my head.
    I have a VERY old version of Adobe Acrobat (version 5.0, yes gasp in horror).  I have the VERY old version of Acrobat Distiller (version 5.0).  I have a form that was created in these versions of Acrobat.  It works perfectly, even in the new version of Reader (v9), excpet that the form data can't be saved, not a shocker.
    What software do I need to purchase to get my old form to allow people to save the form data, WITHOUT them having to download any extensions for their Reader?
    I hope that makes sense.

    Hi,
    LiveCycle Reader Extensions ES is part of Adobe's server product and can be very expensive. In addition to the cost of the sever component, you need to pay a fee to Adobe to apply the reader extensions to each form. It is intended for government agencies and large organisations.
    The ability to reader enable a form from within Acrobat is intended for ad-hoc forms that won't be going out to a lot of people.
    When you design a form in LC Designer, you can specify the target version of Acrobat/Reader (in the File/Form Properties/Defaults). This allows you to check that all of the functionality that you build into the form, will work for your users.
    When you reader enable the form it will still work with the target version that you have set in LC Designer.
    When you reader enable with the full LC Reader Extension ES server product, you are basically turning ON features for users with Reader.
    However when you reader enable using Acrobat, you are turning ON features like allowing users to save data. But at the same time Adobe are turning OFF some features like data connections.
    It really depends on how many data processes you want with the form. If it is small then stick with Acrobat. If you are a large organisation looking to improve data collection and processing then you should look at LC Reader Extensions ES.
    Hope that helps,
    Niall

  • Save Interactive Reports in Apex 4.0 for a specific user

    Hello all
    Here's the setup: I have APEX 4.0.1 running on Oracle EE 10.2.0.5 on Windows 2003.
    I built a GPS application which allows users to see their vehicles on a google map...but this is beside the point.
    My problem is that when a user saves a specific Interactive Report (after having done some customization as to columns & computaitons etc) the report is visible to any one that connects to the application.
    I am using a custom made authentication (in Apex I use no authentication and have a function validate the user logon before he is taken to the main page). this is because users are divided into companies, sub companies and departments and each user is granted access to a page in function of his presence in this hierarchy.
    My question is: how can I implement the feature whereby saved interactive reports are visible to only those users that saved them?
    Thanks in advance

    Hi "user12045065" (please change your forum handler),
    what does APP_USER show for you? Is it the same for all users?
    I'm not sure if I fully understood your sentence "in Apex I use no authentication and have a function validate the user logon".
    Does that mean you are NOT using a "custom authentication scheme" for that? If you answer that question with yes, how should APEX be able to distinguish the different users? And I still don't understand why you don't use it, because also with a "custom authentication scheme" you can redirect the user to the page he is privileged for.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • How to save a user version of interactive reports in 3.2.

    My users ask me to save a "modified version" of a defined interactive report (eg. the want to change the selected columns and the remember them).
    When I connect to a report as developer I see a "Save Report *" option which asks me if I want to apply the "configuration" as default for all users (this is not my need).
    When I connect as normal user I simply don't see any save option.
    I read in the documentation it's possible (if I understood well) but I din't find the way.
    My reports were developed in 3.1 and then migrated to 3.2.
    Tks
    Tullio

    That can only work if you use an Authentication scheme (so not on a ' Public' page).
    And check the Report Attributes of that Report: Is 'Save Report' ticked?

  • Restrict Form & Reports Pages but allow users to Save their Records

    Hi
    I have a database with Forms & editable Reports pages.
    I have also created a table with certain 'Admin Levels' of access so that users with the 'ADMIN_LEVEL' = 1 cannot access the editable reports pages.
    I find that applying the below restriction stops those users from accessing the reports but also won't allow those users to save any records.
    select USER_ID
    from USERS
    where USER_ID=:APP_USER
    and ADMIN_LEVEL > 1
    I then thought I could create a new page of the report but make it uneditable & use the 'Create' button to save the record to the table, but this doesn't work.
    My question is, how can I restrict access to a reports page but still allow records from restricted users to be saved?
    Thanks

    Hi,
    Firstly, you should look into Authorization Schemes: [http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/sec.htm#BABCAGAB]
    I would suggest you create a scheme to identify admin users called, say, ADMIN_USER. This could be an EXISTS SQL query scheme of something like:
    SELECT 1
    FROM USERS
    WHERE UPPER(USER_ID) = UPPER(v('APP_USER'))
    AND ADMIN_LEVEL = 1Then, on any item within your application, you have an Authorization Scheme setting. You can then set this to either "ADMIN_USER" or "{not}ADMIN_USER" to determine which user can have access to that item. "{not}ADMIN_USER" is any user where the above query would return no records.
    Using this, you could grant access to a page, but stop access to a button and/or process. You don't, for example, have to set a scheme for the page itself (you can leave the setting as "- No Authorization Required -", so everyone can get to the page), but you can then set a Scheme for a button on that page. If the user is an ADMIN_USER and you have set a button for {not}ADMIN_USER, that user won't get the button on the page (you should also make the same setting on any process that this button triggers).
    But, if you set the page's Scheme to {not}ADMIN_USER, any ADMIN_USER will not even be able to get to the page.
    Andy

  • How many characters in users subscriptions of Interactive Report

    Hi,
    Can someone please help me in Apex 4.1. I would like to know how many characters can I enter in users subscriptions (email address) of Interactive Report and where data are stored.
    Thanks,

    Jessi wrote:
    Can someone please help me in Apex 4.1. I would like to know how many characters can I enter in users subscriptions (email address) of Interactive Report and where data are stored.
    Details of interactive report subscriptions are available in the APEX_APPLICATION_PAGE_IR_SUB APEX view. The maximum size of a subscription email address is 255 bytes.

  • Can you create a button that allows users to save content?

    I am trying to come up with a way that allows a user to save their certificate (created using the widget in Captivate 4) if they don't immediately have access to a printer. Is there some code I could attach to a button?

    What about printing to a pdf-document? There are a lot of free PDF-writers around.
    Lilybiri

  • [locked] Allow users to save the PDF file

    I've noticed that by using the form Distribution through either email, Acrobat.com, or a shared folder on the network the user can save the PDF file, correct? Do I understand this correctly? One other thing, what if I don't want to email out but just want the PDF form to be available on my website, will the user still be able to save a copy of the filled form for themselves to print or do whatever they want?

    Okay, is this the paragraph?
    15.12.3 For any unique Extended Document, you may only
    either (a) Deploy such Extended Document to an unlimited number of unique
    recipients but shall not extract information from more than five hundred (500)
    unique instances of such Extended Document or any hardcopy representation of
    such Extended Document containing filled form fields; or (b) Deploy such
    Extended Document to no more than five hundred (500) unique recipients without
    limits on the number of times you may extract information from such Extended
    Document returned to you filled-in by such Recipients. Notwithstanding anything
    therein to the contrary, obtaining additional licenses to use Acrobat Pro or
    Acrobat Pro Extended shall not increase the foregoing limits (that is, the
    foregoing limits are the aggregate total limits regardless of how many
    additional licenses to use Acrobat Pro or Acrobat Pro Extended you may have
    obtained).
    I'm not trying to break any laws but just curious as how Adobe would track that information. In any case, I'm not trying to capture/extract any information from the PDF form. Mainly what I'm trying to do or like to do is just allow the user to save the form. I don't want to capture or extract any information from the PDF form. My form is about three to four pages long and all I'm trying to do is allow the user to save the form that they partially filled and allow them to save the form so they can come back whenever they want to and finish filling up the form and that's it. I'm not looking for any data coming back to me. The user is required to print the form so their is no electronic information coming back. Is this still violate Adobe's limitation above?

  • Hyperlinks in excel don't allow user to save file in adobe reader

    I created a fillable form for users who have adobe reader. Form works. Users can fill the form in and save it (with same name). When users try to access this same form thru a hyperlink in excel, they are not allowed to save the filled in form using the same name. Can this be corrected?

    Hello,
    Adobe Acrobat is used to design and edit forms, while Adobe Reader is only for reading.
    Once you reader extend any form, actually you enable some usage rights on that particular form and once you open that form in Reader, you will be able to perform the action that you have enabled.
    So the first thing is the end user must have Reader not Acrobat, otherwise no use of reader extending the form.
    Now to your question..
    If you design form in LiveCycle designer, you can use validate element to prevent save, put this in XML source like below.
    <config>
       <present>
          <validate>preSave</validate>
       </present>
    </config>
    If you are designing form in Acrobat itself, you can use script to disable menu items.
    For details please look in this blog.
    http://blogs.adobe.com/dmcmahon/2009/11/11/adobe-reader-how-to-disable-toolbar-buttons-and -menu-items/
    -Vijay

  • Allow users to save form responses as text or Word document?

    Is it possible to allow a respondant to save their responsesn to a .txt or .doc file upon completion of the form? 
    If this isn't possible in Adobe forms, does anyone know of another platform that would support this?
    Thanks!

    PDF and TXT or DOC are file types and file types are processed by applications. Adobe Acrobat can save to many different formats, Reader is very restricted as to what formats it can save to. Are you familiar with how Acrobat saves a PDF to the TXT or DOC format? Well it is the entire PDF and not just the fields. To save the content of the fields you need to export the form field data through a different menu option or the use of JavaScript.
    Acrobat can export to a CSV, FDF, or XFDF file type. With proper rights and JavaScript Reader could also save to the CSV, FDF, or XFDF file format. Acrobat with the use of JavaScript could create a PDF report on the fly that consist only of the field data and that file could be saved as a DOC or TXT file. Reader cannot create PDF reports.
    Using a web server and scripting on the web server opens more options.

  • Only allow user to Save as, not Save

    I want my form to be used within the company as a template when opened in Reader. With this I mean that the user never overwrites the original pdf, but is forced to "Save as" ("Save" should not be available as a choice). In other words: the pdf is opened - the user edits the form - the form is saved (with unique name) for documentation purpose - the original pdf is unchanged and can be opened next time with blank fields.
    How do I set this?

    Have a look to these badis: CRM_ORDER_AUTH_CHECK (for authorization purposes), and CRM_ORDER_SAVE (To check the changes at save).

  • Acrobat Pro X - How to allow user to save form with data

    I'm evaluating the trial version to make sure it does what we want.  I want the user to be able to save a form to their PC with the data they've typed in.  In my search of the forums I found an answer that said to look at File > Save As > Reader Extended PDF but for me all of the further sub-choices are greyed out.  Is this a limitation of the trial or am I on the wrong trail?  Does the software have the feature we want, and if so, how do I add it to my form?
    many thanks for your help

    OK I think I answered my own question.  When I re-opened the file and looked at the options they were no longer greyed out.  That's a strange way for software to work, but I guess that's par for Adobe.

  • Allow users to save only to server, not locally?

    Hi there,
    I'm pretty new to Mac OS Server and before I jump in and look at setting my business up with a Mac server I'd like to find out how I can achieve one key requirement.
    Essentially, I want my users to be able to access, open, modify and save documents ONLY on the server. For security and confidentiality reasons, I don't want anyone to be able to save documents from the server onto their Macs.
    Is there a straight forward way to achieve this?
    Cheers,
    Pete

    Hi,
    Agree with Willard Martin, there is no way to prevent users from saving mail with attachment in the Drafts folder.
    Best regards,
    Belinda Ma
    TechNet Community Support

  • How can I allow users to save fillable forms I've created in Acrobat 9 Pro?

    Do I have to use Live Cyle Designer? I require all users to use Acrobat Reader 11 so I do not have to Reader Enable each form, which is a hassle.

    No, you don't need to use LiveCycle Designer. To create a form, first create the PDF and open it in Acrobat. You can then add the form fields by selecting: Forms > Add or Edit Fields
    It will ask you if you want Acrobat to attempt to create fields automatically where it thinks they should be. The form will then be opened in form editing mode and you can add/edit the fields.

Maybe you are looking for

  • Scanner Error 22 on HP Color LaserJet Pro

    I am having the same problem that I see in the community news feed.  I was able to scan about 4 documents and now I'm getting the Scanner Error 22 problem.  Can you please send me the solution to fix this error?  Thank you!

  • Material based sales report

    Experts what is the standard report for sales report( material based ) for particular period . Regards

  • Where is the customer number(KUNNR) stored in VBO3 transaction??

    Where/In which Transparent Table is the customer number(KUNNR) stored in VBO3 transaction?? In VBO3 transaction>>Enter some agreement number>>press enter>>Click on Condition button>>select some value and proceed. Here you will find Customer number(Ku

  • How to add disclaimer on smtp server and use it using utl_smtp.

    We use utl_smtp to send emails. The requirement is to add a disclaimer on smtp server so that any outgoing emails sent using utl_smtp should have this disclaimer. Is that possible and how do we acheive this? --Thank you for any suggestions.          

  • Window boundary on desktop

    I have created a hyperlink to an Adobe document (a map) in a Microsoft Access Database. When I follow the link to the Adobe documen t, I want the floating window that opens containing the Acrobat Proffesional 7 application to be at a specified set of