DBA Data[Home] [Help]

APPS.PO_DRAFTS_PVT dependencies on PO_ENTITY_LOCK_COMP_TBL_TYPE

Line 9: g_entity_lock_comp_tbl po_entity_lock_comp_tbl_type;

5: PO_LOG.get_package_base('PO_DRAFTS_PVT');
6:
7: --
8: -- Declare a table to store lock (F, P, S) compatibilities
9: g_entity_lock_comp_tbl po_entity_lock_comp_tbl_type;
10:
11:
12: -------------------------------------------------------
13: ----------- PRIVATE PROCEDURES PROTOTYPE --------------

Line 9570: g_entity_lock_comp_tbl := po_entity_lock_comp_tbl_type();

9566: BEGIN
9567: --
9568: -- Initialize the pl/sql table with lock compatibilities
9569: -- C = Compatible, I = Incompatible
9570: g_entity_lock_comp_tbl := po_entity_lock_comp_tbl_type();
9571: g_entity_lock_comp_tbl.extend(9);
9572: g_entity_lock_comp_tbl(1) := po_entity_lock_comp_type('S', 'S', 'C');
9573: g_entity_lock_comp_tbl(2) := po_entity_lock_comp_type('S', 'P', 'C');
9574: g_entity_lock_comp_tbl(3) := po_entity_lock_comp_type('S', 'F', 'I');