Need notification while editing shared contributor data file

Hi,
I need to show message when I am changing contributor file, when it is shared via other component also. Please check following use-case:
We have UCM web portal template T1. We have number of pages P1, P2, P3, P4, etc using Template T1.
T1 Template has one place-holder PH1. Now PH1 has same content in page P1, P2 using same contributor file.
Now, whenever someone is editing that contributor file which shared across page P1 and P2,
Then we need warning like: "It's shared file, changes will appear for other pages also."
Can I show message like above ? If yes, then please guide me how can I go ahead ?
Regards,
Vijay

Then back to your main library and try fix it:
Option 1
Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
If that fails:
Option 2
Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
Regards
TD

Similar Messages

  • Programmatically creating Contributor Data Files

    In WebCenter Portal 11g PS5 and WebCenter Content PS5, doing something similar to Yannick's great tutorial here:
    http://www.yonaweb.be/webcenter_tutorial/using_content_presenter_templates
    A customer using a WebCenter Portal is not very enthousiastic about switching to the Site Studio Contributor to create and edit Contributor Data Files.
    Is there a way to programatically create these files from within our portal (via, say, a custom task flow and RIDC) or a custom service in UCM?
    Seems like Site Studio is doing a LOT in the background (SS_CHECKIN_WEB_ASSET, SS_GET_CONTRIBUTOR_STRINGS, then SS_CHECKIN_NEW) and not just checking in a new file which adheres to the Region Definition.

    Thanks Jonathan, below provided information was useful. Now I have further queries:
    Below is the code that I got from net but having some doubt about some classes like "TextCustomElement", "Field ", "CustomDataElement ". Are these classes available in RIDC APIs or not because I was not able to find out? Also let me clarify the steps that need to perform for updating the values of CDF file are mentioned below:
    First CheckOut the CDF file
    Execute the service "SS_SET_ELEMENT_DATA" by setting the element values
    CheckIn back with new revision of this CDF file
    Are these steps correct?
    Is it possible for you to correct the below code and paste again in forum or send me the corrected file at [email protected]?
    Thanks a ton for your help.
    DataBinder oldBinder = clientConfig.getIdcClient().createBinder();
                   oldBinder.putLocal("IdcService", "SS_SET_ELEMENT_DATA");
                   oldBinder.putLocal("dDocName", oldBinder.getLocal("dDocName"));
                   oldBinder.putLocal("dID", oldBinder.getLocal("dID"));
                   DataResultSet columnResultSet = new DataResultSetImpl();
                   Field elem = new Field("element");
                   Field value= new Field("value");
                   Field isList = new Field("isList");
                   columnResultSet.addField(elem, "element");
                   columnResultSet.addField(value, "value");
                   columnResultSet.addField(isList, "isList");
    for( CustomDataElement e : elementi)
                        DataObject valueList = new DataObjectImpl();
                        if( e instanceof ListCustomElement)
                             ListCustomElement listel = (ListCustomElement) e;
                             valueList.put("element", "cpsAttachmentIdList");
    //                         valueList.put("value", "");
                             valueList.put("isList", "1");
                             List<CustomListRow> listRow = listel.getListRow();
                             DataResultSet listResultSet = new DataResultSetImpl();
                             Field idAttNode = new Field("ATTACHMENT_ID");
                             listResultSet.addField(idAttNode, "ATTACHMENT_ID");
                             for( CustomListRow r : listRow)
    //                         list sub-elements
                                  DataObject valueElement = new DataObjectImpl();
                                  Set<String> keySet = r.keySet();
                                  for(String k :keySet)
                                       TextCustomElement textCustomElement = r.get(k);
                                       valueElement.put("ATTACHMENT_ID", textCustomElement.getValue());
                                       listResultSet.addRow(valueElement);
    //                         name of the element
                             oldBinder.addResultSet("sub-elements", listResultSet);
                        if( e instanceof TextCustomElement)
                             TextCustomElement textel = (TextCustomElement) e;
                             valueList.put("element", textel.getName());
                             valueList.put("value", textel.getValue());
                             valueList.put("isList", "0");
                        columnResultSet.addRow(valueList);
                   oldBinder.addResultSet("SSElementData", columnResultSet);
                   response = executeService( oldBinder);

  • How to Edit a XML data file from AS3 class...

      Hi...
                 I need to edit an XML data file I have at the exit of application.... I have a demo code which is not working....
    This is the code :
    public function UpdateData():void
                   trace("Closing....");
                   var FileData:XML=<Hello>Hai</Hello>
                   var urlLdr:URLLoader = new URLLoader();
                   var urlRqst:URLRequest = new URLRequest ("AppData.xml");
                   urlRqst.data=FileData;
                    urlRqst.contentType = "text/xml";
                   urlRqst.method = URLRequestMethod.POST;
                   urlLdr.load(urlRqst);
    This AppData file already exist and has some data in it.
        Plus :
       How to find the application is exiting.

    use:  fscommand('Quit');
    to exit your app.
    and this is how you would use the urlloader class to save data:
    public function UpdateData():void
             trace("Closing....");
              var FileData:XML=<Hello>Hai</Hello>
    var urlVar:URLVariables=new URLVariables();
    urlVar.fileData=FileData;
                var urlLdr:URLLoader = new URLLoader();
               var urlRqst:URLRequest = new URLRequest ("this must be an executable to parse and write data");
               urlRqst.data=urlVar;
               urlRqst.contentType = "text/xml";
                   urlRqst.method = URLRequestMethod.POST;
                  urlLdr.load(urlRqst);
    but i don't think you can use an executable on a fl4 device so you will need to use a different class.  i don' know how you're storing an xml file on a fl4 device but you should be able to use the sharedobject to read and store xml.

  • Any one noticed issues when UCM contributor data files indexing in GSA

    Hi Guys,
    We are using Google search appliance to crawl UCM content (native documents).
    We don't have any issues with search results in this way. We are using dynamic converters to convert these documents into HTML in site studio web sites.
    But we have plans to move to site studio contributor data files (XML format).
    From your experience, any one noticed any issues in search results with UCM site studio contributor data files indexed by GSA.
    Thank you in advance.
    Edited by: 958795 on Oct 8, 2012 10:50 AM

    Hi Don,
    Thanks for the reply. I would discard the first one, because
    I already built the whole site using XML Data Sets, and the idea
    from the start was to use my own Atom feed to update the site. But
    the second one seems like a good choice, but I'm a bit puzzled. I
    was already using Spry:content for the pages that don't index
    correctly, putting them on an empty <span> tag so that they
    hid unloaded references... could you elaborate on that second
    choice, then, please?
    Here's a sample of the code:
    <!--start main content-->
    <div id="secondary-content" spry:detailregion="dsBase"
    class="wrapper">
    <div id="leftnav" class="frontpage">
    <div spry:state="loading">Loading content. Please
    wait...</div>
    <ul spry:repeatchildren="dsBase">
    <li class="Frontpage"><span
    spry:content="{title}"></span></li>
    <li class="subtitleFront">Posted on <span
    spry:content="{simpleDate}"></span></li>
    <li class="post"><span
    spry:content="{content}"></span></li>
    </ul>
    <p align="left"><br />
    Click <a href="archive.html">here</a> to see
    older posts.</p>
    </div>
    <div id="content-right" class="frontpage">
    <div class="wrapper">
    <h4 align="center">Featured art :</h4>
    <p align="center"> </p>
    <p align="center"><a
    href="gallery.html?row=4"><img
    src="images/tns/tn-AgainstAllOdds.gif" alt="Against All Odds"
    width="81" height="160"/></a></p>
    <p align="center">&quot;Against All
    Odds&quot;<br />
    Tobías Bartolomé</p>
    <p align="center"><a
    href="gallery.html?row=4">See more art at the
    gallery!</a></p>
    </div>
    </div>
    <div style="clear: both"></div>
    </div>
    And here's the link for the main page and Google's index for
    the site:
    http://www.cosmicollective.org/
    http://www.google.com/search?q=site:www.cosmicollective.org&hl=en
    Thanks again!
    Tomas

  • Converting Contributor Data File to PDF

    Hi,
    I have a requirement where end users should be able to download the content from a website(created using sitestudio) as PDF. I have configured the IBR,created Provider in Content server,I am able to convert xml to PDF. But it is showing raw content in pdf. How can I convert Contributor data file to PDF along with the rich content.
    Any pointers would be helpful.
    Thanks in advance.

    In that case, can you please tel me,how it can be done? Is it converting xml to HTML & then the HTML to pdf??
    I am new to UCM. Request you to elaborate more.
    Is this possible using any UCM provided components for conversion. If yes,which component would be suitable?
    Thanks
    Edited by: RR on Jul 25, 2011 4:08 AM

  • RIDC code reading Contributor data files

    Hi experts,
    Please share me a sample RIDC code for reading contributors data file, with following all the best practices. Any sample application/code will be highly appreciated.
    Thanks

    You can refer Jonathan's Blog - http://jonathanhult.com/blog/2012/12/ridc-examples/
    - Anand

  • Country IN does not store a hard currency while editing company code data

    hi, i am new to sap. i defined company n company code (copying from std) and edited company code data, while trying to save that getting error "Country IN does not store a hard currency". please guide me what have to do to over come this. thanks

    GOTO   OY01
    select your country code ( here IN )
    select IN, GOTO details (ctrl shiftf2)
    change language to EN & hard currency to INR, save it
    Regards
    sidhartha

  • How to avoid duplicate data while inserting from sample.dat file to table

    Hi Guys,
    We have issue with duplicate data in flat file while loading data from sample.dat file to table. How to avoid duplicate data in control file.
    Can any one help me on this.
    Thanks in advance!
    Regards,
    LKR

    No, a control file will not remove duplicate data.
    You would be better to use an external table and then remove duplicate data using SQL as you query the data to insert it to your destination table.

  • Problem while adding a new data file

    Hi
    I add a data file into an existing tablespace. It created data file and did not give any error message.
    But in the live system, we gets errors:
    ORA-01157: cannot identify/lock data file 12 - see DBWR trace file
    ORA-01110: data file 12: 'D:\ORACLE\PRODUCT\10.2.0\.....ms5 ORA-06512: at line 1
    what is the problem

    user4030266 wrote:
    Yes I wonder it also. I do not have an access to their system where db exists. I am a developer.
    But When I look at toad, I see that some percent of the datafile is full and it is not online. I think it achieved to write to datafile before but now it gives errors. it is very strangeYou are a developer and you are allowed to make changes on the production system? Do you not have a DBA in house?
    Get your DBA to look into this matter at the earliest.

  • Site studio contributor data files with sections

    Is it possible to have sections with in site studio contribution data files and display list of section titles as hyper links in site studio site and show only that section content on click of section title.
    Number of sections are vary from document to document (So we can't use one element as a single section).
    Thanks...

    I am not aware that out-of-the-box Site Studio would have such an options.
    You do have sections (defined in Region Definition), so most likely you'd have to customize your user experience (so that only sections defined on the fly are shown). Note that Region Definition corresponds to a logical "object" (you may abstract that sections are object's attributes), so rather than show/hide sections you might also want to select a different region definition. I also remember that some time ago Site Studio was able to do "lazy load" (display a section only if user asked for it - this requirement tried to address slow loading times of the page); unfortunately, I'm not sure how this feature can be turned on.

  • Handling, editing, sharing large HD files

    Having moved from my trusty SD Panasonic to the Canon XF105 HD digital, I've had trouble handling the gigantic files through FCP. For example, I needed to upload footage quickly to my client's Dropbox and the upload took hours. Any suggestions for workflow?

    If this is for client review, and not for further editing/grading. etc, I think you could upload H.264 @ 10 Mbps and it would be very good quality and about one tenth fifth your current sizes. You could also drop the resolution to 720p and save additional space. Even at 3 Mbps, 720P can look quite respectable.
    Choosing Web Hosting in the Master File Settings pane will produce a 1080 MOV and choosing Computer will give you an MP4 @ roughly 10 Mbps. 720P will be about half that. Compressor or MPEG Streamclip will allow more control over size and quality trade-offs.
    Good luck.
    Russ

  • How to get a data element's value from the data file while bursting

    For faxing bursted data into rightafx, I need to first burst my invoice data file into numerous pdf files in the filesystem, and then use the rightfax function of the delivery manager to send those files to different faxes. Integration with rightfax is not available in the bursting engine.
    While bursting the xml data file based on invoice number, I need to get the fax number that is different for each invoice in a java variable so that I can use it to pass fax number information to rightfax. Is it possible?
    Thanks.

    Can any one help?
    Edited by: MTW on Apr 16, 2010 6:58 AM

  • How to eliminate special characters that appear in extracted data files

    Dear all,
    I need your help please,
    I have data files that are extracted via programs from a database db1. Those datafiles appear to have special character in the last record, so the last record in the datafile is entered in the database db2 via sql loader import and it appears in the table as a special character like a square.
    What could I do in the control file to skip the last record in the datafile that contains this special character?
    regards

    is it last row in the file or last field in each row (record)?
    *1. if last field in each row* then it looks like you are running import on unix box and it's dos file. Unix file have end-of-line LF, dos have CRLF
    a. in sql loader add the records terminator to INFILE clause http://download.oracle.com/docs/cd/B28359_01/server.111/b28319/ldr_concepts.htm#sthref718 it's been I while since I used SQL Loader, I believe it would look like this
    INFILE '/myfile.csv' "str '\r\n'"
    b. in external table (this is not your case and you can ignore this comment) you can use RECORDS DELIMITED BY clause like this RECORDS DELIMITED BY '\r\n'
    *2. if it is very last row* in the file, then you can use WHEN clause to filter that row
    a. SQLLDR http://www.orafaq.com/wiki/SQL*Loader_FAQ#Can_one_selectively_load_only_the_records_that_one_needs.3F
    b. external table uses LOAD WHEN clause http://jiri.wordpress.com/2009/03/09/oracle-external-tables-by-examples-%E2%80%A6-part-2-reading-file-with-header-and-footer/

  • How to Dynamically Select the Data File for a Report at Print Time

    How do you configure a Crystal report to ask for the file to be reported on as the report is being printed, and allow the user to browse to the file?
    The environment is Crystal Reports XI, SP3, with ODBC connection to Sage Timberline Office data version 9.7.  The client names their Payroll unposted time file each pay period, and also needs to report on their posted data file, depending on the time period for the report.  The client will need to select both the date range and the file name.
    I have created a SQL statement in Add Command in Database Expert, which prompts for a file name, but it does not let you browse to select a file on the computer.
    Therefore, in the prompts when they print the report, the parameter offers the user a default file name similar to the name they currently use, so they only have to change the payroll period end date in the supplied file name to run the report successfully.
    The client is concerned that sometimes a user will name their data file differently, and not know how to input the file name into the Crystal report prompt at print time.
    My research on dynamic prompts showed you can link to fields inside the data record, but I did not see a way to dynamically link to select the actual files used in the report.
    Another question is that the naming convention used by the SQL query is different than the basic Windows file name, but I think I can handle that issue.
    The actual file name is typically similar to:
    04-10-11 BP NEW.PRT
    However, in the SQL query, the record ID looks like:
    PRT_00-00-00 BP NEW__TIME
    The SQL Statement using a parameter is:
    SELECT
    "PRT_CURRENT__TIME"."Employee",
    "EMPLOYEE1"."Employee_Name",
    "PRT_CURRENT__TIME"."Date",
    "PRT_CURRENT__TIME"."Units",
    "PRT_CURRENT__TIME"."Job",
    "JOB1"."BP_Emps_Used"
    FROM
    "PRT_CURRENT__TIME" AS "PRT_CURRENT__TIME"
    INNER JOIN "JCM_MASTER__JOB" AS "JOB1"
    ON "PRT_CURRENT__TIME"."Job"="JOB1"."Job"
    INNER JOIN "PRM_MASTER__EMPLOYEE" AS "EMPLOYEE1"
    ON "PRT_CURRENT__TIME"."Employee"="EMPLOYEE1"."Employee"
    WHERE "JOB1"."BP_Emps_Used" = 1
    AND
    ("PRT_CURRENT__TIME"."Date" BETWEEN
    {?As of Date} - 41 AND {?As of Date})
    UNION ALL
    ( SELECT
    "PRT_NEW__TIME"."Employee",
    "EMPLOYEE2"."Employee_Name",
    "PRT_NEW__TIME"."Date",
    "PRT_NEW__TIME"."Units",
    "PRT_NEW__TIME"."Job",
    "JOB2"."BP_Emps_Used"
    FROM
    "{?NEWPRT}" AS "PRT_NEW__TIME"
    INNER JOIN "JCM_MASTER__JOB" AS "JOB2"
    ON "PRT_NEW__TIME"."Job"="JOB2"."Job"
    INNER JOIN "PRM_MASTER__EMPLOYEE" AS "EMPLOYEE2"
    ON "PRT_NEW__TIME"."Employee"="EMPLOYEE2"."Employee"
    WHERE "JOB2"."BP_Emps_Used" = 1
    AND
    ("PRT_NEW__TIME"."Date" BETWEEN
    {?As of Date} - 41 AND {?As of Date})

    Hello,
    Sorry you'll have to contact Sage on how to do this. We can help you once you get connected but we can't help you get around their connection methods.
    There is no Preview Set Database Connection method you can use in CR Designer. The Designer assumes you select it first or use the Set Location option before previewing or refreshing the data.
    If you are doing this in the Sage program itself we can't help you, you'll have to contact Sage for assistance.
    Sage is an OEM Partner they are responsible for supporting their product and CR. If they have issues help you then they will contact us directly for assistance.
    Thank you
    Don

  • Unable to display the Content of a data file from within another data file in Oracle webcenter portal.

    We have a Content Presenter taskflow. This task flow is added to a jspx page. The taskflow fetches the content from the contributor data file. The contributor data file is having a WYSIWYG editor. The content of the WYSIWYG editor is being displayed correctly through the task flow.
    We have some links in the WYSIWYG editor. These links again point to some data files. When we click on these links from within the portal, then we are getting a blank page(the url of this blank page is: http://localhost:7101/eWSIBPortal/faces/oracle/webcenter/sitestructure/render.jspx?datasource=UCM%23dDocName%3AWSIB_ARTICLE) and not displaying the content of the data file that we are pointing to from the WYSIWYG editor.
    We want to display the content of these data files(which we have pointed from WYSIWYG editor) in-line within the portal.
    Please help us to resolve this issue and let us know if any information is required from our end.

    Thanks for reply. However, can I use XSQL to dump the formated text to a file? or just can display to client through web browsers?

Maybe you are looking for