Hi All
I'm trying to create an action that filters change log entries for the selected purchase order line. However, in change log entries table, line no is text so the code shows an error when trying to filter by line no which is integer on purchase line table:
RunObject = Page "Change Log Entries";
RunPageLink = "Primary Key Field 2 Value" = FIELD("Document No."),
"Primary Key Field 3 Value" = Field("Line No."),//Text to integer error
"Table No." = FILTER(39),
"Type of Change" = FILTER(Modification),
"Primary Key Field 1 Value" = FILTER(1);
ToolTip = 'Opens change log and display modifcations to Selected PO Line.';