You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We would like to request the addition of a new procedure in Suggest Employee Payments, similar to the "IncludeVendor" procedure in Suggest Vendor Payments.
` local procedure IncludeEmployee(Employee: Record Employee; EmployeeBalance: Decimal) Result: Boolean
begin
Result := EmployeeBalance> 0;
[IntegrationEvent(false, false)] local procedure OnAfterIncludeEmployee(Employee: Record Employee; EmployeeBalance: Decimal; var Result: Boolean) begin end;
Thank you!
Additional context
The reason for this request is that we need to add an additional boolean filter, and we believe this is the most suitable place, as we have already implemented a similar solution for Suggest Vendor Payments.
The text was updated successfully, but these errors were encountered:
Describe the request
We would like to request the addition of a new procedure in Suggest Employee Payments, similar to the "IncludeVendor" procedure in Suggest Vendor Payments.
` local procedure IncludeEmployee(Employee: Record Employee; EmployeeBalance: Decimal) Result: Boolean
begin
Result := EmployeeBalance> 0;
[IntegrationEvent(false, false)] local procedure OnAfterIncludeEmployee(Employee: Record Employee; EmployeeBalance: Decimal; var Result: Boolean) begin end;
Thank you!
Additional context
The reason for this request is that we need to add an additional boolean filter, and we believe this is the most suitable place, as we have already implemented a similar solution for Suggest Vendor Payments.
The text was updated successfully, but these errors were encountered: