Hi All,
We have a requirement that when a purchase order is sent over email to a vendor, that a custom field we generated (requestor) found in the purchase header, should be sent an email letting them know the order was sent.
Thought it would be straightforward, but I can not access the description field seen below. It is not visible in the intellitext in VS Code - and I don't know how to reference it otherwise (is it hidden somewhere else?).
I would appreciate some help in understanding how to access this field, so that I can include it into the action for the "Send" command
Email page seen below as well, with send email action I am referencing in page extension


pageextension 60031 pExt60031EmailEditor extends "Email Editor"
{
actions
{
modify(Send)
{
trigger OnAfterAction()
var
emailEditor : Page "Email Editor";
emailOutbox : Record "Email Outbox";
begin
end;
}
}
}