Doubt regarding oracle alert message..in apex

I need to have validation messages on my screen immediatley...
i have used plsql block raise _application error  dynamic actions to accomplish it  If a field is empty and if it goes to some other field then i need the warning message to be dispalyed I am looking for a more better way to acommplish it..Thanks
Kindly help if any one knows a better approch
Edited by: pauljohny on 25-Mar-2012 21:25
Edited by: pauljohny on 25-Mar-2012 21:41

Thanks Gus .. I have not tried Java Script ..I saw one example though but it was for a same field ...
like no1 is the item and you create validation for no1..
I dont know how to acess.. the second .. field via java script..
Actually speaking not tried java script since am not familiar with it..But will be learning its basic today..

Similar Messages

  • Doubt   regarding   Oracle Database 10g Release 2 (10.2.0.1.0) installation

    hello
    my pc has following configurtion
    256mb ram
    60gb hdd
    p4 2.4 ghz
    win xp pro sp2
    I want to know if my pc will be able to run " Oracle Database 10g Release 2 (10.2.0.1.0) " standard edition on it.
    <<http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201winsoft.html>>
    I thought of increasing RAM, but it is not feasible.
    I know i could run oracle XE, but can my pc also run the standard edition.
    I could not find minimum hardware requirements for standard edition on this site.
    anyway, i will use it for sql and and other advanced concepts in RDBMS which i may learn during my course in database. so i prefer standard edition instead of XE
    any help greatly appreciated
    thanks in advance

    I suggest you not to doubt   regarding   Oracle Database 10g Release 2 (10.2.0.1.0) installation.
    It is not necessary. If you don't receive an answer within a reasonable amount of time you could edit your thread with whatever ( a period is enough) to raise it to the top once again.
    It becomes difficult for us to track duplicated threads and unnecessarily duplicates efforts.
    ~ Madrid.

  • How to redirect the page to home after alert message in APEX

    Hi All,
    I have 4 tab and home page APEX report in that home page I have organization to select as parameter for all the page which is mandatory column so without select the organization in home page I can move to other 4 page but some time users directly pressing the tab for this I have create the ORG_ALERT in each 4 page which this we are able to see the pop-up message when we directly hitting on tab but after select the OK to alert message the page is run for long time and it show all the organization data which I don't want so how can I modify the alert so that after pop-up message it will go to home page.
    Declare Output VARCHAR2 (20);
    begin 
    Output := 1;
    Output := NVL( :AI_ORGANIZATION_ID , 0);
    IF Output  = '0'  THEN
       APEX_UTIL.SET_SESSION_STATE('AI_ORGANIZATION_CODE','');
       HTP.p ('<script type="text/javascript">');
       HTP.p ('alert("No Organization selected.\n Please select an Organization");' );
       HTP.p ('</script>');  
    END IF; 
    END;
    Regards,
    Sushant

    Hi Kiran,
    I have created two process -- On Load - After Header
    1)  Sequence=10
    Declare Output VARCHAR2 (20);
    begin
    Output := 1;
    Output := NVL( :AI_ORGANIZATION_ID , 0);
    IF Output  = '0'  THEN
       APEX_UTIL.SET_SESSION_STATE('AI_ORGANIZATION_CODE','');
       HTP.p ('<script type="text/javascript">');
       HTP.p ('alert("No Organization selected.\n Please select an Organization");' );
       HTP.p ('</script>'); 
    END IF;
    END;
    2) Sequence=20
    Declare Output VARCHAR2 (20);
    begin 
    Output := 1;
    Output := NVL( :AI_ORGANIZATION_ID , 0);
    IF Output  = '0'  THEN
       htp.init;
        owa_util.redirect_url('f?p=&APP_ID.:1:&APP_SESSION.');
    ELSE
    htp.init;
    owa_util.redirect_url('f?p=&APP_ID.:4:&APP_SESSION.');
    END IF;
      END;
    but after click on tab directly it is not showing the pop-up message and directly going to home page. I want when I click on pop-up message to OK then it need to redirect the home page also from home page when I am selecting any organization and trying to go on tab it is not going maybe due to owa_util.redirect_url. Please advise.
    Regards,
    Sushant

  • Regarding Forms6i Alert Messages..!

    Hi,
    When i am trying to go to Enter Query Mode in my form..i.e when i am pressing
    F7.. i am getting an Alert message
    Do you want to save the changes..?
    How can i suppress this message..!
    Thanks & regards
    ravi.

    that's an important message. This message is displayed, because the form want to clear the block and clear all the data of the actual block. In the case, that unsaved changes are in the block you get the message.
    You can use the KEY-ENTQRY for example. There you can force a commit or rollback before you start the "enter_query;". But I think, that the default-behaviour is quite the best way the form gives to you.

  • Regarding the alert Message when i try to close the window

    Hi All,
    I am trying to give the alert message when the user tries to close the window.
    For this i have coded a jsp in which i have written
    <html>
    <head>Test in the Page Ajay</head>
    <body onUnload="alert('Test UnLoad')">
    </body>
    </html>
    and in the portalapp.xml i have given as jspnative.
    then if i try to unload the page the alert message is not executing.
    Plz help me out in this.
    Thanks
    Ajay

    Delete the iPod photo cache, as described here:
    http://support.apple.com/kb/ts1314

  • Doubt in Oracle Alerts

    Hi Gurus
    Can you please help me out , whether it is possible in oracle alerts.
    Scenario:- Can we use Images(JPEG) in the Oracle Alerts.
    Any Help is Highly Aprreciated

    Scenario:- Can we use Images(JPEG) in the Oracle Alerts.I believe not -- Use Workflow instead and you could attach images in the email notifications.
    http://www.oracle.com/technetwork/documentation/applications-167706.html
    Thanks,
    Hussein

  • Oracle alert message for background  size issue

    Hi Friends,
    I get 3 message as in EM. we run oracle10g R2 in window 2003
    96% of background dump area is used.
    96% of core dump area is used.
    96% of user dump area is used.
    How do I need to do? increase size?
    Thanks for any help!
    Jim
    Edited by: user589812 on Nov 19, 2008 12:13 PM

    Hi ,
    What you can do is ,
    1> when job gets run successfully , Export a flag = Y in memory.
    2> If job fails then Export a flag = N in same memory.
    3> You will have aseperate program running in background who will keep on reading this status at some time interval. Or if possible for polling , user can execute some transaction zabc to see the status and in that transaction this program will get executed which will read this flag, If this flag is N then show the status message to User about this. along with the Flag you can aslo Export and Import Employee Name/No and show that in message upon failure.
    Hope this is helpful.
    Regards,
    Uma Dave

  • Some doubt regarding oracle 9i lite

    Hai,
    I am doing R @ D on 9i lite. My scenario is as follows,
    1. first i installed oracle 8i 8.1.7 database.
    2. using oracle 9i lite 5.0.2 setup, In another machine instllaing mobile server and mobile development kit.
    3. how to synchronize the 9i lite database with my 8i database.
    My scenario is i need to create a standalone mobile server environment.
    help me.

    Your environment is older versions than we use, but the basic process for creating oracle lite client databases synchronised with the main server database is as follows
    1) install the mobile server following the installation guide.
    This will create the mobile server repository (schema MOBILEADMIN) and application on the app server or standalone. For production the repository data would normally be a seperate schema in the main database, and the mobile application running on one of the app servers
    2) next you need to create your 'application'.
    This consists of defining the tables or views from the main system you want to be able to synchronise with the offline clients. If you are just starting, the easiest way is to use the wtgpack wizard that comes as a part of the development kit. Start this up, create an application name, specify the client environment it will be going to (eg: WIN 32 or PPC2003) do the connection to the main server schema, select a table from the main system you want to synchronise, and take it through to publish
    For the first go to see it working i would advise keeping it simple and just picking a small table, and set the refresh option to complete, with server wins in the conflict resolution. Once you have got things working, you can then go back and add other tables and start to look at using thre data subsetting to select only data relevant to a particular client, fast refresh options, and using views from the main system as the basis for the snapshots (in 5.0.2 i would avoid sequences)
    3) when the application is published, start up the mobile manager tool
    you should now be able to see the application you created, and the publication items (the tables that will be synchrionised). You now need to go to users and create a user and associate them with the application
    4) set up client device
    on a device of the type you want to synchrionse with (we use PDAs), go into IE, and enter the mobile server URL/webtogo/setup. This will give a list of the downloadable clients. Pick the appropriate one and follow the install instructions, using the user/password set up above
    5) synchronise
    on the client device run the msync utility. This will ask you for the user name/password and the server url, enter these and press the sync button and two datyabase files (.odb) should be created on the client - a control one concli, and one with the same name as your application. The client set up should have also installed a utility msql that you can use to look at the new local database

  • Doubts regarding Alerts in XI

    Hi ,
      I have couple of doubts regarding XI Alerts .
    1) <b>How to raise Alerts in ABAP Sender proxy</b> . Say for example if sender
         ABAP proxy fails to send message how to raise alert . please provide steps
         how we can achieve this task.
    2) <b>How to raise Alerts in  IDOC Scenario</b> . How to raise ALERTS if IDOC   
          fails in sender or receiver R/3 system.

    Hi,
    Have a look at this.
    http://www.****************/Tutorials/XI/AlertConfiguration/AC1.htm
    /people/sukumar.natarajan/blog/2007/01/07/how-to-raise-alerts-from-abap-proxy
    Refer this also
    /people/michal.krawczyk2/blog/2006/06/22/xi-playing-with-the-file-adapters-acknowledgments
    Reward points if find useful.
    Message was edited by:
            Akshay Jamgaonkar
    Message was edited by:
            Akshay Jamgaonkar

  • Can i use HTML coding in oracle alerts

    Hi,
    I have a doubt in oracle alerts.
    can i use html coding in oracle alerts.
    If so can anyone please help me out this.
    Thankig you,
    Regards,
    RR

    hi vingorius ,
    No you cant include html but u can use variables
    To add a variable in a text message to provide context for the iBot attachment
    1. Click the following option:
    If sent as attachment, include this text
    2. Type the text into the text box with a session variable, a repository variable, or a presentation variable using the syntax shown in the following table:
    Variable Type
    Syntax
    Repository @{Variable_Name}
    Session @{NQ_SESSION.Variable_Name}
    Presentation @{Variable_Name}
    For example, Dear, @{NQ_SESSION.Variable_Name}, here is your personalized Weekly Sales Territory Update.
    NOTE: If you want to use the @ character, you need to precede it with the \ (back slash) character to separate it from the variable syntax. For example, Dear @{NQ_SESSION.DISPLAYNAME}, \@ New York, appears as Dear Joe Smith, @ New York.
    Source : BI Guide
    Thanks,
    Saichand.v

  • Display an Alert message in PL/SQL block in APEX

    Hi,
    we are getting an oracle exception while inserting a new row. As it is having the unique constaint on a coulumn.
    Now the problem iis we need to Display an "Alert message" based on the input field validation. That java script code for alert has to be embeded nside a PL/SQL block in Oracle APEX Application.
    we tried doing this with below code:
    Begin
    INSERT INTO <<table name>>(ID,NAME) VALUES (s1,:TXT_s2);
    exception when others then
    htp.p('<script language="javascript">');
    htp.p('alert("Exception");');
    htp.p('</script>');
    end;
    If anybody knows .... please reply.
    Thanks,
    Subarna
    Edited by: user9955252 on Apr 21, 2010 1:47 AM

    Hello,
    APEX Forum is here : Oracle Application Express (APEX)
    Regards

  • Display an Alert message from PL/SQL block in APEX

    Hi,
    we are getting an oracle exception while inserting a new row. As it is having the unique constaint on a coulumn.
    Now the problem iis we need to Display an "Alert message" based on the input field validation. That java script code for alert has to be embeded nside a PL/SQL block in Oracle APEX Application.
    we tried doing this with below code:
    Begin
    INSERT INTO <<table name>>(ID,NAME) VALUES (s1,:TXT_s2);
    exception when others then
    htp.p('<script language="javascript">');
    htp.p('alert("Exception");');
    htp.p('</script>');
    end;
    If anybody knows .... please reply.
    Thanks,
    Subarna

    If your end goal is showing a pretty error message instead of the message that the tables unique constraint raises try the following. This logic will show a nice message and not try to insert non-unique data.
    (1) Create a validation of type "Function Returning Error Text".
    (2) Place similar code like the following in your validation. Notice that if the unique name does not exist the no_data_found returns null allowing the validation to pass.
    DECLARE
      v_error varchar2(100);
    BEGIN
      SELECT 'A person by this name already exists.'
      INTO v_error
      FROM your_table
      WHERE your_name = :P1_YOUR_NAME;
      RETURN v_error;
    EXCEPTION
      WHEN no_data_found THEN
        RETURN NULL;
    END;

  • How to convert javascript alert message into an Inline message in Apex Page

    Hi All. Im new to Apex.
    Present Approach -
    I have a dynamic report region developed using API's like APEX_ITEM etc. I am using java scripts to validate these dynamic items and popup alert messages as shown below -
    function ValidateNotObservedCB(p_row_num)
    var v_row_num = p_row_num;
    var v_not_observed_cb_status = document.getElementById('f_notobserved_'+v_row_num).checked;
    var v_not_in_district_cb_status = document.getElementById('f_notindistrict_'+v_row_num).checked;
    var v_program_code = document.getElementById("f_program_code_"+v_row_num).value;
    if ( (v_program_code.length>0)&& ( document.getElementById('f_notobserved_'+v_row_num).checked==true ))
         bold alert("You have already entered a program code.") bold
         document.getElementById('f_notobserved_'+v_row_num).checked=false ;
         document.getElementById('f_notobserved_'+v_row_num).value='N';
    } else if ( (v_program_code.length==0)&& ( document.getElementById('f_notobserved_'+v_row_num).checked==true )) {
         document.getElementById('f_notobserved_'+v_row_num).value='Y';
         document.getElementById('f_notobserved_'+v_row_num).checked=true ;
    } else
         document.getElementById('f_notobserved_'+v_row_num).checked=false ;
         document.getElementById('f_notindistrict_'+v_row_num).checked=false;
         document.getElementById('f_notindistrict_'+v_row_num).value='N';
         document.getElementById('f_notobserved_'+v_row_num).value='N';
    Question/Issue - How can I convert these alert messages into Inline messages to show on the page, similar to what appears when we do Item Validations in APEX.
    Waiting for responses as this is an urgent requirement.
    Thanks in Advance,
    Madhu

    Hi,
    I did with jQuery small sample
    http://apex.oracle.com/pls/otn/f?p=40323:36
    Page HTML header is
    <script type="text/javascript">
    $(function(){
      var lImg = $('<img alt="" class="pb" style="float: right;" src="/i/delete.gif"/>');
      var lMesg = $('<div id="MESSAGE" style="border-top: 1px solid rgb(142, 170, 142); border-bottom: 1px solid rgb(142, 170, 142); padding: 5px; background: rgb(235, 241, 235) none repeat scroll 0% 0%; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; width: 450px;" class="t14notification"></div>');
      $('.pb').live('click',function(){
        $x_Remove("MESSAGE");
      $('#SUBMIT').click(function(){
        if($('#MESSAGE').length == 0){
          $('#t14Messages').children().append($(lMesg));
           $(lMesg).append($(lImg));
           $(lImg).after($('#P36_NOTIFICATION').val());
        }else{
           $('#MESSAGE').text('');
           $('#MESSAGE').append($(lImg));
           $(lImg).after($('#P36_NOTIFICATION').val());
    </script>I do not know does it help. Using this depend much on theme, defined class and IDs.
    Br, Jari

  • Plz Help me regarding oracle  event alerts..... Its urgent !!

    Hi all,
    How to create oracle event alert when particular column is update. plz help me.... Acutually i need email alert when ever list price for an item column in pricing table get updated+... plz. Its urgent.

    In that thread,... gareth.roberts say to modify the trigger definition to the column. Actually i am new to oracle >alert. How do i get that trigger definition and from where i have to get. and how to modify the trigger definition . >
    plz...Need not to say like that, I am just trying to help you. I believe if you are new try to read and understand the documents and process. Please start with Oracle Alert User's Guide to create a alert and send notification.
    I do not have any ready made scenario, I can refer you the documents to do the same,
    [How to Create a Basic Trigger|https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=119667.1]
    [RDBPROD: How to Create an Update Trigger Which Depends on Any Other Field|https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=68037.1]
    To view the Trigger Information you can use TOAD and modify the same as per your need.
    Thanks,
    Anchorage :)

  • Oracle Alert Doubt

    Hi Gurus
    Can you please help me out , whether it is possible in oracle alerts.
    Scenario:- Can we use Images(JPEG) in the Oracle Alerts.
    Any Help is Highly Aprreciated

    I don't know what Oracle Alerts are, but as this forum is for issues with the SQL Developer tool, I suggest you find a better forum to post your issue in.
    Have fun,
    K.

Maybe you are looking for

  • How can I bind danish letters to my shortcuts? After Effect doesn't seem to care what I put in my shortcuts txt file.

    As stated. I want to use the letters "æ" and "ø" to replace the brackets that the american keyboards use for trimming and cut at trim. It seems like such a nice feature. I've tried putting in unicode with UX00E5 format and so forth like I'm supposed

  • 2 Apps will not sync due to error??

    I just purchased a few apps and two of them will not sync to my touch. I am getting a pop up box that says error OXE800002D and OXE8000013. I haven't had this response before. Does anyone know how to get this to work? Thanks!

  • Apex 2.2.1

    hi, I have installed apex 2.2.1. Now it says: The structure of the link to the Application Express administration services is as follows: http://host:port/pls/apex/apex_admin from where i can get this port number? kindly help.. Regards, Saad.

  • I lost my AppleTV power cord, where can I purchase another one?

    I'm looking for a replacement Power Cord for my 2nd generation AppleTV.... mine seem to have grown legs and walked away. Where can I purchase one? Mike

  • VL150 message during delivery creation using VL10B

    Hi Friends I am creating a delivery of palnt to palnt stock transfer with reference to purchase order using T-code VL10B. but it is showing error 0 kg of stock avaliable. But the supplying plant contain the stock. pls provide the solution..