DBA Data[Home] [Help]

APPS.FND_OID_UTIL dependencies on LDAP_EVENT_STATUS

Line 341: function get_ldap_event_status_str(p_ldap_event_status in ldap_event_status)

337: return null;
338: end get_ldap_attr_str;
339: --
340: -------------------------------------------------------------------------------
341: function get_ldap_event_status_str(p_ldap_event_status in ldap_event_status)
342: return varchar2 is
343:
344: l_module_source varchar2(256);
345: l_str varchar2(4000);

Line 348: l_module_source := G_MODULE_SOURCE || 'get_ldap_event_status_str: ';

344: l_module_source varchar2(256);
345: l_str varchar2(4000);
346:
347: begin
348: l_module_source := G_MODULE_SOURCE || 'get_ldap_event_status_str: ';
349:
350: if (p_ldap_event_status is not null) then
351: l_str := 'event_id : ' || p_ldap_event_status.event_id;
352: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;

Line 350: if (p_ldap_event_status is not null) then

346:
347: begin
348: l_module_source := G_MODULE_SOURCE || 'get_ldap_event_status_str: ';
349:
350: if (p_ldap_event_status is not null) then
351: l_str := 'event_id : ' || p_ldap_event_status.event_id;
352: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;
353: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;
354: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;

Line 351: l_str := 'event_id : ' || p_ldap_event_status.event_id;

347: begin
348: l_module_source := G_MODULE_SOURCE || 'get_ldap_event_status_str: ';
349:
350: if (p_ldap_event_status is not null) then
351: l_str := 'event_id : ' || p_ldap_event_status.event_id;
352: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;
353: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;
354: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;
355: l_str := l_str || ', error_disposition: ' ||

Line 352: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;

348: l_module_source := G_MODULE_SOURCE || 'get_ldap_event_status_str: ';
349:
350: if (p_ldap_event_status is not null) then
351: l_str := 'event_id : ' || p_ldap_event_status.event_id;
352: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;
353: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;
354: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;
355: l_str := l_str || ', error_disposition: ' ||
356: p_ldap_event_status.error_disposition;

Line 353: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;

349:
350: if (p_ldap_event_status is not null) then
351: l_str := 'event_id : ' || p_ldap_event_status.event_id;
352: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;
353: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;
354: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;
355: l_str := l_str || ', error_disposition: ' ||
356: p_ldap_event_status.error_disposition;
357: end if;

Line 354: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;

350: if (p_ldap_event_status is not null) then
351: l_str := 'event_id : ' || p_ldap_event_status.event_id;
352: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;
353: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;
354: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;
355: l_str := l_str || ', error_disposition: ' ||
356: p_ldap_event_status.error_disposition;
357: end if;
358:

Line 356: p_ldap_event_status.error_disposition;

352: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;
353: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;
354: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;
355: l_str := l_str || ', error_disposition: ' ||
356: p_ldap_event_status.error_disposition;
357: end if;
358:
359: return (l_str);
360: exception

Line 369: end get_ldap_event_status_str;

365: end if;
366:
367: raise;
368: return null;
369: end get_ldap_event_status_str;
370: --
371: -------------------------------------------------------------------------------
372: function get_fnd_user(p_user_guid in varchar2)
373: return apps_user_key_type is

Line 1552: procedure process_no_success_event(p_event_status in ldap_event_status) is

1548: raise;
1549: end on_demand_user_create;
1550: --
1551: -------------------------------------------------------------------------------
1552: procedure process_no_success_event(p_event_status in ldap_event_status) is
1553:
1554: l_module_source varchar2(256);
1555: l_entity_key_value wf_entity_changes.entity_key_value%type;
1556: l_event_name varchar2(80);