USP_DATAFORMTEMPLATE_ADDPRELOAD_WORKSTATION_PRINTER
The load procedure used by the edit dataform template "Workstation Printer Add Form"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@WORKSTATIONID | uniqueidentifier | IN | Input parameter indicating the context ID for the record being added. |
@WORKSTATIONNAME | nvarchar(255) | INOUT | Workstation |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADDPRELOAD_WORKSTATION_PRINTER
(
@WORKSTATIONID uniqueidentifier,
@WORKSTATIONNAME nvarchar(255) = null output
)
as
set nocount on;
select @WORKSTATIONNAME = MACHINENAME from dbo.WORKSTATION where ID = @WORKSTATIONID
return 0