on 2020 Dec 16 6:56 PM
Hello community ,
I'm an intern who just started with BO, I'm basically a web developer.
I'm looking to create a custom application in order to create and delete BO user for BI4.2 version.
Do you know where I can find examples (simple) for this? wWth RESTful services or SDK?
I've done some research on google, but I find some old examples with old versions.
Request clarification before answering.
To get the list of groups for a user, use cmsquery
http://<server>:6405/biprws//v1/cmsquery
in body:
<attrs xmlns="http://www.sap.com/rws/bip">
<attr name="query" type="string">select si_id, si_name from ci_infoobjects, ci_appobjects, ci_systemobjects Where parents("si_name='UserGroup-User'", "si_name='<UserNameHere>'")</attr>
</attrs>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Kohan,
You can find a full example here
https://blogs.sap.com/2017/04/21/session-management-in-bi-platform-rest-sdk-rws/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
see "Business Intelligence Platform RESTful Web Service Developer Guide"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you very much for the help to both of you.
I still have a question how can I get the list of groups for a user ?
what I find:
GET http://<baseURL>/v1/userGroups/<usergroup_id>/users
what I want is the other direction, a bit like
GET http://<baseURL>/v1/user/<user_id>/userGroups
As we check groups for user on CMS
Thanks in advance for the help.
Kohan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
75 | |
21 | |
8 | |
7 | |
6 | |
6 | |
5 | |
4 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.