DBA Data[Home] [Help]

APPS.MSC_X_NETTING_PKG dependencies on MFG_LOOKUPS

Line 33: from mfg_lookups

29: BEGIN
30:
31: select meaning
32: BULK COLLECT INTO lv_exception_grp
33: from mfg_lookups
34: where lookup_type = 'MSC_X_EXCEPTION_GROUP'
35: order by lookup_code;
36:
37: select meaning

Line 39: from mfg_lookups

35: order by lookup_code;
36:
37: select meaning
38: BULK COLLECT INTO lv_exception_type
39: from mfg_lookups
40: where lookup_type = 'MSC_X_EXCEPTION_TYPE'
41: order by lookup_code;
42:
43: IF (p_late_order in (to_char(2), 'N') and

Line 1625: from mfg_lookups

1621: end if;
1622: */
1623: select meaning
1624: into l_message_type
1625: from mfg_lookups
1626: where lookup_type = 'MSC_X_EXCEPTION_TYPE'
1627: and lookup_code = p_exception_code;
1628:
1629: return l_message_type;

Line 1656: from mfg_lookups

1652: */
1653:
1654: select meaning
1655: into l_message_group
1656: from mfg_lookups
1657: where lookup_type = 'MSC_X_EXCEPTION_GROUP'
1658: and lookup_code = p_exception_group;
1659:
1660: return l_message_group;