I'm trying to make a simple page extension, to rename "Approve" on the Purchase Invoice Page, to read "Approve / Reject"
My code is below, however it seems to have done nothing. Can anyone point me in the right direction?
pageextension 53024 PageExtension53024 extends "Purchase Invoice"
{
actions
{
modify(Approval)
{
Caption = 'Approve / Reject';
}
}
}