DBA Data[Home] [Help]

APPS.GML_ITEM_AUTOLOT dependencies on IC_ITEM_MST

Line 16: # ic_item_mst indicating that item is autolot active

12: # whether opm item is autlot active or not
13: # The Zeroth version of the package function will
14: # return FALSE indicating that item is not autlot
15: # enabled and the next version will return check
16: # ic_item_mst indicating that item is autolot active
17: #
18: # MODIFICATION HISTORY
19: # 05-MAY-2003 PBamb Created
20: #########################################################################*/

Line 26: From ic_item_mst

22: FUNCTION item_autolot_enabled(P_item_id IN NUMBER) RETURN BOOLEAN IS
23:
24: Cursor Cr_autolot IS
25: Select AUTOLOT_ACTIVE_INDICATOR
26: From ic_item_mst
27: Where item_id = p_item_id;
28:
29: v_autolot_active NUMBER;
30: