Skip Headers
Siebel CRM Advisor Administration Guide
Siebel Innovation Pack 2015
E24718-01
  Go to Documentation Home
Home
Go To Table Of Contents
Contents
Go To Index
Index

Previous
Previous
 
Next
Next
    View PDF

Running Advisor Applications in Stand-Alone or Standard Mode

You can run your application in either stand-alone mode or in standard mode.

To run your application in stand-alone mode

  1. Set the following variables in app_config.js:

    var APP_LOAD_UI_ON_STARTUP = true;
    var APP_SIEBEL_INTEGRATION_ON = false;
    
  2. Connect to your application using a URL that opens home.htm.

To run your application in standard mode

  1. Set the following variables in app_config.js:

    var APP_LOAD_UI_ON_STARTUP = false;
    var APP_SIEBEL_INTEGRATION_ON = true;
    var APP_SESSION_LENGTH = 15; (Set this number to equal the web server setting for the number of minutes before the session times out.)
    var APP_DISPLAY_AREA_FRAME = ISSStr+".displayArea"(Set displayArea to your particular display area.)
    
  2. Connect to your application using showCDA.

    For more information, see showCDA in Siebel Advisor API Reference.