/* * Gets a null value. * The GetAccountingVendorId_Synonym will be set to use the appropriate function for the current * system, based upon if they have XLedger, GP, QuickBooks or no accounting system. * Since this function is only used when the accounting system is not XLedger, there will be no Accounting Vendor data, so we just return null. */ createfunction[dbo].[GetAccountingVendorId_Legacy](@inVendorIdvarchar(15)) returnsint as begin returnnull end GO GRANTEXECUTEON[dbo].[GetAccountingVendorId_Legacy]TO[MssExec] GO