Login / Register  search  syndication

          Ryan Farley's Blog

Ryan Farley on .NET Development with a focus on CRM Development for SalesLogix

Extracting Reports from the SalesLogix Plugin Table from External Applications

There are many reasons why extracting a SalesLogix Report from the SalesLogix database might be useful. There are possibilities of integration, automated running of reports, as well as the need to generate a PDF from some code on a server using a SalesLogix Crystal report.

SalesLogix stores reports in the DATA field, which is a binary (BLOB) field in the PLUGIN table. Not just the report, but the SalesLogix report plugin, which contains not only the report itself but also the plugin info for the report. All together in a single BLOB field. This BLOB field is the serialized Delphi class named TCRWReportWrapper with the report file bytes appended to the end of the serialized class bytes.

Luckily, a serialized Delphi class will always end in two consecutive NULL bytes (0x00, 0x00) and will never contain two consecutive NULL bytes internally. This makes out job a bit easier in knowing where the serialized Delphi class ends and the bytes making up the report file begin. We can read out the bytes from PLUGIN.DATA for the report record and then read through them until we find the two consecutive NULL bytes, when write out everything following to a file and we'll have the report itself.

Here is some C# code to do just that:

using System;
using System.Data;
using System.Data.OleDb;
using System.IO;

namespace FX.SalesLogix.Utility
{
public class ReportExtractor
{
public ReportExtractor(string ConnectionString)
{
this.ConnectionString = ConnectionString;
}

public string ConnectionString { get; set; }

public void GetReport(string PluginID, string DestinationFile)
{
using (OleDbConnection conn = new OleDbConnection(this.ConnectionString))
{
conn.Open();
using (OleDbCommand cmd = new OleDbCommand("SELECT DATA FROM PLUGIN WHERE PLUGINID = ?", conn))
{
cmd.Parameters.Add(new OleDbParameter("PLUGINID", PluginID));

// Get the plugin byte array
byte[] data = (byte[])cmd.ExecuteScalar();

// Look for the two consecutive null bytes
int idx = 0;
for (int i = 0; i < data.Length; i++)
{
if ((int)data[ i ] == 0 && (int)data[i + 1] == 0)
{
idx = i + 2;
break;
}
}

// Get everything after the two consecutive bytes
byte[] rpt = new byte[data.Length];
Array.Copy(data, idx, rpt, 0, data.Length - idx);

// Write out to an RPT file
using (FileStream f = new FileStream(DestinationFile, FileMode.CreateNew))
{
f.Write(rpt, 0, rpt.Length);
f.Close();
}
}
}
}
}
}

To use the code you'd do something like the following:

// Extract report to C:\MyReportFile.rpt
ReportExtractor rptextractor = new ReportExtractor(MyConnectionString);
rptextractor.GetReport("pDEMOA0000HQ", @"C:\MyReportFile.rpt");

Now you can do whatever you'd like with the report such as open it in an RDC object and generate a PDF from it.

What's This?
Bookmark and Share

About Ryan Farley

   Ryan Farley is the Director of Development for Customer FX Corporation and the creator of slxdeveloper.com.


Related Content
   SalesLogix Web Client- Working with Activities
In this webinar the user will learn to work with Activities from the Activities entity. This feature all
Posted on Mar 16, 2010 by Dale Richter to SalesLogix Training
 
   Editing tables in SQL 2008
I recently ran into an issue when trying to edit a SalesLogix table in the SQL Management Studio 2008. I
Posted on Mar 16, 2010 by Kris Halsrud to Kris Halsrud's Blog
 
   SalesLogix Web Client- Marketing Campaigns Part I [Video]
In this video webinar the Marketing Professional will learn how to create a New Marketing Campaign in Sal
Posted on Mar 15, 2010 by Dale Richter to SalesLogix Training
 
   Searching for Matching Records in the SalesLogix Web Client
In this short video the user will learn how to search for matching records while adding new records to th
Posted on Mar 10, 2010 by Dale Richter to Tech Talk
 
   Opening Several Records in the SalesLogix Web Client
This webinar will show the user how to open several records at one time. Often you would like to be able
Posted on Mar 10, 2010 by Dale Richter to SalesLogix Training
 
Comments

 

Twitted by 4SalesLogix said:

Pingback from  Twitted by 4SalesLogix

May 30, 2009 2:49 PM
 

karim said:

nice & very helpful article

June 26, 2009 5:11 AM

Leave a Comment

(required)  
(optional)
(required)  
Add
All contents Copyright © 2010 Customer FX Corporation
Customer FX Corporation
2324 University Avenue West, Suite 115
Saint Paul, Minnesota 55114
Tel: 800.728.5783

  Follow @CustomerFX on twitter
Follow the best news, tips, and articles
  Subscribe to Customer FX on youtube
Watch SalesLogix tutorial videos from Customer FX
Login / Register