DBA Data[Home] [Help]

PACKAGE: APPS.WIP_CFM_FILTER

Source


1 package wip_cfm_filter AUTHID CURRENT_USER as
2  /* $Header: wipnocfs.pls 115.6 2002/12/12 15:12:38 rmahidha ship $ */
3 
4 /* Returns 1 if the only routing (primary or otherwise)
5  * for the organization and
6  * item specified is a CFM routing, 2 otherwise.
7  */
8 function org_item_only_rtg_is_cfm
9   (
10     p_organization_id in number,
11     p_item_id in number
12   )
13   return number ;
14 pragma restrict_references(org_item_only_rtg_is_cfm, WNDS, WNPS);
15 
16 /* Returns 1 if the routing specified is a CFM routing,
17  * 2 otherwise.
18  */
19 function org_item_alt_is_cfm
20   (
21     p_organization_id in number,
22     p_item_id in number,
23     p_alternate_routing_designator in varchar2
24   )
25   return number ;
26 pragma restrict_references(org_item_alt_is_cfm, WNDS, WNPS);
27 
28 end wip_cfm_filter ;