DBA Data[Home] [Help]

APPS.E_CHANGES_INT_PKG dependencies on MFG_LOOKUPS

Line 22: select meaning from mfg_lookups

18: END Get_Loc;
19:
20: FUNCTION Get_New RETURN VARCHAR2 IS
21: cursor c2 is
22: select meaning from mfg_lookups
23: where lookup_type = 'BOM_CO_ACTION'
24: and lookup_code = 4;
25:
26: new_code VARCHAR2(80);

Line 37: select meaning from mfg_lookups

33:
34:
35: FUNCTION Get_Update RETURN VARCHAR2 IS
36: cursor c3 is
37: select meaning from mfg_lookups
38: where lookup_type = 'BOM_CO_ACTION'
39: and lookup_code = 2;
40: update_code VARCHAR2(80);
41: BEGIN