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

Similar Messages

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

  • 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 

  • Apple: please acknowledge notifications problem

    Can someone at Apple please acknowledge the issue that many of us are having not receiving notifications despite the proper settings in our account (see thread in this forum) so we know that you're at least aware of the issue and planning to fix it?
    Thank you.

    Hi Badlydrawnboy;
    You are speaking to other users just like yourself here. If you really what Apple to see this send it to iPhone FeedBack instead.
    Allan

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

  • Fix? Please acknowledge that you sent out an update before it was ready that crippled every one of your customers' LG G3s.

    Can you at least send an update that disables IpV6 so we can get notifications and access instagram and other apps at normal speeds?  I am about to switch carriers because this is ridiculous. 

    Hi Charlie, did you managae to figure out this problem. I have the same problem using exchange and ssl.
    It gets stuck in a look and keeps re-sending the message.
    Many Thanks

  • HT1430 Two days and FaceTime is not working for myself and many others. Have tried everything possible. Apple Support please acknowledge and fix the problem!

    I have done everything suggested several times. I am seeing more posts everyday from other people having problems
    With FaceTime.

    This is not apple support and we cannot fix the issues with FaceTime. This is a user to user forum. There's a link to Apple support at the bottom of this page.

  • 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

  • Why GWt suggest box is not working in the latest versions of Firefox ? It was working only in Firefox 3 and not other versions. could you please assist in this regards.,

    Why GWt suggest box is not working in the latest versions of Firefox ?
    It was working only in Firefox 3 and not other versions. could you please assist in this regards.,

    jbren wrote:
    I repeatedly have problems with playback on my STB's. Go thru all the motions, inhouse agent, fix multi room dvr problems. Unplug unit, unplug dvr, etc. etc. etc.  The DVR'd show will play on the DVR but not on the STB's. What's up with that?
    Sorry to hear the auto fix suggested early did not fix your problem. So we can get more information from you, I have copied your post to our private support board. Please refer all correspondences to there from here on out. You can easily get to the private support one of two ways. In the email you signed up for the forums with, you will receive a link to click on. Make sure you are already signed into the forums before clicking on this link. Another way of getting there is by clicking on your username anywhere you see it in the forums. This brings you to your account profile. Scroll down to the section labeled "My Support Cases" . In there you will see the link to your case.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • Help Please! I am trying to get the 7232 DVR

    I have been trying to get the 7232 DVR since installation.
    My Triple Play was installed on 12/23/2011 and I was given NO DVR.
    I was told I needed to go to the neaest store to get my DVR. At the store they told me they did not have the 7232 but gave me an older DVR, the only one they had in stock but I should call customer service to get the 7232 DVR.
    I called customer service and they said I could only order the 7232 online. I ordered it online around 1/1/2012. Ticket NJDQ026S1V
    I called customer service today and they have no idea where I am in the waiting list and how long it will take.
    I don't think it si fair that since the installer made a mistake that I get stuck with an old DVR.
    Please tell me what I can do
    Thank you for your help 

    The installer did not make a mistake. Installs are done with available equipment. The installation tech likely did not have that box. That ticket you referenced did not show ordering a box. The 7232 can not be ordered on the phone. It must be ordered online. Please follow these steps...
    Go to www.verizon.com/fiostvcentral 
    Sign In
    Select the “FiOS TV” Tab
    Select “Settings”  sub-listing
    Select “Set Top Boxes” from the drop down list
    Select the “Go” button under “Want more from your FiOS DVR.”
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • JDBC/SQLJ Team - Please respond - invalid column type error

    Hi, I have posted several messages regarding problems using SQL/J to call out a stored packaged function that returns a ref cursor, but haven't gotten one response. I have yet a new problem with it. JDBC team, please acknowledge!
    I change the way I obtain a connection to the database from using the Oracle.connect along with a properties file, to now using a DataSource connection pool. As a result, I am constantly getting a SQLException: Invalid column type error. If I change the call to the stored function to a query in the SQLJ code, it's fine. What's going on??
    A previous message I wrote stated I was constantly getting a "closed statement" error when I tried to call the next method of the iterator. I corrected this by removing the finally clause in the generated JDBC code that released the execution context.
    Again, the environment is JDK1.2.2, SQLJ 8.1.6 SDK, JDBC 8.1.6 thin, all on NT.
    Thanks
    David

    I am getting the same error message - Invalid Column Type. I am creating a Default Context by calling Oracle.getConnection(connection) passing in an instance of my own connection class that basically delegates to the OracleConnection. We wrapped the Connection so that we could trap and recover from lost database connections.
    My environment is Solaris 2.6, Oracle 7.3.4 with Sqlj 8.0.5.
    Thanks!
    [email protected]
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by David Christopher ([email protected]):
    Hi, I have posted several messages regarding problems using SQL/J to call out a stored packaged function that returns a ref cursor, but haven't gotten one response. I have yet a new problem with it. JDBC team, please acknowledge!
    I change the way I obtain a connection to the database from using the Oracle.connect along with a properties file, to now using a DataSource connection pool. As a result, I am constantly getting a SQLException: Invalid column type error. If I change the call to the stored function to a query in the SQLJ code, it's fine. What's going on??
    A previous message I wrote stated I was constantly getting a "closed statement" error when I tried to call the next method of the iterator. I corrected this by removing the finally clause in the generated JDBC code that released the execution context.
    Again, the environment is JDK1.2.2, SQLJ 8.1.6 SDK, JDBC 8.1.6 thin, all on NT.
    Thanks
    David<HR></BLOCKQUOTE>
    null

  • Verizon, Does YOUR equipment need service and upgrade? Not OURS? Please Help

         Hello,
    I used to have a pretty stable dial-up, then DSL, then DSL enhanced connection. But late this summer, my service has gotten horrible. In the evenings, I can get disconnected every 1 to 2 minutes or even get disconnected when I am trying to reconnect from the last disconnect.
    I have a new modem/router from Verizon and have gone through all the standard troubleshooting suggestions given on this site.
    I then began sifting through these forums and then posting about my difficulties.
    Through the last several months it seems as though more people are complaining about the frequent internet slowdowns and disconnects. We've all been walked through the same steps.
    Finally we are being told that these problems are happening during "high-traffic" times on the internet and nothing else is said.
    I recently saw a post where a customer said they were told by a Verizon service technician that the problems are because Verizon's hardware needs to be upgraded to handle the larger amount of internet traffic.
    I have rebooted and reset my modem many times. I've restarted my computer, run cleaning programs, cleared the DNS folder, and defragged. I've even changed the phone and Ethernet cables.
    Verizon,
    Will you please work on solutions on your end instead of saying everything is on OUR end?
    Thank you

    We had escalated this previously for you and your post was copied to our private support board. Please refer all correspondences to there from here on out. You can easily get to the private support one of two ways. In the email you signed up for the forums with, you will receive a link to click on. Make sure you are already signed into the forums before clicking on this link. Another way of getting there is by clicking on your username anywhere you see it in the forums. This brings you to your account profile. Scroll down to the section labeled "My Support Cases" . In there you will see the link to your case.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

Maybe you are looking for

  • NetBeans 5.0 and Tomcat 4.1

    Hello, I'm using NetBeans 5.0 and I have been using the Bundled Tomcat version 5.5.9 for my servlet container and everything's been great. Now that I'm ready to push my application up to a web host, I found that my host (lunarpages) runs with Tomcat

  • Inserting blank line in internal table

    Hi I am inserting a report  from a internal table for eg the content of my internal table is data : abc event initialization. perform read_data. Now I want  1 blank line after every line in the internal table for eg data:abc event initialization perf

  • Slideshow creation

    Hi, I'm trying to create a slideshow that will play on a DVD player. I do not have easy access to a DVD Burner so hopefully I will be able to burn the final product to a CD and then play it. The slideshow will, hopefully, contain pictures w/ the Ken

  • Can you convert the a previously provided Labview 6.1 file sent previously to 6.0?

    Previously an example was provided as a solution for measuring low frequency transfer functions using swept sin mode with a DSA 4551 card. I currently do not have access to 6.1 and would like a copy in 6.0 if possible. Original file is attached. Than

  • Trying to format an Iomega 1TB for mac

    I got two 1TB drives from radio shack and can't get them to format to mac. Both were stuck saying something about a 4k block for more than an hour, I thought it was suppose to tell me how much time was remaining? After quitting disk utility on both d