DBA Data[Home] [Help]

APPS.WIP_JOB_DETAILS dependencies on WIP_JSI_UTILS

Line 228: wip_jsi_utils.current_interface_id := null;

224: fetch wdj_cur into cur_job ;
225: exit when wdj_cur%NOTFOUND ;
226:
227: /* bug 4650624 */
228: wip_jsi_utils.current_interface_id := null;
229: ELSE
230: fetch job_cur into cur_job ;
231: exit when job_cur%NOTFOUND ;
232:

Line 235: into wip_jsi_utils.current_interface_id

231: exit when job_cur%NOTFOUND ;
232:
233: /* bug 4650624 */
234: select interface_id
235: into wip_jsi_utils.current_interface_id
236: from wip_job_schedule_interface
237: where group_id = p_group_id
238: and header_id = p_parent_header_id;
239:

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

1175:
1176: exception
1177: when no_data_found then --could not find the ML row
1178: fnd_message.set_name('WIP', 'WIP_JOB_DOES_NOT_EXIST');
1179: fnd_message.set_token('INTERFACE', to_char(wip_jsi_utils.current_interface_id));
1180: x_err_code := SQLCODE;
1181: x_err_msg := substr(fnd_message.get, 1, 500);
1182: x_return_status := FND_API.G_RET_STS_ERROR;
1183: when others then