User Guide, Suppressing ORA and FRM messages

Hello,
In this guide there is :
'... To suppress the message permanently, check the suppress Always? check box.
I haven't that check box in my screen.
Who know why ?
Thank you.
Antoine LEFEBVRE.

check the qms_message_properties table.
Or build your own form for the messages.

Similar Messages

  • Is there any way i can let another iphone user view my recieved and sent messages?

    Is there any way i can let another iphone user view my recieved and sent messages?

    Of course. Just show them your phone screen, and let them browse through your messages - the same way you would do so yourself.

  • User Guide of ODP and ODQ

    Hi All,
    I am new to this ODP, ODQ, ODI tools. I am looking for some document on these tools. Can any body give me some link of PDF to learn ODP and ODQ documents, like any user guide. I have ODI docs. Or else inform me how to learn ODP and ODQ.
    Thanks to All

    check the following
    http://www.oracle.com/technology/products/oracle-data-integrator/pdf/oracledi_comprehensive_quality.pdf
    http://www.oracle.com/technology/products/oracle-data-integrator/index.html

  • FRM Message Suppress

    Hi all
    I used headstart 9i,designer 9i ,form server
    ,i need to know the best way to suppress all of FRM messages ,we work in multi language system Arabic and English,Some message appeared without prefix so i dont know the code of this message to insert it in qms_error_message_property
    table ,are there any scripts contain all of Frm messages
    ,Any help Highly appreciated.

    :system.message_level := 25;
    APP_STANDARD.EVENT('KEY-COMMIT');
    :system.message_level := 5;
    THIS IS WORKING, THE MESSAGE IS NOT COMING.

  • The User Guide, sample books or menu of the Reader Wi-Fi is in a different language.

    Solved!
    Go to Solution.

    The language of the User Guide, sample books and menu are set during the inital setup process of your Reader Wi-Fi. If the language is changed to a different language after the initial setup, only the menu would change to the new language. To change all of these to a different language, you will need to run the initial setup process again. Follow these steps to do a Factory Initialize (Hard reset) and set the appropriate language:
    With the Reader Wi-Fi on, on the bottom of the device, press and hold the power button until the Device Shutdown screen appears.
    In the Device Shutdown screen, press Yes.
    Press the power button again to turn the Reader Wi-Fi back on.
    While the screen displays opening book....., simultaneously press and hold down the Next and Back buttons.
    Allow the Homescreen to fully load (Loading... should no longer flash in the top left corner of your screen) and then
    do the following button sequence while still holding down the Next and Back buttons:
    Release - Press - Release the Back button only and then Release the Next button.
    In the Would you like to execute Factory Initialize screen, press Yes.
    Press the power button again to turn on the Reader Wi-Fi. The Reader Wi-Fi will be set to factory settings.
    Turn the Reader Wi-Fi back on. The initial setup process will begin.
    NOTE: This procedure assumes you want English as the language. These steps can be done for any language.
    In the Menu Language screen, select English.
    Your reader will now be set for English. Follow the rest of the on screen steps to complete the setup.

  • All FRM messages are suppressed after buissness rules validation

    hello,
    i've just discovered this really odd and annoying problem and I need some help. After validating business rules all forms messages are suppressed. If I re-enter the form, messages appear again, but are "visible" only till next business rules validation.
    this is the scenario:
    1. When I enter the form, I disable all business rules
    2. I insert some data and commit. Message FRM-40400 appears.
    3. I validate business rules by pressing button "Validate" (I call procedure which enables all business rules, calls procedure capi.validate_all_static_br, disables business rules and displays errors with Qms$errors.RaiseQMSFailure)
    4. if i change some data and commit, message FRM-40400 does not appear.
    I've done some debugging and discovered problem in qmslib65.pll package qms$forms_errors procedure push
    PROCEDURE Push
    ( p_msg IN VARCHAR2
    , p_error IN VARCHAR2 DEFAULT 'I'
    , p_msg_type IN VARCHAR2 DEFAULT ''
    , p_msgid IN NUMBER DEFAULT 0
    , p_loc IN VARCHAR2 DEFAULT '') IS
    -- Purpose Show message to the end-user, standard procedure for the Oracle Forms
    -- Generator of Designer/2000 to pass the display and handling of a message
    -- to a user created procedure.
    -- Usage Called by the Oracle Forms Generator code
    -- Parameters : msg Text message
    -- error ERRor or WARNing
    -- msg_type ORA, API or user TLA
    -- msg_id Id of message
    -- loc Location where error occured
    -- Remarks
    v_msg VARCHAR2(2000) := p_msg;
    v_error VARCHAR2(2000) := p_error;
    v_servermsg VARCHAR2(2000) := DBMS_ERROR_TEXT;
    l_empty_errorrec hil_Message.message_rectype;
    BEGIN
    IF p_msgid != 0
    THEN
    g_errorrec.severity := p_error;
    ELSIF ((SUBSTR (v_msg, 1, 11) = 'API Error: ')) OR
    ((INSTR (v_servermsg, 'ORA-20999') <> 0) AND (v_msg IS NULL)) OR
    (INSTR (v_msg, 'ORA-20999') <> 0)
    THEN
    -- error returned from the API, just display no further action required ?
    HandleServerAPIError (p_msg);
    -- M. Kappel
    /* 11-apr-2001
    - Allow check of v_servermsg even if v_msg contains data.
    - With new-style cdm ruleframe, v_msg contains 'ORA-20998'.
    We never looked at v_servermsg because v_msg was not null.
    - With old-style database trigger business logic, v_msg contains only text.
    If we still never look at v_servermsg, we don't identify that the error is
    a 20998 and therefore we raise an alert 'Transaction Failed' instead of
    showing the 'Errors in this Transaction' window.
    -- ELSIF ((INSTR (v_servermsg, 'ORA-20998') <> 0) AND (v_msg IS NULL)) OR
    -- (INSTR (v_msg, 'ORA-20998') <> 0)
    -- THEN
    ELSIF (INSTR (v_servermsg, 'ORA-20998') <> 0) OR
    (INSTR (v_msg, 'ORA-20998') <> 0)
    THEN
    HandleServerApplError (p_msg);
    -- error returned from the API, just display no further action required ?
    ELSIF ((INSTR (v_servermsg, 'ORA-20000') <> 0) AND (v_msg IS NULL)) OR
    (INSTR (v_msg, 'ORA-20000') <> 0)
    THEN
    -- error was raised by old Headstart code with raise_application_error
    -- strip ora-20000 : , check if code (get message) or message
    HandleOldHeadstart (v_servermsg);
    ELSIF (SUBSTR (v_msg, 1, 3) IN ('FRM', 'MNU', 'PLS', 'SRW', 'ORA', 'REP'))
    THEN
    HandleOracleError (v_msg, v_error);
    ELSE
         HandleApplError(v_msg, v_error);
    END IF;
    Display_Error (g_errorrec);
    g_errorrec := l_empty_errorrec;
    END Push;
    IMO, this part of code
    ELSIF (INSTR (v_servermsg, 'ORA-20998') <> 0) OR
    (INSTR (v_msg, 'ORA-20998') <> 0)
    is either obsolete or incomplete. It should be something like this:
    ELSIF (INSTR (v_servermsg, 'ORA-20998') <> 0 AND(v_msg IS NULL)) OR (INSTR (v_msg, 'ORA-20998') <> 0)
    i would like to know if anyone have simmilar problem and if there are any other solutions then above mentioned.
    Kind regards,
    Damjan

    I'm having the same problem, i'm using 6.5.22 with the C/S-kit
    Is there already a solution for this problem?
    Regards,
    Richard Teunissen

  • N8 Clipboard and User Guide

    I've just discovered by accident that you can highlight text in a text message which then comes up with a note saying "copy".  If you click on "copy" it then says "text copied to clipboard".
    What is the clipboard, what does it do and where is it because once again the user guide in the phone is worse than useless and brings up "no Matches"! when trying to find info on this clipboard thing!
    On a separate issue what is the point of the user guide as it really is useless; I even typed "bluetooth" in the other day and guess what - "no matches" !!

    Clipboard is just the term used to say it has been copied into memory and can be used in other app, by selecting paste.
    In messaging and email, select the 3 line icon and paste. In notes and quick office it's edit and paste.
    There is far more help available online by choosing "Product Support" at the top of this page.
    N8-00 pc059C9F6 Belle
    808 PureView pc059P6W5

  • I am still using my Apple G4 1.25 Ghz MDD running Leopard 10.5.8 with iTunes 10.6.3 installed. Can I use an Phone 4s with iOS 5 with this set up? I have read the iPhone iOS 5 user guide and it appears that I can but is anybody actually doing it ?

    Hello to all my readers.I am still using my Apple G4 1.25 Ghz MDD running Leopard 10.5.8 with iTunes 10.6.3 installed. Can I use an Phone 4s with iOS 5 with this set up? I have read the iPhone iOS 5 user guide and it appears that I can but is anybody actually doing it ? My current phone is a £10 Nokia and I've neither wish nor cash to spend more than a grand upgrading to an intel based machine (at the moment) ! Regards to you all.

    If you can find an iPhone running iOS5 and those are the specs for iOS5, there is no reason it should not work.
    If you want a more current version of iOS or a more current device, a Windows computer is always an option at significantly less cost. 
    Granted, there is no requirement to have a computer to use an iPhone.

  • I have entered my username and password and the message comes up is "User name or password is incorrect" when I have tried to press ok and continue, it won't let me, it has frozen, the rest of the phone is working fine, it's just in the iclound screen

    I have entered my username and password and the message comes up as User name or password is incorrect, this has frozened this page - so I am unable to use my settings, the rest of the phone is working fine

    Try "resetting" the iPhone.
    Hold the On/Off Sleep/Wake button and the Home button down at the same time for at least ten seconds, until the Apple logo appears.

  • Have been here before but still have not resolved a fix for a black screen when I try to access a PDF file...Now I've got a new iPad and need the User Guide which is only available inPDF

    Have been here before but still have not resolved a fix for a black screen when I try to access a PDF file using Safari...Now I've got a new iPad and need the User Guide which is only available in PDF and FireFox will not work.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • I have just bought my ipad and have downloaded numbers software. I am having difficulty finding a user guide for numbers on ipad. Can anyone Eli

    I Have just bought my ipad and downloaded numbers for spreadsheet work but finding it difficult to locate a good user guide for numbers on ipad. Can anyone make a suggestion.

    http://www.apple.com/support/ios/numbers/

  • How to understand on hand in user guide and table MTL_ONHAND_QUANTITIES

    version:12.1.1
    IS on hand in user guide from table MTL_ONHAND_QUANTITIES?
    How to understand on hand in user guide and table MTL_ONHAND_QUANTITIES?
    http://etrm.oracle.com/pls/et1211d9/etrm_fndnav.show_object?n_appid=401&n_tabid=52063&c_type=TABLE
    What does "Not implemented in this database" mean?

    What the page is saying that MTL_ONHAND_QUANTITIES is not a table. It is a view.
    The main table underlying the view is mtl_onhand_quantities_detail.
    After you perform a transaction, the data in this table (and view) is updated automatically.
    You don't have to do anything.
    Sandeep Gandhi

  • XSLT Spy user guide and exmples

    Hi Xperts,
    I am new to XI and  would like to request you regarding XSLT mapping.
    are there any blogs regarding XSLT Spy user guide?
    how to get xpert on this?
    is there any easy way to learn?
    Best regards
    Gopi

    Hi,
    This might help you
    Check these links
    http://help.sap.com/saphelp_nw04/helpdata/en/73/f61eea1741453eb8f794e150067930/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/55/7ef3003fc411d6b1f700508b5d5211/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/4c/b2ad3de2d76b3be10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/b78d406b305537e10000000a1550b0/frameset.htm
    /people/sreekanth.babu2/blog/2005/01/05/design-time-value-mappings-in-xslt
    /people/pooja.pandey/blog/2005/06/27/xslt-mapping-with-java-enhancement-for-beginners
    /people/sap.user72/blog/2005/03/15/using-xslt-mapping-in-a-ccbpm-scenario
    /people/anish.abraham2/blog/2005/12/22/file-to-multiple-idocs-xslt-mapping
    /people/jayakrishnan.nair/blog/2005/06/28/dynamic-file-namexslt-mapping-with-java-enhancement-using-xi-30-sp12-part-ii
    For XSLT Mapping:
    http://help.sap.com/saphelp_nw04/helpdata/en/73/f61eea1741453eb8f794e150067930/frameset.htm
    Error handling in XSLT Mapping:
    http://help.sap.com/saphelp_nw04/helpdata/en/8a/7672f7d7e444439fd7024f806221a4/frameset.htm
    You can also refer some How to guides:
    XI New Mapping Features article,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/xi%203.0%20new%20mapping%20features%20article.evn
    Generic XSLT Mapping and Sample Code,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/xi%20code%20samples/generic%20xslt%20mapping%20and%20sample%20code.pdf
    Regards
    Agasthuri Doss

  • Help! When users save web forms and come back to submit they get an error message and form is lost

    I have a feb form that has a 28 save limit.  When users save the form and return to submitt them they get a error message that says the form has expired or has been submitted.  The form is open and it was not submitted.  Any thoughts.
    Form deadline is tomorrow and people are getting angry when I tell them to recreate the form.

    Hi;
    Can you forward me any of the emails from your users with their saved link that is not working and we can look into it?
    Send to [email protected]
    Thanks,
    Josh

  • Where can I download and install user guides for Elements 5.0?

    Where can I download and install user guides for Elements 5.0?

    It should be available within the app. Press the F1 key.

Maybe you are looking for

  • Selection Problem

    I am working on separating a face from its backgound. My problem is that I can't figure out how to include the bit of background that shows up inside the lens of his glasses. With the narrow frames, I'm stumped on how to do it. BTW, the background wa

  • Time Machine External Hard Drive Disconnected Incorrectly

    I have an external USB hard drive functioning for my Time Machine back-ups. I usually turn off my iMac by using the sleep function. Often, when I activate out of sleep, I get the error message that the hard drive was disconnected incorrectly (I assum

  • Web service model initialization problem

    Hello, every one I have some trouble in the initialization of web service model. I tested the web service through web service navigator and it was ok. My context structure is: Request_ZBAPIWCALIST_zbapiWcalist(0..n) --parameters(0..1) rBdate(0..n) hi

  • Exchange Server problem with Tiger's Mail

    I've run into a Mail problem as I'm switching over from 10.3.9 to 10.4.5. I've currently got the two systems running on different partitions on my G4 PowerBook. Everything works fine in 10.3.9. But when using the same settings in 10.4.5 I get the err

  • Intermittent file loss over mac / pc network

    Hi I hope someone can help, I have been using my network for over a year with no problems also networked the same for the last 4 years. I now have files and folders go missing when dragging between computers I have one mac pro and x2 windows computer