DBA Data[Home] [Help]

APPS.XTR_HEDGE_PROCESS_P dependencies on FND_MESSAGE

Line 506: fnd_message.set_name('XTR', 'XTR_154');

502: );
503:
504: Exception
505: when others then
506: fnd_message.set_name('XTR', 'XTR_154');
507: APP_EXCEPTION.Raise_exception;
508: LOG_MSG('Error', 'Error occured in XTR_HEDGE_PROCESS_P.xtr_ins_dnm');
509: LOG_MSG('Error', SQLERRM);
510: END xtr_ins_dnm;

Line 705: fnd_message.set_name('XTR', 'XTR_154');

701: and nvl(AUTHORIZED,'N') <> 'Y';
702:
703: Exception
704: when others then
705: fnd_message.set_name('XTR', 'XTR_154');
706: APP_EXCEPTION.Raise_exception;
707: END AUTHORIZE;
708:
709:

Line 1328: fnd_message.set_name('XTR', 'XTR_DO_PROSPECTIVE_TEST_LOG');

1324: LOG_MSG('Test Result', l_result);
1325: LOG_MSG('l_pct_eff', l_pct_eff);
1326:
1327: If l_result is not NULL and l_result = 'FAIL' then
1328: fnd_message.set_name('XTR', 'XTR_DO_PROSPECTIVE_TEST_LOG');
1329: fnd_message.set_token('P_HEDGE_NO', hdg_rec.hedge_no);
1330: fnd_message.set_token('P_TEST_DATE', hdg_rec.period_to);
1331: fnd_file.put_line(fnd_file.log, fnd_message.get);
1332: end if;

Line 1329: fnd_message.set_token('P_HEDGE_NO', hdg_rec.hedge_no);

1325: LOG_MSG('l_pct_eff', l_pct_eff);
1326:
1327: If l_result is not NULL and l_result = 'FAIL' then
1328: fnd_message.set_name('XTR', 'XTR_DO_PROSPECTIVE_TEST_LOG');
1329: fnd_message.set_token('P_HEDGE_NO', hdg_rec.hedge_no);
1330: fnd_message.set_token('P_TEST_DATE', hdg_rec.period_to);
1331: fnd_file.put_line(fnd_file.log, fnd_message.get);
1332: end if;
1333:

Line 1330: fnd_message.set_token('P_TEST_DATE', hdg_rec.period_to);

1326:
1327: If l_result is not NULL and l_result = 'FAIL' then
1328: fnd_message.set_name('XTR', 'XTR_DO_PROSPECTIVE_TEST_LOG');
1329: fnd_message.set_token('P_HEDGE_NO', hdg_rec.hedge_no);
1330: fnd_message.set_token('P_TEST_DATE', hdg_rec.period_to);
1331: fnd_file.put_line(fnd_file.log, fnd_message.get);
1332: end if;
1333:
1334: -- l_gain_loss_ccy := get_gl_ccy(l_amount_type, hdg_rec.hedge_no, p_company);

Line 1331: fnd_file.put_line(fnd_file.log, fnd_message.get);

1327: If l_result is not NULL and l_result = 'FAIL' then
1328: fnd_message.set_name('XTR', 'XTR_DO_PROSPECTIVE_TEST_LOG');
1329: fnd_message.set_token('P_HEDGE_NO', hdg_rec.hedge_no);
1330: fnd_message.set_token('P_TEST_DATE', hdg_rec.period_to);
1331: fnd_file.put_line(fnd_file.log, fnd_message.get);
1332: end if;
1333:
1334: -- l_gain_loss_ccy := get_gl_ccy(l_amount_type, hdg_rec.hedge_no, p_company);
1335:

Line 1517: fnd_message.set_name('XTR', 'XTR_154');

1513:
1514: Exception
1515: when others then
1516: LOG_MSG(SQLERRM);
1517: fnd_message.set_name('XTR', 'XTR_154');
1518: APP_EXCEPTION.raise_exception;
1519: END retro_main_calc;
1520:
1521:

Line 1574: FND_MESSAGE.Set_Name('XTR', 'XTR_RETRO_CP_RUNNING');

1570: End If;
1571:
1572: EXCEPTION
1573: When e_batch_been_run then
1574: FND_MESSAGE.Set_Name('XTR', 'XTR_RETRO_CP_RUNNING');
1575: APP_EXCEPTION.raise_exception;
1576: End;
1577: /***************************************************************/
1578:

Line 1844: fnd_message.get_string('XTR','XTR_AP_SOURCE_MANUAL'),

1840: open ap_source;
1841: fetch ap_source into SOURCE_NAME(cnt);
1842: if ap_source%NOTFOUND then
1843: select decode(l_ap_source,'Manual Invoice Entry',
1844: fnd_message.get_string('XTR','XTR_AP_SOURCE_MANUAL'),
1845: fnd_message.get_string('XTR','XTR_AP_SOURCE_OTHER'))
1846: INTO SOURCE_NAME(cnt) from dual;
1847: end if;
1848: close ap_source;

Line 1845: fnd_message.get_string('XTR','XTR_AP_SOURCE_OTHER'))

1841: fetch ap_source into SOURCE_NAME(cnt);
1842: if ap_source%NOTFOUND then
1843: select decode(l_ap_source,'Manual Invoice Entry',
1844: fnd_message.get_string('XTR','XTR_AP_SOURCE_MANUAL'),
1845: fnd_message.get_string('XTR','XTR_AP_SOURCE_OTHER'))
1846: INTO SOURCE_NAME(cnt) from dual;
1847: end if;
1848: close ap_source;
1849:

Line 2144: where substr(fnd_message.get_string('XTR','XTR_AR_TRX_TYPE_CASH'),1,20) = p_trxtype;

2140: and tt.name = p_trxtype
2141: union all
2142: select '(CUST_TRX_TYPE_ID = -99999) OR ' trxtype
2143: from DUAL
2144: where substr(fnd_message.get_string('XTR','XTR_AR_TRX_TYPE_CASH'),1,20) = p_trxtype;
2145:
2146: /* BUG 3497802 Repalcing RA_CUSTOMERS with HZ_PARTIES
2147:
2148: cursor ar_customer(p_customer in VARCHAR2) is