Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Importing Data from Service Center to SQL using Connect-it

Status
Not open for further replies.

lstarr13

Programmer
Oct 21, 2002
2
US
I am new to both Peregrine Service Center and Connect-it. I am attempting to import data from Peregrine Service Center to qn SQL table using connect-it. I have trouble with any data that has a field name the begins with a Dollar sign ($), i.e. $Description. Does any one have any suggestions?
 

Anything starting with a $ inside of ServiceCenter is a variable and is not a field.

You'll find that a number of times when you're looking at data on screen inside of ServiceCenter, you're not looking at the raw data, but rather at a computed value based on that data. For example, when you look at the problem details form inside of ServiceCenter 3.0, you're really looking at a combination of the original problem description (saved in one field), and any past updates (saved in another).

In order to display a computed value to you, the programmer will first compute the value, either in the RAD code, or in the Display format control, and then put the value in question on a form by setting a field's input name to the variable name.

Computed values aren't stored into the ServiceCenter data store, so if you want to export them out by going after the ServiceCenter table structure, you're in a bit of a bind.

Ultimately, of course, the computed value is based on other values which at some point have to be read out of the data store. If you know what the computed value is based upon, then you can just query out the raw data and then do the same computation yourself inside of your application.

So, my question to you is this:

What piece of information are you actually trying to export? I can probably point you at the right field name if you can tell me what you're exporting.

Good Luck.
 
an example of one of the fields I would be trying to export is $pmc.details in the filename of problems. Could you walk me through the steps in determining the actual field name. I also tried to download the incidents.description field and received the follwoing error: "No target connector is able to process document based on document type 'incidents (incidentsSrc)'" The peregrine definition is long text field. I am attempting to put it into an SQL table with a text declaration.

Thanks for your help.
 
$pmc.details is a temporary holding place for the update a person is making to a ticket. The actual database fields are:

action - hold the original description put in the ticket on open.
update.action - holds the date/time/user stamped updates that have been made to a ticket by typing them into the field that has $pmc.details
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top