USP_RE7INTEGRATION_DATABASE_ID_UPDATE
Executes the "RE7 Integration: Update Database ID" record operation.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | int | IN | Input parameter indicating the ID of the record being updated. |
@CHANGEAGENTID | uniqueidentifier | IN | Input parameter indicating the ID of the change agent invoking the update. |
Definition
Copy
CREATE procedure dbo.USP_RE7INTEGRATION_DATABASE_ID_UPDATE
(
@ID int,
@CHANGEAGENTID uniqueidentifier
)
as begin
update
dbo.RE7INTEGRATIONCONFIGURATION
set
RE7DBID = @ID,
CHANGEDBYID = @CHANGEAGENTID,
DATECHANGED = getdate()
return 0;
end