Please Acknowledge - Pop up message

Hi all,
Every time I opens a form its giving me a message "Please Acknowledge" .that form uses the webutil to open MS Word Document.Please tell me how to block that message.
Thanks in advance

have a look at the console, there should be some message there.

Similar Messages

  • I get pop up ' Please Acknowledge Message' always.....please help

    Hi frens...i have developed forms based on customers table....evey time i try to navigate on the forms i get pop up ' Please Acknowledge message' ....every time i have to click on ok to proceed with firther navigations.
    please help me out with this....thanks

    oh thanks really man...my lecturer told me that i jsut coudnlt remeber...thnaks a lot man....

  • Please Acknowledge message

    I have looked all over on this message board and cannot find a solution. I have several forms developed that when-button-pressed or when-new-form-instance or when-new-block-instance trigger is fired (any trigger for that matter) an informative modal dialog window titled just "Forms" pops up with a single "OK" button with the message "Please Acknowledge message" inside. It has a Frm-42400 error in the console line with a message "Performing event-trigger such-in-such" which in the on-line help tells me that no action is necessary. It is a level >25 message which I believe in the on-line help says cannot be suppressed. I cannot believe that this meesage cannot be suppressed somehow. I have tried using the :system.message_level variable set to each of the recognized values(0,5,10,15,20,25). I have also tried the on_error triggers. It does this running in debug as well as client-server mode. Nothing works. Is there a setting somewhere that I have missed that will turn this message off? I would appreciate any help. Thank you in advance.

    Sounds like Forms has the debug messages option switched on. Go to Tools menu, and click on Preferences, and deselect the debug messages check box.

  • "Please acknowledge" message with webutil

    Hi all,I'm using webuti library to create an excel file... when I deploy it on the server as soon as I execute the following code I get a "please acknowledge" message.
    My client's oracle assistance group just told me that "this is an issue a consultant should know per sé" so they corrected the form and didn't tell me what they did (yeah I'm working in a highly collaborative environment).
    here's the code, I didn't translate the variable names and so on... please forgive me for that:D
         -- cursore dati OUTPUT
        CURSOR c_cur IS
                        select * from processi;
                  rec      c_cur%rowtype;
    -- Oggetti OLE
       XlApp          client_ole2.OBJ_TYPE;
       args               client_ole2.LIST_TYPE;
       wkbook          client_ole2.OBJ_TYPE;
       wksheet     client_ole2.OBJ_TYPE;
       wksheets     client_ole2.OBJ_TYPE;
       wkbooks     client_ole2.OBJ_TYPE;
       cell               client_ole2.OBJ_TYPE;
    --  font               client_ole2.OBJ_TYPE;
       border          client_ole2.OBJ_TYPE;
       args1 client_ole2.LIST_TYPE;
       cols client_ole2.LIST_TYPE;
    -- contatori di riga e colonna
       riga number(4);
       colonna number(4);
    -- varie
       temp_dir varchar2(100); -- directory temp di lavoro
       file_name varchar2(100);
       num_righe number;
    -- costanti
          FONT_BOLD constant boolean := true;
          procedure scrivi_cella (r in number, c in out number, val in varchar2, bold in boolean :=false) IS
          BEGIN
                    args := client_ole2.CREATE_ARGLIST;
                    client_ole2.ADD_ARG(args, r);
                   client_ole2.ADD_ARG(args, c);
                   cell := client_ole2.GET_OBJ_PROPERTY(wksheet,'Cells', args);
                   client_ole2.set_property(cell, 'Value', val);
                   --font := client_ole2.GET_OBJ_PROPERTY (cell, 'Font');
                   --client_ole2.set_property (font, 'Bold', bold);  --> commentato perché non funziona in client_ole2
                   border := client_ole2.GET_OBJ_PROPERTY (cell, 'Borders');
                   client_ole2.set_property(border, 'LineStyle', 1);
                   client_ole2.DESTROY_ARGLIST(args);
                   client_ole2.release_obj(cell);
                   client_ole2.release_obj(border);
                   c:=c+1;
          END scrivi_cella;
    begin        
                   set_application_property(cursor_style,'BUSY');
             :elaborazione:='Attenzione: è in corso il download degli output su file excel.'||chr(10)
                          ||'L''operazione può richiedere alcuni minuti, si consiglia di non'
                          ||chr(10)||'chiudere l''applicazione.';
             synchronize;
             select count(1)
               into num_righe
                  from output a, r54_arif_arif b, sostitui c, modalita_forn d, r8_t_ente e, r7_t_archivio f,
                                     tipo_fornitore g
                    where b.id_periodo = a.id_periodo
             and b.id_processo = a.id_processo
                      and nvl(a.flag_cancellato,0) != 1
                         and c.cod_sostitui = a.cod_sostitui
                         and d.cod_modal_forn = a.cod_modal_forn
                         and e.codice_ente = a.cod_ente
                         and f.codice_archivio = a.cod_archivio
                         and g.cod_fornitore = a.cod_fornitore;
                   -- DEFINIZIONI OGGETTI OLE
                   XlApp := client_ole2.create_obj ('Excel.Application');
                   client_ole2.set_property (XlApp, 'Visible', false);
                   wkbooks := client_ole2.GET_OBJ_PROPERTY (XlApp, 'Workbooks');
                   wkbook := client_ole2.invoke_obj (wkbooks,'Add');
                   wksheets := client_ole2.GET_OBJ_PROPERTY (wkbook, 'Worksheets');
                   --wksheet := client_ole2.GET_OBJ_PROPERTY (wksheets, 'ActiveSheet');
                   wksheet := client_ole2.invoke_obj (wksheets,'Add');  --> Aggiunge un nuovo sheet
                   client_ole2.set_property (wksheet,'Name','Output');
                   -- RIGA DI INTESTAZIONE
                   riga:=1;
                   colonna:=1;       
                   scrivi_cella(riga,colonna,'ID PROCESSO',FONT_BOLD);     
                   scrivi_cella(riga,colonna,'TIPO PROCESSO',FONT_BOLD);     
                   scrivi_cella(riga,colonna,'DENOM. PROCESSO',FONT_BOLD);     
                   scrivi_cella(riga,colonna,'ANNO RIFERIMENTO',FONT_BOLD);
                   scrivi_cella(riga,colonna,'VINCOLI TEMPORALI',FONT_BOLD);     
                   scrivi_cella(riga,colonna,'SOSTITUIBILITÀ',FONT_BOLD);     
                   scrivi_cella(riga,colonna,'MODAL. FORNITURA',FONT_BOLD);     
                   scrivi_cella(riga,colonna,'NOME ENTE',FONT_BOLD);     
                   scrivi_cella(riga,colonna,'TIPO ENTE',FONT_BOLD);     
                   scrivi_cella(riga,colonna,'NOME ARCHIVIO',FONT_BOLD);     
                   scrivi_cella(riga,colonna,'FORNITORE',FONT_BOLD);     
                   scrivi_cella(riga,colonna,'SIGLA DIREZIONE',FONT_BOLD);     
                   scrivi_cella(riga,colonna,'SIGLA STRUTTURA',FONT_BOLD);     
                   scrivi_cella(riga,colonna,'STATO',FONT_BOLD);     
                   OPEN c_cur;               
                   LOOP
                             colonna:=1;
                             riga:=riga+1;                          
                          fetch c_cur into rec;
                          exit when c_cur%NOTFOUND;   
                                  scrivi_cella(riga,colonna,rec.id_processo);     
                                  scrivi_cella(riga,colonna,rec.sigla);                
                                  scrivi_cella(riga,colonna,rec.denom_proces);     
                                  scrivi_cella(riga,colonna,rec.anno_rif);     
                                  scrivi_cella(riga,colonna,rec.vincolo);     
                                  scrivi_cella(riga,colonna,rec.descr_sostitui);     
                                  scrivi_cella(riga,colonna,rec.descr_modal_forn);
                                  scrivi_cella(riga,colonna,rec.nome_ente);     
                                  scrivi_cella(riga,colonna,rec.nome_tipo_ente);     
                                  scrivi_cella(riga,colonna,rec.nome_archivio);     
                                  scrivi_cella(riga,colonna,rec.descr_fornitore);     
                                  scrivi_cella(riga,colonna,rec.sigla_direzione);     
                                  scrivi_cella(riga,colonna,rec.sigla_struttura);     
                                  scrivi_cella(riga,colonna,rec.descr_stato);     
                   END LOOP;
                   CLOSE c_cur;
                   client_ole2.DESTROY_ARGLIST(args);
                    args := client_ole2.CREATE_ARGLIST;
                    client_ole2.ADD_ARG(args, 'A:N');
                   cols := client_ole2.GET_OBJ_PROPERTY(wksheet,'Columns', args);
                   client_ole2.set_property (cols,'Autofit',true);
                   client_ole2.DESTROY_ARGLIST(args);     
                   client_ole2.release_obj(cols);
             tool_env.getvar('TEMP',temp_dir);
             file_name := 'Output_'||to_char(sysdate,'yyyymmdd.hh24miss')||'.xls';
                   args1 := client_ole2.CREATE_ARGLIST;
                   client_ole2.ADD_ARG(args1, temp_dir||'\'||file_name);
                   client_ole2.INVOKE(wkbook, 'SaveAs', args1);
                   client_ole2.set_property (XlApp, 'Visible', TRUE);
                   client_ole2.DESTROY_ARGLIST(args1);
                   client_ole2.release_obj(wksheet);
                   client_ole2.release_obj(wksheets);
                   client_ole2.release_obj(wkbook);
                   client_ole2.release_obj(wkbooks);
                   client_ole2.RELEASE_OBJ(XlApp);
                   set_application_property(cursor_style,'NORMAL');
                   :elaborazione:='';
                   synchronize;

    thanks for your ready reply.
    There's already an on.message trigger which simpyl calls the following procedure
    the procedure "informa" called whithin the following onw just sets the alert's properties and shows the alert object.
    What I want to know is why that message pops up if it is not an error cause the procedure does not generate any excel file.....
    IF tipo = 'M' THEN
          IF msgnum = 40301 THEN
             informa('La ricerca non ha ritrovato nessun dato. ');
        ELSIF
             msgnum = 40100 THEN
             informa('Primo record. ');
          ELSIF
             msgnum = 40352 THEN
             informa('Ultimo record. ');
             raise form_trigger_failure;  
          ELSIF
             msgnum = 40200 THEN
             informa('ATTENZIONE! Il dato non puo essere modificato. ');
         ELSIF
             msgnum = 40350 THEN
             informa('Non e'' stata trovata alcuna informazione per la richiesta effettuata. ');
          ELSIF
             errnum = 40401 THEN
             raise form_trigger_failure;  
          ELSE null;
             --informa(msgtyp||'-'||TO_CHAR(msgnum)||': '||msgtxt);
          END IF; 
    ELSIF tipo = 'E' THEN
          IF errnum = 40100 THEN
             informa('Primo record. ');
          ELSIF
             errnum = 40102 THEN
             informa('Il record deve essere inserito o cancellato. ');
          ELSIF
             errnum = 40200 THEN
             informa('ATTENZIONE! Il dato non puo essere modificato. ');
          ELSIF
              errnum = 40350 THEN
              informa('Non e'' stata trovata alcuna informazione per la richiesta effettuata. ');
    --      ELSIF
    --         errnum = 40401 THEN
    --         informa('Non vi sono modifiche. ');
    --     informa('Le modifiche eventualmente apportate sono state salvate. '); 
        ELSIF
             errnum = 41051 THEN
             informa('Ultimo record. ');
          ELSIF
             (errnum = 41000) OR (errnum = 41004) THEN
             informa('ATTENZIONE! Funzione non disponibile. ');
          ELSIF
             errnum = 41830 THEN
             informa('La lista risulta essere vuota.');
          ELSIF
             errnum = 40208 THEN
             informa('Attenzione i dati non sono modificabili');
          ELSIF
             errnum = 40401 THEN
             raise form_trigger_failure;  
          elsif  errnum= 40735 then
                   dbmserrcode := DBMS_ERROR_CODE;
                   dbmserrtext := DBMS_ERROR_TEXT;
                   IF dbmserrcode = -3114 THEN
                  informa('Attenzione Database non Attivo. Chiamare DBA Oracle al 06/46732312-2176 e chiedere di sistemare il Database PD_DIPA');
             end if;
          ELSE
             informa(errtyp||'-'||TO_CHAR(errnum)||': '||errtxt);
         END IF;
    END IF;
    END;

  • I spend a long time to try to sync my itunes music on my ipod 160 GB Classic, but after waiting so long get a pop up message that itunes stop syncing because of error 46, some times giving me 58, 1469, and many other numbers, please help macbook pro

    i spend a long time to try to sync my itunes music on my ipod 160 GB Classic, but after waiting so long get a pop up message that itunes stop syncing because of error 46, some times giving me 58, 1469, and many other numbers, please help am using macbook pro

    That is precisely what my mid-2010 MacBoook Pro 13 was doing before the drive finally died after an Apple Genius rebooted it a dozen or so times. I have since read about the exact same thing happening to others, including a writer for The Atlantic magazine who had never had an issue with a Mac before. Do a back-up ASAP to make sure you don't lose anything and see about replacing the HDD. It is only about $140 for a new drive. The real issue is if you lose your data, too. So, make sure you do that back-up!

  • Everytime I open lightroom I get a pop up message saying "Lightroom encountered an error when reading from its preview cache and needs to quit" and it closes. Ive already tried reinstalling, nothing seems to work. Help please!

    Every time I open lightroom I get a pop up message saying "Lightroom encountered an error when reading from its preview cache and needs to quit" and it closes. Ive already tried reinstalling, nothing seems to work. Help please!

    Open the folder containing your catalog. In that folder you will find another folder with the extension .lrdata, and you need to delete that folder. After you do that, Lightroom should start normally and will create a new preview cache.

  • Well, i was on my laptop now and all of a sudden a pop up message appeared and said "your download is complete" so i went to go check it out and it was 'MacProtector'. i cant delete it and it keeps opening unwanted web pages, please help me sort this out?

    Well, i was on my laptop now and all of a sudden a pop up message appeared and said "your download is complete" so i went to go check it out and it was 'MacProtector'. i cant delete it and it keeps opening unwanted web pages, please help me sort this out someone?

    Refer to:  http://cantalktech.com/2011/05/08/mac-protector/.

  • Just updated my iMac to OS X Yosemite and my Photoshop will no longer open. Pop up message informing Some of the application components are missing from the Application directory. Please reinstall the application. I have the pay monthly package and don't

    Just updated my iMac to OS X Yosemite and my Photoshop will no longer open. Pop up message informing, Some of the application components are missing from the Application directory, Please reinstall the application. I have the pay monthly package and don't know where to start.

    Do as it says: Reinstall the program. Run the cleaner tool and let CC app do the magic.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Mylenium

  • How do you get rid of this pop up message: You are currently browsing the web with and it is recommended that you update your video player to the fastest version available. Please update to continue.

    I am getting this pop up message: You are currently browsing the web with and it is recommended that you update your video player to the fastest version available. Please update to continue.
    How do I get rid of it? I have tried searching the web and I have only seen solutions for chrome and firefox. Thanks.

    the link to the page is below
    http://www.viesio9q58.com/41612C472C746D6E5047462D522B3A499CE6BD0593A068E7860909 6F792C3C69D19ECDCE71575FC8DABD23D1A0E21C93?PubID=79_3527_3100&tgu_src_lp_domain= www.newallsoft.com&ClickID=7649753723

  • Sign into iCloud pop-up message on iPad2 won't disappear off screen, have reset password multiple times but it is saying incorrect. Please HELP unable to use iPad as message appears every few seconds, iPad was working fine until now.

    Sign into iCloud pop-up message on iPad2 won't disappear off screen, have reset password multiple times but it is saying incorrect. Please HELP unable to use iPad as message appears every few seconds, iPad was working fine until now.

    After the restore did the phone work properly for a while? Say, a day or so?
    If so it is possible you have an app that doesn't let go of memory properly. I reboot my iPhone ( hold sleep/wake and hole till you see the apple logo) every few days. This resets the memory. The iPhone OS has doesn't seem to mange memory very well yet. So a reboot will help with that. I have had my phone almost slow to a stop before I started rebooting. Always reboot after installing a new app. Also do you close all pages in Safari when you are done? This is a good practice. Safari will run in the background and use processor time and drain your battery quicker. Create a new blank page then close all others when you are done browsing for a while. I have also found that certain web site that have animated images like weather maps will turn the phone into molasses. As soon as i close that page it gets faster.
    If all of the above have no effect then as Tamara said it is time for a trip to the Genius bar.
    Good luck

  • "Please Acknowledge" message from menu

    Dear All
    Can u tell me anyone how to suppress the message "Please Acknowledge" from a form, when calling a report?
    for ur knid information my report run successfully using menu item.
    Arif

    hi
    try something like this.
    create on-message trigger.
    begin
    if
      abs ( message_code ) = 40400
    then
      clear_message;
      bell;
      message ( message_text, no_acknowledge );
    else
      message ( message_text );
    end if;
    end;please check out the following link.
    Link
    sarah

  • Need Flash Player Pop-up Message Suppressed in Quiet Installer

    Hello Flash Player Installer Gurus,
    Thank you in advance for your help.
    I am launching the Adobe Flash Player 10 installer from another installer and I am running the Adobe Flash Player 10 installer in quiet mode.  However, even though I am running it in quiet mode, the installer pops-up the following:
    "The version of Adobe Flash Player Activex that you are trying to install is not the most current version.  Please visit http://www.adobe.com/go/getflashplayer to obtain the latest, most secure version. | OK"
    You can get this message to show up by, say, installing Flash Player 10.1, uninstalling Flash Player 10.1 and then attempting to install Flash Player 10.0.
    I understand why I am getting this error message, but I'm trying to prevent this and any other error messages being shown in quiet mode.  When an installer runs in quiet mode it shouldn't do stuff like this.  I need a truly quiet Adobe Flash Player Installer.  The fact that Adobe's Flash Player installer is not quiet is a big problem for us because the user needs to acknowledge this pop-up and we want to run our installer in unattended mode.
    The command line we are using is as follows:
    msiexec /i "install_flash_player_10_active_x.msi" /qn
    This correctly runs the installer in quiet mode (except for the previously mentioned pop-up message I am getting).
    Does anybody know how to run the Adobe Flash Player 10 installer in truly quiet mode so that the pop-up message described above does not show?
    Thanks in advance,
    Dencolp

    Hi Jim,
    Thanks for writing to us with your issue mentioned fully. A similar query like your's had been answered recently in this same Flash Player forum - http://forums.adobe.com/message/5144102.
    May I suggest you to please read and follow the suggestions mentioned in the above link. Hope the solution works. Else do write back with your issues.
    With regards,
    Prabhu

  • Please Acknowledge

    Hii,
    Application == Oracle 11i
    Database == Oracle 10g
    OS == Win XP
    When i open my application "Please Acknowledge" message is pop-up everytime on form, block, new record.
    Please assist.
    Pradhyumn Sharma

    This looks to be debug code in CUSTOM.pll or personalizations. Can you reproduce the issue by disabling CUSTOM.pll and personalizations ? You can disable by clicking on Help > Diagnostics > Custom Code > Off
    HTH
    Srini

  • How can I create a pop up message in MULTILINE on WEB GUI?

    Hi Experts,
    I have gone through several thread to search if I can write pop up message in more than in one line.
    for example...
    title: continue ?
    SDD no12366
    customer name: abc ltm
    lines: 2 lines records
    gr_pers_popup = comp_controller->window_manager->create_popup_2_confirm(
                        iv_title = 'CAUTION - Continue Import ?'
                        iv_text = lv_text "'SDD-1234676; Cust - ABSOLUTE GLASS WORKS; Lines - 2'
                        iv_btncombination = if_bsp_wd_window_manager=>co_btncomb_yesno
        gr_pers_popup->open( ).
        gr_pers_popup->set_on_close_event( iv_event_name = 'Confirm' iv_view = me ).
    Please advise, if any work around available to display multiple line on pop_up_confirm text on WEB UI .
    Thanks in advance.

    Multiline messages cannot be shown on standard Pop Up. In case you need multiline messages then create a new view, use it as a pop up and then you can show text messages as per the business requirement.
    The blog mentioned above (http://wiki.sdn.sap.com/wiki/display/CRM/CallingCustomcomponentaspopupfromastandardcomponentinCRMWEBUI-Part+2) will definately help you
    Rg,
    Harshit

  • A pop-up message is frozen on my settings page. I was trying to set up an apple id for iTunes when I got a message "required fields have been left blank. The missing information is highlighted in red." the ok button doesn't work. 1st gen iPad.

    A pop-up message is frozen on my settings page. I was trying to set up an apple id for iTunes when I got a message "required fields have been left blank. The missing information is highlighted in red." the ok button doesn't work. The message is now fixed & I cannot get rid of it. Ironically, when I found this forum I was able to set up an apple Id. Please advise how to get rid of the pop-up box. Thanks!

    I'm having this same problem as well and cannot advance--very irritating. All of the information is filled out correctly and I've editted my AppleID information online separately as well to get around this issue, but no luck...

Maybe you are looking for

  • How can I import an i-tune into a powerpoint presentation?

    I am preparing a slide show for my wife's birthday on powerpoint 3.0, and I am a beginner. I want to play a song and show 93 slides. When I try to import the song by a file name, I can get into itunes, and I can select the artist and get to the album

  • Pricing not determined in Delivery

    Hi All We want pricing of Sales Order to be copied in Delivery. We assigned the Pricing Procedure to our Delivery Document in customising. Now when we try to create delivery with ref. to Sale Order the pricing is coming perfectly fine, but the Tax (V

  • Problems to install OS X Lion

    I just buy on app store the new OS X lion and im having problems to install it on my mac book air. Someone can help me ? When i follow the instruction it stop on the windows saying " selected the disque"  but i can't select anyone , i don't undersand

  • Archiving of Info Records

    Hi, I have 22 Materials and now user wants me to archive all the INFO Records related to these 22 materials? Please guide me what are the prerequisite needed to be done by me before archiving all the INFO Records. Note: We had errors in Production sy

  • Z10 Browser - Developer Tools. Desktop Mode & Disc Cache

    Would anyone with a knowledge of the Z10 be able to explain whether these options are for the regular user - such as myself? I do understand the function of "Web Inspector" ..yet I'm curious as to whether "Disc Cache" is needed in order for the brows