DBA Data[Home] [Help]

APPS.IEX_METRIC_PVT dependencies on FND_LOG

Line 84: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

80: WHERE gll.ledger_id = sp.set_of_books_id
81: AND gll.currency_code = c.currency_code;
82: --End bug#5208170 schekuri 29-May-2006
83: BEGIN
84: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
85: IEX_DEBUG_PUB.logMessage('Object ID values: ' || p_party_id || p_cust_account_id || p_customer_site_use_id || p_delinquency_id);
86:
87: END IF;
88: x_return_status := 'S';

Line 150: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

146: END LOOP;
147: l_str_result := 'BEGIN :l_result := ' || l_str_result;
148:
149:
150: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
151: IEX_DEBUG_PUB.logMessage('result: ' || l_str_result);
152: END IF;
153:
154: l_sqlcursor := DBMS_SQL.OPEN_CURSOR;

Line 198: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

194:
195: DBMS_SQL.VARIABLE_VALUE_CHAR(l_sqlcursor, 'l_result', l_value);
196: x_metric_value_tbl(l_current_row) := RTRIM(l_value, ' ');
197:
198: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
199: IEX_DEBUG_PUB.logMessage('Metrics value: ' || x_metric_value_tbl(l_current_row));
200: END IF;
201:
202: EXCEPTION

Line 234: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

230: ELSE
231: l_str_result := l_str_result || l_str;
232: END IF;
233:
234: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
235: IEX_DEBUG_PUB.logMessage('result: ' || l_str_result);
236: END IF;
237:
238: EXIT WHEN l_start < 1;

Line 279: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN

275: END IF;
276:
277: x_metric_value_tbl(l_current_row) := l_value;
278:
279: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
280: IEX_DEBUG_PUB.logMessage('Metrics value: ' || x_metric_value_tbl(l_current_row));
281: END IF;
282:
283: EXCEPTION