cancel
Showing results for 
Search instead for 
Did you mean: 

Changing the author of Webi

Former Member
0 Kudos

I have searched in various discussions but it doesn't seem to be easy, even with JDK, which we don't use.

We're using BO 4.1, SP5. Is there a way for changing the author of a Webi document using the Rich Client or CMC? IS there a definite guide on this?

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member205064
Active Contributor
0 Kudos

I understand that its not easy way to do it way to do, but follow this SAP note:-2351610

Which has a script attached is the best way to do it.

Former Member
0 Kudos

Thanks, Raunak. I'm not able to find the note. Could you give me a direct link, please?

former_member205064
Active Contributor
0 Kudos

Symptom

How to update the Author information of a Web Intelligence document

Environment

  • SAP BusinessObjects Business Intelligence Platform (BI) 4.1 / 4.2 / 4.x
  • Web Intelligence (WebI)

Reproducing the Issue

  1. Log on to BI launch pad with user01.
  2. Create a new Web Intelligence document and save it.
  3. Open this WebI document and check the Document Summary in the left panel, the Author is user01.
  4. Now log on to BI launch pad with another user user02.
  5. Open the same WebI document and user Save as to save a new document.
  6. Open the newly saved document and check the Document Summary in the left panel, the Author is still user01.
Is there any method that can update the Author here to user02?

Cause

The Author information in Document Summary comes from the properties which is saved in Web Intelligence document (wid file) itself.
To update it, wid file should be updated and re-saved.

Resolution

There is no standard function in Web Intelligence interface to do this kind of update. To update the Author property of the wid file, Restful web service SDK can be used.See the guide document (BI 4.1 SP4 version)
http://service.sap.com/~sapidb/012002523100011675382015E/sbo41sp4_webi_restws_dg_en.pdfPage 125 Section [7.1.10.2 Updating the Properties of a Document]
Use interface PUT <Restful URL>/documents/{documentId}/properties to do this kind of update.Attached is a sample program which can be used to do this work.
Please refer to the steps below about how to use it.Note: This program is a sample program for references. Customers should develop the suitable program by themselves to fit the business requirement.
  1. Copy the file updateCreateBy.htm to the Tomcat root folder:
    <Tomcat install folder>\webapps\ROOT
  2. Make sure in the BI system, WebApplicationContainerServer is running and enabled.
  3. Launch Google Chrome and access to http://<tomcat server>:<tomcat port>/updateCreateBy.htm
    *Google Chrome must be used here. Other browsers like IE may have script error that caused it not working well.
  4. Input the restful base url (e.g. http://server:6405/biprws), the password of Administrator user, the ID of the document which you want to modify, and the Author value you want to set.
  5. Click Go button. If the process goes well, after some seconds, "Process is completed!" will be prompted.
  6. Open the WebI document again and confirm the Author of Document Summary is updated.

Former Member
0 Kudos

Hi,

This might help: https://scn.sap.com/thread/3248434

Regards,

Adil Raj

Former Member
0 Kudos

Hi Adil,

They suggest using SDK and people complain that it's not working. Is there another way? Preferably from SAP?