USP_GLACCOUNT_REFRESH
Rebuilds GLACCOUNT table after any change to the account's string structure.
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ChangeAgentID | uniqueidentifier | IN |
Definition
Copy
CREATE proc dbo.USP_GLACCOUNT_REFRESH @ChangeAgentID uniqueidentifier = null
as
begin
set nocount on
exec dbo.USP_GLACCOUNT_REFRESH '4B121C2C-CCE6-440D-894C-EA0DEF80D50B', @ChangeAgentID
end