Update: Statusing Transaction (Partial Documentation)

Hello,

Just a small update to the Statusing Transaction (Partial Documentation) post. The ASSN_TRANS_ACTION_ENUM enum was missing a couple of values:

 

   enum StatusTransactionState

   {

      /// <summary>Saved by team member.</summary>

      Saved = 0,

      /// <summary>Submitted by team member, awaiting action by manager.</summary>

      Submitted = 1,

      /// <summary>Submitted for processing by manager, awaiting processing by message handler.</summary>

      InProcess = 2,

      /// <summary>Applied to working store.</summary>

      ApplySuccessful = 3,

      /// <summary>Failed to be applied to working store.</summary>

      ApplyFailed = 4

   }

 

Chris Boyd