USP_POSTTOGLPROCESS_FORMAT_CUSTOM
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | |
@TABLENAME | nvarchar(49) | IN |
Definition
Copy
create procedure dbo.USP_POSTTOGLPROCESS_FORMAT_CUSTOM
(
@ID uniqueidentifier,
@TABLENAME nvarchar(49)
)
as
set nocount on;
-- This sp is for Professional Services to create custom formatted post files
-- Add custom routines here to populate reformat
-- Product Development should NOT alter this spec
return 0;