DBA Data[Home] [Help]

APPS.FND_OID_UTIL dependencies on LDAP_EVENT_STATUS

Line 315: function get_ldap_event_status_str(p_ldap_event_status in ldap_event_status)

311: return null;
312: end get_ldap_attr_str;
313: --
314: -------------------------------------------------------------------------------
315: function get_ldap_event_status_str(p_ldap_event_status in ldap_event_status)
316: return varchar2 is
317:
318: l_module_source varchar2(256);
319: l_str varchar2(4000);

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

318: l_module_source varchar2(256);
319: l_str varchar2(4000);
320:
321: begin
322: l_module_source := G_MODULE_SOURCE || 'get_ldap_event_status_str: ';
323:
324: if (p_ldap_event_status is not null) then
325: l_str := 'event_id : ' || p_ldap_event_status.event_id;
326: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;

Line 324: if (p_ldap_event_status is not null) then

320:
321: begin
322: l_module_source := G_MODULE_SOURCE || 'get_ldap_event_status_str: ';
323:
324: if (p_ldap_event_status is not null) then
325: l_str := 'event_id : ' || p_ldap_event_status.event_id;
326: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;
327: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;
328: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;

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

321: begin
322: l_module_source := G_MODULE_SOURCE || 'get_ldap_event_status_str: ';
323:
324: if (p_ldap_event_status is not null) then
325: l_str := 'event_id : ' || p_ldap_event_status.event_id;
326: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;
327: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;
328: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;
329: l_str := l_str || ', error_disposition: ' ||

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

322: l_module_source := G_MODULE_SOURCE || 'get_ldap_event_status_str: ';
323:
324: if (p_ldap_event_status is not null) then
325: l_str := 'event_id : ' || p_ldap_event_status.event_id;
326: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;
327: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;
328: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;
329: l_str := l_str || ', error_disposition: ' ||
330: p_ldap_event_status.error_disposition;

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

323:
324: if (p_ldap_event_status is not null) then
325: l_str := 'event_id : ' || p_ldap_event_status.event_id;
326: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;
327: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;
328: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;
329: l_str := l_str || ', error_disposition: ' ||
330: p_ldap_event_status.error_disposition;
331: end if;

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

324: if (p_ldap_event_status is not null) then
325: l_str := 'event_id : ' || p_ldap_event_status.event_id;
326: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;
327: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;
328: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;
329: l_str := l_str || ', error_disposition: ' ||
330: p_ldap_event_status.error_disposition;
331: end if;
332:

Line 330: p_ldap_event_status.error_disposition;

326: l_str := l_str || ', orclguid: ' || p_ldap_event_status.orclguid;
327: l_str := l_str || ', error_code: ' || p_ldap_event_status.error_code;
328: l_str := l_str || ', error_String: ' || p_ldap_event_status.error_String;
329: l_str := l_str || ', error_disposition: ' ||
330: p_ldap_event_status.error_disposition;
331: end if;
332:
333: return (l_str);
334: exception

Line 343: end get_ldap_event_status_str;

339: end if;
340:
341: raise;
342: return null;
343: end get_ldap_event_status_str;
344: --
345: -------------------------------------------------------------------------------
346: function get_fnd_user(p_user_guid in varchar2)
347: return apps_user_key_type is

Line 1484: procedure process_no_success_event(p_event_status in ldap_event_status) is

1480: raise;
1481: end on_demand_user_create;
1482: --
1483: -------------------------------------------------------------------------------
1484: procedure process_no_success_event(p_event_status in ldap_event_status) is
1485:
1486: l_module_source varchar2(256);
1487: l_entity_key_value wf_entity_changes.entity_key_value%type;
1488: l_event_name varchar2(80);