Simple Block - Unable to Update

Hello Experts,
I am creating a simple form which is used for creating and searching a values from tables.
BANNER
Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production
PL/SQL Release 8.1.7.4.0 - Production
CORE    8.1.7.0.0    Production
TNS for IBM/AIX RISC System/6000: Version 8.1.7.4.0 - Production
NLSRTL Version 3.4.1.0.0 - Production
Oracle Forms Version : 6iCreated two blocks
Block-1(Search block)
======================
Block Name: BLK_SEARCH with one item - created as non-database block
Items
object_name - text item
Push Button
Search
Block-2(Update block)
======================
Blockname: OBJECT_UPDATE
Text Items
Object_name
object_type
actual_creation_date
Objective: When i enter object_name and click on "Search" button then the records should be fetched and i should be in position to update any values in the OBJECT_UPDATE block.
i.e
Object_name
object_type
actual_creation_date
Instead throwing error:-
APP-FND-01206: This record already exists. You have entered a duplicate value or sequence of values that must be unique for every record.
I have tried the below option too... Still throwing the same message :(
Option - 1
===========
At the block level, I set the property for Enforce Primary Key "Y", and for corresponding item property, I made Primary Key as "Y". Issue got resolved.
Option - 2
===========
Tried setting block property...still not working
DECLARE
CURSOR c_search(p_obj_name IN ..%TYPE) IS
SELECT object_name,object_type,actual_Creation_Date
FROM object_changes
WHERE object_name LIKE p_obj_name  || '%';
r_search c_search%ROWTYPE;
BEGIN
IF :blk_search.object_name IS not NULL
THEN        
GO_BLOCK('OBJECT_UPDATE');
SET_BLOCK_PROPERTY('OBJECT_UPDATE',INSERT_ALLOWED,PROPERTY_TRUE);
SET_BLOCK_PROPERTY('OBJECT_UPDATE',DELETE_ALLOWED,PROPERTY_TRUE);
SET_BLOCK_PROPERTY('OBJECT_UPDATE',UPDATE_ALLOWED,PROPERTY_TRUE);
FOR r_search IN c_search(:BLK_SEARCH.object_name) LOOP
:OBJECT_UPDATE.OBJECT_NAME:=r_search.OBJECT_NAME;
:OBJECT_UPDATE.OBJECT_TYPE:=r_search.OBJECT_TYPE;
:OBJECT_UPDATE.ACTUAL_CREATION_DATE :=r_search.ACTUAL_CREATION_DATE;
next_record;
END LOOP;
FIRST_RECORD;
END IF;
END;Please help.

Thanks Andreas ; when i search with the single column that really helped. :)
Now in my current search block i have three items.
User should be in position to give any of the following search and they should be in position to update too.
I have given in the WHERE clause as below; but it fetched all the records :( wonder whats the problem.
object_number LIKE :BLK_SEARCH.object_number  || '%' OR object_name LIKE :BLK_SEARCH.object_name  || '%' || '%' OR object_type LIKE :BLK_SEARCH.object_type  || '%'
BLK_SEARCH Frame
============
Object name   ---               Object Type  ----                  Object Number ----
---Search Output Frame-----------------------------------------
Object Name        Object Type        Creation Date        Creation Time            Object Number
TEMP1                 Table                 1/12/12                10:00:00                   1234
TEMP2                 Table                 1/12/11                10:00:00                   899
TEMP1                 Table                 1/12/12                10:00:00                   12
e.g; user gives Object name   as TEMP               Object Type  NULL                Object Number 12
then it should fetch:-
---Search Output Frame-----------------------------------------
Object Name        Object Type        Creation Date        Creation Time            Object Number
TEMP1                 Table                 1/12/12                10:00:00                   1234
TEMP1                 Table                 1/12/12                10:00:00                   12Thanks in advance...

Similar Messages

  • TS3694 I have a Ipod touch 4G, and i am unable to update or restore it.

    I have been unable to update or restore my Ipod touch to the 5.1, and 11.1 for my computer. each attempt to update has lead to the error report 3194. I'm not sure what it means or how to fix it. Please someone point me in the right direction to get this fixed.
         P.S. - Don't put me thru the Apple support run around.
                             THANK YOU

    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow iTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need ser

  • HT1918 I'm unable to update or put in my security code on the update billing info page. It will not take my security code, but it used to. The card is active there is also money in the account. Not sure what the problem is. Also, it is not processing the

    In Itunes i'm unable to update my credit card info. It won't take the security code, but it did before. It also isn't accepting cards at this time.

    the security code error is actually generic and just means the card is being rejected, double check your billing info to make sure it matches the card exactly or contact the card issuer to make sure they arent blocking it because of a fraud filter or something similar

  • Unable to update record in web Form

    Hi, i am unable to update record in a form. I am building a custom form using forms 6i and putting it on the web in oracle applications 11.5.9
    I used template.fmb as a starting point for my form. I have one datablock based on a table. Insert, update and delete properties are set to yes on the property pallete of data block. The table against which i am running the form has a primary key which is a combination of two fields. I am able to update a record with pure SQL running against the table.
    My form now brings back a record from the db like it should but whenever I try to update that record either by pressing Action Save or by clicking button that has update statement in it, instead of doing an update, it does an insert and tells me that this record already exists and that i entered value(s) that must be unique for each record. It thinks I want to insert but I want to update. What am i doing wrong???
    Update allowed value is set to Yes in all the items in the data block and at the data block level as well. Querly_only is set to no.
    What's even more frustratinng is that I've ran the form manually before starting with template.fmb and have been able to update the table but when I put it on the web and used template.fmb it stopped working!
    I am very new to forms, can anybody suggest anything? Please help!!!

    When you populate the 2nd block with a select into query, it's the same as just typing the data into the block. The record is treated as one needing to be inserted, not as one that is queried.
    To populate it using a true query, but with data from the LOV, you can do this:
    Programmatically set the default_where clause of the block based on the LOV. For example, if a name is chosen from the LOV in an item called LOV1, you could do:
    set_block_property('block2','default_where','name='''||:block1.lov1||'''');
    or if the LOV is a number, like a department number:
    set_block_property('block2','default_where','deptno='||:block1.lov1);
    The tricky part when you build your where clause is that you must surround strings with single quotes, and the way to do this is to use two single quotes to represent an actual single quote in the where clause. Otherwise a single quote is interpreted as part of the PL/SQL syntax.
    Then, just navigate to block 2 and execute a query:
    go_block('block2');
    do_key('execute_query');
    I hope this works for you. I didn't have time to test this, so I hope I didn't make any syntax errors when typing.

  • HELP! Newbie: Unable to update fields

    Hello.
    I am teacher of a Java course and I am teaching Kodo JDO to my students. But
    I am unable to update my persistent fields to the DB. I have a persistent
    class Employee with two fields: name and wage. I have the following code:
    PersistenceManager pm = JDOFactory.getPersistenceManager();
    Transaction tran = pm.currentTransaction();
    fillDatabase(pm,tran);
    Employee john = getJohn(pm);
    tran.begin();
    System.out.println("Before update" + determineState(john));
    john.wage = 20000.;
    System.out.println("After update" + determineState(john));
    tran.commit();
    pm.close();
    Employee John never gets updated to the DB. The program has the following
    output:
    Before update. Persistent-Clean-NonTransactional
    After update. Persistent-Clean-NonTransactional
    That is, the field doesn't get dirty.
    I attach all the source code to this message. It's a very simple example.
    What am I doing wrong? How can I persist my updates to the DB?
    Please I'm desperate. I don't know how to do and I need this solution for
    tomorrow afternoon (I have class with my students then).
    Any help would be gretly appreciated.
    Thank you,
    Vicent Palas__
    begin 666 kodoHELP.zip
    M4$L#!!0````(`$H).RVD)9P]$ (``$8$```/````:V]D;RYP<F]P97)T:65S
    M?5-=;]I $'R/Q']8*2^M!":!2DA(?BFHJA*24)KV?3FO[2-WM_3N#+B_OGM
    MFU0!7C#RS,[LQ_@:[KE@N)L^P=SSFGS4%$"Q*W75>(R:7>>J<W4-SPRT0=-@
    M)& /Z\:K&@,!@M&*G/Q[H;8+&QUTA#K&];C?WVZW66"#WE+T6F6*;>=*?OY[
    M^2+^V>R@<4]M/AP,:#@<]G!X6]X.1KT1EOAI.>A1.2IOAJ-S`EQ5Y/,0"V[B
    M&0Y1]H .*RH6C8O:TNO$^;-'%U"E>0\<_XB6\A5N<-Q_#Z:=)&R7K41X3C[H
    M$,DI.N)?A,V^G1@,(3_9C+9K(\5+E=U-/T_.*KRUX77J()NP<[1O9NKUYM@H
    M^RJK5C&S-K-M^&6R`W:Q_$<X%GOF>)$YES&V[(N\EC$N:RYF>9IJO.]",F!8
    MH:DYQ#ZM2&9FB=H)A2=Y6-F 5GGT#9U@+"BB=C\E@G*N,YQ'=O'U5F@6A,61
    MFS(\J=%5VE40:Y+ 1I;T.G:]W^094K@)MMH8*#Q:B;XT;EK03GF2I"<!24O)
    MWJ*<J0O+)A[H"AM1TZYGR<K)H,"(2ZD($!I5`P;XVDIE8*=54OG^;9:\'<F!
    M@';RO6QK<M!RX\'*C!\^@B2EYF(/AFY2D(YAS6RH2 KJW[Z#^.[!]_9OFT-Y
    M*VBBRC"%V"<93\D.?..<;"4[L= '[>;BFM^<PG#W%_L#4$L#!!0````(``('
    M.RV(V,<BAP(``)P&```1````5&5S=$5M<&QO>65E+FIA=F&55$UOVS ,/;M
    [email protected][TFPM9CBV#8V@U#@;4=TMNZ@^(PF3)9,B2Y23#TOX^29<=MTP[5Q30_
    M'LE'4;*JC?6 5:W,#M'Q=V>C(]DJU^)>;/EZ89XJ>>.EBLK14=W,E2RA5,(Y
    MN$7GOR0H^#LZ`LB2W7GAZ7-OY (J(37D,V^E7H&P*_?S5T'.&="Y0>ND\ZA+
    M_"ZT6*&%NH(I7%Y<?Q6E-W;'5^B?>^7%698@;JW0CGRET>!)INBZXF5C+6H_
    M,%)(J)!.#%M*I2Z$%W/A,*^K<0@-'M'8-[4VOP,@U7!)$OGU+L&?SW$E6^"H
    MF^VHR(J;QO.:NO5*Y^PS+HU%:.J%\,C@&!;HT592XXPXPCQD**B;K.LG*/B&
    MFJ2\)^_I\+[50_B?E@3W!OA8=VFJ2OH!B8$Q98B)X$JZAZ2/,R7YP%@?$7AH
    MCDD8/YE0G'W6,RQT)P86,V^'I&9[*[&A<;.?3,["1-CX0V"H=>XR\DK\P;XB
    MG^]!_@]Z$^ACXY.WH4;.0NT]L2V'SQ:BS]3=J%>(*^)&`7&U#0D!P\<%$J>]
    M3]B.UIQWT#SNYIB8;J@R2!@_&K0[*(UVC?)BB$ $1&/>XX^9%A5Q,[V+'-\Q
    M8&EWLNS<*(7M*,L@$E*^UQ5=`HY;+!N/:8P6?6/I$>@9B[%<$M>"ECPOJ(JM
    M3QL:B'MVY=+S\>1V7\_7E!CJLH!XJY*7HZH8BYD='%.%])Q\0U53M](-1ACB
    M/@+;:]@IBY=5!KEX`>!"6K_K8B?QC\$IFYPK%/K%J"O<]#$DAXB7,Z"B/A?[
    M'.W_($8N7VLJL7$`>;"*0G7XU/7DRF@_M*4\X1W(4#E\"V+T9)-'%M:7_C"X
    M$"[M29SX/U!+`P04````" "5`CLM8T'@/5,```!M````#0```&5M<&QO>65E
    M<RYJ9&^SL:_(S5$H2RTJSLS/LU4RU#-0LK?CY;+)2LD'4IPV!8G)V8GIJ0IY
    MB;FIMDJIN04Y^96IJ<5*($D%!9ODG,3B8JBD*U1221^L4Q^J%62:/L0X`%!+
    M`P0*``````#1"3LMVC!\3H$#``"!`P``#0```&5M<&QO>65E<RYZ:7!02P,$
    M% ````@`.0<[+8G*6Z^ ````S@````T```!%;7!L;WEE92YJ879A*TA,SDY,
    M3U5(S2W(R:],32VVYN7BY2HH3<K)3%9(SDDL+E9PA4HI5/-R<4)E@DN*,O/2
    M%?(2<U.M$:(I^4 Z5:$<:"#8& 4%F S,# V8QM1R/Z!>'9@6(#\<J$NSFA.H
    MAQ.L4P$(0.8KV,)4@VSB!!D.$0J'6,-9"\2\7+4@"P%02P,$% ````@`L 8[
    M+<!N;LL;`@``%P4```\```!*1$]&86-T;W)Y+FIA=F&-4]MNVS ,?5: _ .1
    MESC!YGQ VP%#=\LN:-'V!Q292=0JDB#1:8*A_SZ)5B[KEK:P80.D>,XA>>2E
    M>I +!%QYX[:(\:S?RX]>>1<([N5:UMK5X[._0RUI\SRXJ>^;[F1^)N-QOP=C
    M\56O,4(D25J!5 IC!'(@P0?G,9@M*&?G>M$&;+C@&D/4D= J_"5MTA:^2$4N
    M;&NX6^H(RL@$D:K7NDG(:[2-"^^C1Z7GB4*Y!AG'8N:289OI9LY1I" ]T!+A
    MAVL<?/]T!7&;B%:@;3J"F\):Y_))O^?;F<F S)=.%QG]WN]^3TPF$+5=&"1G
    M8;[+"!_T6A+N^CW9RZX$+L"VQI29"1Z:@#&(&Z0V6%9[X/$'.%AU>'L@;1-G
    MIUZP?%'TORIE@70Z68T24FY8Z#E4>]6=[)SKDN*:MTD:>34^YL;P$8["U>B,
    M3Q(/:E<GIM:W=$L!9=X#7'11<9FG_M/)!D.=!-[RHFXPNC8H_!A+035X2*NL
    M_9YE4$@$BZA-`H!*VQ)]XJ^2I)903:\^;Q1ZTFFPVN'H6!0M@WOD!GCO),W4
    M$@8KS:&F"*T&EZXUC1T2,%LH&F'X3-JP'KQCHKT6_F<CI5UWQGQAP7SXX)JD
    MZQL:WTWGA?7Q'#I*[CYTOBI .?YTRGL2SO-E^O O^OF$$^!F)+7%!N;!K5(#
    MZ78RA. [,XQOL^[;'?M_JQYYM'3WBJ/K4S!E'.G]`U!+`0(6"Q0````(`#D'
    M.RV)RENO@ ```,X````-``````````$`( " @0````!%;7!L;WEE92YJ879A
    M4$L!`A8+% ````@`L 8[+<!N;LL;`@``%P4```\``````````0`@`("!JP``
    M`$I$3T9A8W1O<GDN:F%V85!+!08``````@`"`'@```#S`@````!02P$"%@L4
    M````" !*"3LMI"6</1 "``!&! ``#P`````````!`" `@($`````:V]D;RYP
    M<F]P97)T:65S4$L!`A8+% ````@``@<[+8C8QR*'`@``G 8``!$`````````
    M`0`@`("!/0(``%1E<W1%;7!L;WEE92YJ879A4$L!`A8+% ````@`E0([+6-!
    MX#U3````;0````T``````````0`@`("!\P0``&5M<&QO>65E<RYJ9&]02P$"
    M%@L*``````#1"3LMVC!\3H$#``"!`P``#0```````````" `@(%Q!0``96UP
    @;&]Y965S+GII<%!+!08`````! `$`/(````="0``````
    `
    end

    Thank you very much, Abe.
    Of course, I always advocate the benefits of encapsulation with my students.
    In this example, I declared my fields as public only because I was trying
    with private fields and it wasn't working (I don't know why). So I try with
    public fields to see whether it would work.
    Anyway, I had encapsulated my fields and everything worked OK. I was in
    trouble (the class is only some hours away and some of my students are
    prospects of customers so my image is fundamental). You have get me out of
    trouble.
    Thank you for your help.
    Vicent Palas__
    "Abe White" <[email protected]> escribi__ en el mensaje
    news:an1rrf$bnk$[email protected]..
    john.wage = 20000.;JDO detects field updates by modifying the bytecode of the class accessing
    the field. When you use public fields, that means all classes thataccess
    the fields need to be run through the enhancer, even if some of thoseclasses
    are not persistent themselves (note: only persistent classes
    should have metadata -- the enhancer uses the presence of metadata to
    determine whether to make the class persistent or just modify persistent
    field access to other classes).
    Because it's a pain to track which non-persistent classes accesspersistent
    fields of persistent classes, we recommend that you keep your persistent
    fields private, or protected and only accessed by subclasses. Plus, as a
    teacher, I would think you'd be advocating the benefits of encapsulation
    anyway :)

  • HT201210 Am getting an error unable to update when trying to install ISO6 on my Ipad

    I was try to update my ipad2 to new ISO6 it download but after download if click on install it writes verifying then its giving me an error unable to update how can I fix the problem .

    Hi:Thanks for your response.The following code works fine in a standard VB.Net windows Application,It is just a send and receive instruction to a power meter over the GPIB bus.This code is behind a Button,and a label displays the result.I have a problem when I try to duplicate this simple code on an ASP.Net page using Server controls.When you click the button the code is supposed to execute on the server side and not the client side(browser).The code fails when it gets to the viOpenDefaultRM line,I get an error message as follows System.DllNotFoundException:Unable to Load Dll(VISA32.DLL).I have added a reference to the visa library from within the project.
    '''''This is the code I am using'''''
    Dim lsnbuf As String = Space(100)
    Dim wq As Long
    Dim drm As Long
    Dim ret As Long
    Dim vi As Long
    Dim tlkbuf As String
    Dim FoundCRLF As String
    Dim CleanString As String
    Dim rcnt As Long
    wq = viOpenDefaultRM(drm) 'Open Vi session
    wq = viOpen(drm, "GPIB0::2::INSTR", VI_NULL, 5000, vi)
    tlkbuf = "*IDN?"
    ret = viWrite(vi, tlkbuf, Len(tlkbuf), rcnt)
    ret = viRead(vi, lsnbuf, 100, rcnt)
    FoundCRLF = InStr(lsnbuf, vbCrLf)
    If FoundCRLF > 0 Then
    CleanString = Mid(lsnbuf, 1, FoundCRLF - 1)
    End If
    Label1.Text = CleanString 'display IDN String

  • I am unable to update adobe air

    Hi,
    I am unable to update my adobe air as i cannot reset my password.  Please advise

    Thank you for your help.  I have suspended Kapersky but I cannot find Air when I search in the Programs and when I try to install I now get a message saying 'it may be your administrator blocking you'.  I am the only user and set up as the Administrator but do not know how to check if this is the case.
    I have managed to install the application that needs Air on an old XP notebook.  Much Appreciation for your help. RJ

  • ..........Error unable to Update

    Hi all
    I have table which contains the request data. requested by User.
    There are 3 admins each at different region which can take action on the requests send by thier regional teams/users.
    For Region A , it works fine that the Admin opens the Form,
    View the requests and then pres Generate_report/or Cancel button , but before that he/she has to insert the comments/reason for his action.
    Same thing when starts for Region B ,
    suddenly i got a message
    Unable to update or delete records.
    Unable to reserve records for Update.
    WHy is such message coming.
    We have 2 Datablocks.
    both from the s ame table .
    One block shows the requestes. it is read only,
    the other part shows only 1 field which is Comments, from the same table , both blocks joined by the request_id.
    ANy body with suggestion plz.
    same thing is working for Region A .
    Admins are taking action on requests easiy
    what happens ot Region B .
    i have yet to implement it for Region C ,
    but i have to resolve this for region B first
    Kindly comment
    Regards

    Unable to reserve records for Update usually means another session is locking the records to update them so the current user can't get a lock on them.
    Try to find out who is locking them

  • Forms gves an error - unable to update item

    Hi,
    I am running an Oracle Form 10G. I get an error which says unable to update item as soon as I click( or type in) on any field or item in the Form, I have looked at the item's property and also the block properties. Update , Insert is allowed at both the Item and Block level. So what coulbe wrong ? How can I trace or debug what is causing this error ?
    Please advise.
    Regards
    IQ.

    Hi
    So what coulbe wrong ? How can I trace or debug what is causing this error ? Pls try to press Help >Display Error from the form's menu 's runtime.
    This will display the errors related to the db that causes the problem of ur form.
    another option that u can check the block property of this item & the db property of each may be it's set to no... just a guess....!!!
    Hope this helps...
    Regards,
    Ammatu Allah.

  • All devices unable to update software or download new

    4 iPads (1 &amp; 2), 1 iPod touch and 1 iPhone
    All were upgraded (well, except iPad 1) to iOS 6.1.2

    ok, it wasn't formed as a question, but I was asking:
    Is AppleStore/iTunes store operating normally
    If so, why are ALL of my devices unable to update software.. (assume this needs more information)
    This started 3 days ago now, and I thought "if AppleStore is down, this will be newsworthy" but I didn't see anything on the news.. so I posted here.
    So are there any diagnostics one could run to check whether this is a fault in my network - due to some particular reason.. specifically with the AppleStore?
    One user (my daughter) was able to download and watch episodes on her AppleTV.. my son tried using GPRS to update his device but experienced the same "block".. Several devices are trying to update software in the house.
    I've reset the network (router to ISP) but all my other activities are running normally, including on these devices.
    Google Earth is refreshing maps, (in fact, Apple Maps is refreshing maps).. so seemingly everything is normal.. until I ask to update a program or download one.

  • Unable to update software on mac

    I am unable to update software of my phone xperia z 1 on mac. 

    One post its more than enough, do you have a firewall or antivirus that might be blocking bridge? I have the Xperia Z1 and Z and they connect fine
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • FRM-40509: ORACLE error : Unable to update the record.

    Hi,
    I am having the following code in delete button.
    declare
         v_button  NUMBER;
    begin
      IF :CHNG_CNTRL_JOB_DTLS.SENT_DATE IS NULL THEN
                   v_button := fn_display_warning_alert( 'Do you want to delete the version ?');
                   IF ( v_button = alert_button1 )
                        THEN
                          message('before insert');
                          insert into chng_cntrl_job_dtls_log
                          select * from chng_cntrl_job_dtls
                          where job_name = :CHNG_CNTRL_JOB_DTLS.job_name
                          and job_version_no = :CHNG_CNTRL_JOB_DTLS.job_version_no
                          and sent_date is null;
                          message('before delete');
                          delete from CHNG_CNTRL_JOB_DTLS
                          where job_name = :CHNG_CNTRL_JOB_DTLS.job_name
                          and job_version_no = :CHNG_CNTRL_JOB_DTLS.job_version_no
                          and sent_date is null;
                          message('before commit');
                          silent_commit;
                          go_item('CHNG_CNTRL_JOB_DTLS.JOB_NAME');
                          P_DELETE_SET_PROPERTY;
                          clear_form;
                   ELSIF ( v_button = alert_button2 )
                        THEN
                          null;
                END IF;
         ELSE
                p_display_alert('Version '||:CHNG_CNTRL_JOB_DTLS.JOB_VERSION_NO||' for the job name '||:CHNG_CNTRL_JOB_DTLS.JOB_NAME||' cannot be deleted.','I');
      END IF;
         exception
              when others then
              message ('Exception in delete version button');
              end;when i am trying to save it says " *FRM-40509: ORACLE error : Unable to update the record*." .
    i am getting message till before commit.
    i am not able to check the error message in help as it is diabled in our form builder.
    I have checked the privileges also. they are fine.
    Please advice.
    Edited by: Sudhir on Dec 7, 2010 12:26 PM

    This error does not come from your procedure code, but from Forms itself. If you are in a database block, change something, and do a commit (either via a Forms key or in your own procedure), Forms commits the changes. For some reason this is not possible. You can see the database error via the Display Error key (often Shift-F1).
    I see in the OP that this key is disabled. Change the on-error code then:
    begin
       message(dbms_error_code||'-'||dbms_error_text);
       raise form_trigger_failure;     
    end;     Edited by: InoL on Dec 7, 2010 8:50 AM

  • Unable to update ipad2

    I have ipad2 wifi. When I connect it to itunes it says a new version of ios for ipad2 is available. I downloaded it. But it is unable to update the ipad with  new version. It says ' The ipad couldnot be updated.An unknown error occurred (3194).
    I tried to update ipad after updating my iTunes to latest version.10.6.0.40.
    Can some one pls help?

    If upgrade via iTunes doesn't work then try dirctly upgrading device OTA ("over-the-air" - tap Settings->General->Software Update). On 1/17/2012 I found that after getting blocked by error 3194 upgrading from iTunes (on Win7 laptop) I was able to directly OTA upgrade my iPhone 4s with no problem.
    Hope this helps!

  • Shockwave flash disabled but I'm unable to update?? WHY?

    plugins disabled- java and flash. Unable to update. Have updated from their websites with everything else closed- still no update. Have followed the questions here, nothing works-being told 'The plugin check page is having some bugs today.' does not resolve a recurring problem that has continued for weeks. Would you prefer we all changed to a different browser that a) did not disable plugins arbitrarily and b) enabled updates when these were suggested?
    This should be a simple situation but for some reason mozilla is making it REALLY difficult- not to mention the fact that I had to register just to pose the question. PUH!

    nope, still not working. Have removed all copies of Flash via control panel as the other options did not function. Downloaded latest version and will not install.
    Java still disabled also. This is ridiculous! What is the point of a browser in which there is very little that one can actually browse without plugin problems???

  • OSX: Adobe Creative Cloud unable to update (stall at 50%)

    Hey experts,
    ever since signing up for Creative Cloud I have been unable to update any application as my regular user on OSX. After exchanging 23 emails with the Adobe support in 2013 I finally gave up and created a workaround in the hope that the Adobe developers would finally look into the issue and fix the bug. With the last update of Creative Cloud my workaround stopped working so I took time to do a complete reinstallation of Creative Cloud to see if the bug was finally fixed. It was not.
    The bug:
    -Installation of Creative Cloud and Photoshop, Lightroom etc. through the Creative Cloud app works.
    -Any try to update a CC applicaton (e. g. Photoshop CC 2014 results in the state "waiting" at 50%):
    -Trying to update through the menu of Adobe Photoshop CC 2014 "Aktualisierungen"
    resulted in the following error message:
    Translation: "Update failed. Unable to apply updates. Adobe Application manager is already running. Close all instances of Adobe Application Manager before applying updates. etc."
    What I tried to resolve the problem:
    What did not work:
    -Complete reinstallation of Creative Cloud:
         -Uninstall of all Adobe applications
         -Ran the Adobe CC Cleaner tool
         -Eliminated every single *[Aa]dobe*-folder on my disk including my profile.
         -Reboot
         -Re-installation using a fresh CC download.
    -The common 1st-level-support acts of desperation:
         -Rebooting
         -Checking the file system
         -Fixing permissions
    -The bug even survived 2 OSX system upgrades
    -Even tried to track down the bug myself which I gave up after having discovered the endless chain of Creative Cloud and AAM-Processes executing each other...
    What worked:
    -Installing updates as another OSX user. (Which is cumbersome and to be honest I am unwilling to create a new profile and redoing the settings of all installed (especially non-Adobe) applications because of an Adobe bug...)
    Any help will be greatly appreciated.
    Patrick

    Sheena Kaul schrieb:
    Hi Patrick,
    Can you try to run the Adobe Creative Cloud on root user account?
    Enabling and using the "root" user in OS X - Apple Support
    Regards,
    Sheena
    Hessijames schrieb:
    What worked:
    -Installing updates as another OSX user. (Which is cumbersome and to be honest I am unwilling to create a new profile and redoing the settings of all installed (especially non-Adobe) applications because of an Adobe bug...)
    Any help will be greatly appreciated.
    Patrick

Maybe you are looking for

  • How do I get the device icon to show in the itunes  app?

    How do I get the DEVICE icon to appear back in the itunes app as when I plug in my ipod it doesnt show the device icon?

  • PDF files open in new window.

    Whenever I click the "Open" button in Reader 9, (Windows 7 - 64-bit), it opens the document in a new instance of Reader, which of course, makes the menu item "Window" useless. How can I get docs to open in the same window? I don't see any setting for

  • Parameters in a query

    Hi, I'm monitoring a DB with TOAD. I can see a section from middleware application sending the same query again and again, repeatedly. SELECT *   FROM app_log WHERE application_name = :v0It indicates some logic problem in an user application. But, in

  • What is the current best possible Qosmio I can buy?

    Hi, only just joined the forum, i run a large pc/laptop/gps reail repair outlet in es***, uk, I'm (for my sins) a microsoft ex employee and left 13 yrs ago to go it alone. I have become something of a Qosmio Addict, now owning 8, my latest aquisition

  • Static IP do not work on iPad 3G Personal Hotspot

    Hi! I have an iPad 3G 3rd generation with a 3G internet subscription and a static IP. I need the static IP on my Mac when I'm connecting it at the Personal Hotspot on the iPad. I need it to access particular services where the access is based on IP.