Web service import set mode
Summarize
Summary of Web service import set mode
This feature governs how SOAP messages insert records into import set tables within ServiceNow, determining whether data transformation occurs immediately or is deferred. When no import set in the Loading state exists for a table, a new synchronous import set is created by default, triggering immediate transformation of data if a transform map is present. Alternatively, import sets can be set to asynchronous mode to load data without immediate transformation, allowing manual or scheduled processing later.
Show less
Import Set Modes and States
- Asynchronous Loading: Data is loaded without automatic transformation; rows are marked as "Pending" and transformation occurs later manually or via scheduling.
- Asynchronous Loaded: Marks completion of data loading; transformation can proceed afterward.
- Synchronous Loading: Data transformation happens automatically as data is inserted; the import set is in Loading state.
- Synchronous Loaded: Indicates completion of current import set; subsequent inserts create new synchronous import sets for immediate transformation.
Controlling Insert Behavior
For import sets with coalesce fields, records are transformed serially to avoid duplicates. Without coalesce fields, records transform concurrently by default. The glide.importsetinsertserializedwhennocoalesce property controls this behavior, allowing customers to toggle between serialized inserts to prevent duplicates and concurrent inserts to improve performance. This property can be set per table using glide.importsetinsertserialized.<table name>. Note that disabling serialization can increase the risk of duplicate records.
SOAP Response Details
After a web service import set insert, the SOAP response includes key fields to confirm the operation's outcome:
- sysid: Unique identifier of the created or modified record.
- table: Name of the affected table (import set table for asynchronous calls).
- displayname: The designated display field for the record.
- displayvalue: Value of the display field (e.g., incident number).
- status: Indicates the result such as inserted, updated, ignored, skipped, or error.
- statusmessage: Optional message providing additional context about the status.
- errormessage: Optional message describing errors if any occurred.
Customizing the SOAP Response
Customers can tailor the SOAP response by modifying the statusmessage field within the transform script, enabling inclusion of custom information beyond the standard WSDL definitions.
When a SOAP message inserts a record into an import set table, and there is no import set for that table in the Loading state, a new import set will be created with the Mode set to Synchronous.
An import set with a Mode of Synchronous will transform the data as soon as it is inserted (provided that the transform map already exists). This import set will also have a default State of Loading. By default, all Synchronous import sets will automatically be modified to Processed at midnight. As a result, when a new insert happens to the same table, a new Synchronous import set will be created.
| Mode | State | Function |
|---|---|---|
| Asynchronous | Loading | Data transformation is not occurring automatically and immediately. Data added to import set row has a state of "Pending". Transform can be scheduled or executed manually when state is changed to Loaded |
| Asynchronous | Loaded | Marks the completion of data loading. Data transformation can now occur in a scheduled fashion or manually. |
| Synchronous | Loading | Data transformation is occurring automatically and immediately whenever data is inserted into the associated import set row. |
| Synchronous | Loaded | When new data is inserted into this associated import set, a new import set of mode Synchronous and state Loading will be created. Changing the state to Loaded is a way to indicate that a new Synchronous import set should be created for the next import set row insert (and transformed immediately) |
Controlling Insert Behavior
In imports sets that specify one or more coalesce fields, records with a matching coalesce value are transformed from source to target table serially (one at a time) to prevent duplicates.
In import sets that do not specify any coalesce field, records are transformed concurrently. You can control this behavior using the glide.import_set_insert_serialized_when_no_coalesce property.
The glide.import_set_insert_serialized.<table name> system property controls how the instance inserts records from web service calls into a specific import set table. When true, this property prevents identical simultaneous inserts from creating duplicate records by serializing the database insert operations. If a target table does not have any coalesce fields defined in a transform map, set this property to false to improve web service import set performance.
Standard SOAP Response
<SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><insertResponse><sys_id>fa648f5f0a0a0b2b0048e7012448b8f1</sys_id><table>incident</table><display_name>number</display_name><display_value>INC10014</display_value><status>inserted</status></insertResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
| Field | Description |
|---|---|
| sys_id | The Sys_id of the resulting record that was created or modified |
| table | The table name of the table that was affected. In the case of an Asynchronous call, the table name would be the import set table eg. imp_notification for the Notifications web service import set table |
| display_name | The name of the field that is set as the display field for the record that was created or modified |
| display_value | The value of the field designated as the display field. For example, the display field for the Incident table is the Number field and an example value would be INC10001 |
| status | A string value that indicates the action that occurred as a result of the web
service invocation, relating to the record defined by the sys_id
and table field values
|
| status_message | This value translates to the value found in the Comment field of the import set row and usually contains information related to the status value eg. "No field values changed" when the status is "ignored' . Setting this value to a customized string value will cause the SOAP response to contain an optional status_message field to be returned. |
| error_message | The message related to a status of error. When an error occurs, setting this value to a customized string value will cause the SOAP response to contain an optional error_message field to be returned |
Tailoring the SOAP Response
It is possible to include information other than the information specified in the WSDL by overwriting the contents of status_message using the transform script.