PalAttrAdd, Add value to Attr in Client in IFS (DataRecordFetchEditedUserEvent)
- Rumesh Aponso (RMAX)

- Nov 22, 2024
- 1 min read
private void tblTestPackage_DataRecordFetchEditedUserEvent(object sender, cDataSource.DataRecordFetchEditedUserEventArgs e)
{
#region Local Variables
SalString lsNewAttr = __lsAttr;
#endregion
#region Actions
using (new SalContext(tblTestPackage))
{
Ifs.Fnd.ApplicationForms.Int.PalAttrAdd("RECEIVED_PART_TYPE", this.sReceivedPartTypeDb, ref lsNewAttr);
}
#endregion
}



Comments