DBA Data[Home] [Help]

APPS.PO_AP_DIST_REC_TYPE dependencies on FND_LOG

Line 359: -- Function: writes the contents of this object to the FND log.

355: END populate_calculated_fields;
356:
357:
358: -- Name: dump_to_log
359: -- Function: writes the contents of this object to the FND log.
360: -- Notes: This procedure is for debugging purposes only.
361: MEMBER PROCEDURE dump_to_log
362: IS
363: l_msg VARCHAR2(2000);

Line 384: FND_LOG.string( FND_LOG.LEVEL_STATEMENT,

380: l_msg := substrb(l_msg || '; retainage_released_amt ' || retainage_released_amt_tbl(i) , 1, 2000);
381: l_msg := substrb(l_msg || '; last_update_login ' || last_update_login_tbl(i) , 1, 2000);
382: l_msg := substrb(l_msg || '; request_id ' || request_id_tbl(i) , 1, 2000);
383:
384: FND_LOG.string( FND_LOG.LEVEL_STATEMENT,
385: 'po.plsql.PO_AP_DIST_REC_TYPE.dump_to_log',
386: l_msg );
387: END LOOP;
388: END dump_to_log;