Synchronization Manager
When Status is New and App option is
OFF, no mask of scope link is seen.

When Status is New and App Option is
ON, the mask of scope link is seen on assembly rows.

When Status is not New and manufacturing
assembly does not have a scope link, no mask of scope link is seen.

When Status is not New and manufacturing assembly has a scope link,
the mask of scope link shows.

Generate MBOM
If the parent item had a scope link, the mask of scope link is seen for the parent item of
Rule based MBOM Generation List panel.

When Scope Link Creation on Assembly Item option is
OFF, no mask of scope link is seen on items of Mfg Item
Type column.
When Scope Link Creation on Assembly Item option is
ON, the mask of scope link is seen on items of Mfg Item
Type column, which is for Product Assembly.
Data Model - When Scope Link Creation on Assembly
Item option is ON, scope link is created between
product assembly and assembly item when generating assembly item.
OFF, the implement link creates between product assembly and
assembly item when generating the assembly item like before.
EKL function
The DELPLMFProcessAdvFunctionPackage package has
NavigateFromPrdToProcessThroughImplementLink which Returns multiple
items of input product instance from the database. And outputs load in the session after the
call.
// PrdInst : #In VPMInstance
let ItemList(List)
let ItemInst(DELFmiFunctionInstance)
if(NULL <> PrdInst)
{
// Retrieve implementing item instances of product instance
ItemList = PrdInst.NavigateFromPrdToProcessThroughImplementLink()
if(ItemList.Size() > 0)
{
// Get first item of output list
set ItemInst = ItemList[1]
}
}