DBA Data[Home] [Help]

APPS.WF_LOCAL_SYNCH dependencies on WF_EVENT

Line 213: WF_EVENT.addParameterToList(upper(p_attributes(i).getName()),

209: WF_LOG_PKG.String(WF_LOG_PKG.LEVEL_STATEMENT, l_modulePkg,
210: 'Parameter: '||p_attributes(i).getName()||
211: 'is ignored by seedAttributes.');
212:
213: WF_EVENT.addParameterToList(upper(p_attributes(i).getName()),
214: p_attributes(i).getValue(),g_attributes);
215: end if;
216:
217:

Line 1045: WF_EVENT.AddParameterToList('OLD_USER_NAME', g_oldName, l_params);

1041: WHERE USER_NAME = g_oldName;
1042:
1043:
1044:
1045: WF_EVENT.AddParameterToList('OLD_USER_NAME', g_oldName, l_params);
1046: WF_EVENT.AddParameterToList('USER_NAME', g_name, l_params);
1047: WF_EVENT.AddParameterToList('ORIG_SYSTEM',p_orig_system,l_params);
1048: WF_EVENT.AddParameterToList('ORIG_SYSTEM_ID',to_char(p_orig_system_id),l_params);
1049: if(g_attributes.count>0) then

Line 1046: WF_EVENT.AddParameterToList('USER_NAME', g_name, l_params);

1042:
1043:
1044:
1045: WF_EVENT.AddParameterToList('OLD_USER_NAME', g_oldName, l_params);
1046: WF_EVENT.AddParameterToList('USER_NAME', g_name, l_params);
1047: WF_EVENT.AddParameterToList('ORIG_SYSTEM',p_orig_system,l_params);
1048: WF_EVENT.AddParameterToList('ORIG_SYSTEM_ID',to_char(p_orig_system_id),l_params);
1049: if(g_attributes.count>0) then
1050: for i in g_attributes.first..g_attributes.last loop

Line 1047: WF_EVENT.AddParameterToList('ORIG_SYSTEM',p_orig_system,l_params);

1043:
1044:
1045: WF_EVENT.AddParameterToList('OLD_USER_NAME', g_oldName, l_params);
1046: WF_EVENT.AddParameterToList('USER_NAME', g_name, l_params);
1047: WF_EVENT.AddParameterToList('ORIG_SYSTEM',p_orig_system,l_params);
1048: WF_EVENT.AddParameterToList('ORIG_SYSTEM_ID',to_char(p_orig_system_id),l_params);
1049: if(g_attributes.count>0) then
1050: for i in g_attributes.first..g_attributes.last loop
1051: WF_EVENT.AddParameterToList(upper(g_attributes(i).getName()),

Line 1048: WF_EVENT.AddParameterToList('ORIG_SYSTEM_ID',to_char(p_orig_system_id),l_params);

1044:
1045: WF_EVENT.AddParameterToList('OLD_USER_NAME', g_oldName, l_params);
1046: WF_EVENT.AddParameterToList('USER_NAME', g_name, l_params);
1047: WF_EVENT.AddParameterToList('ORIG_SYSTEM',p_orig_system,l_params);
1048: WF_EVENT.AddParameterToList('ORIG_SYSTEM_ID',to_char(p_orig_system_id),l_params);
1049: if(g_attributes.count>0) then
1050: for i in g_attributes.first..g_attributes.last loop
1051: WF_EVENT.AddParameterToList(upper(g_attributes(i).getName()),
1052: g_attributes(i).getValue(),l_params);

Line 1051: WF_EVENT.AddParameterToList(upper(g_attributes(i).getName()),

1047: WF_EVENT.AddParameterToList('ORIG_SYSTEM',p_orig_system,l_params);
1048: WF_EVENT.AddParameterToList('ORIG_SYSTEM_ID',to_char(p_orig_system_id),l_params);
1049: if(g_attributes.count>0) then
1050: for i in g_attributes.first..g_attributes.last loop
1051: WF_EVENT.AddParameterToList(upper(g_attributes(i).getName()),
1052: g_attributes(i).getValue(),l_params);
1053: end loop;
1054: end if;
1055: WF_EVENT.Raise(p_event_name=>'oracle.apps.fnd.wf.ds.user.nameChanged',

Line 1055: WF_EVENT.Raise(p_event_name=>'oracle.apps.fnd.wf.ds.user.nameChanged',

1051: WF_EVENT.AddParameterToList(upper(g_attributes(i).getName()),
1052: g_attributes(i).getValue(),l_params);
1053: end loop;
1054: end if;
1055: WF_EVENT.Raise(p_event_name=>'oracle.apps.fnd.wf.ds.user.nameChanged',
1056: p_event_key=>'NameChanged:'||p_orig_system||':'||
1057: to_char(p_orig_system_id)||'|'||
1058: to_char(SYSDATE, wf_core.canonical_date_mask) ,
1059: p_parameters=>l_params);