DBA Data[Home] [Help]

APPS.CSF_UTIL_PVT dependencies on CSR_TIMERS_B

Line 135: * Adds a Timing Mark in the CSR_TIMERS_B so that we can assess the performance of

131: END get_address;
132:
133:
134: /**
135: * Adds a Timing Mark in the CSR_TIMERS_B so that we can assess the performance of
136: * each operation.
137: *
138: * @param p_seq Sequence Number of the Timer
139: * @param p_name Name of the Timing Mark Logged

Line 161: -- to csr_timers_b when Get Results button is pushed on Timing Tests

157: ELSIF p_type = 1 AND p_seq = g_seq_old THEN
158: -- found timing pair
159: -- insert directly into table, this is a quick-and-dirty solution, this
160: -- has to be replaced by storage into pl/sql table which will be copied
161: -- to csr_timers_b when Get Results button is pushed on Timing Tests
162: -- Management UI
163: BEGIN
164: INSERT INTO csr_timers_b (seq, NAME, VALUE, meaning, description)
165: VALUES (p_seq, p_name, (l_hsecs - g_hsecs_old) * 10, 'TIME', p_descr);

Line 164: INSERT INTO csr_timers_b (seq, NAME, VALUE, meaning, description)

160: -- has to be replaced by storage into pl/sql table which will be copied
161: -- to csr_timers_b when Get Results button is pushed on Timing Tests
162: -- Management UI
163: BEGIN
164: INSERT INTO csr_timers_b (seq, NAME, VALUE, meaning, description)
165: VALUES (p_seq, p_name, (l_hsecs - g_hsecs_old) * 10, 'TIME', p_descr);
166:
167: COMMIT WORK;
168: EXCEPTION