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.

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

  • 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

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

  • Acknowledge message keeps appearing

    I am using Forms 9.0.4.0.19 on WinXP against DB 9.2.0.7
    I created a very simple form with one push button item. I added a when-button-pressed trigger which does the following (nothing !)
    DELCARE
    BEGIN
    NULL;
    END;
    So on pressing the button I would expect nothing to happen at all. However, on pressing the button I get the Forms popup "Please acknowledge the message".
    There is no message in the popup box or on the status line. Even if I add some meaningful code to this trigger I still keep getting the popup box.
    I created a simple form to test this as I am having the same issues with Forms applications that I moved from 6i and not just on pressing buttons but on startup, executing queries, in fact all over the place I keep getting this "acknowledge messge" popup but with no corresponding message or error of any sort. After acknowledging the process continues as expected.
    Has anyone had this problem before ? If I try to set a breakpoint to debug this in the when-button-pressed trigger, the popup appears before the breakpoint is reached.
    Any help much appreciated
    Shaq

    Very simple, in Edit>Preferences>runtime the debug messages box was checked. It shouldn't be.
    Shaq

  • Acknowledgement Message in VC

    I need to know how to display an acknowledgement like 'Data submitted successfully" in VC after  data reaches the database.. how to configure the submit button and how to design the logic.
    Thanks in Advance..

    Hi Nivedita,
    One option is to have a prompt button and write the message in its properties. That means whenever the button is clicked it will show the message but this event will eb done before triggering the dataservice.
    So better to proceed with the BAPI options.
    Acknowledgement messages can be done by capturing the return type of BAPI.
    Just follow the steps:
    1.> Drag the BAPI and choose the Return port in the same way as it is done for input port.
    2.> Then from Return port drag a link and create a form and select the message field of it.Just check the return port fields and test the BAPI.
    3.> I hope you must have already done with the input form so no need to do any changes there.
    4.> Just go to the Return port form and choose the properties of the  UIElement Inputfield. There mention the formula as:
    ex: If(MessageType@Error="true","Not updated")
    Or just mention your logic. If you need some more help please mention. I hope it will help you.
    Regards,
    Nutan
    Edited by: nutan champia on Aug 1, 2008 2:22 PM

  • Please acknowledge-106557-106557:non ORACLE exception

    Hi everyone.
    I have created a form in which the required data gets displayed in the excel (.xls) file on clicking a button.
    When i run the form, I am getting error that is FRM-40735: WHEN-BUTTON PRESSED trigger raised unhandled exception ORA-106557.
    When i run the form again, I am getting result as expected. It works perfectly fine.
    After i log in to the software, only for the first click i get that error. Later it works fine.
    So i tried to catch the exact error by putting an exception code that is:
    EXCEPTION
    WHEN OTHERS THEN
    MESSAGE(SQLCODE||' - '||SQLERRM);
    PAUSE;
    END;
    After compiling with the exception; I got an error message and an error alert window.
    The Error window shows 'Please acknowledge'.
    The Error message is -106557-106557:non ORACLE exception .
    I am not getting to know what is wrong exactly because it shows FRM-40735 error only for the first time, later it works fine.
    Can you Help me with this.
    Thank You.

    DECLARE
      CURSOR C_EXCEL IS
      SELECT DISTINCT INDIRECT_RECD.SLNO SLNO,
      INDIRECT_RECD.COMPLIANCE COMPLIANCE,
      INDIRECT_RECD.DUE_DATE DUE_DATE,
      INDIRECT_RECD.UNIT1 UNIT1,
      INDIRECT_RECD.UNIT2 UNIT2,
      INDIRECT_RECD.UNIT4 UNIT4,
      INDIRECT_RECD.UNIT5 UNIT5,
      INDIRECT_RECD.UNIT6 UNIT6,
      INDIRECT_RECD.UNIT7 UNIT7,
      INDIRECT_RECD.UNIT11 UNIT11,
      INDIRECT_RECD.UNIT12 UNIT12,
      INDIRECT_RECD.UNIT14 UNIT14,
      INDIRECT_RECD.UNIT15 UNIT15,
      INDIRECT_RECD.UNIT16 UNIT16,
      INDIRECT_RECD.UNIT18 UNIT18,
      INDIRECT_RECD.UNIT20 UNIT20,
      INDIRECT_RECD.UNIT25 UNIT25,
      INDIRECT_RECD.UNIT91 UNIT91,
      INDIRECT_RECD.COMP_MONTH COMP_MONTH
      FROM INDIRECT_RECD
      WHERE COMP_MONTH=:IT_DATE;
      CONVID PLS_INTEGER;
       ROWCOUNT NUMBER;
       RW NUMBER:= 7;
       RR NUMBER :=2;
       x number :=0;
       sn number := 1;
       OUT_FILE Text_IO.File_Type;
       FNAME VARCHAR2(50);
    BEGIN
      FNAME := GET_FILE_NAME('C:\', File_Filter=>'Excel Files (*.xls)|*.xls|',DIALOG_TYPE=>SAVE_FILE);
      IF FNAME IS NOT NULL THEN
      OUT_FILE := Text_IO.Fopen(FNAME, 'w');
      Text_IO.Fclose (out_file);
       CONVID := DDE.App_Begin('C:\PROGRAM FILES\MICROSOFT OFFICE\OFFICE\EXCEL.EXE '||FNAME,
       DDE.APP_MODE_MAXIMIZED);
       dbms_lock.sleep(1);
      ConvID := DDE.Initiate('EXCEL', FNAME);
      DDE.Poke(ConvID,'R1C2','COMPANY LTD.',DDE.CF_TEXT,2000);
      DDE.Poke(ConvID,'R2C2','INDIRECT.', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R3C2','MONTHLY REPORT - CLOSED.', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R4C2','For the MONTH/YEAR = '||to_char(to_date(:IT_DATE,'RRRR/MM'),'MONTH/RRRR'), DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C1','SLNo.', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C2','Compliance', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C3','Due_Date', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C4','Unit-1', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C5','Unit-2', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C6','Unit-4', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C7','unit-5', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C8','Unit-6', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C9','Unit-7', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C10','Unit-11', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C11','Unit-12', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C12','Unit-14', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C13','Unit-15', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C14','Unit-16', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C15','Unit-18', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C16','Unit-20', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C17','Unit-25', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C18','Unit-91', DDE.CF_TEXT, 2000);
      DDE.Poke(ConvID,'R6C18','YEAR/MM', DDE.CF_TEXT, 2000);
       For i in C_EXCEL
         loop
         sn := sn + 1;
                DDE.Poke(ConvID,'R'||RW||'C'||1,nvl(i.SLNO,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||2,nvl(i.COMPLIANCE,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||3,nvl(to_char(i.DUE_DATE,'DD-MON-RRRR'),' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||4,nvl(i.UNIT1,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||5,nvl(i.UNIT2,' '), DDE.CF_TEXT, 2000);
            DDE.Poke(ConvID,'R'||RW||'C'||6,nvl(i.UNIT4,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||7,nvl(i.UNIT5,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||8,nvl(i.UNIT6,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||9,nvl(i.UNIT7,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||10,nvl(i.UNIT11,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||11,nvl(i.UNIT12,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||12,nvl(i.UNIT14,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||13,nvl(i.UNIT15,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||14,nvl(i.UNIT16,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||15,nvl(i.UNIT18,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||16,nvl(i.UNIT20,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||17,nvl(i.UNIT25,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||18,nvl(i.UNIT91,' '), DDE.CF_TEXT, 2000);
         DDE.Poke(ConvID,'R'||RW||'C'||18,nvl(i.COMP_MONTH,' '), DDE.CF_TEXT, 2000);
         RW := RW+1;
         x :=1;
      end loop;
    RR:=RW-1;
      IF x  = 1 THEN
      DDE.Poke(ConvID,'R'||RW||'C2','END OF REPORT', DDE.CF_TEXT, 2000);
      ELSE
      DDE.Poke(ConvID,'R7C1','No Data Found', DDE.CF_TEXT, 2000);
      END IF;
      END IF;
    End;
    Please acknowledge-106557-106557:non ORACLE exception 

  • B2B Acknowledgment Message

    Hi,
    I am using oracle B2B 11g.
    Need information about Acknowledgment message from trading partner.
    When I am using one open source AS2 Server as my trading partner then Acknowledgment message was shown under Business Message tab,but when I an using web methods trading partner i can not see the Acknowledgment message under Business Message tab.what could be the reason for this.In case of web methods trading partner Acknowledgment message is shown under Conversation tab.
    please let me is this correct behavior of the Oracle B2B.
    Thanks,
    Arun Jadhav
    Edited by: [email protected] on Apr 8, 2010 4:49 AM

    Hi Nites,
    What could be the reason of following error.
    MDN for -
    Message ID: <C0A8C8BC127E145FEAB000008561F000@CDS>
    From: XXX
    To: XXX
    Received on: 2010-04-09 at 06:33:35 (GMT)
    Status: processed/error: insufficient-message-security
    Comment: This is not a guarantee that the message has been completely processed or understood by the receiving translator
    ------=_Part_66_197759.1270794815667
    Content-Type: message/disposition-notification
    Content-Transfer-Encoding: 7bit
    Reporting-UA: webMethods Integration Server
    Original-Recipient: rfc822; XXX
    Final-Recipient: rfc822; XXXX
    Original-Message-ID: <C0A8C8BC127E145FEAB000008561F000@CDS>
    Disposition: automatic-action/MDN-sent-automatically; processed/error: insufficient-message-security
    ------=_Part_66_197759.1270794815667--
    Thanks,
    Arun Jadhav

  • Please wait message when opening form created by Adobe LiveCycle Designer ES 9.0

    Problem
    Please wait message when opening form created by Adobe LiveCycle Designer ES 9.0
    Full message
    Please wait... If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document. You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting  http://www.adobe.com/products/acrobat/readstep2.html. For more assistance with Adobe Reader visit  http://www.adobe.com/support/products/ acrreader.html. Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S
    Actions
    Updated Windows RT 8 to 8.1
    Uninstaled Adobe Reader Touch 1.3 and instaled 2.0 Build 84770
    Additional Information
    The form was created 10 or 11 months ago, and we are pretty sure that we were able to open it a while back
    The same PDF file opens just fine in Windows 8.1 using Adober Reader XI 11,0.06, it is only the app that is affected.
    The document cannot be opened by any other mobile app that we have tried or on another mobile OS (iOS)
    Any ideas?
    Thanks & Regards
    Jim

    The user's assertion is surprising to me, but perhaps I'm missing something important. I thought the correct position was from the conclusion of my earlier post "it can't be done". Adobe state their Reader Touch doesn't support XFA (http://blogs.adobe.com/readermobile/2012/12/13/adobe-reader-for-windows-8-tablets/). Unless (see that blog entry) you changed the type of form.

  • Processing acknowledgement messages in PI

    Hello Experts,
    I am having a Mainframe to ABAP proxy scenario where I am updating mainframe data into SAP. Mainframe application expects the acknowledgement after successful update into SAP. I have created another Proxy to Mainframe interface for the same.
    But I also found that, the target ECCsystem generates acknowledgement message and sends it back to PI server (I could see the same in SXMB_MONI udner Request message).
    I was planning to make use of this message to send acknowledgement back to mainframe system but couldn't find how to acheive this. I tried creating receiver determination for the same but was not of any help.
    I had a look at help.sap.com but it talks about processing acknowledgements in Sender ABAP proxy or incase of IDocs but it discusses about querying the acknowledgement messages.
    Can we make use to acknowledgement message where senders of the message are not capable of querying this message?
    Thanks in advance.
    Regards
    Rajeev

    i don't think this is possible

  • I get a please wait message, and the pdf document never loads?

    I get a Please Wait message, and the pdf document never loads. i have the latest version on my mac- no luck!

    windows xp version x1 the latest.  trying to open  in gmail.
    On Mon, Feb 17, 2014 at 1:23 PM, Claudio González

  • Want to show a "Please Wait" message while processing

    Hi,
    I'm developing an image-processing tutorial applet where the user selects an image and then sets some parameters before pressing an update button which will run a JPEG compression on the image and show the compressed image.
    The compression takes a few seconds, so I want the program to show an image saying "Please wait" in the position that the compressed image will appear while the compression is done.
    Here is the relevant code:
    public void paint (Graphics g) {
      if (updating) {
        updating = false;
        g.setColor(getBackground ());
        g.fillRect(575, 370, 250, 250); //clear the area where the image will appear
        g.setColor(Color.white);
        g.drawImage(updatingImg, 575, 370, 250, 250, this); //updatingImg just displays a "Please Wait" message
        doImage = true;
      if (doImage) {
        doImage = false;
        //perform the compression to get the new image and then show it
        newImg = imagetest.compressImage(origImg, quantizationMat);          
        g.setColor(getBackground ());
        g.fillRect(575, 370, 250, 250);
        g.setColor(Color.white);
        g.drawImage(newImg, 575, 370, 250, 250, this);
    public void actionPerformed(ActionEvent evt) {
      if (evt.getSource() == update){
        //perform some error checking
        if (errorFound == false){
          updating = true;
          repaint();
    }The problem is that the "Please wait" image never gets shown.. while the compression is carried out that part of the screen remains blank and then the new image is shown.
    Can anyone tell me how to fix this?
    Thanks.

    Never mind, I've figured it out.. needed to put the time consuming code in a new thread.

  • Idoc acknowledgement message to web service

    I am trying to set up the scenario SOAP sender>XI>IDoc Receiver.
    I have exposed the outbound, synchronous message interface as a web service, and I'm planning to use sync-async bridge in BPM.
    My problem is: I need a response message from SAP. Can I use an iDoc acknowledgement message for this purpose? If this is the case, how do I set up SAP to send this acknowledgement message to XI, and do I have to configure an iDoc sender channel for this purpose?
    Any comment is appreciated!
    Thanks,
    Håvard

    One option - not a ABAP expert but this is what I understood with my discussions with my ABAP team when we were coveringt he same issue -
    In the Idoc Inbound Processing Code - write a ABAP Exit that after processing the Idoc will trigger the RBDSTATE report to trigger the AleAudit back to XI and XI will send it back to R3.
    It is surely possible, as the Aleaudits are triggered by RBDSTATE report instead, you can manually makde the Idoc procesing code to trigger this report immdeitaly and so on.
    An Abap , Ale_Idoc specialist will have the answer to this in seconds - on how to do this - but am not one
    Regards
    Bhavesh

Maybe you are looking for

  • WiFi not working with 2G iPod Touch (2.1.1)

    I just sold my 1st gen iPod touch on craigslist and got 2nd Gen. What a disappointment so far. It will not connect to my WiFi router using WPA/WPA2 encryption. I searched forums and found other people here having same issues. Someone suggested to do

  • Which table sap stores initial budget entry by periods?

    So I entered initial budget balance in FMBBC by periods (1-12). I search available reports but none of the report shows the budget by periods (except for FMB_B02 - Budget View by Process) but I have to clicks it through one by one. Its not practical.

  • Problems printing spot colors overprinting registration color

    In order to get a spot color to overprint a registration color on a proof, I have to change the spot color to multiply and then select convert all spot colors to process in the output dialog. I've never had this problem before using CS4. I'm running

  • Can't load Mandrake 9 with onBoard sound enabled.

    Any ideas as to why? I can not boot into Mandrake 9 when I have onBoard sound enabled, it always freezes when it tries to load the i810 sound interface system. Yet when I disable it in the bios it loads perfectly. I've already installed the nForce sy

  • Read application item from LDAP

    We are using OpenLDAP authorization. The configuration data resides in the APEX authorization definition. Now my question: should it be feasible to read further attributes from the user logging in, without the need to redundantly define host, base dn