Stored Procedures [dbo].[GenerateAccountingBatches_Legacy]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)Direction
@inBatchDescriptionnvarchar(64)128
@inBatProcessAccttransctionsMapBATProcessAcctTransactionsmax
@outErrorCodeint4Out
Permissions
TypeActionOwning Principal
GrantExecuteMssExec
SQL Script
/**
* Don't use this stored proc directly but instead use GenerateAccountingBatches_Synonym.
* GenerateAccountingBatches_Synonym will either point to this view or to
* GenerateAccountingBatches_XLedger otherwise.
*/

CREATE PROCEDURE [dbo].[GenerateAccountingBatches_Legacy]
    @inBatchDescription nvarchar(64),
    @inBatProcessAccttransctionsMap BATProcessAcctTransactions readonly,
    @outErrorCode int output
as
begin
    set nocount on

    -- NoOpp for all legacy systems.
    set @outErrorCode = 0
end
GO
GRANT EXECUTE ON  [dbo].[GenerateAccountingBatches_Legacy] TO [MssExec]
GO
Uses
Used By