OrderBO.Cust_id -> CustomerBO.Cust_id
and
OrderBO.Prod_id ->ProductBO.Prod_id
As I navigate through each Order record, I want to be able to display the related Customer.Name and Product.Title.
I've been able to successfully set the OrderBO.ParentBusinessObject = "CustomerBO" in the property sheet, but do not know how to set another relation at the same time or how to do this in code. Any help would be much appreciated.
TIA,
Larry
Thanks for the quick replies and suggestions.
>>Would settiing the ProductBO.ParentBusinessObject = "OrderBO" work for you?<<
I think the directionality is backwards. I really need to set two parentBOs for OrderBO, something like: OrderBO.ParentBusinessObject = "CustomerBO, ProductBO". I believe the ability to do this is what Trent is referring to in the coming upgrade.
>>Also, have a look at the CRM Sample that comes with StrataFrame..<<
This is a great example I hadn't picked up on. Lot's of good examples of handling parent-child relations. Very helpful.
Sorry if this is a silly question, but is it possible to have two parents set for the same child at the same time? I would think that we could have two childs for the same parent, something like your OrderBO being the same parent for the CustomerBO and the ProductBO, so you would set CustomerBO.ParentBusinessObject = "OrderBO", and ProductBO.ParentBusinessObject = "OrderBO".
Sorry if I got it all confused...