Can you please help me getting the users list with their associated folders using query builder in R3 ?
I tried with your queries, but couldn’t get the result.
I even checked with the below URL for the properties on CI_INFOOBJECTS, the result is same. The properties such as SI_USERGROUPS doesn’t give any result.
I don’t know of a way to accomplish this efficiently without involving the SDK. It may be feasible to use a very manual method if you don’t have many jobs using an event and you use XI 3.x. Get the event ID then query for all your pending jobs using and event with this query:
select si_name, si_scheduleinfo from ci_infoobjects where si_runnable_object = 1 and si_scheduleinfo.si_dependencies.si_total > 0
You would then use the find feature in the browser to find instances of the event ID.
One of the SAP support team folks briefly touched on Query Builder when I logged a message on a different subject. He was vague as to the status of it.
Is it ‘AE’-ware available on a user-beware basis, or a fully-supported part of the suite?
I have not heard of anything to suggest Query Builder is unsupported. In fact, SAP techs often use it when troubleshooting tickets with my system and I use it almost daily.
The closest thing to a manual I’ve seen is the developer guide. There is a section titled How do I use the query language to retrieve objects from the CMS repository? which provides a basic overview.
I am trying to write a query to check the user access rights on the folder. does anybody knwos how can I achive that? or any sort of document will be help.