DBA Data[Home] [Help]

APPS.BOM_INV_COMPS1_PKG dependencies on FND_PROFILE

Line 73: FND_PROFILE.GET('ENG:ALLOW_ENG_COMPS',eng_items_allowed);

69: -- If so, make sure component exists in those other orgs
70: -- and the component does not violate the bill/comp matrix
71:
72: -- bug 1517975
73: FND_PROFILE.GET('ENG:ALLOW_ENG_COMPS',eng_items_allowed);
74: if ((eng_items_allowed = 1) and (X_Bill_or_Eco = 2)) then
75: eng_items_for_mfg_ecos_flag := 'YES';
76: end if;
77:

Line 121: (nvl(fnd_profile.value('BOM:MANDATORY_ATO_IN_PTO'), 2) <> 1)

117: AND msi2.replenish_to_order_flag = 'Y'
118: ))))
119: AND (
120: (
121: (nvl(fnd_profile.value('BOM:MANDATORY_ATO_IN_PTO'), 2) <> 1)
122: AND (NOT (msi1.bom_item_type = 4
123: AND msi1.pick_components_flag = 'Y'
124: AND msi2.bom_item_type = 4
125: AND msi2.replenish_to_order_flag = 'Y'

Line 129: OR (nvl(fnd_profile.value('BOM:MANDATORY_ATO_IN_PTO'), 2) = 1)

125: AND msi2.replenish_to_order_flag = 'Y'
126: )
127: )
128: )
129: OR (nvl(fnd_profile.value('BOM:MANDATORY_ATO_IN_PTO'), 2) = 1)
130: ) /* bug 10082384 */
131: );
132: fnd_message.set_name('INV','INV_NOT_VALID');
133: fnd_message.set_token('ENTITY','Component item_CAP',TRUE);