We have a LINK
to capture the ORDER
and PRODUCT
for a Orders: LINK_ORDER_PRODUCT
with HK_LINK_PRODUCT
Now we want to capture the Signature data from the Customer when they receive the PRODUCT. The product may be shipped on multiple Pallets (for e.g. sod, concrete etc.) at different times. The Customer signs for each Pallets individually upon receiving it. We are thinking of using a Non delta-driven LINK (Transactional Link) for this purpose.
We have two options:
- Include the Pallet Number as a Dependent Child in this Transactional Link and then generate a new
HK_LINK_ORDER_PRODUCT
with Dependent Child in it. Issue here is that this will not join to theHK_LINK_ORDER_PRODUCT
inLINK_ORDER_PRODUCT
- Include the Pallet Number as a Dependent Child in this Transactional Link but do not include it as part of the
HK_LINK_ORDER_PRODUCT
. This will allow joins toLINK_ORDER_PRODUCT
usingHK_LINK_ORDER_PRODUCT
. However this goes against the Standard which says that the Dependent Child should be part of the LINK Hashkey generation.
Please advise.