DBA Data[Home] [Help]

APPS.FND_SIF_UTILS dependencies on FND_SOA_RUNTIME_ERROR

Line 18: l_erorr_code fnd_soa_runtime_error.error_code%type;

14: l_sif_service fnd_sif_definitions.service%type;
15: l_sif_operation fnd_sif_definitions.operation%type;
16: l_sif_wsdl fnd_sif_definitions.attr1%type;
17:
18: l_erorr_code fnd_soa_runtime_error.error_code%type;
19: l_error_msg fnd_soa_runtime_error.error_code%type;
20: l_error_stack fnd_soa_runtime_error.error_detail%type;
21: l_error_date fnd_soa_runtime_error.error_date%type;
22:

Line 19: l_error_msg fnd_soa_runtime_error.error_code%type;

15: l_sif_operation fnd_sif_definitions.operation%type;
16: l_sif_wsdl fnd_sif_definitions.attr1%type;
17:
18: l_erorr_code fnd_soa_runtime_error.error_code%type;
19: l_error_msg fnd_soa_runtime_error.error_code%type;
20: l_error_stack fnd_soa_runtime_error.error_detail%type;
21: l_error_date fnd_soa_runtime_error.error_date%type;
22:
23: begin

Line 20: l_error_stack fnd_soa_runtime_error.error_detail%type;

16: l_sif_wsdl fnd_sif_definitions.attr1%type;
17:
18: l_erorr_code fnd_soa_runtime_error.error_code%type;
19: l_error_msg fnd_soa_runtime_error.error_code%type;
20: l_error_stack fnd_soa_runtime_error.error_detail%type;
21: l_error_date fnd_soa_runtime_error.error_date%type;
22:
23: begin
24: -- When executed by engine in RUN mode

Line 21: l_error_date fnd_soa_runtime_error.error_date%type;

17:
18: l_erorr_code fnd_soa_runtime_error.error_code%type;
19: l_error_msg fnd_soa_runtime_error.error_code%type;
20: l_error_stack fnd_soa_runtime_error.error_detail%type;
21: l_error_date fnd_soa_runtime_error.error_date%type;
22:
23: begin
24: -- When executed by engine in RUN mode
25: if (p_func_mode = 'RUN') then

Line 65: FROM fnd_soa_runtime_error

61:
62: begin
63: SELECT error_date, error_code, error_code, error_detail
64: INTO l_error_date, l_erorr_code, l_error_msg, l_error_stack
65: FROM fnd_soa_runtime_error
66: WHERE message_id = l_sif_inst_id;
67: exception
68: when no_data_found then
69: l_error_date := null;