Dear All,
I have the AL code as below and I can't see SendApprovalRequest button on my business central page after publishing the extension.
// Add changes to page actions here
addafter("Job - Planning Lines")
{
action("Send for Approval")
{
ApplicationArea = All;
Promoted = true;
PromotedCategory = Process;
PromotedIsBig = true;
PromotedOnly = true;
Image = SendApprovalRequest;
trigger OnAction()
begin
IntCodeunit.OnSendJobsforApproval(Rec);
end;
}
}
Regards RomRyan