DBA Data[Home] [Help]

APPS.PO_LINES_REC_TYPE dependencies on FND_LOG

Line 273: * Writes the contents of this object to the FND log.

269:
270: /**
271: * Name: dump_to_log
272: * Function:
273: * Writes the contents of this object to the FND log.
274: * Notes:
275: * This procedure is for debugging purposes only.
276: */
277: MEMBER PROCEDURE dump_to_log

Line 294: FND_LOG.string( FND_LOG.LEVEL_STATEMENT,

290: l_msg := substrb(l_msg || '; request_unit_of_measure ' || request_unit_of_measure(i) , 1, 2000);
291: l_msg := substrb(l_msg || '; secondary_quantity ' || secondary_quantity(i) , 1, 2000);
292: l_msg := substrb(l_msg || '; request_secondary_uom ' || request_secondary_uom(i) , 1, 2000);
293: l_msg := substrb(l_msg || '; delete_record ' || delete_record(i) , 1, 2000);
294: FND_LOG.string( FND_LOG.LEVEL_STATEMENT,
295: 'po.plsql.PO_LINES_REC_TYPE.dump_to_log',
296: l_msg );
297: FND_LOG.string( FND_LOG.LEVEL_STATEMENT,
298: 'po.plsql.PO_LINES_REC_TYPE.dump_to_log',

Line 297: FND_LOG.string( FND_LOG.LEVEL_STATEMENT,

293: l_msg := substrb(l_msg || '; delete_record ' || delete_record(i) , 1, 2000);
294: FND_LOG.string( FND_LOG.LEVEL_STATEMENT,
295: 'po.plsql.PO_LINES_REC_TYPE.dump_to_log',
296: l_msg );
297: FND_LOG.string( FND_LOG.LEVEL_STATEMENT,
298: 'po.plsql.PO_LINES_REC_TYPE.dump_to_log',
299: l_msg );
300: END LOOP;
301: END dump_to_log;