Skip to main content
Solved

A data corruption state has been detected - RQRequisitionLine

  • October 15, 2024
  • 4 replies
  • 153 views

Hello Team,

I Got Some Error during customization on Acumatica 2024 R1, the codes works fine on Acumatica 2021 R2, but when upgrading to Acumatica 2024 R1 it throw error A data corruption state has been detected here simple customization code.

 

protected virtual void _(Events.FieldUpdated<RQRequisition,RQRequisition.vendorID> e)
{
	if (e.NewValue != null)
	{
		int? vendorID = Convert.ToInt16(e.NewValue);
		foreach (var line in Base.Lines.Cache.Cached.RowCast<RQRequisitionLine>())
		{
			var vendorPrice = GetVendorPrice(vendorID, line.InventoryID, line.SiteID, line.PromisedDate);
			decimal lastPrice = vendorPrice == null ? 0m : vendorPrice.SalesPrice ?? 0m;
			Base.Lines.Cache.SetValueExt<RQRequisitionLine.curyEstUnitCost>(line, lastPrice);
			Base.Lines.Cache.RaiseExceptionHandling<RQRequisitionLine.curyEstUnitCost>(line, null, null);
		}
	}
}

 

Best answer by budi12

hananeoufdir34 wrote:

Thank you for @hananeoufdir34 for the reference, I already read the link you give, but Still It doesn’t make sense to throw error like that. I already solve with override base DAC Aggregate Validation on PXFormula attribute to false, and the errors disappear like charm.

View original
Did this topic help you find an answer to your question?

4 replies

Manikanta Dhulipudi
Captain II
Forum|alt.badge.img+13

Forum|alt.badge.img
  • Acumatica Employee
  • 13 replies
  • October 16, 2024

  • Author
  • Freshman III
  • 2 replies
  • Answer
  • October 21, 2024
hananeoufdir34 wrote:

Thank you for @hananeoufdir34 for the reference, I already read the link you give, but Still It doesn’t make sense to throw error like that. I already solve with override base DAC Aggregate Validation on PXFormula attribute to false, and the errors disappear like charm.


Chris Hackett
Community Manager
Forum|alt.badge.img
  • Acumatica Community Manager
  • 2759 replies
  • October 21, 2024

Thank you for sharing your solution with the community @hananeoufdir34!


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings