BusinessObjects Board

Set/Change SI_OWNER to someone else

Does anyone know if there is a way to change the owner of a report either in CMC or via SDK?


GigaGuy :us: (BOB member since 2007-02-13)

Please see this post.


BoB LoblaW :us: (BOB member since 2007-10-23)

something liek this would work. this would allow you to change almost all properties

IInfoObject objInfoObjectsInboxUser = (IInfoObject)objInfoObjectsInboxUsers.get(x); // literate through all objects from query

webiInboxUserName = objInfoObjectsInboxUser.properties().getProperty(“SI_OWNER”); // extract name
objInfoObjectsInboxUser.properties().setProperty(“SI_OWNER”,newOWNERNAME); //set new Name


AuguC (BOB member since 2009-11-20)

I tried this and it didn’t take the change. I replied in the thread referenced by “my bff jill”.


GigaGuy :us: (BOB member since 2007-02-13)

hi GigaGuy,

did u commit the change?

sopmething like this after you made the changes

objInfoStore.commit(objInfoObjectsReports);


AuguC (BOB member since 2009-11-20)

I got it working. Poster in the other thread. Thanks.


GigaGuy :us: (BOB member since 2007-02-13)