Using MS Access to write Symposium reports is actually fairly easy. If you're experienced with Access, you'll find it easier than Crystal; however, it is easier to distrbute reports with Crystal b/c they can be imported and run from Symposium. Anyway, to access the Symposium tables:
1. Make sure you install the thick client. If you're using the webclient, you will need to install the Sybase application on the PC you're going to use (this installs the ODBC driver for Sybase)
2. From MS Access, go to the tables tab, and right-click and select 'Import...'
3. Change 'Files of Type' to ODBC Databases ()
4. On Select Data source box, change tab to Machine Data Source
5. Scroll down and select
ICCM_PREVIEW_DSN (Symposium installs lots of these, so make sure you get the proper one)
6. You'll get a 'Logon to Sybase' box. Make sure the server name says
ICCM_PEVIEW. The login id and password will be what you use to login to Symposium. Change the database to 'blue'.
7. You will now be presented with a list of tables to link. The definition and contents of each table is in the data dictionary, you may want to peruse that for the report you'd like to build.
8. Select your report and click ok
9. Happy querying and reporting!
If you have issues, try the following...
1. Open your control panel, and select Administrative Tools, then Data Sources (ODBC)
2. Go to the System DSN tab and select ICCM_PREVIEW_DSN and click Configure.
3. Click on the Connection tab and look at the field for Interfaces file and make sure it has
C:\Program Files\Nortel Networks\Symposium Call Center Server\SqlIni\ini\sql.ini
4. If it doesn't have it, put that in, click OK
If it still doesn't work, try this:
1. Navigate to C:\Program Files\Nortel Networks\Symposium Call Center Server\SqlIni\ini\sql.ini
2. there should be a section that looks like this:
Code:
[ICCM_PREVIEW]
$BASE$01=NLNWLINK,ICCM_Server
$BASE$00=NLWNSCK,ICCM_Server,5000
query=$BASE$00;$BASE$01;
3. Change the ICCM_Server to the CLAN ip addy of your Symposium. It will look like this:
Code:
[ICCM_PREVIEW]
$BASE$01=NLNWLINK,ICCM_Server
$BASE$00=NLWNSCK,XXX.XXX.XXX.XXX,5000
query=$BASE$00;$BASE$01;
4. then save the sql.ini file
Enjoy!