DBA Data[Home] [Help]

APPS.FND_LOG_SUMMARY dependencies on FND_LOG_MESSAGES

Line 10: select count(*) into l_count from FND_LOG_MESSAGES;

6: /* Nobody besides the concurrent manager should call it. */
7: procedure summarize_rows is
8: l_count number := 0;
9: begin
10: select count(*) into l_count from FND_LOG_MESSAGES;
11: fnd_conc_summarizer.insert_row('FND_LOG_MESSAGES', l_count);
12:
13: select count(*) into l_count from FND_LOG_TRANSACTION_CONTEXT;
14: fnd_conc_summarizer.insert_row('FND_LOG_TRANSACTION_CONTEXT', l_count);

Line 11: fnd_conc_summarizer.insert_row('FND_LOG_MESSAGES', l_count);

7: procedure summarize_rows is
8: l_count number := 0;
9: begin
10: select count(*) into l_count from FND_LOG_MESSAGES;
11: fnd_conc_summarizer.insert_row('FND_LOG_MESSAGES', l_count);
12:
13: select count(*) into l_count from FND_LOG_TRANSACTION_CONTEXT;
14: fnd_conc_summarizer.insert_row('FND_LOG_TRANSACTION_CONTEXT', l_count);
15: