DBA Data[Home] [Help]

APPS.PO_PDOI_MOVE_TO_DRAFT_TABS_PVT dependencies on PO_PRICE_DIFF_DRAFT

Line 40: PROCEDURE insert_po_price_diff_draft

36: (
37: p_dists IN PO_PDOI_TYPES.distributions_rec_type
38: );
39:
40: PROCEDURE insert_po_price_diff_draft
41: (
42: p_price_diffs IN PO_PDOI_TYPES.price_diffs_rec_type
43: );
44:

Line 1476: -- insert price differential rows into po_price_diff_draft

1472: END IF;
1473:
1474: PO_TIMING_UTL.start_time(PO_PDOI_CONSTANTS.g_T_PRICE_DIFF_INSERT);
1475:
1476: -- insert price differential rows into po_price_diff_draft
1477: insert_po_price_diff_draft
1478: (
1479: p_price_diffs => p_price_diffs
1480: );

Line 1477: insert_po_price_diff_draft

1473:
1474: PO_TIMING_UTL.start_time(PO_PDOI_CONSTANTS.g_T_PRICE_DIFF_INSERT);
1475:
1476: -- insert price differential rows into po_price_diff_draft
1477: insert_po_price_diff_draft
1478: (
1479: p_price_diffs => p_price_diffs
1480: );
1481:

Line 3062: -- po_price_diff_draft

3058: --Start of Comments
3059: --Name: insert_po_price_diffs_draft
3060: --Function:
3061: -- insert new price differential attribute values into
3062: -- po_price_diff_draft
3063: --Parameters:
3064: --IN:
3065: --p_price_diffs
3066: -- record which contains processed line attributes in a batch;

Line 3074: PROCEDURE insert_po_price_diff_draft

3070: --IN OUT:
3071: --OUT:
3072: --End of Comments
3073: ------------------------------------------------------------------------
3074: PROCEDURE insert_po_price_diff_draft
3075: (
3076: p_price_diffs IN PO_PDOI_TYPES.price_diffs_rec_type
3077: ) IS
3078:

Line 3079: d_api_name CONSTANT VARCHAR2(30) := 'insert_po_price_diff_draft';

3075: (
3076: p_price_diffs IN PO_PDOI_TYPES.price_diffs_rec_type
3077: ) IS
3078:
3079: d_api_name CONSTANT VARCHAR2(30) := 'insert_po_price_diff_draft';
3080: d_module CONSTANT VARCHAR2(255) := d_pkg_name || d_api_name || '.';
3081: d_position NUMBER;
3082:
3083: -- variables used to print debug message

Line 3109: INSERT INTO po_price_diff_draft

3105: l_valid_intf_diff_id_tbl);
3106: END IF;
3107:
3108: FORALL i IN 1..p_price_diffs.rec_count
3109: INSERT INTO po_price_diff_draft
3110: (
3111: draft_id,
3112: delete_flag,
3113: change_accepted_flag,

Line 3163: END insert_po_price_diff_draft;

3159: p_pkg_name => d_pkg_name,
3160: p_procedure_name => d_api_name || '.' || d_position
3161: );
3162: RAISE;
3163: END insert_po_price_diff_draft;
3164:
3165: -----------------------------------------------------------------------
3166: --Start of Comments
3167: --Name: merge_po_attr_values_draft