DBA Data[Home] [Help]

APPS.IEM_CONCURRENT_DPN_PVT dependencies on FND_FILE

Line 23: fnd_file.put_line(fnd_file.log, 'p_period_to_wake_up = ' || to_char(p_period_to_wake_up));

19: WORKER_NOT_SUBMITTED EXCEPTION;
20:
21: BEGIN
22:
23: fnd_file.put_line(fnd_file.log, 'p_period_to_wake_up = ' || to_char(p_period_to_wake_up));
24: fnd_file.put_line(fnd_file.log, 'Starting Processing');
25:
26:
27:

Line 24: fnd_file.put_line(fnd_file.log, 'Starting Processing');

20:
21: BEGIN
22:
23: fnd_file.put_line(fnd_file.log, 'p_period_to_wake_up = ' || to_char(p_period_to_wake_up));
24: fnd_file.put_line(fnd_file.log, 'Starting Processing');
25:
26:
27:
28: l_call_status := fnd_request.set_repeat_options('',p_period_to_wake_up,'HOURS','END','');

Line 40: fnd_file.put_line(fnd_file.log, ' Request Id ' || to_char(l_request_id));

36: rollback;
37: raise REPEAT_OPTIONS_NOT_SET;
38: end if;
39:
40: fnd_file.put_line(fnd_file.log, ' Request Id ' || to_char(l_request_id));
41:
42: if l_request_id = 0 then
43: rollback;
44: raise WORKER_NOT_SUBMITTED;

Line 50: fnd_file.put_line(fnd_file.log, 'Controller Exited');

46: commit;
47: end if;
48:
49: Commit work;
50: fnd_file.put_line(fnd_file.log, 'Controller Exited');
51:
52: EXCEPTION
53:
54: WHEN REPEAT_OPTIONS_NOT_SET THEN

Line 57: fnd_file.put_line(fnd_file.log, l_Error_Message);

53:
54: WHEN REPEAT_OPTIONS_NOT_SET THEN
55: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_REPEAT_OPTIONS_NOT_SET');
56: l_Error_Message := FND_MESSAGE.GET;
57: fnd_file.put_line(fnd_file.log, l_Error_Message);
58: l_call_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_Error_Message);
59:
60: WHEN WORKER_NOT_SUBMITTED THEN
61: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_WORKER_NOT_SUBMITTED');

Line 63: fnd_file.put_line(fnd_file.log, l_Error_Message);

59:
60: WHEN WORKER_NOT_SUBMITTED THEN
61: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_WORKER_NOT_SUBMITTED');
62: l_Error_Message := FND_MESSAGE.GET;
63: fnd_file.put_line(fnd_file.log, l_Error_Message);
64: l_call_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_Error_Message);
65:
66: WHEN OTHERS THEN
67: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_UNXP_ERROR');

Line 69: fnd_file.put_line(fnd_file.log, l_Error_Message);

65:
66: WHEN OTHERS THEN
67: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_UNXP_ERROR');
68: l_Error_Message := FND_MESSAGE.GET;
69: fnd_file.put_line(fnd_file.log, l_Error_Message);
70: l_call_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_Error_Message);
71: END StartProcess;
72:
73: END IEM_CONCURRENT_DPN_PVT;