DBA Data[Home] [Help]

APPS.ECX_ERRORLOG dependencies on ECX_MSG_LOGS

Line 50: insert into ecx_msg_logs

46: where trigger_id=i_trigger_id;
47:
48: if i_errmsg is not null
49: then
50: insert into ecx_msg_logs
51: (
52: log_id,
53: trigger_id,
54: error_id

Line 58: ecx_msg_logs_s.NEXTVAL,

54: error_id
55: )
56: values
57: (
58: ecx_msg_logs_s.NEXTVAL,
59: i_trigger_id,
60: i_error_no
61: );
62:

Line 133: insert into ecx_msg_logs

129: end loop;
130:
131: if i_errmsg is not null
132: then
133: insert into ecx_msg_logs
134: (
135: log_id,
136: trigger_id,
137: error_id

Line 141: ecx_msg_logs_s.NEXTVAL,

137: error_id
138: )
139: values
140: (
141: ecx_msg_logs_s.NEXTVAL,
142: i_trigger_id,
143: i_error_no
144: );
145:

Line 283: insert into ecx_msg_logs

279: );
280:
281: if i_errmsg is not null
282: then
283: insert into ecx_msg_logs
284: (
285: log_id,
286: trigger_id,
287: error_id

Line 291: ecx_msg_logs_s.NEXTVAL,

287: error_id
288: )
289: values
290: (
291: ecx_msg_logs_s.NEXTVAL,
292: i_trigger_id,
293: i_error_no
294: );
295:

Line 937: insert into ecx_msg_logs

933: end;
934:
935: if i_errmsg is not null
936: then
937: insert into ecx_msg_logs
938: (
939: log_id,
940: trigger_id,
941: error_id

Line 945: ecx_msg_logs_s.NEXTVAL,

941: error_id
942: )
943: values
944: (
945: ecx_msg_logs_s.NEXTVAL,
946: i_trigger_id,
947: i_error_no
948: );
949: insert into ecx_error_msgs

Line 1048: insert into ecx_msg_logs

1044: end;
1045:
1046: if i_errmsg is not null
1047: then
1048: insert into ecx_msg_logs
1049: (
1050: log_id,
1051: trigger_id,
1052: error_id

Line 1056: ecx_msg_logs_s.NEXTVAL,

1052: error_id
1053: )
1054: values
1055: (
1056: ecx_msg_logs_s.NEXTVAL,
1057: i_trigger_id,
1058: i_error_no
1059: );
1060: