DBA Data[Home] [Help]

APPS.PO_PDOI_LINE_LOC_PROCESS_PVT dependencies on PO_CORE_S

Line 506: l_key := PO_CORE_S.get_session_gt_nextval;

502:
503: PO_TIMING_UTL.start_time(PO_PDOI_CONSTANTS.g_T_LINE_LOC_DERIVE);
504:
505: -- assign a new key
506: l_key := PO_CORE_S.get_session_gt_nextval;
507:
508: -- initialize table containing the row number
509: PO_PDOI_UTL.generate_ordered_num_list
510: (

Line 788: l_key := PO_CORE_S.get_session_gt_nextval;

784:
785: PO_TIMING_UTL.start_time(PO_PDOI_CONSTANTS.g_T_LINE_LOC_DEFAULT);
786:
787: -- pick a new key from temp table which will be used in all default logic
788: l_key := PO_CORE_S.get_session_gt_nextval;
789:
790: -- initialize table containing the row number
791: PO_PDOI_UTL.generate_ordered_num_list
792: (

Line 1197: l_key := PO_CORE_S.get_session_gt_nextval;

1193: IF (PO_LOG.d_proc) THEN
1194: PO_LOG.proc_begin(d_module);
1195: END IF;
1196:
1197: l_key := PO_CORE_S.get_session_gt_nextval;
1198:
1199: FORALL i IN 1..p_po_line_id_tbl.COUNT
1200: INSERT INTO po_session_gt(key, num1, num2)
1201: SELECT l_key,

Line 1658: PO_CORE_S.get_outsourced_assembly

1654: END IF;
1655:
1656: FOR i IN 1..p_item_id_tbl.COUNT LOOP
1657: x_outsourced_assembly_tbl(i) :=
1658: PO_CORE_S.get_outsourced_assembly
1659: ( p_item_id => p_item_id_tbl(i),
1660: p_ship_to_org_id => p_ship_to_organization_id_tbl(i)
1661: );
1662: END LOOP;