Home > Forum > General > WEBCON Tables: BpsUsers & BpsUsersGroupRelations

WEBCON Tables: BpsUsers & BpsUsersGroupRelations
0

MVP

Hello everyone,

thank you very much so far for all your questions/comments which helped me a lot or inspired me at least.

Today, i have my own problem/question and maybe someone of you were struggling with it before.

I am working on a "BPS groups Managing Tool" and therefore wanted to use the WEBCON tables
BpsUsers & BpsUsersGroupRelations.

But actually both tables are returning nothing, when using "SELECT * ...".

Does anyone have an idea, what i am doing wrong ?
It's irritating, because the use of the table "Companies" is working.

Thanks in advance, Bjoern

MVP

Hello Bjoern,

there's probably a simple reason, you are looking at the BPS_Content database instead of the BPS_Config.
I'm not sure when there are "real" users in this table but BPS Groups are added to the BPSUsers table in the Config database. From there they are synchronized into all content databases using the default user tables:
CacheOrganizationStructure
CacheOrganizationStructureGroupRelations

Here's a little snippet to retrieve all users in the group 'dc_managers'

SELECT COS_DisplayName, COS_BpsID
FROM [dbo].[CacheOrganizationStructure] as users join
[dbo].CacheOrganizationStructureGroupRelations as relations
on users.COS_ID = relations.COSGR_UserID
where relations.COSGR_GroupID in (
SELECT COS_ID
FROM [dbo].[CacheOrganizationStructure]
where COS_BpsID like 'dc_managers'
)



Best regards,
Daniel

Privacy overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognizing you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.


To see a full list of the cookies we use and learn more about their purposes, visit our Privacy Policy.