EBS报表参数间的关联性的设置

如果想在提交报表请求时根据参数一的值来设置参数二对应的值集,则在参数二的值集设定中的where clause加入:FEFX.参数二的值集名称。例如:参数一名称为inventory_item_id,参数二的名称为lot_number,而Lot_number参数调用了一个inv_lot_number的一个值集。而inventory_item_id参数调用了一个inv_item_sets值集。Lot_number参数要求根据inventory_item_id值来决定Lot_number值集范围。这时我们在设定inv_lot_number这个值集时得注意设置它基于table糊弄,对应的表名:mtl_transaction_lot_numbers,在where clause中填写:organization_id=fnd_profile.value('MFG_ORGANIZATION_ID')

and item_inventory_id=:$FLEX$.inv_item_sets.这样设定后再把inventory_item_id,参数设置成必输项,当输入inventory_item_id就会限定了Lot_number参数的输入范围

原文地址:https://www.cnblogs.com/toowang/p/5640915.html