USP_DATALIST_BANK_BANKACCOUNTUK

This data list returns all bank accounts for the given bank.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN Input parameter indicating the context ID for the data list.
@EXCLUDECLOSEDITEMS smallint IN Exclude closed bank accounts
@CURRENTAPPUSERID uniqueidentifier IN Input parameter indicating the ID of the current user.

Definition

Copy


                CREATE procedure dbo.USP_DATALIST_BANK_BANKACCOUNTUK
                (
                    @ID uniqueidentifier,
                    @EXCLUDECLOSEDITEMS smallint = 0,
                    @CURRENTAPPUSERID uniqueidentifier = null
                )
                as
                    set nocount on;

                    exec dbo.USP_BANKACCOUNT_COMMONDATALIST @BANKID = @ID, @EXCLUDECLOSEDITEMS = @EXCLUDECLOSEDITEMS, @CURRENTAPPUSERID=@CURRENTAPPUSERID