USP_DATALIST_BANKACCOUNTDEPOSITCORRECTIONDOCUMENTATIONNOTES

This returns a list of all deposit correction notes within a bank account deposit correction context.

Parameters

Parameter Parameter Type Mode Description
@DEPOSITCORRECTIONID uniqueidentifier IN Input parameter indicating the context ID for the data list.
@DOCUMENTATIONTYPECODE tinyint IN Documentation type
@TITLE nvarchar(50) IN Title

Definition

Copy


                CREATE procedure dbo.USP_DATALIST_BANKACCOUNTDEPOSITCORRECTIONDOCUMENTATIONNOTES 
                (
                    @DEPOSITCORRECTIONID uniqueidentifier = null,
                    @DOCUMENTATIONTYPECODE tinyint = null,
                    @TITLE nvarchar(50) = ''
                )
                as
                    set nocount on;

                    exec dbo.USP_BANKACCOUNTDEPOSITCORRECTION_DOCUMENTATION_DATALIST_GETDATA @DEPOSITCORRECTIONID, @DOCUMENTATIONTYPECODE, @TITLE;