DBA Data[Home] [Help]

APPS.PA_BILLING_CORE dependencies on FND_MSG_PUB

Line 271: FND_MSG_PUB.Add_Exc_Msg

267: elsif sqlcode < 0 then
268:
269: x_err_code := SQLCODE;
270: -- 10-SEP-97, jwhite: multiple messaging
271: FND_MSG_PUB.Add_Exc_Msg
272: ( p_pkg_name => 'PA_BILLING_CORE'
273: , p_procedure_name => 'VERIFY_BASELINE_FUNDING'
274: , p_error_text => 'ORA-'||LPAD(substr(SQLCODE,2),5,'0')
275: );

Line 443: FND_MSG_PUB.Add_Exc_Msg

439:
440: elsif sqlcode < 0 then
441: x_err_code := SQLCODE;
442: -- 10-SEP-97, jwhite: multiple messaging
443: FND_MSG_PUB.Add_Exc_Msg
444: ( p_pkg_name => 'PA_BILLING_CORE'
445: , p_procedure_name => 'VERIFY_BASELINE_FUNDING'
446: , p_error_text => 'ORA-'||LPAD(substr(SQLCODE,2),5,'0')
447: );

Line 549: FND_MSG_PUB.Add_Exc_Msg

545: exception
546: when others then
547: x_err_code := SQLCODE;
548: -- 10-SEP-97, jwhite: multiple messaging
549: FND_MSG_PUB.Add_Exc_Msg
550: ( p_pkg_name => 'PA_BILLING_CORE'
551: , p_procedure_name => 'VERIFY_BASELINE_FUNDING'
552: , p_error_text => 'ORA-'||LPAD(substr(SQLCODE,2),5,'0')
553: );

Line 992: FND_MSG_PUB.Add_Exc_Msg

988: when others then
989: x_err_code := sqlcode;
990: x_funding_level := l_funding_level;
991: -- 10-SEP-97, jwhite: multiple messaging
992: FND_MSG_PUB.Add_Exc_Msg
993: ( p_pkg_name => 'PA_BILLING_CORE'
994: , p_procedure_name => 'CHECK_FUNDING_LEVEL'
995: , p_error_text => 'ORA-'||LPAD(substr(SQLCODE,2),5,'0')
996: );