DBA Data[Home] [Help]

APPS.FND_OID_UTIL dependencies on WF_ENTITY_MGR

Line 767: wf_entity_mgr.put_attribute_value(G_USER, l_user_name,

763: if ( (l_profiles.ldap_sync = G_Y)
764: and (l_profiles.local_login <> G_LOCAL) )
765: then
766: --For AOl/J consumption
767: wf_entity_mgr.put_attribute_value(G_USER, l_user_name,
768: G_ORCLGUID, p_event.object_guid);
769: save_to_cache(
770: p_ldap_attr_list => p_event.attr_list
771: , p_entity_type => G_USER

Line 773: wf_entity_mgr.process_changes(G_USER, l_user_name, G_OID);

769: save_to_cache(
770: p_ldap_attr_list => p_event.attr_list
771: , p_entity_type => G_USER
772: , p_entity_key_value => l_user_name);
773: wf_entity_mgr.process_changes(G_USER, l_user_name, G_OID);
774: --For our consumption so that only we update TCA tables
775: save_to_cache(
776: p_ldap_attr_list => l_ldap_attr_list
777: , p_entity_type => wf_oid.IDENTITY_MODIFY

Line 843: /*wf_entity_mgr.put_attribute_value(G_USER, l_user_name,

839:
840: if ( (l_profiles.ldap_sync = G_Y)
841: and (l_profiles.local_login <> G_LOCAL) )
842: then
843: /*wf_entity_mgr.put_attribute_value(G_USER, l_user_name,
844: G_CACHE_CHANGED, G_YES);
845: -- Fix bug 4231145
846: wf_entity_mgr.put_attribute_value(G_USER, l_user_name,
847: G_ORCLGUID, p_event.object_guid);

Line 846: wf_entity_mgr.put_attribute_value(G_USER, l_user_name,

842: then
843: /*wf_entity_mgr.put_attribute_value(G_USER, l_user_name,
844: G_CACHE_CHANGED, G_YES);
845: -- Fix bug 4231145
846: wf_entity_mgr.put_attribute_value(G_USER, l_user_name,
847: G_ORCLGUID, p_event.object_guid);
848: wf_entity_mgr.process_changes(G_USER, l_user_name,
849: G_OID, G_DELETE);
850: */

Line 848: wf_entity_mgr.process_changes(G_USER, l_user_name,

844: G_CACHE_CHANGED, G_YES);
845: -- Fix bug 4231145
846: wf_entity_mgr.put_attribute_value(G_USER, l_user_name,
847: G_ORCLGUID, p_event.object_guid);
848: wf_entity_mgr.process_changes(G_USER, l_user_name,
849: G_OID, G_DELETE);
850: */
851: -- don't call fnd_user_pkg.DisableUser(), it'd fail because user is deleted on OID
852: update fnd_user

Line 906: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,

902: if( isUserEnabled(l_ldap_attr_list)) then
903:
904: -- Moving it out since we need the orclisenabled
905: -- l_ldap_attr_list := get_user_attributes(p_event.object_guid, l_user_name);
906: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,
907: G_CACHE_CHANGED, G_YES);
908:
909: save_to_cache(
910: p_ldap_attr_list => l_ldap_attr_list

Line 914: wf_entity_mgr.put_attribute_value(my_ent_type, l_user_name,

910: p_ldap_attr_list => l_ldap_attr_list
911: , p_entity_type => wf_oid.SUBSCRIPTION_ADD
912: , p_entity_key_value => l_user_name);
913: my_ent_type := upper(wf_oid.SUBSCRIPTION_ADD);
914: wf_entity_mgr.put_attribute_value(my_ent_type, l_user_name,
915: 'CACHE_CHANGED', 'NO');
916: wf_event.AddParameterToList('CHANGE_SOURCE', G_OID, my_parms);
917: wf_event.AddParameterToList('ORCLGUID', p_event.object_guid, my_parms);
918: wf_event.AddParameterToList('CHANGE_TYPE', G_LOAD, my_parms);

Line 1521: --similar to wf_entity_mgr.process_changes()

1517: ', l_entity_key_value = ' || l_entity_key_value ||
1518: ', l_event_name = ' || l_event_name);
1519: end if;
1520: --RDESPOTO, 09/02/2004, add ENTITY_ID parameter
1521: --similar to wf_entity_mgr.process_changes()
1522: if (fnd_log.LEVEL_EVENT >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1523: then
1524: fnd_log.string(fnd_log.LEVEL_EVENT, l_module_source, 'About to '
1525: || 'raise event ' || l_event_name || ' with the following '

Line 1531: wf_entity_mgr.put_attribute_value(my_ent_type, l_entity_key_value,

1527: ', CHANGE_TYPE=' || G_LOAD || ', ORCLGUID=' || p_event_status.orclguid ||
1528: ', USER_NAME=' || l_entity_key_value || ', ENTITY_ID=' || p_event_status.event_id);
1529: end if;
1530: my_ent_type := upper(p_event_status.error_disposition);
1531: wf_entity_mgr.put_attribute_value(my_ent_type, l_entity_key_value,
1532: 'CACHE_CHANGED', 'NO');
1533: wf_event.AddParameterToList('CHANGE_SOURCE', G_OID, my_parms);
1534: wf_event.AddParameterToList('CHANGE_TYPE', G_LOAD, my_parms);
1535: wf_event.AddParameterToList('ORCLGUID', p_event_status.orclguid, my_parms);

Line 1588: wf_entity_mgr.put_attribute_value(p_entity_type, p_entity_key_value,

1584: if ((upper(p_ldap_attr_list(j).attr_name) <> G_USERPASSWORD)
1585: AND (upper(p_ldap_attr_list(j).attr_name) <> G_ORCLISENABLED)
1586: AND (upper(p_ldap_attr_list(j).attr_name) <> G_OBJECTCLASS))
1587: then
1588: wf_entity_mgr.put_attribute_value(p_entity_type, p_entity_key_value,
1589: p_ldap_attr_list(j).attr_name, p_ldap_attr_list(j).attr_value);
1590: end if;
1591: end loop;
1592: end if;

Line 2194: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,

2190: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source
2191: , 'User name for SUBSCRIPTION_ADD is ' || l_user_name);
2192: end if;
2193: -- Insert guid only so that SUBSCRIPTION_ADD sends guid to OID
2194: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,
2195: G_CACHE_CHANGED, G_YES);
2196: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,
2197: G_ORCLGUID, p_orcl_guid);
2198: insert into wf_entity_changes(

Line 2196: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,

2192: end if;
2193: -- Insert guid only so that SUBSCRIPTION_ADD sends guid to OID
2194: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,
2195: G_CACHE_CHANGED, G_YES);
2196: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,
2197: G_ORCLGUID, p_orcl_guid);
2198: insert into wf_entity_changes(
2199: entity_type, entity_key_value, flavor, change_date)
2200: values(wf_oid.SUBSCRIPTION_ADD, upper(l_user_name), 'FND', sysdate);

Line 2201: wf_entity_mgr.put_attribute_value(upper(wf_oid.SUBSCRIPTION_ADD), l_user_name,

2197: G_ORCLGUID, p_orcl_guid);
2198: insert into wf_entity_changes(
2199: entity_type, entity_key_value, flavor, change_date)
2200: values(wf_oid.SUBSCRIPTION_ADD, upper(l_user_name), 'FND', sysdate);
2201: wf_entity_mgr.put_attribute_value(upper(wf_oid.SUBSCRIPTION_ADD), l_user_name,
2202: 'CACHE_CHANGED', 'NO');
2203: commit;
2204:
2205: if (fnd_log.LEVEL_STATEMENT >= fnd_log.G_CURRENT_RUNTIME_LEVEL)