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.36.12010000.5 2008/12/01 01:48:14 ipineda 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 5708: FND_PROFILE.get('CURRENCY_CONVERSION_TYPE', l_curr_type);

5704: from mtl_material_transactions
5705: where transaction_id = i_txn_id;
5706:
5707: if (l_curr_type is NULL) then
5708: FND_PROFILE.get('CURRENCY_CONVERSION_TYPE', l_curr_type);
5709: end if;
5710:
5711: if (l_rcv_curr <> l_snd_curr) then
5712: l_stmt_num := 60;

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

8330: WHERE ORGANIZATION_ID = l_parent_org_id;
8331:
8332:
8333: -- Get the Conversion Type from the profile
8334: FND_PROFILE.get('CURRENCY_CONVERSION_TYPE', l_conversion_type);
8335:
8336: IF g_debug = 'Y' THEN
8337: fnd_file.put_line(fnd_file.log, 'Currency Conversion Type: '|| l_conversion_type);
8338: END IF;