UFN_SALESDEPOSITTEMPLATE_UNLINKEDRECONCILEDPAYMENTS_GETCASHDIFFERENCE_2
Returns the difference between the actual and expected amounts of cash to be deposited based on a sales deposit template.
Return
Return Type |
---|
money |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@SALESDEPOSITTEMPLATEID | uniqueidentifier | IN | |
@TRANSACTIONDATE | date | IN |
Definition
Copy
CREATE function dbo.UFN_SALESDEPOSITTEMPLATE_UNLINKEDRECONCILEDPAYMENTS_GETCASHDIFFERENCE_2
(
@SALESDEPOSITTEMPLATEID uniqueidentifier,
@TRANSACTIONDATE date
)
returns money
as begin
return dbo.UFN_SALESDEPOSITTEMPLATE_UNLINKEDRECONCILEDPAYMENTS_GETCASHDIFFERENCE_3(@SALESDEPOSITTEMPLATEID, @TRANSACTIONDATE, null)
end