This article applies to versions of the DSP prior to 6.7.
To build the packing list of CTS objects, you must perform these additional steps.
1. Add the view ctsttProcessTemplateLoop_DownloadTableReg to the SQL Objects for Integrate.
2. Add a shippable item for the process template connection. Create and register this view:
USE [Integrate]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[ctsttProcessTemplateConnectionList]
AS
SELECT dbo.ttProcessTemplateConnection.ProcessTemplateConnectionID, dbo.ttProcess.Name + N'.' + dbo.ttTemplate.TemplateName AS Description
FROM dbo.ttProcessTemplate INNER JOIN
dbo.ttProcessTemplateConnection ON dbo.ttProcessTemplate.ProcessTemplateID = dbo.ttProcessTemplateConnection.ProcessTemplateID INNER JOIN
dbo.ttProcess ON dbo.ttProcessTemplate.ProcessID = dbo.ttProcess.ProcessID INNER JOIN
dbo.ttTemplate ON dbo.ttProcessTemplate.TemplateID = dbo.ttTemplate.TemplateID
GO