DBA Data[Home] [Help]

APPS.GMF_RCV_ACCOUNTING_PKG dependencies on FND_PROFILE

Line 9: G_DEBUG CONSTANT VARCHAR2(10) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');

5: * Package Level Constants *
6: **************************/
7: MODULE CONSTANT VARCHAR2(80) := 'gmf.plsql.gmf_rcv_accounting_pkg';
8: G_PKG_NAME CONSTANT VARCHAR2(30) := 'GMF_RCV_ACCOUNTING_PKG';
9: G_DEBUG CONSTANT VARCHAR2(10) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
10: G_LOG_HEAD CONSTANT VARCHAR2(40) := 'gmf.plsql.'||G_PKG_NAME;
11:
12: /**********************************************************************************************
13: * API name *

Line 1925: fnd_profile.get ('IC_CURRENCY_CONVERSION_TYPE',

1921: l_ledger_id := p_rcv_accttxn.ledger_id;
1922: -- Use profile INV: Intercompany Currency conversion Type, to determine Conversion Type
1923: -- Ensure that INV uses the same type for conversion for GP/ DS scenarios
1924: l_stmt_num := 70;
1925: fnd_profile.get ('IC_CURRENCY_CONVERSION_TYPE',
1926: l_currency_conversion_type
1927: );
1928: l_stmt_num := 80;
1929: l_currency_conversion_rate :=

Line 2833: l_ussgl_option := NVL (fnd_profile.VALUE ('USSGL_OPTION'), 'N');

2829: END IF;
2830:
2831: -- Initialize API return status to success
2832: x_return_status := fnd_api.g_ret_sts_success;
2833: l_ussgl_option := NVL (fnd_profile.VALUE ('USSGL_OPTION'), 'N');
2834:
2835: IF (l_ussgl_option = 'Y')
2836: THEN
2837: IF (p_rcv_accttxn.event_type_id = encumbrance_reversal)

Line 3027: x_ussgl_option := NVL (fnd_profile.VALUE ('USSGL_OPTION'), 'N');

3023: FROM financials_system_parameters fsp
3024: WHERE fsp.set_of_books_id = p_rcv_ledger_id;
3025:
3026: x_encumbrance_flag := l_encumbrance_flag;
3027: x_ussgl_option := NVL (fnd_profile.VALUE ('USSGL_OPTION'), 'N');
3028:
3029: IF g_debug = 'Y'
3030: AND fnd_log.level_statement >= fnd_log.g_current_runtime_level
3031: THEN