DBA Data[Home] [Help]

APPS.ONT_ICP_PROCESS_PACKAGE dependencies on FND_API

Line 129: p_ship_from_org_id IN NUMBER := FND_API.G_MISS_NUM,

125:
126: procedure dual_uom_and_grade_control
127: (
128: p_inventory_item_id IN NUMBER ,
129: p_ship_from_org_id IN NUMBER := FND_API.G_MISS_NUM,
130: p_org_id IN NUMBER ,
131: x_dual_control_flag OUT NOCOPY VARCHAR2 ,
132: x_grade_control_flag OUT NOCOPY VARCHAR2,
133: x_wms_enabled_flag OUT NOCOPY VARCHAR2

Line 143: p_inventory_item_id <> FND_API.G_MISS_NUM

139:
140: /* if both inventory_item_id and ship_from_org_id are passed then
141: check id the item is dual_uom/grade controlled */
142: IF ( p_inventory_item_id IS NOT NULL and
143: p_inventory_item_id <> FND_API.G_MISS_NUM
144: --p_ship_from_org_id IS NOT NULL and
145: --p_ship_from_org_id <> FND_API.G_MISS_NUM
146: )
147: THEN

Line 145: --p_ship_from_org_id <> FND_API.G_MISS_NUM

141: check id the item is dual_uom/grade controlled */
142: IF ( p_inventory_item_id IS NOT NULL and
143: p_inventory_item_id <> FND_API.G_MISS_NUM
144: --p_ship_from_org_id IS NOT NULL and
145: --p_ship_from_org_id <> FND_API.G_MISS_NUM
146: )
147: THEN
148: l_item_rec := OE_Order_Cache.Load_Item( p_key1 => p_inventory_item_id
149: ,p_key2 => p_ship_from_org_id

Line 203: RAISE FND_API.G_EXC_UNEXPECTED_ERROR ;

199: end if ;
200: if (l_debug_level >0 ) then
201: oe_debug_pub.add('Others in dual_uom_and_grade_control');
202: end if ;
203: RAISE FND_API.G_EXC_UNEXPECTED_ERROR ;
204:
205: END dual_uom_and_grade_control ;
206:
207: end ont_icp_process_package;