Forms does not show runtime errors

I've made a simple (very simple) form with a base table block.
When I run it, and an error occurs, it doesn't show the error message...
Does anyone know what could be happening?
thanks in advence

Hi
1. Did you put any code on on-error trigger? if it is there reomove and try.
2. Is console window property set to right window?
3. Do you want to see the exact oracle error ? then after the error goto help menu --> show error.
Cheers
Gouri Sankar

Similar Messages

  • Date field submited via my custom form does not show in mysql database

    I created a form with the custom form wizard with a birthdate field having the date picker feature. i set the birthdate field to sumit date as date datatype. My birthdate column in mysql database is datatype date. but when i submit the form the date does not show in mysql database. what should i do pls. is the problem with my form or with my database birtdate column.
    Thanks

    zeeztaz wrote:
    iis the problem with my form or with my database birtdate column.
    Thanks
    please post the complete code of the page which contains that form, otherwise it will be impossible to detect the possible reason for this error.
    Cheers,
    Günter

  • Change Password does not show Correct Error Message

    Hi,
    I am using a password policy which says that Characters not allowed are @&()|\";'<>+=/?. :}{][
    When the user try tochange the password and try to put any of the above character,
    then OIM Web console shows an Password Policy error, which is correct.
    The Problem comes in when the Webconsole does not show the full range of the unsupported characters,it only shows the below error
    Password Policy Error
    The following password policy rules are not met:
    Invalid Chars=/?. :}{][
    Ideally it should have shown the full set of unsupported characters, which led the user to do the mistake again by selecting same old special charcter.
    Although,the logs at the back end, shows full set of characters.
    My Question ,is how could this be fixed,what customization has to be done if any ,for reflecting this change on WebConsole page.
    Cheers
    Ak

    Hi,
    I resolved the issue by changing the Characters not allowed to =@&()|\";'+/?. :}{][
    instead of @&()|\";'+=/?. :}{][
    What i figured out is all the charcters after = are only getting printed at the Web Console, so i reshuffle the charcters and put = in the beginning.
    And it is working fine.....
    Strange huh.....:)
    Cheers
    Ak

  • Form does not show up after been put in portal page

    I have created form application and tested it in 9iAS but when I put it in Portal page, It does not show up in the Portal page. The report that I created under the same Application does show up. However, it does not show the form. I have check the Access and everything looks right. (I even grant it to the public and still does not work).
    Any help would be appreciated.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by chetan.kashyap ([email protected]):
    Johnny,
    This looks strange. We haven't encountered such problem. Could you pls give us more details. Like:
    Are you using "Inherit Privilege from Application" ?
    Are you using Tab page/ Normal Page.
    If tab pages, have you set tab level security?
    Are you able to run that particular form from application? (Pls check it has a Valid production version).
    Are both forms & reports in the same application?
    Is this problem occuring for only a particular form or for all the forms?
    If you could provide the STEPS that you did..
    Thanx,
    Chetan.<HR></BLOCKQUOTE>
    Chetan and Johnny,
    I have the same problem as Johnny. Chetan, in answer to your questions:
    1. Yes, I am using "Inherit Privilege from Application"
    2. I tried it both on a page and on a tab and checked security, following the directions in "Building Portals, Release 3.0.8" Using "Portal30" login, access "Manage" etc.
    3. Yes, the form runs in Application, but not as a portlet on a portal page. We are using the standard demo configuration, Oracle 8i (enterprise ed.) and Oracle9i Application Server (minimal ed.).
    4. Yes, valid production version.
    5. I tried running reports and forms from same application and from different applications. Still does not show up on portal page.
    6. It occurs for all forms.
    7. Steps: As I indicated, I followed the directions closely in "Building Portals" which builds "Form based on table or view", "Publish to Portal" I even tried the database sequence (see page 4-27) and added that to the form configuration. I'm running it on NT 4.0 (service pack 5). The software was downloaded from the Oracle site.
    null

  • "edit" link from report to form does not show values

    I created a report and an attached form on two different pages. The report is a query combining two tables with outer joins. When I click on the "edit" button on the report, I get forwarded to the form page.
    My problem: When I get forwarded to the forms page, I get an empty form, and not the data from the column as expected. The "edit" button behaves more like the "create" button. Anybody an idea what I could change to be able to edit the column data?
    Thank you.

    I've met the similar problem with previous releases (1.5.0 and 1.5.1) without any objective reason.
    As I suggests, sometimes HTMLDB lost current session state. When this occurs, ALL links from reports to it's forms does not transit primary keys. I've just completed application development and I've met this behaviour every months.
    As a workaround I found folowwjing process:
    Come into administration tab, selet "Report with option to purge current session state". When I purge current session state and re-login to application, all report-form links will start to work.
    I don't know, what is the issue, but I met it so soon on my local HTMLDB environment.

  • Form does not show "new" records from SQL Database

    I have a PDF form that pulls data from a SQL Server.  The fields in
    the PDF are populated from the database after selecting a specific
    record from a drop down and then clicking on a button labeled "Fill".
    The problem is that the dropdown does not display new records that
    have been recently added to the database.  I have to open the form up
    in designer then save it, (*note - I change nothing at this point.)
    Then when the form is opened back up in Adobe the dropdown show all
    the records including the new ones.  I even put a manual refresh on
    form to try and fix this an it did not help. Seriously stumped.
    Any help is greatly appreciated.
    Here is my code for the dropdown.
    ++++++++++++++++++++++++++++
    topmostSubform.Page1.JobSelect::initialize - (JavaScript, client)
    var sDataConnectionName = "BBCC"; // example - var sDataConnectionName
    = "Test";
    var sColHiddenValue = "ContractAdmin_Key"; // example - var
    sColHiddenValue = "Dept_ID";
    var sColDisplayText = "JobDescription"; // example - var
    sColDisplayText = "Dept_ID"
    // Search for sourceSet node which matchs the DataConnection name
    var nIndex = 0;
    while(xfa.sourceSet.nodes.item(nIndex).name != sDataConnectionName)
    nIndex++;
    var oDB = xfa.sourceSet.nodes.item(nIndex);
    oDB.open();
    oDB.first();
    // Search node with the class name "command"
    var nDBIndex = 0;
    while(oDB.nodes.item(nDBIndex).className != "command")
    nDBIndex++;
    // Backup the original settings before assigning BOF and EOF to stay
    var sBOFBackup =
    oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("bofAction");
    var sEOFBackup =
    oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("eofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayBOF",
    "bofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayEOF",
    "eofAction");
    // Clear the list
    this.clearItems();
    // Search for the record node with the matching Data Connection name
    nIndex = 0;
    while(xfa.record.nodes.item(nIndex).name != sDataConnectionName)
    nIndex++;
    var oRecord = xfa.record.nodes.item(nIndex);
    // Find the value node
    var oValueNode = null;
    var oTextNode = null;
    for(var nColIndex = 0; nColIndex < oRecord.nodes.length; nColIndex++)
    { if(oRecord.nodes.item(nColIndex).name == sColHiddenValue)
    { oValueNode = oRecord.nodes.item(nColIndex); } else
    if(oRecord.nodes.item(nColIndex).name == sColDisplayText) { oTextNode
    = oRecord.nodes.item(nColIndex); } }
    while(!oDB.isEOF())
      this.addItem(oTextNode.value, oValueNode.value);
       oDB.next();
    // Restore the original settings
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sBOFBackup,
    "bofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sEOFBackup,
    "eofAction");
    // Close connection
    oDB.close();
    ++++++++++++++++++++++
    Here is code for the refresh button
    +++++++++++++++++++++
    topmostSubform.Page1.Button27::click - (JavaScript, client)
    sourceSet.BBCC.requery();
    +++++++++++++++++++++

    pguerett wrote:
    The other thing that might be happening is a refresh issue on the DropDownList. Try adding the command xfa.layout.relayout() after the database connection has been closed.
    Paul
    Good catch Paul!  Would you believe that I have been trying to get this resolved for almost two years! Works perfect now.
    Thank you,
      - Eric

  • Edit/Display form does not show site columns after upgrade

    https://social.technet.microsoft.com/forums/sharepoint/en-US/580111d4-72ca-4193-87ab-1dfd6082fa88/document-set-library-column-not-showing-up-on-edit-form
    Hi all,
    I don't think this is related to the above question, but the linked "solution" is as good as I can come up with, however it looks like its possible that ALL the libraries in the collection are suffering the same situation...
    WHATS HAPPENING:
    our site was migrated to 2013 from 2010 from 2007 and is running in compatability mode around 6-18 months ago. I'm pretty sure the old system is gone too - database backups might be obtainable... not sure.
    There are a bunch of "site columns" that are used consistently across the collections libraries (there seems to be a general avoidance of "content types", don't ask me why, I don't know, I also don't know what would be involved in moving
    them all to content types as many of the sites "views and webparts" use the content type columns to surface things all over the place, so I suspect it would be a big job), but folks have recently noticed that some documents are missing from various
    pages (webparts that are gathering documents from these columns values).
    But the problem is that it seems that since the update most (all?) of the document libraries NO LONGER enforce the requirement and litterally only show "name*", and "title" in display and edit properties...
    Any ideas on how to get things back to showing the "proper" forms (I can only guess what this was from documentation and screenshots and general guessing based on the "commonness" of the columns in question)? Or is there a way to merge
    or migrate "columns" to content types in some way that is either "collection wide" or non-breaking?
    ANY assistance would be greatly appreciated!

    So just to be sure are you saying that '2010 compatabilty mode' is causing these issues?
    Just to be SUPER clear from my end this is what I'm seeing as an example;
    For a collection
    with site columns
    many but not all lists
    many but not all list items
    --> are missing valid data in the site columns that have been registered for that list.
    sample:
    name          modified by    doctype     department
    item1.docx   username   <blank>  <blank>
    item2.docx   username    WorkInstruction    Planning
    if you click "edit properties" you are presented with ONLY the (I'm guessing) content types fields (eg: for Document you get Name and Title) and NONE of the other fields that should be specified.
    However if you hit "save" you can see that the data in these fields returns to the "list view" (however it does not re-enable these fields from being active in the View/Edit properties pages).
    Is this something that can be fixed? Or are you saying that we need to backup the DB and restore to a FULL version (not in compatability mode) of SharePoint2013? Or are you saying we need to revert to our PRE update backup and do something?
    Its been many months since thsi upgrade was done and the system has changed a lot, so you can imagine we are reluctant to loose much of these changes...
    Bazinga!

  • @throws ASDoc tag does not shows the error name

    Hi,
    I have a problem with the ASDoc tool. I have the follow
    comment:
    quote:
    * @throws SecurityError if SecurityError is thrown while
    trying to connect to the server.
    The resulting HTML is:
    quote:
    Throws:
    - if SecurityError is thrown while trying to connect to the
    server.
    As you can see everything is ok except that the error name is
    not shown. In other words I expect this output:
    quote:
    Throws:
    SecurityError - if SecurityError is thrown while trying to
    connect to the server.
    Does anybody else have the same problem or I'm not doing
    something right?
    Thanks a lot!

    Hi Frank
    Thank you for replying, and wish to see you again. I have met you in last Advanced ADF training in Feb 12
    I have changed the following line to be :
    Throwable ex = (Throwable) requestMap.get("java.lang.Exception");
    But still the get method returns null
    I have listed all the requestMap keys, and did not find any exception object.

  • Insert into viewobject in app module does not show entity validation errors

    Hi everybody,
    I am using JDeveloper 10.1.3 and ADF BC/ADF Faces. I want to have a button on one of page and I want that whenever user clicks on this button a records is inserted in a table. so I created an application module service method and exposed it on the client interface and the put it on my page using Data Controls Tab.
    Here is some part of my code in application module :
    public void setMember() {
    HrMembershipsViewImpl membershipView = (HrMembershipsViewImpl)am.findViewObject("HrMembershipsView1");
    HrMembershipsViewRowImpl newRow =(HrMembershipsViewRowImpl) membershipView.createRow();
    newRow.setAttribute("MemberId",memberID); //this.getCode());
    newRow.setAttribute("MembState","1");
    newRow.setAttribute("CardState","1");
    membershipView.insertRow(newRow);
    trans.commit();
    When this method tries to insert a record which violates a validation rule in the Base Entity Object, the screen does not show any error regarding to violating the business rule but nothing is inserted. I changed my code and captured the exception around the commit and I found that a JBO-27023 Exception happened after commit ( which was very surprise since the page does not show any error).
    Now I can change my code to to the following to show that error happened.
    public void setMember() {
    try {
    trans.commit();
    catch (JboException ex) {
         getDBTransaction().rollback();
         throw new JboException ("There is an error during commit");
    throw ex;
    But I believe it shouldn't be like this. Normally, we should be able to insert programmatically in a view and if the business rules are violated we should get the violation error messages. If I use the above mentioned method we can not understand what business rules are violated.
    Does anybody know what is wrong with my solution? I have seen a lot of times that using application module is the best way for adding functionality to the application pages but I really feel that something should be wrong if we can not get business rule violation messages.
    Any help or references would be highly appreciated.
    Thanks in advance,
    Navid

    Hello Navid,
    it should work without try-catch.
    1. When you add try-catch, does your error message appear on the page?
    2. Does your page contains af:messages component?
    3. Does your button have any navigation to another page?
    Rado

  • MacBook Pro late 2013 does not show login window after waking from sleep

    MacBook Pro late 2013 does not always prompt for login, but opens directly to desktop, even though security settings are setup to prompt for password after 5 minutes. Up to now, this only has happened on battery, machine goes to sleep or lid is closed, 10 minutes pass, lid is opened and desktop is shown instead of lock screen. Console shows, that the machine was actually sleeping (10 min no log entries) and also does not show any error in regards to login window.
    This behaviour occurs randomly and I could not track down any root cause/behaviour, yet. Sometimes everything behaves as it should.
    Any ideas?
    Thanks
    marcus

    Count me in, I have the same issue, and from what I read here, it looks like a Yosemite/SSD related issue ?
    I'm not 100% sure if it started when I put a SSD in my old iMac 2009 (as a fusion drive) or if that's after that when I upgraded to Yosemite...
    I did disable auto poweroff like suggested in another thread : Mac freeze during the night sleep.
    sudo pmset -a autopoweroff 0
    We'll see if it helps.
    It happens toughly a couple of times a week.

  • Report does not show the main section while calling from forms 6i

    Hi
    I am running report from report from forms 6i but is does not show the data in main section, where as the data in the header section is ok.
    But when i run the same report independantly from report builder it show the both header and main section with relevent data.
    pl solve the matter
    thanks in advance

    can you tell me more about this, you might check if you are using different users when you call this report or if the user has all privileges to see all tables in this report

  • ESS Salary statemenr: Form Does not exist error

    Hi Experts,
    As mentioned in may threads, I have changed the form name for salary statement to the custom form name in SPRO- --> HRFOR
    But the portal displays "Form does not exist" error. Could not find a solution in any existing post on sdn.
    Urgent help needed.
    Thanks,
    Shobhit

    Hi,
    If your payslip form is desinged in PE51, then follow these steps.
    Employee Self-Service-> Service-Specific Settings-> Benefits and Payment-> Salary Statement-> Form Using HR Forms Editor (PE51)
    a. Edit Feature HRFOR: Maintain the constant $CEDT$ for MOLGA 40 RCLAS  +01(03).
    b. Enter Payslip variant in EDTIN feature
    c. Maintain smartform name in EDPDF
    If your payslip form is designed in HRFORMS, then enter the form name in HRFOR feature and enter the variant in EDTIN.
    Cheers!!
    Ashutosh

  • I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview

    I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview shows the contents, I can't open the document (Powerpoint) and I can't move the document. I tried "Copy" and paste but it doesn't work. I tried "Share" with Airdrop and iChat, but the file is inaccessible. When i try to rename the file, it says the filename is too long.
    When I try to open it, it says the alias is not good, and asks if I want to fix the alias. I'm afraid to do that and lose all access to this document.
    Right now, it feels like a ghost document - it is on the computer intact, but it is in an undisclosed location and inaccessible.
    Please help!!

    I was able to resolve this by repairing permissions, even though no permissions error was listed specifically for that file.
    I could also have recovered it through Time Machine, but I'm interested in knowing how not to have this happen again!
    I was afraid of rebooting and possibly losing track even of the ghost.
    I did not try EasyFind - I'll keep that in mind next time.
    Thanks for all the comments.

  • Forms 10.1.2.0.2: Web Form does not appear at Runtime with CALL_FORM

    Hello there,
    We have a number of forms we're executing as web forms using Oracle JInitiator 1.3.1.22. We have one form in particular that, when a button is pressed, is supposed to call another form via the CALL_FORM built-in.
    We are passing a parameter list to the new form, and executing the CALL_FORM built-in with these Setting Parameters:
    CALL_FORM( formmodule_name => '<OUR_FORM_NAME>',
               display         => NO_HIDE,
               switch_menu     => NO_REPLACE,
               query_mode      => NO_QUERY_ONLY );When we run the starting form as a web form (via JInitiator 1.3.1.22), and press the button to call the other form, all buttons on the starting form are greyed-out/disabled. The called form does not appear.
    I have carried out a number of checks with my own debugging tool (stored procedure writing messages to a table via an autonomous transaction), and forms focus is definitely been transferred to the called form. For example, the WHEN-NEW-FORM-INSTANCE trigger in the called form is definitely being executed.
    I suspect this problem is JVM-related rather than Forms-specific. My current plan of attack is to request the Application Server Logs tomorrow morning (I don't currently have access to them) and see if I can find any Java-related error messages. However, if any of you reading this have experience of this type of problem and can offer any assistance, please don't hesitate to let me know your suggestions/advice.
    Cheers.
    James

    You could check the settings of the window in the calling form. If its set to "Modal" or "Dialog", and the window in the called form has other settings, the new window might be opened "behind" the old window.

  • Sometimes JavaFX form (BorderPane) does not show correctly

    We have a problem with a JavaFX application running on Java 7. Sometimes a form (BorderPane) does not show correctly – it seems to be transparent (i.e. content previously shown at the same place is still visible). Controls seem to be present and respond to events – e.g. we can close the form by blindly clicking the appropriate button. Once the issue happens it is persistent, i.e. next time we open the form, it behaves the same.
    We have no reproducible scenario leading to the issue. It just happens here and there – we have not been able to identify any pattern yet.
    Additional information:
    the form (BorderPane) is loaded during application start-up but it is not shown initially,
    to show the form we remove previous contents from a StackPane and add the form instead,
    to hide the form we do the reverse.
    Do you have any ideas how to diagnose the problem? Where to look first? What kind of diagnostic code could we put in the application that would help us?

    I am unaware of any such issue being reported previously.
    Without a reproducible test case, you are unlikely to get much assistance.
    Other than the creation of a minimal test case which reproduces the issue, I could not even advise how you might go about diagnosing and fixing your issue.
    There were many bug fixes implemented for Java 8.
    I advise you to upgrade your test environment to the latest Java early access release (currently Java 8u40) and test to verify if your issue replicates in that version.
    If the issue still reproduces, create a bug report which includes your test case and full environment details.

Maybe you are looking for

  • Sent Messages Show in Inbox

    Outlook 2007 SP2 and all current updates on Win7 Pro 32-bit Blackberry Curve IMAP'ing email via Internet Email setup New emails I send from Outlook properly show in my Sent Items folder only. Emails to which I Reply or Forward from Outlook show in my

  • How to default payment type to invoice in istore billing page

    We are using B2B user scenario in iStore and we have a requirement to default payment type to invoice in billing page of iStore and user can change it to credit card if required.

  • Account Key & Accruals in Pricing Procedure

    Hi, When i Maintianed both account key and accruals in my pricing procedure, system is taking the transaction key mentioned for accruals. And when i maintained without account key also system is picking the transaction key from accruals. When i maint

  • How can I install MS-DOS 6.22 in Fusion 3.0?

    I am not sure where else to post this enquiry, so please pardon me if I've selected the wrong forum. I am trying to setup a MS-DOS VM. I have a portable USB Floppy that Snow Leopard recognizes with no problem, including whatever disk I happen to inse

  • Validate User Input. If lastname is entered then set Email required.

    Hello Gurus, I have a business requirement when creating a Customer contact information. The requirement is when a user enters the contact's lastname and does not enter a value in the contact's email filed then throw an error message after clicking t