DBA Data[Home] [Help]

APPS.AR_IREC_PAYMENTS dependencies on FND_GLOBAL

Line 2105: IF FND_GLOBAL.CONC_REQUEST_ID is not null THEN

2101: /*------------------------------------------------+
2102: | Write the message to log and to the standard |
2103: | debugging channel |
2104: +------------------------------------------------*/
2105: IF FND_GLOBAL.CONC_REQUEST_ID is not null THEN
2106:
2107: /*------------------------------------------------+
2108: | Only write to the log if call was made from |
2109: | concurrent program. |

Line 6686: l_last_update_login := FND_GLOBAL.LOGIN_ID;

6682: l_last_updated_by NUMBER(15);
6683:
6684: BEGIN
6685:
6686: l_last_update_login := FND_GLOBAL.LOGIN_ID;
6687: l_last_update_date := sysdate;
6688: l_last_updated_by := FND_GLOBAL.USER_ID;
6689:
6690: FORALL trx

Line 6688: l_last_updated_by := FND_GLOBAL.USER_ID;

6684: BEGIN
6685:
6686: l_last_update_login := FND_GLOBAL.LOGIN_ID;
6687: l_last_update_date := sysdate;
6688: l_last_updated_by := FND_GLOBAL.USER_ID;
6689:
6690: FORALL trx
6691: IN p_payment_schedule_id_list.first .. p_payment_schedule_id_list.last
6692: UPDATE AR_PAYMENT_SCHEDULES set PAYMENT_APPROVAL = p_inv_pay_status,

Line 6755: 'p_user_id=' || FND_GLOBAL.user_id ||

6751: if( FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
6752: fnd_log.string(fnd_log.LEVEL_STATEMENT,G_PKG_NAME||l_procedure_name, 'Begin+');
6753: fnd_log.string(fnd_log.LEVEL_STATEMENT,G_PKG_NAME||l_procedure_name,
6754: 'p_session_id=' || p_session_id ||
6755: 'p_user_id=' || FND_GLOBAL.user_id ||
6756: 'p_customer_id=' || p_customer_id);
6757: end if;
6758:
6759:

Line 6776: AND usite.user_id = FND_GLOBAL.user_id

6772: hz_cust_site_uses hzcsite
6773: WHERE
6774: usite.session_id = p_session_id
6775: AND usite.customer_id = p_customer_id
6776: AND usite.user_id = FND_GLOBAL.user_id
6777: AND hzcsite.site_use_id = usite.customer_site_use_id
6778: AND hzcsite.primary_flag = 'Y'
6779: AND hzcsite.site_use_code = 'BILL_TO'
6780: AND hzcsite.status = 'A' ;

Line 6828: write_debug_and_log('p_user_id: '|| FND_GLOBAL.user_id);

6824: EXCEPTION
6825: WHEN e_no_rows_in_GT THEN
6826: write_debug_and_log('No rows present in ar_irec_payment_list_gt for the given customer in ' || G_PKG_NAME || l_procedure_name);
6827: write_debug_and_log('p_session_id: '|| p_session_id);
6828: write_debug_and_log('p_user_id: '|| FND_GLOBAL.user_id);
6829: write_debug_and_log('p_customer_id: '|| p_customer_id);
6830:
6831: WHEN OTHERS THEN
6832: write_debug_and_log('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);

Line 6835: write_debug_and_log('p_user_id: '|| FND_GLOBAL.user_id);

6831: WHEN OTHERS THEN
6832: write_debug_and_log('Unexpected Exception in ' || G_PKG_NAME || l_procedure_name);
6833: write_debug_and_log('ERROR =>'|| SQLERRM);
6834: write_debug_and_log('p_session_id: '|| p_session_id);
6835: write_debug_and_log('p_user_id: '|| FND_GLOBAL.user_id);
6836: write_debug_and_log('p_customer_id: '|| p_customer_id);
6837:
6838:
6839: END get_customer_site_use_id;