spLoadRecord_CustomFormPaymentSetting

Parameters

Parameter Parameter Type Mode Description
@FormGUID uniqueidentifier IN

Definition

Copy


            create procedure dbo.spLoadRecord_CustomFormPaymentSetting
            (
                @FormGUID    uniqueidentifier
            )
            as
            select 
                FormGUID
                , AllowDirectDebit
                , AllowPledge
                , AllowWaive
                , Amount
                , RequireFirstName
                , RequireTitle
                , RequirePhone
                , MerchantAccountID
                , WaiveCode
                , AllowPaymentCollection
            from dbo.CustomFormPaymentSetting where FormGUID = @FormGUID