Re:content transfer using ICE service

Dear all,
we have used ICE online to transfer our contents.
The contents are transferred.
The ACL and metadata properties modified by is transferred correctly,but showing created by as the id which has done the trasfer .
Is there any option to transfer the data regarding Created by  also.
points would be rewarded.
Regards
swetha pola

Hi Hung
I checked the sap note.
I am using ICE offline only .
the second thing is i checked in the repository manager it is using  db mode to store the data .
and as its under /documnets ita a cm store .
one thing i want to know is in the repository manager we see some repository services like feedback,discussion ...there i dont see created by .
is that the cause .
I am getting the deatils of the person who carried out the transfer for created by
Can u give some  idea on this.
Thanks in advance
regards
swetha pola.
Edited by: swetha pola on Aug 6, 2008 3:11 PM

Similar Messages

  • Content transfer using axis  - Web Services

    Hello all,
    im new to webservices.Can any one kindly advice me how we can do content transfer using web services. Im using apache axis.
    Presently I did content trasfer using datahandler class. Both my client and my web service were developed in Java. Everything is good. im happy I can able to do the content transfer.
    But for a non java client where datahandler is not available how could I make it?. Presently my web service needs datahandler as its input from the client.
    Is this a right way to develop a webservice?.
    Waiting for your quick response...
    Thanks,

    I would suggest creating a web service, and querying the web service from the other farm. I don't think you'll be able to use the SPSiteDataQuery object itself across the farm boundary.
    Walkthrough: Creating a Custom Web Service
    Creating Custom WebService In SharePoint 2007
    Creating a Custom Web Service for SharePoint
    Or else you can go for SBA(Search based application) by consuming SharePoint Search webservice.
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Error while creating an external content type using wcf service.

    Hi!
      I have been asked to create a wcf service to expose sql data and populate them in a list using external content type.i have created the service but while creating the content type it gives me error. Can anyone suggest me about which url should
    be used in service metadata url and service endpoint url.
    Thanks in advance.

    You can refer these links, may be helpful
    https://msdn.microsoft.com/en-us/library/office/jj163810.aspx
    https://msdn.microsoft.com/en-us/library/office/gg318615(v=office.14).aspx
    http://www.dotnetcurry.com/showarticle.aspx?ID=799
    http://www.c-sharpcorner.com/UploadFile/Roji.Joy/connecting-to-a-web-service-using-business-connectivity-serv/
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • Folders affected after KM Content Transport using ICE Methodology

    Hi All,
    I am encountering a strange behaviour when I use ICE methodology to Transport KM Content.
    When I migrate a particular folder using ICE package, the folder gets transported successfully to the target system, but after the Transport, the other folders in the target system are getting affected.
    Can anyone tell me the reason for this starnge behaviour of ICE package.
    Any kind of help would be greatly appreciated.
    Regards,
    Adren

    Follow below defined process
    Go to -
    >Content Administration--->KM Content->go to ice(folder)->go to Syndicator->go to Global Offer> Clear (delete) all folder shortcut links>above breadcum you will see Folder command click there-> Select New>Select Link>Browse and select the folder you want to transport->select the folder link and click on Complete Package--> file will be downloaded
    This file you can upload in other server through Content Management---->Package Upload---> Browse and select file and upload
    I think you must be doing the same process but you might not be clearing old folder links which can cause the problem and replace other folders whose link is there available in Global Offer folder.(This step in process is highlighted with underline)
    Just Clear and try once ....
    Regards,
    Tushar Dave

  • External content type using wcf service

    Hi,
           I have been asked to create a wcf service to expose sql data and populate them in a list using external content type.i have created the service but while creating the content type it gives me error.
    "The server was unavle to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetails (either from ServiceBehaviorAttribute or from the <serverDebug> configuration behavior) on
    th server in order................................"
    Can anyone suggest some help.
    Thanks..

    Hi,
    Based on your description, you encountered the error when you create the content type.
    You can turn on IncludeExceptionDetails or use Service Trace Viewer Tool to see the details about the error.
    There is a similar case:
    http://stackoverflow.com/questions/14217700/the-server-was-unable-to-process-the-request-due-to-an-internal-error-in-wcf-er
    The article below is about how to use the Service Trace Viewer Tool to help you analyze diagnostic traces that are generated by WCF.
    https://msdn.microsoft.com/en-us/library/ms732023.aspx
    The articles below are about how to turn on IncludeExceptionDetails
    http://stackoverflow.com/questions/8315633/turn-on-includeexceptiondetailinfaults-either-from-servicebehaviorattribute-or
    http://stackoverflow.com/questions/2483178/set-includeexceptiondetailinfaults-to-true-in-code-for-wcf
    The article is about how to build WCF Web Services for SharePoint 2010 Business Connectivity Services
    https://msdn.microsoft.com/en-us/library/office/gg318615(v=office.14).aspx
    Best regards
    Sara Fan
    TechNet Community Support

  • How to do Bulk data transfer  using Web Service

    In my application I have to write various web services but majority of the web service has to
    query database and return back bulk data(rows>10K) through web service.
    So I would like to ask what is the efficient way of transferring bulk data using web service as presently
    Iam returning the dataset as xml String (using StringBuilder) from web service and consuming the same at client end.
    Is there a better way to this in web service?
    My env:
    Front end can be in any other technology ,UI like C#
    Back end : Tomcat 6 on Java 6 with Axis2
    Thanks in advance

    Innova wrote:
    But then also I have to mention a return type although its xml that is getting transferred.
    Can you provide me a with a small sample code.Like if I have Emp obect with properties
    Empname,EmpID,DOJ,DOB,Dpt . In this case what will be the return type.
    My major concern is that my resultset is going to be huge in terms of >10,000 rows so
    that much time for formation of xml and then the transfer so how can I reduce the transfer
    time ,I meant a faster optimised approach for transferring large data as part of web service.
    Simply putting , how can I transfer bulk data in minimum time so that I can reduce the
    waiting time at client side for the response.
    Thanks in advanceI've done this with thousands before now, and not had a performance problem...at least nothing worth writing home about.
    Your return type will be an array of Emp objects. You can use a SOAP array for that (you'll need to look that up for the syntax, since I can't remember it off the top of my head), which gets restricted to being an array of Emp.
    Should the normal technique prove to be too slow then you should look at alternatives, but I would expect this to work well enough. And you have no faffing about with devising a new transfer system that then has to be explained to your client system...it'll all be standard.

  • How to display content without using webcenter services - task flows?

    Good day!
    I wanted to create a portlet where I can display and update an xml content retrieved from UCM Content Server. How can I do this without using taskflows (webcenter services)?
    Thanks in advance!
    Keith

    Hey Keith,
    Since you are already using the getResponseAsString() method you have your GET_FILE call working. To get the xml file as the file itself you need to instead call the getResponseStream() method. This will get you an InputStream representing the response.
    Once you have the stream you can do the following (I assume you are on a jsp page or somewhere you have access to the HttpServletResponse):
    String contentType = serviceResponse.getHeader("Content-Type");
    InputStream xmlInputStream = serviceResponse.getResponseStream();
    OutputStream outStream = response.getOutputStream();
    response.addHeader("Content-Disposition", "attachment;filename=myXmlFile.xml");
    response.setContentType(contentType);
    StreamUtil.copyStream(xmlInputStream,outStream,true,true);
    The runthrough:
    1. get the content type of the file coming back form the GET_FILE call
    2. grab the file as an InputStream
    3. get the output stream representing the response
    4. add a header to the response to trigger the "download file" dialog
    5. set the content type of the response
    6. copy the input stream to the output stream to send the xml file to the browser
    Notes:
    -StreamUtil is part of the RIDC jar
    -use Content-Disposition = inline to tell the browser to try and render the file in it's window if it can.
    Hope that helps,
    Andy Weaver - Senior Software Consultant
    Fishbowl Solutions < http://www.fishbowlsolutions.com?WT.mc_id=L_Oracle_Consulting_amw >

  • KM Content Transport using ICE Methodology

    Hi All,
    I would like to transport KM content from Development to Production system.
    I have done following steps
    1. System Administration -> System Configuration -> Repository Managers - > Advanced Oprons -> Content Exchange Repository - > uncheck "Hode in Root Folder"
    2. Content Administration ->KM Content ->ice ->Syndicator -> Global Offer
    Folder->New->Link ( i am not abel to see link option) i can only see Folder, Upload, text File, HTML File, External Link, Forms.
    do i need to set command settings?
    Regards,
    Murali

    Dear Murali,
    I suggest you to carry on ICE online transfer .
    In offline downloading the package to your local system and then moving it to the syndicator would some time cause difficulty based on the package size ,also some properties would not be transferred as desired.
    To carry ICE online follow the steps
    1.In your syndicator portal 
    create an offer under content management/content exchange/syndicator/offers.
    save the offer and create the offer component for your offer (the content which you want to transfer).
    2.In the subsciber portal
    content management/content exchage/subscriber registered syndicator/ 
    create a new connection .
    give url of the syndicator.(you can see this information in your syndicator system.   content mgmt /content exchange /syndicator/properties).
    specify the user id password details of the syndicator user.
    then from get catalog select your offer and continue with the remaining details.
    this establishes the connection between the syndicator and subscriber.
    3.now move to the syndicator portal 
    Content mgmt/content exchange
    syndicator/registered subscribers  select your subscription
    configure push ,
    specify the user details of your subsciber portal.
    This will transfer all your contents from syndicator to portal along with the metadata properties,ACL lists. etc
    Regards
    swetha pola

  • How to configure SAP ECC DMS content repository with CRM Services Object

    hi,
    we have SAP Document management system which is currently integrated with SAP R/3 Ecc system .
    with ref. to sap standard functionality i am able to upload the document in DMS content repository through SAP R/3 Ecc System as below.
    step-1 ,T.code:CV01n
    a.     create - DMS Documents
    b.     Oupload Scanned documents in DMS system
    c.     select content repository
    d.     Save Document
    now, in same manner i want to store business documents in SAP ECC R/3 DMS content repository using CRM services trnsaction"CRMD_ORDER". kindly guide me suitably.
    regards,
    sunil

    i am explaining your proble
    a.    create - DMS Documents
    b.     Oupload Scanned documents in DMS system
    c.     select content repository
    d.     Save Document
    after saving open to document in cv02n and track status of doc i.e. AR CR & RE
    if RE status is there the it will repositor at server
    Regards,
    Sanjeev

  • ICE for room to room content transfer

    Hi,
    We are currently on EP6.0 SP10.
    We are about to upgrade to EP7.0. Quite alot of collaboration rooms
    are there with lot of content like documents etc. So we are planning to transfer
    all that content to the new portal. I have heard that transport of rooms as a whole is not possible. They would have to be manually created again.
    But it also said that content transfer is possible using webdav or ICE.
    I tried using ICE online transfer for that but the target rooms are not getting the
    contents properly. Is this actually possible, does anyone know the actual procedure.
    PS: <i>Have already gone through the help links</i>
    Rgrds

    Hi Vijay,
      I had faced the problem with the room id of destination room.
    Then nothing gets transferred properly.
    >><i>We can transport the content from the folder "room_extensions" and manually move to the specified contents in the target portal room</i>
    Could you pls clarify what you mean by this,because room extensions
    contains a folder heirarchy ie cm_stores->documents->workspaces.
    That contains quite a lot of folders with the same workspace name ,ie documents
    pertaining to different rooms. So transporting the content from the appropriate folder is quite hard to point out.
    Also our source portal will be a EP6.0 SP10 and target a new EP7.0 installation
    wher we wnat to have the old rooms content.
    Rgrds

  • ICE - Content Transfer & Performance

    Hi,
    We are implementing a Content Management System using KM on EP6SP14. We have a staging Portal to create the content, transfer it to Production Portal using ICE, and render it from there.
    Issues - ICE does not provide 'On demand' PUSH. Secondly ICE performance might degarde when volume of content becomes too huge (my assumption).
    Can you suggest any other technique for accompaishing this or have you used some other technique for similar design requirements.
    Rgds

    Hi Sanjay Did u get any answer to ur problem as i also have problem with encoding problems and would like to change the encoding of the email message in the case when it is not specified with the email itself
    Thanks

  • Five days ago I received an email from an anonymous sender with the subject: Your Apple ID was just used to buy full album Elton John 312.99. Your receipt No. 37930343160405752. the content began: Content-Transfer-Encoding: base64 From (my email add

    Five days ago I received an anonymous email with the subject:
    Your Apple ID was just used to buy full album Elton John £12.99.Your receipt No.37930343160405752
    The content started: Content-Transfer-Encoding: base64 From:(my email address) followed by a very,very,very long stream of gobbledygook. There is no record of it in my i-tunes purchases or my credit card statement but that might only be because I have not updated my credit card details. Should I be worried that my account has been compromised? Does anyone know how I can get through to the right section of Apple to deal with this - all the emails I get say no-reply so I don't have an email address to contact them on.
    I would be most grateful if anyone could help me with this.
    Thanks in advance
    Walwal

    It's a phishing attempt to try and get your account and payment details - forward it to Apple : [email protected] , and then delete it
    Phishing emails : Identifying fraudulent "phishing" email - Apple Support
    Genuine emails : Identifying legitimate emails from the iTunes Store - Apple Support

  • Does the data transfer used in the back up in time capsule included in the data allowance from my service provider?

    Is the data transfer used in the backup with airport time capsule included in the data allowance with my service provider?

    gheefromsa wrote:
    I am using Ethernet cable to connect TC to the modem. I am only backing up my mac book air within range of the TC. So I guess it will be OK from your reply. As a trial I did interrupt the back up by turning off the TC, disconnecting the Ethernet cable, turning TC back on. The mac would not connect wirelessly with the TC without the Ethernet connection.
    It is not using ISP .. absolutely for sure. Well 99.999%.. absolute tends to be only in maths.
    But you did the test wrongly.. I said to disconnect the modem.. during the backup.. not turn off the TC.. obviously once interrupted the TC will not work again until everything is plugged in.. but it will work even bridged for a short time.. just unplug the WAN port from the modem.
    The test is moot now.. as I can give you a 99.999% promise it is not using ISP.

  • Attach doc from external content server- using Generic Object Service (GOS)

    Dear All,
    i have intergrated an external content server to SAP using SAP archive link. All the scanned document are there in Content server and corresponding entries are done in SAP.I can search and view document using tcode : OAAD
    Please tell me steps for "how to attach a document from external content server using Generic Object Service "
    Scenario is :  For example when we change any Master records or create a new PO, or do some financial transaction then i need to attach the supporting document which is there in my content server connected  to SAP.how do we manual attach a Document in SAP using GOS.
    Do we need to do some special configuration to use GOS .please give the steps from initial.
    Thanks
    sandeep

    Hello,
    Check your configuration of document type assignement to required business document - object type, Archivelink table, content repository in OAC3 transaction.
    Goto respective business document > Click on GOS > Create > Store business document - Here you can see defined document type with desctiption. Double click on this the assign your document to this business document. Save it.
    This will help in attaching the document to your required business document.
    To verify you can check the archivelink table or by transaction OAAD.
    Hope this will help you.
    -Thanks,
    Ajay

  • I am using Ubuntu 10.04, when I am trying to open a java dependent browser i am unable to open the content.There is some problem to load Doc,exl files with the content transfer protocol of the linked browser.

    I am working on Ubuntu 10.04,
    Whenever I use to access a site which is java based site I am having problem to see the contents.There are several instants while browsing that we clicks a link & it opens a site which is a Ms DOC/EXL file which should get opened after the click & happens with the help of java script.
    My problem is that I am unable to open the sites which is related to content transfer protocol of DOC/EXL
    Plz do help.
    Regards
    Srijan

    Hi Grace,
    The free app MPEG Streamclip may be able to convert the file to a more suitable format. It can be downloaded from the developer's site here:
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    Here's a User Tip by AppleMan1958 that provides some more information about MPEG Streamclip (it's about importing homemade DVDs, but similar principles apply):
    https://discussions.apple.com/docs/DOC-3951
    John

Maybe you are looking for