I need a list of BO users that are available in the CMS Repository
The repository resides in an Oracle 10 G DB.
The Most popular responses i have got is a select from the table CI_SYSTEMOBJECTS.
This table is not in the CMS repository that i have.
I just have the following tables
CMS_INFOOBJECTS5
CMS_ALIASES5
CMS_IDNUMBERS5
CMS_VERSIONINFO
CMS_RELATIONS5
CMS_ROOTFRONTIER5
CMS_CCFRONTIER5
CMS_FRONTIER5
Can anyone please help me?
You shouldn’t query CMS database tables directly, the InfoStore provides a safe way to query all the data in your CMS and BOXI comes with a simple web utility called Query Builder for you to process those queries.
Open the Querybuilder and issue the following :
Select SI_ID, SI_NAME from CI_SYSTEMOBJECTS where SI_PROGID = ‘CrystalEnterprise.User’
You can obviously select more fields if you need them and if you have more than 1000 users, you’ll need to add a TOP N after the Select.
Thanks for the reply
I have downloaded the aplication.
It has just a .rep and a CSV.
Do i need to deploy this file to the BO environment or is this a standalone application?
Can you provide some details around this?