Opsite to actual user mapping

(imported topic written by AvijitPatra)

Any idea on how I map a opsite to actual username?

(imported comment written by Steve_M02)

If you mean find out what opsite number relates to which username, then yes you can:

As a master operator, go to “All Content->Sites->Operator Sites”. Make sure “Name” and “URL” are viewable columns. You can see which site lines up with which operator there.

(imported comment written by cstoneba)

you can also query the BFEnterprise DB in SQL directly, which works pretty well:

SELECT username, UserID, MastheadUsername, LdapDN FROM USERINFO where MastheadUsername like ‘%op_17%’

(imported comment written by AvijitPatra)

Thanks. Both works like a charm.

I have found them with the sql query from the database. But seeing it from Console is really good. Thanks for this.