DBA Data[Home] [Help]

APPS.PA_EXCEPTION_REASONS_PUB dependencies on PA_EXCEPTION_REASONS

Line 1: PACKAGE BODY PA_EXCEPTION_REASONS_PUB AS

1: PACKAGE BODY PA_EXCEPTION_REASONS_PUB AS
2: /* $Header: PAXEXPRB.pls 115.0 99/07/16 15:24:06 porting ship $ */
3:
4: FUNCTION get_exception_text
5: (x_exception_type IN VARCHAR2,

Line 28: FROM pa_exception_reasons

24: -- specified, then return undefined
25:
26: SELECT decode(x_return_type, 'R', exception_reason, corrective_action)
27: INTO ls_exception_text
28: FROM pa_exception_reasons
29: WHERE decode(x_exception_reason, null, x_exception_code, x_exception_reason) =
30: decode(x_exception_reason, null, exception_code, exception_reason)
31: AND x_exception_type = pa_exception_reasons.exception_category;
32:

Line 31: AND x_exception_type = pa_exception_reasons.exception_category;

27: INTO ls_exception_text
28: FROM pa_exception_reasons
29: WHERE decode(x_exception_reason, null, x_exception_code, x_exception_reason) =
30: decode(x_exception_reason, null, exception_code, exception_reason)
31: AND x_exception_type = pa_exception_reasons.exception_category;
32:
33: return ls_exception_text;
34:
35: EXCEPTION

Line 40: FROM pa_exception_reasons

36: WHEN NO_DATA_FOUND
37: THEN
38: SELECT decode(x_return_type, 'R', exception_reason, corrective_action)
39: INTO ls_exception_text
40: FROM pa_exception_reasons
41: WHERE exception_category = 'UNDEFINED'
42: AND exception_code = 'UNDEFINED';
43: return ls_exception_text;
44:

Line 47: END PA_EXCEPTION_REASONS_PUB;

43: return ls_exception_text;
44:
45: END get_exception_text;
46:
47: END PA_EXCEPTION_REASONS_PUB;