DBA Data[Home] [Help]

APPS.ASO_TAX_INT dependencies on FND_PROFILE

Line 52: aso_debug_pub.g_debug_flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');

48: WHERE vat_tax_id = c_tax_id;
49: BEGIN
50: SAVEPOINT CALCULATE_TAX_INT;
51:
52: aso_debug_pub.g_debug_flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');
53:
54: x_return_status := FND_API.G_RET_STS_SUCCESS;
55:
56: IF p_tax_control_rec.tax_level = 'HEADER' THEN

Line 250: aso_debug_pub.g_debug_flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');

246:
247: BEGIN
248: SAVEPOINT CALCULATE_TAX_PUB;
249:
250: aso_debug_pub.g_debug_flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');
251:
252: x_return_status := FND_API.G_RET_STS_SUCCESS;
253:
254: l_tax_detail_rec.quote_header_id := p_quote_header_id;

Line 397: aso_debug_pub.add('Before calling tax engine: FND_PROFILE.Value(ASO_USE_TAX_VIEW)'||FND_PROFILE.Value('ASO_USE_TAX_VIEW'),1,'Y');

393: BEGIN
394:
395: IF aso_debug_pub.g_debug_flag = 'Y' THEN
396:
397: aso_debug_pub.add('Before calling tax engine: FND_PROFILE.Value(ASO_USE_TAX_VIEW)'||FND_PROFILE.Value('ASO_USE_TAX_VIEW'),1,'Y');
398: aso_debug_pub.add('Before new tax call : ' || x_tax_amount, 1, 'Y');
399:
400: END IF;
401:

Line 479: aso_debug_pub.g_debug_flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');

475: x_tax_amount OUT NOCOPY NUMBER,
476: x_tax_rec_tbl OUT NOCOPY ARP_TAX.tax_rec_tbl_type)
477: IS
478: BEGIN
479: aso_debug_pub.g_debug_flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');
480: ARP_PROCESS_TAX.Summary(
481: p_trx_id => p_trx_id,
482: p_trx_line_id => p_trx_line_id,
483: p_charge_line_id => p_charge_line_id,

Line 952: l_ship_from_org_id := fnd_profile.value( 'ASO_SHIP_FROM_ORG_ID' );

948: END IF;
949:
950: IF l_ship_from_org_id IS NULL OR l_ship_from_org_id = FND_API.G_MISS_NUM THEN
951:
952: l_ship_from_org_id := fnd_profile.value( 'ASO_SHIP_FROM_ORG_ID' );
953:
954: IF aso_debug_pub.g_debug_flag = 'Y' THEN
955: aso_debug_pub.add('ASO_TAX_LINE: Profile ASO_SHIP_FROM_ORG_ID value', 1, 'Y');
956: aso_debug_pub.add('ASO_TAX_LINE: l_ship_from_org_id: '|| l_ship_from_org_id, 1, 'Y');

Line 2366: aso_debug_pub.g_debug_flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');

2362:
2363: Begin
2364:
2365: Savepoint CALCULATE_TAX_WITH_GTT;
2366: aso_debug_pub.g_debug_flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');
2367: x_return_status := FND_API.G_RET_STS_SUCCESS;
2368:
2369: IF aso_debug_pub.g_debug_flag = 'Y'
2370: THEN

Line 3500: --l_order_type_id := to_number(fnd_profile.value('ASO_ORDER_TYPE_ID'));

3496: -- Release 12 MOAC Changes : Bug 4500739
3497: -- Changes Done by : Girish
3498: -- Comments : Changed to use HR EIT in place of org striped profile.
3499:
3500: --l_order_type_id := to_number(fnd_profile.value('ASO_ORDER_TYPE_ID'));
3501: l_order_type_id := to_number(ASO_UTILITY_PVT.get_ou_attribute_value(ASO_UTILITY_PVT.G_DEFAULT_ORDER_TYPE));
3502:
3503: -- Change END
3504:

Line 3598: SELECT NVL(FND_PROFILE.VALUE('OE_INVOICE_TRANSACTION_TYPE_ID'), 0)

3594: IF aso_debug_pub.g_debug_flag = 'Y' THEN
3595: aso_debug_pub.add(' ASO_TAX_INT default from oe_invoice_trans profile ' , 1, 'N');
3596: END IF;
3597: /* This profile is obsoleted
3598: SELECT NVL(FND_PROFILE.VALUE('OE_INVOICE_TRANSACTION_TYPE_ID'), 0)
3599: INTO l_cust_trx_type_id
3600: FROM DUAL;
3601: */
3602:

Line 3651: SELECT NVL(FND_PROFILE.VALUE('OE_CREDIT_TRANSACTION_TYPE_ID'), 0)

3647: NVL(p_qte_line_rec.org_id, -3114));
3648:
3649: END IF;
3650: IF l_inv_cust_trx_type_id = 0 OR l_cust_trx_type_id = 0 THEN
3651: SELECT NVL(FND_PROFILE.VALUE('OE_CREDIT_TRANSACTION_TYPE_ID'), 0)
3652: INTO l_cust_trx_type_id
3653: FROM DUAL;
3654:
3655: END IF;