UFN_ACCOUNTINGELEMENTID_MAPFROM_USERDEFINEDELID
Maps a user defined element record ID to the parent accounting element ID.
Return
| Return Type |
|---|
| uniqueidentifier |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @UDEID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_ACCOUNTINGELEMENTID_MAPFROM_USERDEFINEDELID
(
@UDEID uniqueidentifier
)
returns uniqueidentifier
as begin
return @UDEID
end