How can i hide frm-40401 no changes to save

hi all,
i would like to hide frm-40401 no changes to save
i create a (form level trigger/block level) to hide a built in message
ON-MESSAGE
declare
msgnum number := message_code;
begin
IF msgnum = 40401 THEN
Message('my own message.');
end if;
end;and still message appear what can i do?
Thank's all
Edited by: Ahmed_Arafa on Jan 20, 2012 9:40 AM

Ahmed_Arafa wrote:
hi all,
i would like to hide frm-40401 no changes to saveCreate a form level trigger named Pre-Form
and write the following code
:SYSTEM.MESSAGE_LEVEL := 5;Hope this will help you

Similar Messages

  • FRM-40401 No changes to save  error

    Hi,
    I have updated one table from form by writing update statement on the when-button-pressed triger.This update statement is doing its job fine and the table is updated.but iam finding 'FRM-40401: No Changes to save 'message in my console . Please tell me why it is coming when changes are made into tables and wat should i do to avoid this . i have written on-error trigger on form level to suppress this message.What effect itcan have on my working.
    Kindly take it on urgent basis.
    regards,
    rajesh

    Usually in Forms, you do not write SQL update statements to update your table. Instead, you create a base-table block, fetch the rows into the block, make your changes, and then commit. Forms automatic processing takes over and creates the update statements for you.
    What you have done is bypassed the default automatic processing, and Forms is complaining. I would try to re-do the form and use a base-table block.

  • FRM-40401:No changes to save

    When I write insert or update statement manually the statement is getting executed.But I am getting error as in subject line.
    I dont want to see that error message.If row inserted/updated I want to show message 'One row inserted/updated'.
    Please can any body tell about this by using a simple dept table.
    Actually I am making database item 'no' in property palate.
    I am a beginer.

    If you do the insert in plsq code Forms does not know about the change -- as opposed to when you use the built in functionality by inserting a record thru a database block -- so it gives you this error.
    One way of avoiding the error is to have a hidden database block and make the insert there with PLSQL code.

  • How can I hide what I write in a find and change list

    I've written a find and change script, I prepared to offer it for anyone to use, but I don't want to anyone to read what I write in the find and change list.
    How Can I hide it?

    OK, my be offer it for someone to use it, I mean in house coworker, no any virus in it.
    How can hide the find and change list, or change it to another format, not just .txt.
    mybe change it to .doc or .vb or .js, and the script still can run well.

  • How to supress FRM:40405 no changes to save

    Guy,
    How do I supress the forms runtime message
    FRM:40405 no changes to save, I get this message when ever I press the save button irrespective of whether the records are inserted or changed .

    I agree that you shouldn't cover up potential problems. I didn't mean to suggest that. I think there can be valid reasons for suppressing messages sometimes.
    For example, I've used :SYSTEM.MESSAGE_LEVEL := '5'; before to suppress FRM-40401 or FRM-40405 - can't remember which one, it's been a while. In my case I was using exec_sql in forms to retrieve data from a DB2 table and insert it into an Oracle table. In this case forms didn't recognize that work was actually being done and would give the FRM-40401 or 40405 error at the end of the process, even though the records had been successfully inserted.

  • How can i hide a column using personalization?

    Hi,
    Please help me how can i hide a one column in oracle forms using personalization?
    Thanks

    Hi,
    When you login to My Oracle Support website, enter "458786.1" or "468657.1" in the search box, and you should get the documents.
    Or, use the direct links below to access those documents.
    How To Do Forms Personalization (Doc ID 468657.1)
    https://supporthtml.oracle.com/ep/faces/secure/km/DocumentDisplay.jspx?id=468657.1
    RCVRCERC: When Using Personalization to Remove a Column Receive Error FRM-41017: Cannot set UPDATE ALLOWED (Doc ID 458786.1)
    https://supporthtml.oracle.com/ep/faces/secure/km/DocumentDisplay.jspx?id=458786.1
    Regards,
    Hussein

  • How can i hide elements of a view?

    Hi,, i've got a question about, how can i hide an element of a view?, this element colud be a group, a label, an input field, any element that i can put in the view layout.
    My view has an ALV, an inputfield and a Table with a button, so when i click on a line of the alv, it shows data in the table and in the inputfield, and when i click on the button of the table, i want to hide the table and the inputfield, until i clik on the alv again to make appear  the table and the inputfield.
    how can i hide those element?,,,,,,,,thanks

    Hi Luis Garcia,
    It can be done easily by <b>context binding</b> the visibility property of the table and input field UI element to a node attribute whose type would be WDY_BOOLEAN.
    1. Initially the node attributes default value would be 'X'.
    2. When you click the button in the ALV, in the event handler of that button change the binded node attribute value to ' '.
    3. When on lead selection of the table again change the binded node attribute field value to 'X'.
    4. Below is the sample code to read the binded node attribute and toggle the visiblity attribute to 'X' if it is ' ' and vice versa.
      data:
        Node_If                             type ref to If_Wd_Context_Node,
        Elem_If                             type ref to If_Wd_Context_Element,
        Stru_If                             type If_Main=>Element_If ,
        Item_VISIBILITY                     like Stru_If-VISIBILITY.
    * navigate from <CONTEXT> to <IF> via lead selection
      Node_If = wd_Context->get_Child_Node( Name = IF_MAIN=>wdctx_If ).
    * get element via lead selection
      Elem_If = Node_If->get_Element(  ).
    * get single attribute
      Elem_If->get_Attribute(
        exporting
          Name =  `VISIBILITY`
        importing
          Value = Item_Visibility ).
    if Item_visibility is initial.
    item_visibility = 'X'.
    else.
    item_visibility = ' '.
    endif.
      Elem_If->set_Attribute(
          Name =  `VISIBILITY`
          Value = Item_Visibility ).
    endmethod.
    Hope it helps.
    Regards,
    Maheswaran.B

  • How can you hide a Continue button until all clickboxes are clicked?

    I have seen similar questions to this one, but none seemed to be the exact situation as mine.
    What I have: Several images on a screen.  When a user clicks an image it is replaced with another image.  I am using clickboxes for this task.  I do not wish for them to toggle back and forth. Once they click the original image it should stay changed.
    What I am trying to do: Once a learner clicks all the images (in no particular order) a Continue button appears that allows them to go to the next screen.
    If anyone has some suggestions on this situation please let me know, thanks.

    I cannot log in on the forum for the moment, so will try by answering by
    mail. I was aware of that problem (have presented those solutions so
    often), thought that since you left all images visible once the click box
    was clicked it wouldn't be a problem.
    Two possible solutions:
       1. Easiest one: add a statement in the Always decision that will Hide
       the click box just clicked. It has no sense to click it another time. That
       will mean that you still can do it with a shared action but that shared
       action will have two parameters now, the second one being the click box
       that has to adapted on each application of the shared action.
       2. If you don't want to make the click box hidden (which means at the
       same time disabled), you'll need a user variable for each click box,
       starting with a default value of 0, and toggle it in the Decision 'Always'
       to 1. The second decision will then need a condition that checks the value
       of all the user variables (with AND) and shows the Next button only when
       all variables have the value of 1.
    Sorry, but have to mail, cannot offer a screenshot in that case.
    Lilybiri
    2014-03-13 5:31 GMT+01:00 Joseph_McDonald <[email protected]>:
        Re: How can you hide a Continue button until all clickboxes are
    clicked?  created by Joseph_McDonald<http://forums.adobe.com/people/Joseph_McDonald>in *Advanced
    Adobe Captivate Users* - View the full discussion<http://forums.adobe.com/message/6205043#6205043

  • How can I hide file names in a photostream?

    How can I hide file names in a shared photo stream on icloud.  I don't want people to see how many pictures I take at an event.  Can this be done to pictures already posted?

    The Shared Photo Stream uses the filename of the original image file as the title that is shown in the stream.  If you want to hide the original filename, export the image to a folder in the Finder, rename it, then reimport it to share it.  You can rename the files directly when exporting.
    Or, if you do not mind to change the names of the originals in Aperture use the command "Metadata > Batch change" and change the title of the image, with the option "Apply to Original file" enabled and "Add metadata from" set to "None".
    To rename the photos already shared, delete them from the Shared Album and share them again.

  • How can I hide iCloud purchases on Apple TV?

    We are a small Christian private school, and we have Apple TVs in each classroom. The album art for U2's freely released album has changed, now showing two shirtless men in an embrace -- Yes, I know it's Larry Mullens Jr and his son. It's upsetting my teachers and students. How can I hide it when there is no Apple ID associated with the Apple TV?

    You can also got to movies and select purchased and if it comes up cannot connect to server go to settings and scroll down to restart and it should work. That's what I did and it showed my purchased movies and I don't have my Apple TV paired with a computer. Just using iCloud. But you also can pair your computer but its not necessary to watch purchased movies you have bought through iTunes. Hope this helps.

  • How can I hide the time of the day in calendar events in OS 10.9?

    How can I hide the time of the day in calendar events in OS 10.9?

    Currently, the order in which the phone numbers appear (in a contact) is dependent on the sequence to which you enter them. There is no way to change that order other than re-entering them in the desired order.

  • How can I hide the tool data box?

    How can I hide the tool data box that reads out the loction in Photoshop CS6?
    It appears when I move a layer or change the size.
    It is very distracting and totally useless for me (I'm an artist - not an engineer).
    I can't find a setting to remove that black box.  I hope there is a way to make it go away...
    Thanks!

    It sounds like your talking about the transformation values.
    In the photoshop preferences under Interface you can set Show Transformation Values to Never

  • How can I hide my e-mail???

    How can I hide my e-mail???

    Hi, Smittycoco, and welcome to the Community,
    Your Skype account's registered e-mail address is not displayed anywhere.  You are the only one who can see it.  You may, however, remove e-mail addresses from your Profile settings -- even though e-mail addresses added there are again only viewable by you (private) and used only as a way for your friends, family, and colleagues to locate you on Skype.
    If there is something I am mistaking or missing, please do post back with a screen shot where you are seeing your e-mail address displayed.  Please, redact or 'white out' any personal information before uploading your screen shot.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • How can I hide the class file ??

    Hi !
    I has a question, when i write a program of Java, then use the command "javac" to compiler to class file for other people using, but the class file can be disassembled and convert to source code. How can I hide the class file and let people can not disassemble, or can not see the source code. Thinks

    See these....
    http://www.saffeine.com/
    http://www.jarsafe.com/
    I recently read this. This will help you.
    http://developer.java.sun.com/developer/qow/archive/160/index.jsp
    Enojy....
    Rajesh

  • I have forgotten my Password to be able to connect between my desktop Mac and Mac Book on my home network. How can I recover the password or change it?

    I have forgotten my Password to be able to connect between my desktop Mac and Mac Book on my home network. How can I recover the password or change it?

    The password used to log in to a user account remotely is the same as you would use to log into it locally. You can also use your Apple ID, so try that.
    To change your login password read OS X Mavericks: Reset a login password
    also OS X Mavericks: If you forget your login password

Maybe you are looking for

  • Timeline usage : To display value at the end of timeline values

    Hi Team, In my current project, I want to implement functionality given below. All records are present in one single table. Table has columns as (City,Date,Positive,Negative,CountOfItems) I have created data model as given below. I need to design Pow

  • Business Partner Replication Documents

    Need Business Partner Replication Documents

  • Oracle 10g Database Archiving

    Hi All, Currently we are working on DATA Archiving. We have some tables where the volume of DATA increasing rapidly. At present we have 55GB of DATA in two main tables and the application performance is decaying day by day. Since table partitioning f

  • Business Object Enterprise XI 3.1 installation on Flexframe 4.0

    Hi, Is it possible to install Business Object Enterprise XI 3.1 installation on Flexframe 4.0? Operating system SUSE Linux Enterprise Server 9 SP3 is running on this FlexFrame 4.0 environment. If anybody has any experience to install Business Object

  • ABAP dictionary : can we delete and recreate transparent table

    Hi Experts,          I would like to know if we can delete and recreate transparent table which had already been transported to another server? Will it create any other problem?          The reason why I want to do this is that I want to transport th