DBA Data[Home] [Help]

APPS.BIS_RG_SEND_NOTIFICATIONS_PVT dependencies on WF_ENGINE

Line 115: wf_engine.createprocess(itemtype=>'BISRGNOT'

111: --l_user_name := 'BISTESTER';
112: --Construct the URL to be sent
113: l_url := FND_WEB_CONFIG.TRAIL_SLASH(fnd_profile.value('APPS_WEB_AGENT'));
114: l_url := l_url ||'BIS_SAVE_REPORT.RETRIEVE?file_id='||l_File_id;
115: wf_engine.createprocess(itemtype=>'BISRGNOT'
116: ,itemkey =>l_wf_item_key
117: ,process=> 'BISSENDREPORTURL'
118: );
119: wf_engine.setitemattrtext(

Line 119: wf_engine.setitemattrtext(

115: wf_engine.createprocess(itemtype=>'BISRGNOT'
116: ,itemkey =>l_wf_item_key
117: ,process=> 'BISSENDREPORTURL'
118: );
119: wf_engine.setitemattrtext(
120: itemtype => 'BISRGNOT'
121: ,itemkey => l_wf_item_key
122: ,aname => 'L_REPORTTITLE'
123: ,avalue => l_title

Line 125: wf_engine.setitemattrtext(

121: ,itemkey => l_wf_item_key
122: ,aname => 'L_REPORTTITLE'
123: ,avalue => l_title
124: );
125: wf_engine.setitemattrtext(
126: itemtype => 'BISRGNOT'
127: ,itemkey => l_wf_item_key
128: ,aname => 'REPORTRECIPIENT'
129: ,avalue => l_user_name

Line 131: wf_engine.setitemattrtext(

127: ,itemkey => l_wf_item_key
128: ,aname => 'REPORTRECIPIENT'
129: ,avalue => l_user_name
130: );
131: wf_engine.setitemattrtext(
132: itemtype => 'BISRGNOT'
133: ,itemkey => l_wf_item_key
134: ,aname => 'L_REPORTURL'
135: ,avalue => l_url

Line 137: wf_engine.startprocess

133: ,itemkey => l_wf_item_key
134: ,aname => 'L_REPORTURL'
135: ,avalue => l_url
136: );
137: wf_engine.startprocess
138: (itemtype => 'BISRGNOT'
139: ,itemkey => l_wf_item_key
140: );
141: */

Line 147: wf_engine.createprocess(itemtype=> 'BISRGNOT'

143: SELECT bis_excpt_wf_s.nextval
144: INTO l_wf_item_key FROM dual;
145:
146:
147: wf_engine.createprocess(itemtype=> 'BISRGNOT'
148: ,itemkey=> l_wf_item_key
149: ,process => 'BISSENDHTMLBODY'
150: );
151:

Line 152: wf_engine.setitemattrtext(

148: ,itemkey=> l_wf_item_key
149: ,process => 'BISSENDHTMLBODY'
150: );
151:
152: wf_engine.setitemattrtext(
153: itemtype => 'BISRGNOT'
154: ,itemkey => l_wf_item_key
155: ,aname => 'L_EMAIL_RECIPIENT'
156: -- mdamle 07/03/01 - Scheduling Enhancements

Line 161: wf_engine.setitemattrtext(

157: -- Send to the Role setup for the schedule instead of the user
158: ,avalue => l_role_name
159: );
160:
161: wf_engine.setitemattrtext(
162: itemtype => 'BISRGNOT'
163: ,itemkey => l_wf_item_key
164: ,aname => 'L_FILE_ID'
165: ,avalue => l_file_id

Line 168: wf_engine.setitemattrtext(

164: ,aname => 'L_FILE_ID'
165: ,avalue => l_file_id
166: );
167:
168: wf_engine.setitemattrtext(
169: itemtype => 'BISRGNOT'
170: ,itemkey => l_wf_item_key
171: ,aname => 'L_REPORTTITLE'
172: ,avalue => l_title

Line 175: wf_engine.setitemattrtext(

171: ,aname => 'L_REPORTTITLE'
172: ,avalue => l_title
173: );
174:
175: wf_engine.setitemattrtext(
176: itemtype => 'BISRGNOT'
177: ,itemkey => l_wf_item_key
178: ,aname => '#FROM_ROLE'
179: ,avalue => l_user_name

Line 183: wf_engine.startprocess

179: ,avalue => l_user_name
180: );
181:
182:
183: wf_engine.startprocess
184: (itemtype => 'BISRGNOT'
185: ,itemkey => l_wf_item_key
186: );
187: