Hi
Is there any LAPI function that can help me rename exisiting LL group?
Thanks for your help in advance
Krishna
You would update the info for the group, setting the name to the new value:
LLValue row = ( new LLValue() ).setAssocNotSet();
LLValue attributes = ( new LLValue() ).setAssocNotSet();
int ret;
row.add( "Name", newgroupname );
ret = llUsers.UpdateGroupInfo( llUsers.GROUP, oldgroupname, row );
From: eLink Entry: LAPI Forum [mailto:lapi@elinkkc.opentext.com] Sent: Tuesday, July 19, 2011 4:03 PMTo: eLink RecipientSubject: How to rename a group?
How to rename a group?
Posted by krishna.konepally@gov.ab.ca (Konepally, Krishna) On 2011/07/19 15:58
[To post a comment, use the normal reply function]
Forum:
LAPI Forum
Livelink Server:
knowledge-wlweb01
Thank you very much for your reply. It worked for me.
Thanks