Hi,
i like to extend the PurchLineBackorder view with a computed column. Therefore I extend the view as follows:

I also write a new methode as follows:
/// <summary>
/// code extension for PurchLineBackorder view
/// </summary>
[ExtensionOf(viewstr(PurchLineBackorder))]
internal final class myPurchLineBackorder_Extension
{
/// <summary>
/// get the created date from current purchline
/// </summary>
/// <returns>created date</returns>
internal static str getPurchLineCreatedDate()
{
return SysComputedColumn::returnField(viewstr(PurchLineBackorder), tableStr(PurchLine), fieldStr(PurchLine, CreatedDateTime));
}
}
The build ended with no error but the database synch caused this error:
Log level - Error | Infolog diagnostic message: 'Error executing code: AJHPurchLineBackorder_Extension object does not have
method 'getPurchLineCreatedDate'.' on category 'Error'.
I don't know how to fix it...