DBA Data[Home] [Help]

APPS.PO_CHARGES_GRP dependencies on PON_CF_TYPE_GRP

Line 10: g_fte_cost_factor_details pon_price_element_types_vl%ROWTYPE:= pon_cf_type_grp.get_cost_factor_details('ORACLE_FTE_COST');

6: G_LOG_MODULE CONSTANT VARCHAR2(40) := 'po.plsql.' || G_PKG_NAME;
7: G_CONC_LOG VARCHAR2(32767);
8:
9: g_asn_debug VARCHAR2(1) := NVL(fnd_profile.VALUE('RCV_DEBUG_MODE'), 'N');
10: g_fte_cost_factor_details pon_price_element_types_vl%ROWTYPE:= pon_cf_type_grp.get_cost_factor_details('ORACLE_FTE_COST');
11: g_dummy_rci_tbl RCV_CHARGES_GRP.charge_interface_table_type;
12: g_charge_numbers NUMBER;
13:
14: -- Private support procedures

Line 294: pon_cf_type_grp.get_cost_factor_details(TO_NUMBER(l_freight_charge_tbl(n).charge_type_code));

290: asn_debug.put_line('Getting cost factor detail for cost_factor_id '
291: ||l_freight_charge_tbl(n).charge_type_code);
292: END IF;
293: l_cost_factor_details :=
294: pon_cf_type_grp.get_cost_factor_details(TO_NUMBER(l_freight_charge_tbl(n).charge_type_code));
295:
296: SELECT po_rcv_charges_s.NEXTVAL
297: INTO l_charge_table(k).charge_id
298: FROM dual;

Line 992: l_cost_factor_details := pon_cf_type_grp.get_cost_factor_details( l_ap_charge_distribution.cost_factor_code );

988: asn_debug.put_line('costfactor id '||l_ap_charge_distribution.cost_factor_id);
989: END IF;
990:
991: If (l_ap_charge_distribution.cost_factor_id = 0 ) then
992: l_cost_factor_details := pon_cf_type_grp.get_cost_factor_details( l_ap_charge_distribution.cost_factor_code );
993: else
994: l_cost_factor_details := pon_cf_type_grp.get_cost_factor_details( l_ap_charge_distribution.cost_factor_id );
995: end if;
996:

Line 994: l_cost_factor_details := pon_cf_type_grp.get_cost_factor_details( l_ap_charge_distribution.cost_factor_id );

990:
991: If (l_ap_charge_distribution.cost_factor_id = 0 ) then
992: l_cost_factor_details := pon_cf_type_grp.get_cost_factor_details( l_ap_charge_distribution.cost_factor_code );
993: else
994: l_cost_factor_details := pon_cf_type_grp.get_cost_factor_details( l_ap_charge_distribution.cost_factor_id );
995: end if;
996:
997: IF (g_asn_debug = 'Y') THEN
998: asn_debug.put_line('price_element_type_id id '||l_cost_factor_details.price_element_type_id);