DBA Data[Home] [Help]

APPS.ASP_SVCCONT_CONTENT_PROVIDER dependencies on WF_ENGINE

Line 107: l_event_entity := wf_engine.GetItemAttrText( itemtype =>itemtype,

103: fnd_log.string(l_debug_procedure, G_MODULE||l_api_name, 'Entered '||G_PKG_NAME||'.'||l_api_name);
104: end if;
105:
106: If(funcmode = 'RUN') Then
107: l_event_entity := wf_engine.GetItemAttrText( itemtype =>itemtype,
108: itemkey =>itemkey,
109: aname =>'ALERT_SOURCE_OBJECT_CODE');
110:
111: l_alert_code := wf_engine.GetItemAttrText( itemtype =>itemtype,

Line 111: l_alert_code := wf_engine.GetItemAttrText( itemtype =>itemtype,

107: l_event_entity := wf_engine.GetItemAttrText( itemtype =>itemtype,
108: itemkey =>itemkey,
109: aname =>'ALERT_SOURCE_OBJECT_CODE');
110:
111: l_alert_code := wf_engine.GetItemAttrText( itemtype =>itemtype,
112: itemkey =>itemkey,
113: aname =>'ALERT_NAME');--SVCCONTRACT_PRE_EXPIRE_ALERT
114:
115: l_contract_header_id := wf_engine.GetItemAttrText( itemtype =>itemtype,

Line 115: l_contract_header_id := wf_engine.GetItemAttrText( itemtype =>itemtype,

111: l_alert_code := wf_engine.GetItemAttrText( itemtype =>itemtype,
112: itemkey =>itemkey,
113: aname =>'ALERT_NAME');--SVCCONTRACT_PRE_EXPIRE_ALERT
114:
115: l_contract_header_id := wf_engine.GetItemAttrText( itemtype =>itemtype,
116: itemkey =>itemkey,
117: aname =>'ALERT_SOURCE_OBJECT_ID');
118:
119: if(l_debug_procedure >= l_debug_runtime) then

Line 160: wf_engine.SetItemAttrText(itemtype, itemkey, 'SMS_TEXT', l_sms_text);

156: fnd_message.set_token('CUSTNAME', l_customer_name);
157: fnd_message.set_token('EXPDATE', to_char( l_expiration_date, 'DD-Mon-YYYY HH24:MI:SS'));
158: l_sms_text := fnd_message.get;
159:
160: wf_engine.SetItemAttrText(itemtype, itemkey, 'SMS_TEXT', l_sms_text);
161: --***Done SMS Content
162: if(l_debug_procedure >= l_debug_runtime) then
163: fnd_log.string(l_debug_procedure, G_MODULE||l_api_name, 'SMS_TEXT '||l_sms_text);
164: end if;

Line 174: wf_engine.SetItemAttrText(itemtype, itemkey, 'CONTRACTID', l_contract_header_id);

170: fnd_message.set_token('CONTRACTNUM', l_contract_number);
171: fnd_message.set_token('CUSTNAME', l_customer_name);
172: l_email_sub := fnd_message.get;
173:
174: wf_engine.SetItemAttrText(itemtype, itemkey, 'CONTRACTID', l_contract_header_id);
175: --WF_Attr CONTRACTID => Msg_Attr MSG_CONTRACTID
176:
177: wf_engine.SetItemAttrText(itemtype, itemkey, 'EMAIL_SUB_TEXT', l_email_sub);
178: --WF_Attr EMAIL_SUB_TEXT => Msg_Attr MSG_SUBJECT_EMAIL

Line 177: wf_engine.SetItemAttrText(itemtype, itemkey, 'EMAIL_SUB_TEXT', l_email_sub);

173:
174: wf_engine.SetItemAttrText(itemtype, itemkey, 'CONTRACTID', l_contract_header_id);
175: --WF_Attr CONTRACTID => Msg_Attr MSG_CONTRACTID
176:
177: wf_engine.SetItemAttrText(itemtype, itemkey, 'EMAIL_SUB_TEXT', l_email_sub);
178: --WF_Attr EMAIL_SUB_TEXT => Msg_Attr MSG_SUBJECT_EMAIL
179: wf_engine.SetItemAttrText(itemtype, itemkey, 'EMAIL_CONTENT', l_email_content);
180: --WF_Attr EMAIL_CONTENT => Msg_Attr MSG_BODY_EMAIL
181: --***Done EMAIL Content

Line 179: wf_engine.SetItemAttrText(itemtype, itemkey, 'EMAIL_CONTENT', l_email_content);

175: --WF_Attr CONTRACTID => Msg_Attr MSG_CONTRACTID
176:
177: wf_engine.SetItemAttrText(itemtype, itemkey, 'EMAIL_SUB_TEXT', l_email_sub);
178: --WF_Attr EMAIL_SUB_TEXT => Msg_Attr MSG_SUBJECT_EMAIL
179: wf_engine.SetItemAttrText(itemtype, itemkey, 'EMAIL_CONTENT', l_email_content);
180: --WF_Attr EMAIL_CONTENT => Msg_Attr MSG_BODY_EMAIL
181: --***Done EMAIL Content
182: if(l_debug_procedure >= l_debug_runtime) then
183: fnd_log.string(l_debug_procedure, G_MODULE||l_api_name, 'CONTRACTID '||l_contract_header_id);