I’m trying to test some customizations in the new 2025 R2 Beta.
Unfortunately, one of them requires a lookup in FSARTran -- which no longer exists.
The Developer notes list it as a Removed Table, and DAC, but don’t suggest what we should use instead of it now. (which is kind of frustrating… removing a class without deprecating it, and then not mentioning in the notes what to do about it…? REALLY???)
Does anyone have any idea?
This is the code I need to replicate somehow in 2025 R2. In the SO Invoice Entry, when the record is updated, I check to see if there are appointments scheduled and set some User Defined Flags on the Appointment if so:
// Is There and Appointment scheduled?
FSARTran arDataExt = FSARTran.PK.Find(Base, row.TranType, row.RefNbr, row.LineNbr);
if (arDataExt is null) return;
if (arDataExt.AppointmentRefNbr != null)
{
// ... do some things
}
