GROUPNAME
from obj_m_actor BOUSER, OBJ_M_ACTOR BOGROUP,
OBJ_M_ACTORLINK GROUP_LINK,
OBJ_M_ACTORLINK USER_LINK
where BOUSER.m_actor_n_status = 128
AND BOUSER.M_ACTOR_N_ID = USER_LINK.M_ACTL_N_ACTORID
AND USER_LINK.M_ACTL_N_FATLINKID = GROUP_LINK.M_ACTL_N_ID
AND GROUP_LINK.M_ACTL_N_ACTORID = BOGROUP.M_ACTOR_N_ID
ORDER BY BOUSER.M_ACTOR_C_NAME, BOGROUP.M_ACTOR_C_NAME
Do you know the meaning of all the possible values of ‘BOUSER.m_actor_n_status’?
The distinct codes I found in my table are: 1, 33, 65, 77, 97, 128, 160.
Is there a place were, when creating BO reports, to record a description about each report in a given Document?
Many thanks
yannis
Glenn_Fredericks@AAL.ORG 03/11 9:49 AM >>>
Mathias wrote:
I use the follwing script to check the repository for users who disabled
themselves by entering 3 times a wrong password.
select m_actor_c_name
from obj_m_actor
where m_actor_n_status = 128
Does anybody know how I can get the groups the user belongs to into that
SQL?