DBA Data[Home] [Help]

APPS.FND_LDAP_MAPPER dependencies on WF_ATTRIBUTE_CACHE

Line 207: p_entity_type in wf_attribute_cache.entity_type%type

203: end map_entity_changes_rec;
204: --
205: -------------------------------------------------------------------------------
206: procedure map_ldap_attr_list(
207: p_entity_type in wf_attribute_cache.entity_type%type
208: , p_entity_key_value in wf_attribute_cache.entity_key_value%type
209: , p_ldap_key in out nocopy fnd_oid_util.ldap_key_type
210: , p_ldap_attr_list out nocopy ldap_attr_list
211: ) is

Line 208: , p_entity_key_value in wf_attribute_cache.entity_key_value%type

204: --
205: -------------------------------------------------------------------------------
206: procedure map_ldap_attr_list(
207: p_entity_type in wf_attribute_cache.entity_type%type
208: , p_entity_key_value in wf_attribute_cache.entity_key_value%type
209: , p_ldap_key in out nocopy fnd_oid_util.ldap_key_type
210: , p_ldap_attr_list out nocopy ldap_attr_list
211: ) is
212:

Line 217: from wf_attribute_cache

213: cursor cur_attribute_cache is
214: select attribute_name
215: , attribute_value
216: , decode(attribute_value, '*NULL*', 1, 2) attr_mod_op
217: from wf_attribute_cache
218: where entity_type = p_entity_type
219: and entity_key_value = p_entity_key_value
220: and attribute_name <> fnd_oid_util.G_CACHE_CHANGED;
221: cursor cur_user_guid is