Configuring the Logout URL for OBIEE in OFSAA

Logging out from OFSAA does not logout a user from Oracle Business Intelligence Enterprise Edition (OBIEE) if the OBIEE Logout URL is not configured in OFSAA.
Perform the following configuration in OFSAA to enable logging out of OBIEE when you logout of OFSAA:
  1. Login to the OFSAA database with CONFIG user credentials:
  2. In the database, update the configuration table by running the script in the following format:
    update configuration set paramvalue = '<OBIEE_LOGOUT_URL>' where paramname = 'OBIEE_LOGOUT_URL_VAL';
    /
    update configuration set paramvalue = '<IS_CROSSDOMAIN>' where paramname = 'OBIEE_CROSS_DOMAIN_VAL';
    Replace <OBIEE_LOGOUT_URL> with the OBIEE logout URL.
    For example,
    update configuration set paramvalue = 'http://obieehost:port/analytics/saw.dll?Logoff' where paramname = 'OBIEE_LOGOUT_URL_VAL';
    and
    Replace <IS_CROSSDOMAIN> with true if OBIEE is on another server.
    For example,
    update configuration set paramvalue = 'true' where paramname = 'OBIEE_CROSS_DOMAIN_VAL';