DBA Data[Home] [Help]

APPS.PO_PDOI_LINE_LOC_PROCESS_PVT dependencies on PO_CORE_S

Line 546: l_key := PO_CORE_S.get_session_gt_nextval;

542:
543: PO_TIMING_UTL.start_time(PO_PDOI_CONSTANTS.g_T_LINE_LOC_DERIVE);
544:
545: -- assign a new key
546: l_key := PO_CORE_S.get_session_gt_nextval;
547:
548: -- initialize table containing the row number
549: PO_PDOI_UTL.generate_ordered_num_list
550: (

Line 886: l_key := PO_CORE_S.get_session_gt_nextval;

882:
883: PO_TIMING_UTL.start_time(PO_PDOI_CONSTANTS.g_T_LINE_LOC_DEFAULT);
884:
885: -- pick a new key from temp table which will be used in all default logic
886: l_key := PO_CORE_S.get_session_gt_nextval;
887:
888: -- initialize table containing the row number
889: PO_PDOI_UTL.generate_ordered_num_list
890: (

Line 1306: l_key := PO_CORE_S.get_session_gt_nextval;

1302: IF (PO_LOG.d_proc) THEN
1303: PO_LOG.proc_begin(d_module);
1304: END IF;
1305:
1306: l_key := PO_CORE_S.get_session_gt_nextval;
1307:
1308: FORALL i IN 1..p_po_line_id_tbl.COUNT
1309: INSERT INTO po_session_gt(key, num1, num2)
1310: SELECT l_key,

Line 1767: PO_CORE_S.get_outsourced_assembly

1763: END IF;
1764:
1765: FOR i IN 1..p_item_id_tbl.COUNT LOOP
1766: x_outsourced_assembly_tbl(i) :=
1767: PO_CORE_S.get_outsourced_assembly
1768: ( p_item_id => p_item_id_tbl(i),
1769: p_ship_to_org_id => p_ship_to_organization_id_tbl(i)
1770: );
1771: END LOOP;