DBA Data[Home] [Help]

APPS.CSE_ASSET_UTIL_PKG dependencies on FND_PROFILE

Line 4: l_debug varchar2(1) := NVL(fnd_profile.value('cse_debug_option'),'N');

1: PACKAGE BODY CSE_ASSET_UTIL_PKG AS
2: /* $Header: CSEFAUTB.pls 120.35.12020000.7 2013/02/22 07:16:53 mvaradam ship $ */
3:
4: l_debug varchar2(1) := NVL(fnd_profile.value('cse_debug_option'),'N');
5:
6: PROCEDURE debug( p_message IN varchar2) IS
7: BEGIN
8: IF l_debug = 'Y' THEN

Line 332: p_asset_attrib_rec.book_type_code := fnd_profile.VALUE_SPECIFIC(

328: END ;
329:
330: DEBUG('inside '|| l_api_name || 'OU context is ' || l_txn_ou_context);
331:
332: p_asset_attrib_rec.book_type_code := fnd_profile.VALUE_SPECIFIC(
333: name => 'cse_fa_book_type_code',
334: ORG_ID => l_txn_ou_context
335: );
336: DEBUG('inside '|| l_api_name || 'CSE_FA_BOOK_TYPE_CODE: '

Line 970: l_asset_creation_txn_subtype :=nvl(FND_PROFILE.VALUE('CSE_TXN_SUBTYPE_ASSET_CREATION'), 0); --Added for ER#16265912

966: x_return_status := fnd_api.g_ret_sts_success;
967:
968: debug('inside cse_asset_util_pkg.payables_ccid');
969:
970: l_asset_creation_txn_subtype :=nvl(FND_PROFILE.VALUE('CSE_TXN_SUBTYPE_ASSET_CREATION'), 0); --Added for ER#16265912
971:
972: debug('l_asset_creation_txn_subtype : '||l_asset_creation_txn_subtype);
973:
974: cse_asset_client_ext_stub.get_payables_ccid(

Line 1646: l_asset_creation_txn_subtype :=nvl(FND_PROFILE.VALUE('CSE_TXN_SUBTYPE_ASSET_CREATION'), 0); --Added for ER#16265912

1642: x_return_status := fnd_api.G_RET_STS_SUCCESS ;
1643:
1644: l_txn_type := p_asset_attrib_rec.source_transaction_type ;
1645:
1646: l_asset_creation_txn_subtype :=nvl(FND_PROFILE.VALUE('CSE_TXN_SUBTYPE_ASSET_CREATION'), 0); --Added for ER#16265912
1647: debug('l_asset_creation_txn_subtype :'||l_asset_creation_txn_subtype);
1648:
1649: OPEN item_type_cur(p_asset_attrib_rec.inv_master_organization_id, p_asset_attrib_rec.inventory_item_id) ;
1650: FETCH item_type_cur INTO l_asset_creation_code;