Hello Thomas!
Thank you for answer.
I've read and watched your video about associations, events and Content-Ids but I want to clarify something. Lets say I have two tables: Master and Details with one-to-many relation. I define them in XSOData service like this:
service { "demo::MASTER_TBL" as "Master" create events( before "pathToXSJSExit" // here I generate ID for Master ); "demo::DETAILS_TBL" as "Details"; association "MasterToDetails" principal "Master"("ID") multiplicity "1"
dependent "Details"("MASTER.ID") multiplicity "*";
}I suppose I should use userexit to set MASTER.ID field for Details table. But where I should use it? In create event for Details or for association?
About Navigation - yes, I meant navigation keyword. Thank you for describing it.
Regards,
Lev