DBA Data[Home] [Help]

APPS.PON_UDA_IMPORT_PKG dependencies on PO_TBL_NUMBER

Line 738: l_attr_group_table PO_TBL_NUMBER;

734: )
735: IS
736: d_progress NUMBER := 0;
737: l_po_uda_usage_object PO_UDA_USAGE_OBJECT;
738: l_attr_group_table PO_TBL_NUMBER;
739: l_context_object_index NUMBER;
740: l_attr_group_id_index NUMBER;
741: l_pk_col_index NUMBER;
742: l_attr_group_id NUMBER;

Line 803: l_attr_group_table := PO_TBL_NUMBER();

799: PON_UDA_IMPORT_PKG.DEBUG('x_attributes_row_table is as follows', d_progress);
800: PON_UDA_IMPORT_PKG.DEBUG(x_attributes_row_table, d_progress);
801: d_progress := 20;
802:
803: l_attr_group_table := PO_TBL_NUMBER();
804: d_progress := 30;
805: IF (x_po_uda_usage_object_array IS NOT NULL AND x_po_uda_usage_object_array.COUNT > 0) THEN
806: d_progress := 40;
807: PON_UDA_IMPORT_PKG.DEBUG('x_po_uda_usage_object_array.COUNT :' || x_po_uda_usage_object_array.COUNT, d_progress);

Line 2772: p_structure_array IN PO_TBL_NUMBER

2768: END DEBUG;
2769:
2770: PROCEDURE DEBUG
2771: (
2772: p_structure_array IN PO_TBL_NUMBER
2773: ,p_progress IN NUMBER
2774: )
2775: IS
2776: l_structure_ind NUMBER;

Line 2785: PON_UDA_IMPORT_PKG.DEBUG('PO_TBL_NUMBER Table at index : ' || l_structure_ind || ' is : ' || l_structure, 0);

2781: WHILE (l_structure_ind IS NOT NULL AND l_structure_ind <= p_structure_array.LAST)
2782: LOOP
2783: l_structure := p_structure_array(l_structure_ind);
2784: IF l_structure IS NOT NULL THEN
2785: PON_UDA_IMPORT_PKG.DEBUG('PO_TBL_NUMBER Table at index : ' || l_structure_ind || ' is : ' || l_structure, 0);
2786: ELSE
2787: PON_UDA_IMPORT_PKG.DEBUG('NO VALUE AT THIS INDEX', 0);
2788: END IF;
2789: l_structure_ind := p_structure_array.NEXT(l_structure_ind);