Unable to update BLOG field

Can any one help me to solve this problem?
Am updating worklog field in one of our application which is of type binay large object.
this is the syntax:
Update T61 set C536870928='hrtut' where C536870928='koko'
But it is giving me the following error
ORA-00932: inconsistent datatypes: expected BINARY got BINARY
can anybody help how can we update this field??
Pls helpme as this is very urgent

It's because of bug 4401822 which apparently has been fixed.

Similar Messages

  • Unable to update a field using the Data tab on a VIEW

    When viewing data using a VIEW instead of going to the table directly, am unable to change the values in any of the fields
    When I click on the list of VIEWs for a schema, then select a view that is based on a SELECT statement for a single table with a Primary key, and then click on the DATA tab to modify the value in one of the fields, SQL Developer does not allow me to change the value.
    Went into SQL Plus, and was able to execute an UPDATE statement against the same row of that VIEW, and update that field ("UPDATE vw_mytable SET thisfield = 'YES' WHEN row_id_number = 1'").
    Does SQL Developer not allow updating tables through a VIEW?
    Will it allow updating in the future? Please say yes.
    Oracle 10g DB and latest version of SQL Developer.

    Remember to add feature requests and vote on them on the SQL Developer Exchange!
    <br>
    <p>We have added updateable views to 1.1, but do remember, not all views are updateable - even in SQL*Plus.</p>
    <br>
    Sue

  • Unable to update Caption field

    Hello; Wondering if anybody else has seen this problem before...
    I've spent the evening updating caption fields only to have Aperture display a "loading..." message over the photo and then return the previous caption field text. It's as if the Aperture database is fighting with a locked master file but, when I look at the masters in Finder they seem to be fine.
    I've tried using the Batch Change tool to clear the caption fields. The fields are cleared for a few minutes until Aperture updates them again and restores the previous text. I've written text over the old text but, it doesn't remain. The old text will soon restore.
    I've also tried writing the IPTC data to the master after updating the caption field but, that's not working either. I'm scratching my head on this one. I don't know what's going on. Any thoughts?

    Tony;
    Thanks for the link to the kb article. I started with Repair Permissions. When that didn't work I went with Repair Database. That solved 90% of my troubles and so I had to run Rebuild Database. I'm not at 100% but, I'd consider a 99% fix close enough. Thanks for your help.
    Scott

  • Unable to update XBLNR field on BKPF when posting a document using BAPI_ACC_GL_POSTING_POST

    Hi,
    I'm trying to post a clearing document using BAPI_ACC_GL_POSTING_POST, but after posting i'm unable to see the data in the reference field on header (BKPF-XBLNR). I'm passing the data in the header structure of the BAPI  (DOCUMENTHEADER-REF_DOC_NO).
    Thanks in advance.
    Regards,
    Sandeep

    We restricted our entry to five decimals and solved the issue.

  • Unable to update Level field in Forecast Set

    The Level field in Forecast Set was previously set to "Item", but we would like to change the value to "Customer". However, the form is preventing us from changing the value even though the forecast set is empty - all forecasts have been deleted. Has anyone encountered this issue and was able to find a solution?
    Cheers!

    Do other Forecast sets have the same issue or is this the only Forecast set having this issue?
    If you have not instanlled OM or AR, then you can only define and consume Forecasts at 'Item' level.
    Regards
    Siva G

  • Unable to update item master data after upgrade

    Greetings,
    I have just upgraded from 2005A SP01 PL22 to 8.81 PL05.
    After the upgrade, I am unable to update any field in the item master data.
    Error message:
    In "Warehouses - Setup" window, on "Accounting" tab, choose sales-type revenue account  , '_SYS00000001165'  [Message 131-52]
    I have checked all the warehouses accounting tab and all the revenue account is a sales type account. I have also checked the GL for _SYS00000001165 and it is a COGS GL. After I change its type to "Sales", I am able to update. This shouldn't be the case.
    I have also tested creating and update new item master and I have no problem. However, I will have the same problem if i add a new item via duplicating from an old item.
    Any advice?
    Thank you.

    Hi,
    Can you also check whether the Item which you are trying to update has Manage G\L Account by as Item, Item group or Warehouse?
    If you have checked for the Warehouses, check for the Item Group and at the G\L Determination > Inventory tab as well.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Unable to update Logical Delete field in AS400

    hi all,
    We have an ESB process that polls for data in AS400 DB and transfers this data into an Oracle DB. This polling is based on Logical Delete. The data transferred is in the range of some lakhs of records. So we are sending around 5000 records per transaction in ESB. When we deploy the process, the data in AS400 is being read and getting transferred. However, the status field is not changing to 'Read Value'. Due to this, we are facing a lot of issues like, when we're in middle of data transfer and the opmn restarts, the data which has already been transferred is also being read and this is throwing an error because of primary constraint violation. Even after the data transfer, if we delete any rows in Oracle DB, the data transfer resumes as the status field is not updated.
    I have worked with logical delete in Oracle DB before and was working fine.
    Please help me with Logical Delete functionality in case of AS400 Database and also please let me know the privilages we need to have on the AS400 DB to successfully run this process.
    Thanks,
    Kamal.

    Hi,
    According to your post, my understanding is that you was unable to update managed metadata field in designer workflow.
    You need to provide the exact string for the MMS value, in the form of <id>;<value>.
    The format of the value you wanted to set is uncorrectly, so you cannot update the managed metadata field.
    If you want to set the managed metadata field value with correct format, you’d better to create custom action.
    There is an article for your reference, although it is about the SharePoint 2010, it is similar to SharePoint 2013.
    http://patrickboom.wordpress.com/2013/07/23/workflow-activity-set-managed-metadata-column/
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • 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 :)

  • Unable to update Requester and Deliver to location field in iProcurement

    Hi,
    I am unable to update the 'Requester' and 'Deliver to location' field in iProcurement Preferences.
    i am trying to change the default settings in IProcurement Prefernces(MyProfile page(xml))
    1)Navigation ->iProcurement Hompage->Preferences->iProcurement Preferences
    2)Modified Requester and Deliver-to-location and clicked Apply changes
    3)Logged Out and again logged In. the changes are gone.Its showing me the old data.
    Please help..if someone faced this issue..
    I am using Oracle 11.5.10.
    TIA.

    Hi TIA,
    check out the profile options:
    ICX: Override Location Flag or POR: Override Location Flag
    ICX: Override Requestor or POR: Override Requestor
    The naming varies in the manual compared to my test-environment. Flipping this did the trick for me!
    They control whether a user is allowed to override the default requestor and the deliver-to location in the requisition and apparently also the preferences.
    The following profile options holds the values set by a user in the preferences as per your requirement:
    POR : Preferences - Deliver to Location
    Enables requesters to set their preferred deliver-to location.
    POR : Preferences - Requester
    Enables requesters to set a default requester
    /Niels LM

  • Unable to save lookup field data in SharePoint 2013 online list

    Dear Support,
    I had successfully created provider hosted app and deployed on SharePoint 2013 online site, in my project I created orderservice.asmx.cs web service and write a code for save record on SharePoint
    2013 online list as I mentioned below and calling on App1.js file.
    But I am unable to save lookup field value as mentioned below code
    Customer is a lookup field I want to save data in SharePoint 2013 online list( Order)where I had successfully
    inserted text field  data (Title &
    Special_x0020_Instruction).
    i am getting error as mentioned below
    500 Internal Server Error {"Message":"Invalid web service call, missing value for parameter: \u0027Title1\u0027.","StackTrace":"   at System.Web.Script.Services.WebServiceMethodData.CallMethod(Object target, IDictionary`2
    parameters)\r\n   at System.Web.Script.Services.WebServiceMethodData.CallMethodFromRawParams(Object target, IDictionary`2 parameters)\r\n   at System.Web.Script.Services.RestHandler.InvokeMethod(HttpContext context, WebServiceMethodData methodData,
    IDictionary`2 rawParams)\r\n   at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)","ExceptionType":"System.InvalidOperationException"}
    Please let me know the code how to insert lookup field value (Customer)
    in SharePoint online list.
    OrderService.asmx.cs
    Public
    int InsertOrder (Order
    orderRecord)
                pwd.MakeReadOnly();
                clientContext.Credentials =
    new
    SharePointOnlineCredentials (myUserName, pwd);
    try
                  Web
    oWeb = clientContext.Web;
    ListCollection lists = oWeb.Lists;
    List oOrderlist = clientContext.Web.Lists.GetByTitle("Order");
                    clientContext.Load<ListCollection>(lists);
                    clientContext.Load<List>(oOrderlist);
                    ListItemCreationInformation
    itemCreateInfo = new                 ListItemCreationInformation();
    ListItem oListItem = oOrderlist.AddItem(itemCreateInfo);
                    oListItem["Title"]
    = Title;                        listItem["Special_x0020_Instruction"]
    = orderRecord.Instruction;
                        listItem ["Customer"]
    = orderRecord.CustomerId;
                        listItem.Update();
                        clientContext.ExecuteQuery();
    return 1;
    catch
    return -1;
    App1.JS
    $("#Save").click(function
    debugger;
    var OrderProfile = $('#orderprofile').val();
    var CustomerId = $('#exCustomerlist').jqxComboBox('getItem',
    $('#exCustomerlist').val());
    //var Instruction = $('#instruction').val();
            alert(OrderProfile);
            alert(CustomerId);
    var obj = {
    'Title': OrderProfile,
    'Customer': CustomerId }
            $.ajax({
                url:
    "OrderService.asmx/InsertOrder",
                type:
    "POST",
                dataType:
    "json",
                data: JSON.stringify(obj),
                contentType:
    "application/json; charset=utf-8",
                beforeSend:
    function (XMLHttpRequest) {
    //Specifying this header ensures that the results will be returned as JSON.
                    XMLHttpRequest.setRequestHeader("Accept",
    "application/json");
                success:
    function (response) {
                    $(".errMsg ul").remove();
    var myObject = response.d;
                    alert(myObject);
                error:
    function (response) {
                    alert(response.status +
    ' ' + response.statusText +
    ' ' + response.responseText);
    Regards,
    Akhilesh

    Hi Alex Brassington,
    Thanks for your reply.
    I am having the Site Administrator Permission of the public site.
    I am having the permission of Company Administrator of that site but still unable to find
    Device Channel on Site Setting. still I gave the user full control from Site Permission but nothing is happening.
    What should I do next?

  • Update a field multiple times, but only if the field is empty

    I am having trouble updating a field in my table based upon a set of 7 different rules. I have been scratching my head at this for a few days, and am not sure what exactly is wrong, but am sure there is something small causing me problems. My current code
    is:
    BEGIN TRANSACTION
    UPDATE MyTable
    SET Field1 = 'Value1'
    WHERE svc = 'Y' AND Field1 = '' ;
    COMMIT TRANSACTION
    BEGIN TRANSACTION
    UPDATE MyTable
    SET Field1 = 'Value2'
    WHERE Dlv Is Null AND Cat = 'svc' AND Field1 = '';
    COMMIT TRANSACTION
    BEGIN TRANSACTION
    UPDATE MyTable
    SET Field1 = 'Value2'
    WHERE (prod LIKE 'ABC%') OR (prod LIKE 'ABB%') AND Field1 = '';
    COMMIT TRANSACTION
    BEGIN TRANSACTION
    UPDATE MyTable
    SET Field1 = 'Value3'
    WHERE Dlv = 'Elec' AND Field1 = '';
    COMMIT TRANSACTION
    BEGIN TRANSACTION
    UPDATE MyTable
    SET Field1 = 'Value4'
    WHERE Ord = '0' AND Cat = 'Hdw' OR Cat = 'Bnd' AND Field1 = '';
    COMMIT TRANSACTION
    BEGIN TRANSACTION
    UPDATE MyTable
    SET Field1 = 'Value5'
    WHERE Ord = '0' AND (NOT (Cat = 'Hdw')) AND (NOT (Cat = 'Bnd')) AND Field1 = '';
    COMMIT TRANSACTION
    BEGIN TRANSACTION
    UPDATE MyTable
    SET Field1 = 'Value4'
    WHERE (Ind = '1' AND Cat = 'Hdw') OR (Cat = 'Bnd') AND Field1 = '';
    COMMIT TRANSACTION
    BEGIN TRANSACTION
    UPDATE MyTable
    SET Field1 = 'Value5'
    WHERE (Ind = '1' AND NOT (Cat = 'Hdw')) AND (NOT (Cat = 'Bnd')) AND Field1 = '';
    COMMIT TRANSACTION
    BEGIN TRANSACTION
    UPDATE MyTable
    SET Field1 = 'Value6'
    WHERE Ind = '0' AND Cat = 'Hdw' OR Cat = 'Bnd' AND Field1 = '';
    COMMIT TRANSACTION
    BEGIN TRANSACTION
    UPDATE MyTable
    SET Field1 = 'Value7'
    WHERE (Ind = '0' AND NOT (Cat = 'Hdw')) AND (NOT (Cat = 'Bnd')) AND Field1 = '';
    COMMIT TRANSACTION
    My biggest problem seems to be that between the piece that updates Field1 as either Value4 or Value5 is that something is not right. I initially had this set up in MS Access, and so am using that as a comparison
    to check my final values once the field has been udpated. When I run in Access I get a total of 9,802 for Value6 and 14,107 for Value4, yet when I run the SQL code I get 19,548 for Value 6 and 4,478 for Value4.
    I also get some differences for the other values, but nowhere near as large of a difference as with the 2 values above. I feel fairly confident that I have something not quite right with my syntax, but I cannot
    figure out exactly what it is. Field1 at the beginning of the query is inserted into the table as a blank value.
    Thanks.

    Combining OR and AND may be tricky, so I think your problem lies here:
    UPDATE MyTable
    SET Field1 = 'Value4'
    WHERE Ord = '0' AND Cat = 'Hdw' OR Cat = 'Bnd' AND Field1 = '';
    You can change this to
    UPDATE MyTable
    SET Field1 = 'Value4'
    WHERE (Ord ='0' AND Cat IN ('Hdw','Bnd')) AND Field1 = '';
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • Unable to update sales order unsing the BAPI 'BAPI_SALESORDER_CHANGE'

    Hi All,
    I am unable to update the payment method field for some sales orders using the bapi 'BAPI_SALESORDER_CHANGE'. I am getting the reason in the table RETURN as 'Field 'ZLSCH' cannot be changed, VBAPKOM 000050  ready for input'.
    Could anyone throw some light on it.
    Thanks a ton.
    Regards,
    Santosh Kotra.

    Hi
    Without reversing invoice we can't update price and this is standard bevaior which is logical too. For your scenario I am wondering why would you want to change price for a line item or order which is alrady invoiced and posted to FI. What difference would it make to change price in sale order when this has already been posted in FI?
    Thank$

  • Unable to update this object because the following attributes associated with this object have values that may already be associated with another object in your local directory services

    Getting this error from DirSync
    Unable to update this object because the following attributes associated with this object have values that may already be associated with another object in your local directory services: [UserPrincipalName
    [email protected];].  Correct or remove the duplicate values in your local directory.  Please refer to
    http://support.microsoft.com/kb/2647098 for more information on identifying objects with duplicate attribute values.
    Quick eyeball and couldn't see the cause in the user account so used the script here:
    http://gallery.technet.microsoft.com/office/Fix-Duplicate-User-d92215ef
    And got these outputs:
    PS C:\Windows\System32\WindowsPowerShell\v1.0> Export-OSCADUserPrincipalName -UserPrincipalName "[email protected]" -Path .\outputs.csv
    WARNING: Cannot find objects with specified duplicate user principal name
    [email protected]
    Found 0 user(s) with duplicate user principal name.
    Where to from here?
    Richard P

    Hi,
    Did you talk about the Microsoft Azure Active Directory Sync tool ?
    If yes, this issue occurs if one or more of the following conditions are true:
    An object in the on-premises Active Directory has an SMTP address that's the same as the SMTP address of the object that's reporting the problem.
    An object in the on-premises Active Directory has a mail attribute that's identical to the object that's reporting the problem.
    An object already exists in your organizational account and has the same SMTP address or mail attribute as the object in the on-premises Active Directory
    More detail information, please refer to:
    http://support.microsoft.com/kb/2520976/en-us
    [Troubleshooting] Unable to update this object because the following attributes associated with this object
    http://blogs.technet.com/b/aadsyncsupport/archive/2014/05/20/troubleshooting-unable-to-update-this-object-because-the-following-attributes-associated-with-this-object.aspx
    Regards.
    Vivian Wang

  • Path issue leaving me unable to add blog post content in design view

    Hi guys,
    I am unable to add blog post content in design view when a template is applied to my blog. BC support have told me they fixed the problem by making minor changes to the paths of the css and javascript files and then told me to post on here for the solution.
    When I call the files using <link rel="stylesheet" href="/css/custom.css" /> everything displays perfectly but in BC I can't add blog post content in design view. I can edit in html but this isn't ideal for clients to update the blog.
    If I change the paths to <link rel="stylesheet" href="css/custom.css" /> it fixes the problem and I can then edit blog content in design view but all blog pages that are in folders display incorrectly. Only the main blog page display properly.
    I'm sure the answer is simple but I can't find it so any help would be greatly appreciated. Thanks
    Pete

    I took a look at your page URL and can't find any CSS issues or styles that would directly affect you editing/adding content to a blog post via the content editor.
    Make sure you either clear your cache or try in another browser to see if the problem is localized to your current browser.
    If you still have the problem can you link me to a screencast (you can use Jing if you don't have a screencast program: http://www.techsmith.com/jing.html) of what you are experiencing?

  • Powershell script to update a field value (recursively) in sharepoint form a .CSV file and not changing the updated by value

    need to run through a list of old to new data (.csv) file and change them in a sharepoint list - can not make it work
    here is my base attempt.
    $web = Get-SPWeb site url
    $list = $web.lists["List Name"]
    $item = $list.items.getitembyid(select from the items.csv old)
    $modifiedBy = $item["Editor"]
    #Editor is the internal name of the Modified By column
    $item["old"] = "new from the .csv file parsed by power sehll
    $ite.Syste,Update($false);
    $web.Dispose()

    Hi,
    According to your description, my understanding is that  you want to update SharePoint field value from a CSV file recursively.
    We can import CSV file using the Import-CSV –path command, then update the field value in the foreach loop.
    Here is a code snippet for your reference:
    Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
    $csvVariable= Import-CSV -path "http://sp2010.contoso.com/finance/"
    # Destination site collection
    $WebURL = "http://sp2010.contoso.com/sites/Utility/"
    # Destination list name
    $listName = "Inventory"
    #Get the SPWeb object and save it to a variable
    $web = Get-SPWeb -identity $WebURL
    #Get the SPList object to retrieve the list
    $list = $web.Lists[$listName]
    #Get all items in this list and save them to a variable
    $items = $list.items
    #loop through csv file
    foreach($row in $csvVariable)
    #loop through SharePoint list
    foreach($item in $items)
    $item["ID #"]=$row."ID #"
    $item.Update()
    $web.Dispose()
    Here are some detailed articles for your reference:
    http://blogs.technet.com/b/stuffstevesays/archive/2013/06/07/populating-a-sharepoint-list-using-powershell.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/25125.sharepoint-2013-powershell-to-copy-or-update-list-items-across-sharepoint-sites-and-farms.aspx
    Thanks
    Best Regards
    Jerry Guo
    TechNet Community Support

Maybe you are looking for

  • What's the best way to setup new iMac i7 coming on Monday?

    So here's a question for everyone of the very smart people who monitor this thread. I have a G5 tower with Leopard on it and a Macbook Pro (1 generation ago) with Snow on it. First I was planning on starting up the iMac to see if everything worked we

  • Restore from Time Capsule problem

    I had to restore my system from my Time Capsule but it is not working. Help needed. Macbook Pro 15/2.2GHz/2x1G/160GB/SD/MDM Installed OS X 10.6.7 update 5/7/11 but after that many apps started to crash on launch. Attempoed restore from Time Capsule u

  • Moving Xcelsius to a new PC

    I am a current user of XC 5.1.1.0 and I have a new PC.  Can someone point me to the right procedure to uninstall XC from the old PC and install it on the new one? Thanks, Stan

  • Seeburger Workbench: Recovery Monitor and Archiving

    Hi, We need to have Recovery Monitor and Archiving enabled in our Seeburger Workbench. It was there earlier when we were able to recover sent files if the message is failed in Seeburger Monitor. But when we had Seeburger upgrade from 1.5 to 1.7,these

  • Debugging source code in Web-Inf

    Dear All Java Expert, I'm using Forte 3.0 and debugging source code for different web application folder. example ..\webapps\APPS1 and ..\webapps\APP2. Ok, my problem is i was unable to 'share and debug' same servlet file over 2 web application. Exam