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....

Similar Messages

  • "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;

  • 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.

  • I have an iPhone 4S. I'm using a Belkin tune-cast F8Z498 FM transmitter. Has worked fine for several months. Now I'm getting an "accessory not supported" message.  Any help out there?

    I have an iPhone 4S. I'm using a Belkin tune-cast F8Z498 FM transmitter. Has worked fine for several months. Now I'm getting an "accessory not supported" message.  Any help out there?

    people repport dirt in the connector can cause this
    guess a broken connector could too

  • Not getting pop up the informative message in BADI

    Hi All,
    Am working on me21n Transaction, and implementing ME_PURCHDOC_POSTED Badi in that method i raised an informative message but it was not getting pop up. any body help me out

    Hi Sangeetha,
    In that ME_PURCHDOC_POSTED  View the Method 'CHECK'
    they given some standard validation  for me21n, Check it, it will helpful for your requirement.
    Regards,
    Venkat.

  • "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

  • I'm having trouble installing Adobe Flash Player. Get a failure to initialize message. can you help

    I'm having trouble installing Adobe Flasher Player. When I try I get a failure to initialize message. How do I initialize it?

    Dj5263 wrote:
    Hi my name is Derek in I'm having trouble installing adobe flash player for Kindle HD could you please help me.
    You'll continue to have trouble, because...
    There is no more Flash Player for Android and there won't be another. Android is no longer compatible with Flash Player. Playing Flash content is very processor consumptive and it drains your battery, also shortening the life of it. Android (Google) recommends using either "Dolphin" or "Puffin" as your browser if you need to view Flash content with a mobile device running Android. They're both free in the GooglePlay store.
    These browsers use "server side" rendering to reduce the load on your device.

  • HT3475 Trying to install/enable VoiceOver on a 4th Gen Shuffle, I get "unable to install, error message 1618". Help.

    I am having problems installing/enabling Voice/Over on a new 4th Gen iPod Shuffle.
    I am using a Windows 7 PC.
    Afer I "plug in " the iPod Shuffle, underr Summary, when I select Enable OverVoice, and click on Apply, the dialogue boxes appear to download from Apple Sofware Update "VoiceOver kit for iPod" v.1.4.2, I then click "Next" and "Agree". The VoiceOver Kit software is downloaded, I then click to install, "Yes" etc. Then I get a dialogue box saying "iTunes was unable to install the VoiceOver Kit. An unknown error occurred (1618)". I've tried this several times, and get the same result. 
    Anyone able to help?

    Do it manually:
    How to perform a "clean install" of Flash Player in Mac OS X

  • Can't get rid of Annoying MobileMe Message!! Help!

    Every time I start up Logic, I see a dialog box that reads as follows:
    "*You are not logged on to your MobileMe account*.
    +Please check your username and password in the MobileMe preference pane. You may also need to confirm keychain access to MobileMe.+"
    How do I get rid of this!! I am NOT using MobileMe.
    Any ideas?

    apple menu --> System Preferences --> MobileMe --> Account --> Sign Out?
    or delete your username in there?
    Perhaps delete
    /Users/yourusername/Library/Application Support/MobileMeSyncClient/
    and/or
    /Users/yourusername/Library/Caches/com.apple.mobileme.configuration
    /Users/yourusername/Library/Caches/com.apple.mobileme.queueddataclasses
    /Users/yourusername/Library/Caches/com.apple.mobilemesyncclient

  • 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

  • New computer - want to move library - insert blank disc - gets popped out

    I bought a new computer and want to move my library. I followed the Apple instructions and put my blank Office Depot CD-R 52x 700MB disc in the drive and it gets popped out and the message is "insert disc". My drive is listed in the available burning drives. Anybody have any ideas?

    I bought a new computer and want to move my library. I followed the Apple instructions and put my blank Office Depot CD-R 52x 700MB disc in the drive and it gets popped out and the message is "insert disc". My drive is listed in the available burning drives. Anybody have any ideas?

  • When connecting to wifi, I get a "Connection timeout" error message.

    I'm trying to connect to a WEP password wifi signal. I have the password, but when connecting, I'm getting a connection timeout error message. Please help?

    I'm having the exact same problem. Yesterday it was fine, but today, I get connection timeout error message. Help?

  • 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.

  • My mac has a virus yes I'm 100% sure it is one i get al kinds of pop ups only in safari though please guide me on how to reset it or where to go from here in detail new to macs

    My mac has a virus yes I'm 100% sure it is one i get all kinds of pop ups only in safari though please guide me on how to reset it or where to go from here in detail im new to macs

    Please post a screenshot that shows what you mean. Be careful not to include any private information.
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • Having problem with iPad sync getting pop up message as below. The iPad cannot be synced because there is not enough space to hold all of the items in the iTues library (additional 10.03 GB required).  There is enogh space be it in PC or on iPad.

    Having problem with i Pad sync getting pop up message as below. The i Pad cannot be synced because there is not enough space to hold all of the items in the iTunes library (additional 10.03 GB required).  There is enough space be it in PC or on i Pad. Why and What can be done to resolve, please advice appreciate. Thanks

    It generally means - just using random numbers for examples - the iTunes on your computer holds 45 gig of content, you have a 16 gig iPad which has 13 gig of free space and the content just won't fit.
    Easy solutions. go into iTunes and 'manually manage' your content. I believe this is in the main summary tab for your device (connect your device, click on the icon in iTunes to access controls for your iPad
    You may also need to choose to manually control content in both the music and movie tabs.
    Apple - Support - Manuals
    the manual will have more specific info for syncing and controlling content

Maybe you are looking for

  • Can I run two external displays off a MacBook?

    Hi there. I would like to run two external 20" Acer (VGA) displays off of my MacBook. I already use one 20" in addition to my MacBook screen but would like to have two full sized screens to work off and would not need the 13" from the MacBook. The Ma

  • Powerpoint-style bullets on mac/pc

    Hi All: Anyone have insights as to how to mimic powerpoint-style bullet behavior in Director? In other words, it's not just a matter of numtoChar, it's also the indents, etc... just like ppt, basically! I already know about this: if the platform cont

  • View last 5 lines from select statement?

    Hi, I would like to view only the last 5 lines from a select statement, how would this be done? Something like: select * from a ................. regards RobH

  • Is there a solution to the problems with iPhone update 5?

    My phone (3GS), which hitherto, worked absolutely fine, slowed right down immediately after updating to 5. And, as many people have found, immediately following the update, the battery life developed a mind of its own - having previously been steady

  • Issues in screen exit

    Hi all, I am working on the requirement to print the work order attachments (tcode iw32). To achieve this functionality we have found out enhancement IWO10018, from which we are using function exit 'EXIT_SAPLCOIH_018' and screen exit SAPLXWOC screen