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

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

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

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

  • I have iphoto on my apple airwave. It is needing upated, but I am unable to update due to my exhusband. It was purchased under his itunes account. I can no longer even see my pics. What do I do.

    I have iphoto on my apple airwave. It is needing upated, but I am unable to update due to my exhusband. It was purchased under his itunes account. I can no longer even see my pics. What do I do.

    Can I back up my iPhoto library without being able to get into it? Such a mess.
    Just try what LarryHN recommended. Move the iPhoto application from the Applications folder to the Trash, then go the main page of the App Store, sign into the store menu with your AppleID, enter iPhoto into the Search Field.  When iPhoto is found in the store, look, if you can buy it for free. Probably there will be a "Get" button beside the application. Then you can install it for free.
    Before you run the newly installed iPhoto, make sure you have a backup.  You should really not risk to run a new iPhoto version on your iPhoto library, before you copied the iPhoto Library to a different drive.
    iPhoto needs to convert the library to a different format, and that can go wrong in rare cases, but it happens. You simply need to have a copy of your library before you risk the library upgrade.

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

  • Lightroom 4.1: Publishing Service Flickr plugin; Using HTML in Caption field

    All,
    After hours of troubleshooting I have narrowed down a problem with an error message I’m getting when I try to export from Lightroom 4.1 using the Flickr Publishing service. The error msg is:
    Can't update this collection
    Could not contact the Flickr web service. Please check your Internet connection
    I have narrowed down the problem to my attempt to add basic HTML tags to the Caption (Description) Field of the Meta Data. This has worked perfectly well in all versions of Lightroom 3.6 and below (I didn’t try this type of export using Lightroom 4.0). I have also noticed that a simple page break, such as below, will also throw the same error:
    “Lorem ipsum @evansante.com dolor sit amet, consectetuer
    adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat veniam, quis nostrud exerci t”
    Flickr will recognize URL in simple text and format them properly so:
    “Lorem ipsum http://www.myurl.com dolor sit amet, consectetuer “
    Will work.
    Does anyone know of a work around that will allow including page breaks or HTML??? Thanks in advance - CES

    This bug, in a related way, has been noted by several users some time ago …
    http://forums.adobe.com/thread/999503?tstart=30
    and was reported as a bug a month ago during the release candidate period …
    http://feedback.photoshop.com/photoshop_family/topics/lightroom_4_1_rc2_a_cr_or_lf_n_the_m iddle_of_a_caption_causes_failure_to_connect_to_flickr  
    Although the above mentioned bug is raised specifically in relation to “Breaks” in the caption text I believe it may be symptomatic of either generically poor XML information encoding by LR when talking to Flickr or poor / incorrect use of Flickr Api’s which cannot cope with trivial complexity in the caption field.
    – in either case it needs fixing with some priority in my opinion, but possibly the philosophy of the on-going Flickr plugin support needs fixing too.  
    The LR Flickr publishing service has not been maintained very well in my opinion even when fixes may sometimes be trivial.     Perhaps Adobe would do well to employ or contract with JF for such plugins in future.    I use the excellent SmugMug plugin as the yardstick by which I measure the Flickr plugin.
    A fix should also be treated as priority because the LR error message takes aim at the reliability of your internet connection which may cause some to erroneously try to chase down non-existent problems with a perfectly good infra-structure or OS / Firewall configuration – that is seriously bad advice for a caption related LR bug and has scope to seriously compound the problem for the user!  
    Adobe, you have a responsibility to fix this before people mess with their reliable setups.
    Sorry, I am not aware of any work rounds to your problem with this and suspect it may be a windows only problem (please confirm if not).   
    Although not entirely exactly as per your problem (I believe it is generically the same) you may wish to add your vote to the above mentioned problem report or raise a new one.

  • Unable to Update PO Customerdata tab at Item level using BAPI_PO_CHANGE

    Dear Experts,
    I am unable  to Update PO customer tab data at item  level using BAPI :BAPI_PO_CHANGE.
    I am passing the data structure  through  EXTENSIONOUT is refered with BAPIPAREX structure.
    Can any one help on this.
    Best regards,
    Venkata Siva.

    Hi Venkat,
    Check this note 1033925.[Using Extension|Update EKKO table for the custom field through BAPI;
    Regards,
    Madhu.

Maybe you are looking for

  • How do I add more text messages to my plan?

    I know it's an AT&T issue, not an Apple issue, but I can't really find how to do that on the AT&T site. I just want to increase the # of text messages.

  • Is it possible to buy iPhone 4 without a simlock

    Hi I am from Turkey and will be visiting USA. Im thinking of buying an iPhone 4 without a contract as its much cheaper there(about 1/3 of the price of here). But as far as i read on the internet even if you buy without a contract the phones come with

  • Trouble shooting sd cards

    Okay got my new palm and that got a two gig sd card to go with it never had anything in there before that with the exception of the blank.  tunred on my palm and insertd the card, and nothing happened never got the warning beep or anything.  Checked

  • Preview and DataSets

    I have been using Crystal Reports 2008 Basic that comes with Visual Studio 2008 and have successfully been building reports. However due to the functionality restrictions in the Basic version I have decided to trial the full version. My main issue ha

  • Timecode.cpp-1014, premiere keeps crashing?

    Hello, I am using Adobe Premiere Pro CS 6.01. I have been working on a project hassle-free for about 2 weeks now. The other day, after I have been working in Encore (I did NOT link the PPro Project, but rather I exported the video files first), sudde