spLoadRecord_ShoppingCartPart

Parameters

Parameter Parameter Type Mode Description
@PKID int IN

Definition

Copy


            CREATE procedure dbo.spLoadRecord_ShoppingCartPart (@PKID int) as
                select 
                    ID,
                    SiteContentID,
                    AllowCreditCard,
                    AllowDirectDebit,
                    AllowPledge,
                    MerchantAccountID,
                    Active,
                    ExpirationDays,
                    ShowPaymentFormImmediately,
                    EmailTemplateID
                from ShoppingCartPart 
                where ID = @PKID;