Skip to main content
May 13, 2025
Solved

Account Reconciliation Status Codes

  • May 13, 2025
  • 2 replies
  • 0 views

I am trying to write some custom reports off of the RCM tables.  Does anyone know the translation of the number in the status column from the table to the name that shows in the UI?  Or does someone have a nifty way to retrieve that from the code?

Thanks,

Scott

Best answer by MarcusH

We don't use Reconciliation Manager but there is an enumeration in RCM_SolutionHelper for the ReconStatusTypes. I don't know if that is what you want.

	Public Enum ReconStatusTypes
		Inprocess = 1	
		BalanceChanged = 2
		Completed = 3
		AutoRec = 5
		Rejected = 6
		FrequencyChanged = 9
	End Enum	

 

2 replies

MarcusHAnswer
May 13, 2025

We don't use Reconciliation Manager but there is an enumeration in RCM_SolutionHelper for the ReconStatusTypes. I don't know if that is what you want.

	Public Enum ReconStatusTypes
		Inprocess = 1	
		BalanceChanged = 2
		Completed = 3
		AutoRec = 5
		Rejected = 6
		FrequencyChanged = 9
	End Enum	

 

May 13, 2025

Thanks MarcusH​, that was what I was looking for.

Scott