Hi there, I have been doing RM apply using econnect taRMApply please see below: 
	exec dbo.taRMApply
		@I_vAPTODCNM		= @APTODCNM,
		@I_vAPFRDCNM		= @APFRDCNM,
		@I_vAPPTOAMT		= @APPTOAMT,
		@I_vAPFRDCTY		= @APFRDCTY,
		@I_vAPTODCTY		= @APTODCTY,
		@I_vAPPLYDATE		= @APPLYDATE,
		@I_vGLPOSTDT		= @GLPOSTDT,
		@O_iErrorState	= @ErrorState output,
		@oErrString		= @ErrString output
now I made a mistake by setting the @APPLYDATE to the Due Date, while it actually should be the payment document date.
my question is, to make correction, can i do mass update via SQL to the RM20201 table.
thank you!