DBA Data[Home] [Help]

APPS.EAM_ASSET_NUM_IMPORT_PVT dependencies on FND_CONCURRENT

Line 60: while FND_CONCURRENT.CHILDREN_DONE(Interval => 20, Max_Wait => 120) = FALSE loop

56: END IF;
57:
58: RETCODE := 'Success';
59:
60: while FND_CONCURRENT.CHILDREN_DONE(Interval => 20, Max_Wait => 120) = FALSE loop
61: fnd_file.put_line(FND_FILE.LOG, 'Waiting for all the workers to complete.');
62: end loop;
63:
64: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);

Line 64: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);

60: while FND_CONCURRENT.CHILDREN_DONE(Interval => 20, Max_Wait => 120) = FALSE loop
61: fnd_file.put_line(FND_FILE.LOG, 'Waiting for all the workers to complete.');
62: end loop;
63:
64: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);
65: elsif l_retcode = 3 then
66:
67: IF (l_slog) THEN
68: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, l_module,'Completed with Warning.');

Line 73: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',Current_Error_Code);

69: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, l_module,Current_Error_Code);
70: END IF;
71:
72: RETCODE := 'Warning';
73: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',Current_Error_Code);
74: else
75:
76: IF (l_slog) THEN
77: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, l_module,'Completed with Error.');

Line 82: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

78: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, l_module,Current_Error_Code);
79: END IF;
80:
81: RETCODE := 'Error';
82: CONC_STATUS := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
83: end if;
84:
85: END Load_Asset_Numbers;
86: