Hi, stefano
Thanks for your quick response.
I have tried your suggestion but its not showing data on XYZ page but show in message box below is my code
PAGE : XYZ
procedure GetRecordFromABCPage(var Rec: Record Request)
var
myInt: Integer;
begin
Message(Rec.EmployeeID);
EmployeeID := Rec.EmployeeID;
end;
PAGE ABC:
action("XYZ") {
ApplicationArea = All;
trigger OnAction()
Begin
pGXYZ. GetRecordFromABCPage (Rec);
PAGE.RUN(PAGE:: XYZ);
end;
}