The 'Edit' button on the MFTS is disabled...Did I mess a setting somewhere?
I have tried various combinations but can't seem to get it working unless I change the IncludeInFormEditType setting to AllBusinessOjects or PrimaryBusinessObjects, which then causes problems on my third BO.
Thanks
Tim
OK....this actually was not a bug. Sorry it took so long to figure out what was going on. Here is your problem. You are setting the IncludeInFormEdit property to True on the Child form, but the parent forms Customers BO IncludeInFormEdit is set to False. Since you are using the ChildFormDialog and translating the BOs, the entire BO from the parent gets translated to the child. So it does not matter what properties you set on the child since the parents BO will be the actual object that you are talking to on the child form. Make sense? To see what I am talking about, set the parent forms IncludeInFormEdit to true and then run your sample. You will see that the Edit button becomes enabled. The reason the PrimaryBusiness object option worked the way you expected is because both the parent and child forms had the Customers BO set as the primary BO and it did not need to look at the IncludeInForm... properties to determine the BOs inclusions.