/** * Updates a PlasticDeal with hosted payment page session information. We know this info before * the hosted payment page is shown to the user so we need this info on the PlasticDeal should * something go wrong and we never get the response in a normal fashion. With this info saved, * the Payment Research screen would be able to try and inquire and retrieve the results of this * transaction. */
CREATEPROCEDURE[dbo].[UpdatePlasticDealHppSessionInfo] @inPlasticDealIdint, @inHppSessionIdvarchar(50) as setnocounton
updatePlasticDealset HppSessionID=@inHppSessionId whereDealID=@inPlasticDealId GO GRANTEXECUTEON[dbo].[UpdatePlasticDealHppSessionInfo]TO[MssExec] GO