DBA Data[Home] [Help]

APPS.OE_DEFAULT_PVT dependencies on OE_INVOICE_PUB

Line 1161: l_cust_trx_type_id := OE_Invoice_PUB.Get_Customer_Transaction_Type(ONT_LINE_DEF_HDLR.g_record);

1157: WHEN OTHERS THEN
1158: RETURN null;
1159: END;
1160: ELSE
1161: l_cust_trx_type_id := OE_Invoice_PUB.Get_Customer_Transaction_Type(ONT_LINE_DEF_HDLR.g_record);
1162: oe_debug_pub.add( 'value of customer trx type id '||l_cust_trx_type_id,1);
1163: END IF;
1164: --bug4333881 end
1165:

Line 1168: --OE_Invoice_PUB.Get_Customer_Transaction_Type checks the line_type cache to get cust_trx_type_id

1164: --bug4333881 end
1165:
1166: --bug 3175277 begin
1167: --There is no need to load line_type cache again because
1168: --OE_Invoice_PUB.Get_Customer_Transaction_Type checks the line_type cache to get cust_trx_type_id
1169: /*if (l_cust_trx_type_id = 0 or l_cust_trx_type_id is null) then
1170: l_line_type_rec := oe_order_cache.load_line_type(ONT_LINE_DEF_HDLR.g_record.line_type_id);
1171: l_cust_trx_type_id := l_line_type_rec.cust_trx_type_id;
1172: oe_debug_pub.add( 'customer trx type id:'||l_cust_trx_type_id,1);