FORMS 6i question

I am validating a record using when validate record trigger. If the validation returns in a bunch of errors I am displaying all the errors in a stacked canvas in a different block. When I am trying to close the canvas and go back to original block, I am getting the following error.
frm-40734 internal error, PL/SQL error occured. Does anybody why this occurs and how to overcome this problem.

Hello,
the Object Libraries should have come with the Developer Suite. Its FREE.
Install Demos from Developer CD. There must be a form by name Calendar.fmb.
You can learn from this form.
You can get the calendar object from stndrd20.olb.
Antony.

Similar Messages

  • I am trying to download a movie in iTunes and I was asked two security questions. They are different form the questions I chose and whenever I exit and try again, I see that the questions change every time. How can I reset the questions?

    I am trying to download a movie in iTunes and I was asked two security questions. They are different form the questions I chose and whenever I exit and try again, I see that the questions change every time. How can I reset the questions?

    From a Kappy  post
    The Best Alternatives for Security Questions and Rescue Mail
    1.  Send Apple an email request at: Apple - Support - iTunes Store - Contact Us.
    2.  Call Apple Support in your country: Customer Service: Contact Apple support.
    3.  Rescue email address and how to reset Apple ID security questions.
    An alternative to using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • Are these things possible in PDF forms? Questions for the experts

    Hi,
    I have a project where I need to create an online application system, where the user has to fill in a form where the results have to be saved into a database.
    I wanted to create a html based form, but then someone told me PDF can also do cool things, so I’m researching that road.
    I already managed to create a simple form and submitting it to a web service (java servlet in my case) and that works pretty nicely.
    I'm new to the whole PDF form creating and I’m wondering if certain things are possible. So I’m trying the experts in this form for a yes/no answer.
    Are the following things possible with PDF forms:
    1) validation: number & date checks, eg, a number should be higher than 4, or be a valid number/date
    2) If I answer A at question 1, I should skip Question 2 and go directly to Question 3. Is it possible to hide Question 2, depending on what I answered at Question 1?
    3) Is it possible to attach files to the form, like a photo? And also upload it to the web service.
    4) After I submit the form, is it possible to lock the form so that no other changes can be made? In other words, you may only submit once.
    5) Possible to activate the print button after the form has been submitted?
    6) Can a drop-down lists be dynamic? Instead of hard coding the list, calling a web service to fill the values?
    Thanks in advance for any insight,
    Kind regards
    Ido

    Hi Paul,
    thanks for the quick answer. No my next challange is how to do things
    1) validation: number & date checks, eg, a number should be higher than 4, or be a valid number/date
    <answer> Yes
    I think this is done through the object properties
    2) If I answer A at question 1, I should skip Question 2 and go directly to Question 3. Is it possible to hide Question 2, depending on what I answered at Question 1?
    <answer> Yes
    This is done with subforms and scripting?
    3) Is it possible to attach files to the form, like a photo? And also upload it to the web service.
    <answer> PDF does support the ability to have attachments. They would be includeed as part of the PDF so you woudl have to submit the entire PDF and then extract the attachments when you get the file to the server. Note that you will require to Reader Extend the document to allow a Reader user to add the attachment. This is not a requirement if you are using Acrobat.
    Have to look into this one.
    4) After I submit the form, is it possible to lock the form so that no other changes can be made? In other words, you may only submit once.
    <answer> Yes
    Also through scripting?
    5) Possible to activate the print button after the form has been submitted?
    <answer> If you add a print button on the form then the answer is Yes. The application that houses the PDF will jhave print capabilities and that one is much more difficult to hide. You can set it up so that the form cannot be printed then return back the locked version with printing enabled but a round trip to the server is required for that.
    Print button will be fine by now, probably also done by scripting
    6) Can a drop-down lists be dynamic? Instead of hard coding the list, calling a web service to fill the values?
    <answer> Yes but the form will require LiveCycle Reader Extensions if you are using Reader. Reader Extensions is not required if you are Acrobat.
    Ahh, perhaps fixed list will be ok for version 1

  • Acrobat 9 PRO - Forms Tracker Question

    1. When distributing a form via acrobat.com to multiple targets, can I keep email addresses confidential from individual members on the distribution list?
    2. When distributing a form to multiple email addresses simultaneously, is it possible to create a distribution file for each email address on distribution (vs. just 1 file)?
    3. Is there a way to create a more meaningful distribution file name than simply file + "0001"? For example, can I use information about the distribution targets (e.g. email address) to name the file?
    4. Is there any tickler functionality (e.g. If I haven't heard from this person in 7 days, remind me)?

    I would also love answers to these questions.
    Livecycle and acrobate seem pretty useless whenit comes to tracking and creating unique IDS for form distribution - they expect you to buy Livecycle ES and runa server!
    Also there seems to be no documentation about the Javascript(?) that is added when you use the distribution wizard, such as the askuseridentity and askemailclient methods - You would have thought that this would be the basis for at least a tutorial! see below.
    form1.ButtonField1::click - (JavaScript, client)
    //@@SUBMITURL "mailto:QQQQQ@XXXXXXXXX?subject=Submitting Completed Form&body=Instructions to add this form to a responses file:\n1. Double-click the attachment.\n2. Acrobat will prompt you to select a responses file.&ui=false"
    AdobePatentID="B643"
    var AdobePatentID = "AdobePatentID=\"B643\"";
    // initiate some constants
    var METADATA_ANNOT_NAME     = "adhocFormState";
    var PROP_RESPONDENT_NAME    = "respondentName";
    var PROP_RESPONDENT_EMAIL   = "respondentEmail";
    var currentDoc;
    if (typeof(xfa) == "object")
        currentDoc = event.target;
    else
        currentDoc = this;
    // Only on Viewer/Reader older than 9.0, we'll do the following tasks.
    var bAnonymous = false;
    var bContinue = true;
    if (app.viewerVersion < 9.0) {
        // show the email/name dialog if not anonymous
        if (!bAnonymous && !currentDoc.dynamicXFAForm) {
            var result = currentDoc.askUserIdentity(currentDoc);
            if (result == null)
                bContinue = false;
            else {   
                var annot = currentDoc.getAnnot(0, METADATA_ANNOT_NAME);
                if (annot != null) {
                    var arrProps = new Array();
                    arrProps = annot.contents.split(";");
                    currentDoc.setProperty(arrProps, PROP_RESPONDENT_NAME, result.name);
                    currentDoc.setProperty(arrProps, PROP_RESPONDENT_EMAIL, result.email);
                    annot.contents = arrProps.join(";");
        // show the select client dialog
        if (bContinue) {
            var result = currentDoc.askEmailClient(currentDoc);
            if (result == null)
                bContinue = false;
            else if (!result.send)  {
                app.execMenuItem("SaveAs");
                bContinue = false;
    // submit the form
    if (bContinue) {
        var rawURL = "AAAAAA@XXXXXXXXXXXXXXXXXXXsubject=Submitting Completed Form&body=Instructions to add this form to a responses file:\n1. Double-click the attachment.\n2. Acrobat will prompt you to select a responses file.&ui=false";
        var submitURL;
        if (app.viewerVersion < 9.0)
            submitURL = "mailto:" + rawURL;
        else
            submitURL = "mailto:" + escape(rawURL);
        currentDoc.submitForm({
            cURL: submitURL,
            cSubmitAs: "PDF"

  • UIX Search Form "difficult" question

    OK,
    Say you dragged and dropped UIX search form onto the page. When you start the page it will render the result table without specific where criteria set, ie SELECT * FROM TABLE;
    Questions:
    1) How to add default WHERE clause for the first time when the page opens ie I want to have result page something like SELECT * FROM TABLE WHERE PARAM='bla';
    2) Similar question but this time how to pass PARAM from some previous page?
    Please help

    1. Try setting an initial where clause on the viewObject that you used to construct the search form. You can do this in the BC4J editor (wizard) for your viewObject.
    2. you would have to write an event handler and programmatically set the where clause on your viewObject.

  • Basic Security & form printing questions.

    Hi, I am not an Oracle Forms developer yet, just gathering info, but I have 2 probably simple questions for you forms experts out there that maybe you can help me with.
    Lets say that this new application will have 10 users and I create a main menu with 5 categories. Can forms allow me to give 4 users read/viewable rights to, lets say 3 categories,instead of all 5 categories? Bsically I just need to know if it offers some kind of security that I can create for each individual user.
    The next question is if I create 10 forms that is supposed to 'retrieve' data, but I need to also have these 10 forms print out 'without' the data. Do I need to create 20 forms, or is 10 sufficient and oracle would allow me to print the forms out either with or without data.
    Thank you in advance
    null

    There is menu-level security, meaning that only users that have certain roles may execute certain menu choices.
    There's no special security at form level, apart from the database level security.
    If a database user does not have insert, update & delete priviledges on a datablock in the form (but has the select priviledge), then, he won't be able to change the data in that block using the form, and if he'd try to, he'd get an error when trying to commit the changes.
    Well, you may use set_block_property(your_block, update_allowed, property_true) or set_block_property(your_block, update_allowed, property_true) in the when new-form-instance trigger to make the form behave as you will when opened by a given database user.

  • Adobe Form urgent questions!

    Okay, I've just created a form using Adobe Designer, one that contains fields that someone can fill out when the form is open with Adobe Reader. The form I've created specifically is for a medical practice, and the first few fields are the doctor's last name, first name, and middle initial. Is there any way that, when I click Save As, a file name is automatically created in the Save As box that contains the last name, first name, and middle initial? I'd like the file name to look like this: LastName-FirstNameMiddleInitial.
    Also, this is a form that the people who work at this practice will be using regularly. After the doctor's name fields are a few fields for the date, time in, and time out. Right now, we'd like the date to look like this: 07-16-2008. We'd also like the time in and time out to look like this: 12:00. I'd like it so that, if some data entry person at this medical clinic is tying in the date, and, say, they type in the date as 07/16/2008, it is automatically formatted to 07-16-2008 with the hyphens. Same with the time. Everyone types things in differently, and I'd love to know what I need to do so that it's automatically converted to the date/time design I listed above.
    Help!

    Mike, in response to your questions:
    The purpose of the signature field is mainly to expand on the services we offer in terms of going paperless. We want to help our clients STAY paperless, which means preventing the need to print off more paper. This form I'm working on is for a medical practice and is simply a doctor's form, with field for the doctor's name, date/time, a field for any info the doctor would like to input, and then the electronic signature field.
    After the PDF is created, it is more than likely saved, which presents other problems, as I've now learned you can't save with Adobe Reader.
    As far as looking up data on the form in the future is concerned, I'm pretty sure that's a big yes. I don't know that this particular PDF would be updated constantly, but I'm sure it will need to be retrieved at some point. How can the data be inputed so it can be retrieved from a database?
    Geo, how exactly do I go about providing JavaScript? I know how to create a button in Designer, but I've had little experience with JavaScript. I've downloaded a program (PF Merge?) that might allow me to link the form I've created to a database, but I'm not sure how it works yet. :-) Is that what you were referring to as far as our comments about an SQL database is concerned? Is there another way I can create a connection to a database, say, a slightly easier way? :-)
    Thanks!

  • Savable pdf form feature question

    Please give me steps to make pdf form savable with adobe acrobat X. I see step for Adobe Acrobat Pro - Choose Advanced>Extend Features in Adobe Acrobat Reader, but I don't have Adobe Acrobat Pro

    I think misread your question. To Reader-enable a document with Acrobat 10, select: File > Save As > Reader Extended PDF > Enable Additional Features

  • New LiveCycle Form Design Question

    I'm an using LIveCycle v8.2.1. Currently we have several Word Perfect forms that are build off of macros. The user will open the Word Perfect form & a box will pop up asking different questions such as name, address, location, etc & after the questions are answered all of the answers to those questions are dumped into certain areas of the form with pre-written words.
    My question is, can I do the same with Adobe LiveCycle? I know I can insert drop down boxes & stuff with LiveCycle but is the pop up boxes so users can enter their name, To, From, etc possible?
    Basically, I just want to be able to create something for the user to opne a form named memo.pdf. As soon as they open it, they get a pop up box asking them for their name, who this memo is going to, & subject. As soon as they enter the last item (subject) & click next or OK, all of that information from the pop up boxes are populated to the memo in desigated areas...is this possible?

    Hi,
    Yes, it is possible. You can use the execDialog method. This is quite involved to do from scratch (I haven't done it), but http://www.windjacksolutions.com do have an Acrobat plugin that makes developing dialogs much easier.
    Hope that helps,
    Niall

  • Process and Form version question

    a few questions related to the versions of Forms and Processes:
    1) in WorkSpace, launch a process, then put the form in "Draft".
    then modify its XDP, the form gets a new version in the repository.
    what's going to happen to my Draft?
    when I launch the Draft again, will it use the new version or old version of the XDP?
    2) launch a process, starts the workflow,
    before the workflow completes,
    (say, it has 5 user tasks, only 3 users have processed it)
    I update the process map and/or the forms.
    will that unfinished process instance follow the new workflow map? or the old?
    3) when there are unfinished 'running' process instances in the system,
    I deactivate the process.
    what's going to happen to those unfinished instances?
    will they still be able to complete?
    4) when there are unfinished process instances in the system,
    but I don't want anybody to launch any new instances from WorkSpace,
    how do I do that?
    do I remove its "TaskManager" endpoint? or?
    thanks
    James

    1)Itll re-render the form so it will take the latest version from the repository.
    2)It will follow the original process. Only initiating new processes will follow new process map. As for the forms, the new version will take effect immediately.
    3a)what's going to happen to those unfinished instances?
    Theyll stay in a running state in the database
    3b)will they still be able to complete?
    Not until you re-activate the process.
    4)Yes you can remove/disable the endpoint.
    Jasmin

  • HCM Processes & Forms - Some questions about the PD Processes

    Hi Experts,
    At my Organisation we use HCM Processes and Forms and Organisation Management and MSS to manage Position Based Security (PBS).
    The MSS Managers have requested a form be developed which they can use to extend an existing Position to Employee temporary assignment (IT1001 S-P with A081 relationship) which is due to expire within the next 30 days. We recently upgraded to ECC EHP6 and I thought I would now have a go at developing this Form.
    While researching in SCN and SAP Press books on the ‘HCM Processes and Forms’ topic, I have discovered a lot of information that has assisted me so far in progressing this solution.
    There are a few givens that I have confirmed so far, which are as follows;
    Since we are using Positions (Organisation Management), the only option available here is to use the PD Process, which implies using the SAP_PD Back_End Service. Therefore this become the baseline to build upon.
    While researching in SCN and SAP Press books on this subject I could not find relevant information about what is possible using the SAP_PD Service to achieve my solution design for the above requirements and thus my post to the HCM P&F Community for assistance.
    My questions are as follows;
    In the solution design, I was considering to use the “Process without Start Object” or “Mass Start” to skip Step 1 - “Selection Object” and use a Generic Service to get all the positions for the Manager (along the lines of the SAP Standard Generic Service - find Positions in Manager’s area of Responsibility) and only retain the Positions where the End Date for the IT1001 A081 relationship in between the Effective Date and Effective Date plus 30 days. This should provide me with all the positions under the Manager that have the A081 relationship with the assigned employee that are about to expire within the next 30 days.
    I want the result presented on the Form in a Table format so that the Manager has to enter the Extension Start Date and End Date for the new assignment period.
    Is this possible using Standard Design Time functionality?
    2.       Or Instead of Question 1, could I use OADP to achieve the same result using a custom search class to return a list of multiple objects (Positions)which is used to populate the form?
    3.       I get the impression that the ‘Mass Start’ process is mainly for multiple employees. Can it also be used for multiple PD objects?
    4.       I get the impression that if I used the ‘Mass Start’ option I could only use this if I was CREATING a new object or assignment? (I take it that you cannot use the Mass Start option to CHANGE multiple existing objects. Only because I have not seen any SAP Standard examples of this yet!)   Please confirm if this is possible?
    5.       Has anyone used the “Query for Mass Start” option on a Process? How does that work? (Could I write a ‘SAP Query’ to get the positions I am interested in under the Manager?) Is there a sample SAP Standard process that uses a query?
    Your assistance would be greatly appreciated.
    Thanks in Advance.
    Regards,
    Steve

    no limit
    no limit
    limitations of what?
    you can use forms on mac, pc, and other systems

  • FORMS & REPORTS QUESTIONS.

    Hi,
    Can any one provide me a good no of Forms and reports question to prepare for the interview ?
    Thanks in advance .

    If I was an interviewer, and 60 seconds to test, I'll ask somme question like:
    What kind of blocks exist?
    How do you build a master detail form ?
    What kind of trigger do you use for field validation ?
    how do you manage graphic homogeneity ?
    how do you build a LOV ?
    Patrick.

  • New Form Creation Question

    I have my form created with all the information I need in it. I also have my TAB order the way I need it to be. My question is, is there a way for me to make the current field I'm in be highlighted a certain color so the person filling out the form will know where they are at quickly instead of looking for the blinking curser? I'd rather have the field highlighted a color. Thanks

    Sure, on the enter event you could type in:
    this.border.fill.color.value = "0,255,0";
    to turn the background green, for example, and then on the exit event of the same field:
    this.border.fill.color.value = "255,255,255";
    to change the background back to white when the user leaves the field. You'll need to set the scripting language to javascript for these to work.

  • Manual Tabular Form Formatting Questions

    Hello, this is my first time using a tabular form and am now trying to tackle creating a manual tabular form. So, now I have some questions on formatting.
    1. Is it proper on this forum to lump several similar questions together or should these be separate postings?
    2. I have a hidden column that I do not want to display on the screen at all. However, I need access to the column later when saving. I am currently using the htmldb_item.hidden function to retrieve the field. This works. However, the column still displays but the value does not display. I then tried to uncheck the show attribute for the column to unchecked. Unfortunately, if this is not selected, when using the htmldb_application.g_f01 function, I would receive an error as if the column did not exist. How do I make the column totally hidden so that it does not display at all?
    3. I have a number column where I want the column to display in dollars (i.e. $100, 000). I tried to set the number format on the column in the report attributes. However, no luck. To retrieve the column, I am using the function htmldb_item.text to retrieve the column. I am not sure if I should be able to format the column in the report attributes or if the htmldb_item.text function has a parameter that I could use for formatting. Suggestions?
    4. Similarily, I would like to right justify this column. How is this accomplished?
    Thanks

    Hi everyone,
    Is there any way to not to display the hidden columns in the manual tabular forms,when we create the manual tabular form using htmldb_item.hidden.
    But need to refer that column in the process.
    In the wizard generated tabular form if the column is of type HIDDEN we dont see that column on the report.
    How can i achieve the same in manual tabular forms..
    Thanks

  • Adobe form distribution question

    Form created in LiveCycle and distributed with Adobe Pro...3 choices for distribution.
    1) Through Acrobat.com (which stores the responses on Adobe servers)
    2) By email (This is not an option for me because these forms can not invoke an email client on submission from the user. --> group policy locked-down machines.)
    3) To an internal server
    Option 3 works great for me as long as the person submitting the form is on my LAN.  The problem is that we have users not on the LAN submitting the form.  My repository for the responses needs to be accessible from the internet.
    What I tired:
    Shared folder on server.  Full permissions for "everyone" just to avoid that as a problem during configuration....
    Folder web shared by IIS.
    Trying to use the distribution wizard to set this up for that folder.  It wants a UNC path but that will not work for external  users and no matter what http path I put in there is tells me it is  unable to create the shared folder....
    Obviously, if the forms can distribute and submit to Acrobat.com then they can submit to my own server.  The question is how can I do this?  Very frustrating.

    Please repost to either the LiveCycle Designer forum or the acrobat.com forum.

  • Newbie with fill-able form distribution questions

    Please can someone help me understand a few things about creating electronic forms in LiveCyle Designer ES so our HR department can:
    Make the blank forms available on our Intranet
    Make the forms fill-able by our own employees with Intranet access and Acrobat Reader 6 and above.
    Allow the form and the form data to be emailed back to HR as an PDF attachment
    Allow HR to send out the part filled form as an email attachment to Authorising managers (numerous people involved in the authorisation process)
    Allow the authorising managers to submit their authorisations back to HR
    Allow HR to store and print the completed forms with all the authorisations (not digital signatures, just email addresses I think)
    Is the above possible just using LiveCycle Designer ES (stand-alone version) to create the forms, saving as 6.x, setting the compatibility tab settings correctly, sending to HR so they can do the distribution bit in Acrobat and then putting the form_distributed.pdf file on the Intranet? Or do we need other tools to accomplish the above?
    Best Regards to all.

    I'm pretty sure this is possible with a standalone version of LiveCycle Designer. I don't believe any of the functionality you described requires a LiveCycle server. My only caution would be the use of Adobe Reader 6.0. At the very least, if you can push the use Reader 7.0 (or even better 8.0), your ideas will function better. There is a pretty big gap from 6.0-7.0. If you'd like to discuss this further, feel free to email me.
    Hope this helps!
    Ryan D. Lunka
    Cardinal Solutions Group
    [email protected]

Maybe you are looking for