DBA Data[Home] [Help]

APPS.FND_OID_UTIL dependencies on WF_ENTITY_MGR

Line 780: wf_entity_mgr.put_attribute_value(G_USER, l_user_name,

776: if ( (l_profiles.ldap_sync = G_Y)
777: and (l_profiles.local_login <> G_LOCAL) )
778: then
779: --For AOl/J consumption
780: wf_entity_mgr.put_attribute_value(G_USER, l_user_name,
781: G_ORCLGUID, p_event.object_guid);
782: save_to_cache(
783: p_ldap_attr_list => p_event.attr_list
784: , p_entity_type => G_USER

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

782: save_to_cache(
783: p_ldap_attr_list => p_event.attr_list
784: , p_entity_type => G_USER
785: , p_entity_key_value => l_user_name);
786: wf_entity_mgr.process_changes(G_USER, l_user_name, G_OID);
787: --For our consumption so that only we update TCA tables
788: save_to_cache(
789: p_ldap_attr_list => l_ldap_attr_list
790: , p_entity_type => wf_oid.IDENTITY_MODIFY

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

862:
863: if ( (l_profiles.ldap_sync = G_Y)
864: and (l_profiles.local_login <> G_LOCAL) )
865: then
866: /*wf_entity_mgr.put_attribute_value(G_USER, l_user_name,
867: G_CACHE_CHANGED, G_YES);
868: -- Fix bug 4231145
869: wf_entity_mgr.put_attribute_value(G_USER, l_user_name,
870: G_ORCLGUID, p_event.object_guid);

Line 869: wf_entity_mgr.put_attribute_value(G_USER, l_user_name,

865: then
866: /*wf_entity_mgr.put_attribute_value(G_USER, l_user_name,
867: G_CACHE_CHANGED, G_YES);
868: -- Fix bug 4231145
869: wf_entity_mgr.put_attribute_value(G_USER, l_user_name,
870: G_ORCLGUID, p_event.object_guid);
871: wf_entity_mgr.process_changes(G_USER, l_user_name,
872: G_OID, G_DELETE);
873: */

Line 871: wf_entity_mgr.process_changes(G_USER, l_user_name,

867: G_CACHE_CHANGED, G_YES);
868: -- Fix bug 4231145
869: wf_entity_mgr.put_attribute_value(G_USER, l_user_name,
870: G_ORCLGUID, p_event.object_guid);
871: wf_entity_mgr.process_changes(G_USER, l_user_name,
872: G_OID, G_DELETE);
873: */
874:
875: /* Bug 13829710 - Raise the oracle.apps.fnd.identity.delete event so that

Line 884: wf_entity_mgr.put_attribute_value(G_USER,l_user_name,G_CACHE_CHANGED,G_YES);

880: then
881: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source,'Raise identity_delete event for user: '||l_user_name);
882: end if;
883:
884: wf_entity_mgr.put_attribute_value(G_USER,l_user_name,G_CACHE_CHANGED,G_YES);
885: wf_event.AddParameterToList('CHANGE_SOURCE', G_OID, my_parms);
886: wf_event.AddParameterToList('ORCLGUID', p_event.object_guid, my_parms);
887: wf_event.AddParameterToList('CHANGE_TYPE', G_DELETE, my_parms);
888:

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

970: if( isUserEnabled(l_ldap_attr_list)) then
971:
972: -- Moving it out since we need the orclisenabled
973: -- l_ldap_attr_list := get_user_attributes(p_event.object_guid, l_user_name);
974: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,
975: G_CACHE_CHANGED, G_YES);
976:
977: save_to_cache(
978: p_ldap_attr_list => l_ldap_attr_list

Line 982: wf_entity_mgr.put_attribute_value(my_ent_type, l_user_name,

978: p_ldap_attr_list => l_ldap_attr_list
979: , p_entity_type => wf_oid.SUBSCRIPTION_ADD
980: , p_entity_key_value => l_user_name);
981: my_ent_type := upper(wf_oid.SUBSCRIPTION_ADD);
982: wf_entity_mgr.put_attribute_value(my_ent_type, l_user_name,
983: 'CACHE_CHANGED', 'NO');
984: wf_event.AddParameterToList('CHANGE_SOURCE', G_OID, my_parms);
985: wf_event.AddParameterToList('ORCLGUID', p_event.object_guid, my_parms);
986: wf_event.AddParameterToList('CHANGE_TYPE', G_LOAD, my_parms);

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

1585: ', l_entity_key_value = ' || l_entity_key_value ||
1586: ', l_event_name = ' || l_event_name);
1587: end if;
1588: --RDESPOTO, 09/02/2004, add ENTITY_ID parameter
1589: --similar to wf_entity_mgr.process_changes()
1590: if (fnd_log.LEVEL_EVENT >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
1591: then
1592: fnd_log.string(fnd_log.LEVEL_EVENT, l_module_source, 'About to '
1593: || 'raise event ' || l_event_name || ' with the following '

Line 1599: wf_entity_mgr.put_attribute_value(my_ent_type, l_entity_key_value,

1595: ', CHANGE_TYPE=' || G_LOAD || ', ORCLGUID=' || p_event_status.orclguid ||
1596: ', USER_NAME=' || l_entity_key_value || ', ENTITY_ID=' || p_event_status.event_id);
1597: end if;
1598: my_ent_type := upper(p_event_status.error_disposition);
1599: wf_entity_mgr.put_attribute_value(my_ent_type, l_entity_key_value,
1600: 'CACHE_CHANGED', 'NO');
1601: wf_event.AddParameterToList('CHANGE_SOURCE', G_OID, my_parms);
1602: wf_event.AddParameterToList('CHANGE_TYPE', G_LOAD, my_parms);
1603: wf_event.AddParameterToList('ORCLGUID', p_event_status.orclguid, my_parms);

Line 1656: wf_entity_mgr.put_attribute_value(p_entity_type, p_entity_key_value,

1652: if ((upper(p_ldap_attr_list(j).attr_name) <> G_USERPASSWORD)
1653: -- AND (upper(p_ldap_attr_list(j).attr_name) <> G_ORCLISENABLED)
1654: AND (upper(p_ldap_attr_list(j).attr_name) <> G_OBJECTCLASS))
1655: then
1656: wf_entity_mgr.put_attribute_value(p_entity_type, p_entity_key_value,
1657: p_ldap_attr_list(j).attr_name, p_ldap_attr_list(j).attr_value);
1658: end if;
1659: end loop;
1660: end if;

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

2354: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source
2355: , 'User name for SUBSCRIPTION_ADD is ' || l_user_name);
2356: end if;
2357: -- Insert guid only so that SUBSCRIPTION_ADD sends guid to OID
2358: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,
2359: G_CACHE_CHANGED, G_YES);
2360: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,
2361: G_ORCLGUID, p_orcl_guid);
2362: insert into wf_entity_changes(

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

2356: end if;
2357: -- Insert guid only so that SUBSCRIPTION_ADD sends guid to OID
2358: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,
2359: G_CACHE_CHANGED, G_YES);
2360: wf_entity_mgr.put_attribute_value(wf_oid.SUBSCRIPTION_ADD, l_user_name,
2361: G_ORCLGUID, p_orcl_guid);
2362: insert into wf_entity_changes(
2363: entity_type, entity_key_value, flavor, change_date)
2364: values(wf_oid.SUBSCRIPTION_ADD, upper(l_user_name), 'FND', sysdate);

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

2361: G_ORCLGUID, p_orcl_guid);
2362: insert into wf_entity_changes(
2363: entity_type, entity_key_value, flavor, change_date)
2364: values(wf_oid.SUBSCRIPTION_ADD, upper(l_user_name), 'FND', sysdate);
2365: wf_entity_mgr.put_attribute_value(upper(wf_oid.SUBSCRIPTION_ADD), l_user_name,
2366: 'CACHE_CHANGED', 'NO');
2367: commit;
2368:
2369: if (fnd_log.LEVEL_STATEMENT >= fnd_log.G_CURRENT_RUNTIME_LEVEL)