DBA Data[Home] [Help]

APPS.WF_OID dependencies on LDAP_ATTR_LIST

Line 107: p_ldap_attr_list => event.attr_list

103: wf_entity_mgr.put_attribute_value(fnd_oid_util.G_USER, event.object_name,
104: fnd_oid_util.G_ORCLGUID, event.object_guid);
105:
106: fnd_oid_util.SAVE_TO_CACHE(
107: p_ldap_attr_list => event.attr_list
108: , p_entity_type => fnd_oid_util.G_USER
109: , p_entity_key_value => event.object_name);
110:
111: wf_entity_mgr.process_changes(fnd_oid_util.G_USER, event.object_name,

Line 150: l_ldap_attr_list ldap_attr_list;

146:
147: l_module_source varchar2(256);
148: l_entity_changes_rec fnd_oid_util.wf_entity_changes_rec_type;
149: l_ldap_key fnd_oid_util.ldap_key_type;
150: l_ldap_attr_list ldap_attr_list;
151: l_entity_id number;
152: my_temp_id number; -- for extra sub_add event --
153: l_local_login varchar2(30);
154: l_allow_sync varchar2(1);

Line 194: fnd_ldap_mapper.map_ldap_attr_list(

190: and entity_type = l_entity_changes_rec.entity_type;
191: raise fnd_oid_util.event_not_found_exp;
192: end if;
193:
194: fnd_ldap_mapper.map_ldap_attr_list(
195: l_entity_changes_rec.entity_type
196: , l_entity_changes_rec.entity_key_value
197: , l_ldap_key
198: , l_ldap_attr_list);

Line 198: , l_ldap_attr_list);

194: fnd_ldap_mapper.map_ldap_attr_list(
195: l_entity_changes_rec.entity_type
196: , l_entity_changes_rec.entity_key_value
197: , l_ldap_key
198: , l_ldap_attr_list);
199: l_copy_event := event;
200:
201: fnd_ldap_mapper.map_oid_event(l_ldap_key, l_entity_changes_rec
202: , l_ldap_attr_list, event);

Line 202: , l_ldap_attr_list, event);

198: , l_ldap_attr_list);
199: l_copy_event := event;
200:
201: fnd_ldap_mapper.map_oid_event(l_ldap_key, l_entity_changes_rec
202: , l_ldap_attr_list, event);
203:
204: if (event.event_type = wf_oid.IDENTITY_MODIFY) then
205: --APPS_SSO_LDAP_SYNC profile is considered for MODIFY events only
206: fnd_profile.get_specific(

Line 231: l_ldap_attr_list.delete;

227: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source
228: , fnd_oid_util.get_ldap_event_str(event));
229: end if;
230:
231: l_ldap_attr_list.delete;
232:
233: if (fnd_log.LEVEL_PROCEDURE >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
234: then
235: fnd_log.string(fnd_log.LEVEL_PROCEDURE, l_module_source, 'End');