Hello,
Context -
We have a parent DCT which has some module DCTs (IPLs) inlined. Each module IPL has a corresponding TPL.
The parent TPL includes module TPLs.
Requirement -
We need to pass the container that inlines a module to corresponding module TPL so that it can display the relevant items correctly.
Current Implementation -
Right now, we pass the current DCR to the module TPL so that it can pick the relevant item values from the parent DCR itself.
Problem with current implementation -
In case, the module can have replicants then the module TPL won't know which item to pick (the first or the second one from the parent DCR, probably we can do this by iteration through the module container and having an additional parameter - "itemNumber", but this will be cumbersome) .
Question -
Is there a way by which we can achive this?
Regards -