DBA Data[Home] [Help]

APPS.CSTPAVCP dependencies on FND_PROFILE

Line 5: G_DEBUG CONSTANT VARCHAR2(1) := NVL(FND_PROFILE.VALUE('MRP_DEBUG'),'N');

1: PACKAGE BODY CSTPAVCP AS
2: /* $Header: CSTAVCPB.pls 120.53 2012/02/18 00:16:47 anjha ship $ */
3:
4: G_PKG_NAME CONSTANT VARCHAR2(30) := 'CSTPAVCP';
5: G_DEBUG CONSTANT VARCHAR2(1) := NVL(FND_PROFILE.VALUE('MRP_DEBUG'),'N');
6: G_CST_APPLICATION_ID CONSTANT NUMBER := 707;
7: G_INV_APPLICATION_ID CONSTANT NUMBER := 401;
8:
9: -- PROCEDURE

Line 5901: FND_PROFILE.get('CURRENCY_CONVERSION_TYPE', l_curr_type);

5897: from mtl_material_transactions
5898: where transaction_id = i_txn_id;
5899:
5900: if (l_curr_type is NULL) then
5901: FND_PROFILE.get('CURRENCY_CONVERSION_TYPE', l_curr_type);
5902: end if;
5903:
5904: if (l_rcv_curr <> l_snd_curr) then
5905: l_stmt_num := 60;

Line 8531: FND_PROFILE.get('CURRENCY_CONVERSION_TYPE', l_conversion_type);

8527: WHERE ORGANIZATION_ID = l_parent_org_id;
8528:
8529:
8530: -- Get the Conversion Type from the profile
8531: FND_PROFILE.get('CURRENCY_CONVERSION_TYPE', l_conversion_type);
8532:
8533: IF g_debug = 'Y' THEN
8534: fnd_file.put_line(fnd_file.log, 'Currency Conversion Type: '|| l_conversion_type);
8535: END IF;