DBA Data[Home] [Help]

APPS.WIP_JOB_DETAILS dependencies on WIP_JSI_UTILS

Line 217: wip_jsi_utils.current_interface_id := null;

213: fetch wdj_cur into cur_job ;
214: exit when wdj_cur%NOTFOUND ;
215:
216: /* bug 4650624 */
217: wip_jsi_utils.current_interface_id := null;
218: ELSE
219: fetch job_cur into cur_job ;
220: exit when job_cur%NOTFOUND ;
221:

Line 224: into wip_jsi_utils.current_interface_id

220: exit when job_cur%NOTFOUND ;
221:
222: /* bug 4650624 */
223: select interface_id
224: into wip_jsi_utils.current_interface_id
225: from wip_job_schedule_interface
226: where group_id = p_group_id
227: and header_id = p_parent_header_id;
228:

Line 883: fnd_message.set_token('INTERFACE', to_char(wip_jsi_utils.current_interface_id));

879:
880: exception
881: when no_data_found then --could not find the ML row
882: fnd_message.set_name('WIP', 'WIP_JOB_DOES_NOT_EXIST');
883: fnd_message.set_token('INTERFACE', to_char(wip_jsi_utils.current_interface_id));
884: x_err_code := SQLCODE;
885: x_err_msg := substr(fnd_message.get, 1, 500);
886: x_return_status := FND_API.G_RET_STS_ERROR;
887: when others then