Is it possible to add Payment Priority to the Payables Transaction Inquiry Screen? Using Forms Modifier will not work because Payment Priority is a global field and you cannot add global fields to a form. Using VS C# I can capture the value using:
public static PmTransactionInquiryForm PmTransactionInquiryForm = Dynamics.Forms.PmTransactionInquiry;
public static PmTransactionInquiryForm.PmTransactionInquiryWindow PmTransactionInquiryWindow = PmTransactionInquiryForm.PmTransactionInquiry;
and
string payPriority = string.Empty;
payPriority = PmTransactionInquiryWindow.PaymentPriority.Value;
but how do I get it to appear on the form without opening another window? I suppose I could open another window and set the properties of the window so it appears to be part of the Payables Transaction Inquiry Screen. Did I just answer my own question?