Hi!
I want to open form, with specific data after clicking a field on my page.
Just like on Customer List (22, List), when I click value in column "No." - customer number. I am redirected to Customer Card (21, Card) with full customer data.
I have 2 tables:
ParentTable, with unique field "Parent No."
ChildTable, with not unique field "Parent No.".
ChildTable have relation like this:field(1; "Parent No."; Integer)
{
Caption = 'Parent No.';
DataClassification = ToBeClassified;
TableRelation = ParentTable."Parent No.";
}
I have also 2 pages
First page, that's show list of all parents
Second page, that's show list of all child which match passed "Parent No.".
How should I develop this? Any solutions? :)
Best Regards!