UFN_ACCOUNTINGELEMENTID_MAPFROM_ACCOUNTCODEID
Maps an account code record ID to the parent accounting element record ID.
Return
Return Type |
---|
uniqueidentifier |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ACCOUNTCODEID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_ACCOUNTINGELEMENTID_MAPFROM_ACCOUNTCODEID
(
@ACCOUNTCODEID uniqueidentifier
)
returns uniqueidentifier
as begin
declare @ID uniqueidentifier
select @ID = @ACCOUNTCODEID
return @ID
end