Hi all
First post here... first off, this is an amazing product and a great value. I am currently testing the demo version to see how it fits in with my development, and I must say, I am both amazed and feeling over my head at the same time!
I apologize if this has been asked in other forms, but I am new to the lingo as well, so I could not easily find an answer.
Now, on to my question: I have an entity defined, which has related entities under it. it looks like this:
Organization
|-> Subscription
|
---- Org (bill to)
|
---- Org (DeliverTo)
It's working beautifully. If I load the organization, I see the related 10 or so subscriptions owned by them.
My question: I need to show a small grid of some combined elements from the parent and the child entities... for instance:
"Org(deliverto).Name, Subscriptions.count, Subscriptions.status, Org(deliverto).Address", etc.
In my current non-llblgen approach, I have a view that represents the combined sets for the grid, and upon selection of the grid, I load the elements to the other related parts on the fly (very messy, and hand-coded).
Ideally, I would like to be able to use llblgen to do this, loading the organiztion entity, and have edits made at the various entities and subentities, and then do a .save(true) and have it all save elegantly. I am most questioning how I would make a flattened result set out of part of this to show in the grid.
Any help is appreciated, thanks for listening
Can this be done, and if so, some pointers would be great.