DBA Data[Home] [Help]

APPS.ECX_ERRORLOG dependencies on ECX_UTIL_API

Line 642: o_ret_code := ecx_util_api.g_dup_error;

638: ecx_debug.disable_debug;
639:
640: exception
641: when dup_val_on_index then
642: o_ret_code := ecx_util_api.g_dup_error;
643: o_ret_msg := SQLERRM;
644: if (l_procedureEnabled) then
645: ecx_debug.pop(i_method_name);
646: end if;

Line 820: elsif NOT(ecx_util_api.validate_party_type(p_party_type)) then

816: then
817: for party_type_rec in c_party_type(p_transaction_type, p_transaction_subtype) loop
818: i_party_type := party_type_rec.party_type;
819: end loop;
820: elsif NOT(ecx_util_api.validate_party_type(p_party_type)) then
821: x_retmsg := ecx_debug.getTranslatedMessage('ECX_INVALID_PARTY_TYPE',
822: 'p_party_type',p_party_type);
823: x_retcode := 2;
824: end if;

Line 870: x_retcode := ecx_util_api.g_no_error;

866: null,
867: p_event.getParameterList()
868: );
869:
870: x_retcode := ecx_util_api.g_no_error;
871: x_retmsg := 'SUCCESS';
872: exception
873: when others then
874: x_retcode := ecx_util_api.g_unexp_error;

Line 874: x_retcode := ecx_util_api.g_unexp_error;

870: x_retcode := ecx_util_api.g_no_error;
871: x_retmsg := 'SUCCESS';
872: exception
873: when others then
874: x_retcode := ecx_util_api.g_unexp_error;
875: x_retmsg := SQLERRM || ' at ECX_ERRORLOG.SEND_ERROR_API';
876: end send_msg_api;
877:
878: procedure inbound_trigger

Line 1135: if NOT (ecx_util_api.validate_direction(i_direction)) then

1131: l_size := dbms_lob.getlength(i_payload);
1132: dbms_lob.createtemporary(l_payload, TRUE, DBMS_LOB.SESSION);
1133: dbms_lob.copy(l_payload, i_payload, l_size);
1134:
1135: if NOT (ecx_util_api.validate_direction(i_direction)) then
1136: o_retcode := ecx_util_api.G_INVALID_PARAM;
1137: o_retmsg := 'ECX_INVALID_DIRECTION';
1138: end if;
1139:

Line 1136: o_retcode := ecx_util_api.G_INVALID_PARAM;

1132: dbms_lob.createtemporary(l_payload, TRUE, DBMS_LOB.SESSION);
1133: dbms_lob.copy(l_payload, i_payload, l_size);
1134:
1135: if NOT (ecx_util_api.validate_direction(i_direction)) then
1136: o_retcode := ecx_util_api.G_INVALID_PARAM;
1137: o_retmsg := 'ECX_INVALID_DIRECTION';
1138: end if;
1139:
1140: ecx_utils.convertPartyTypeToCode(i_party_type, l_party_type);

Line 1424: o_retcode := ecx_util_api.g_dup_error;

1420: );
1421: end if;
1422: exception
1423: when dup_val_on_index then
1424: o_retcode := ecx_util_api.g_dup_error;
1425: o_retmsg := SQLERRM;
1426: when others then
1427: o_retcode := 2;
1428: o_retmsg := SQLERRM;