Hi,
I'm trying to extend business central "Payment Journal" page using extension. All I want to do is add an action item to the page. But it does not show my action button on the ribbon. Below is my code and would be great if you can help with this. (If I have on open trigger it get fired without an issue too)
(I do have developer license and its uploaded to docker running instance)
pageextension 50000 MyPageExtension extends "Payment Journal" { layout { // Add changes to page layout here } actions { addbefore("P&osting") { group(mygroup) { Visible = true; action(myaction) { Visible = true; ApplicationArea = Basic; Promoted = true; PromotedCategory = Category4; trigger OnAction() begin Message('Working well'); end; } } } } var myInt: Integer; }
*This post is locked for comments