DBA Data[Home] [Help]

APPS.PO_DISTRIBUTIONS_REC_TYPE dependencies on FND_LOG

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

201:
202: /**
203: * Name: dump_to_log
204: * Function:
205: * Writes the contents of this object to the FND log.
206: * Notes:
207: * This procedure is for debugging purposes only.
208: **/
209: MEMBER PROCEDURE dump_to_log

Line 219: FND_LOG.string( FND_LOG.LEVEL_STATEMENT,

215: l_msg := substrb(l_msg || '; split_shipment_num ' || split_shipment_num(i) , 1, 2000);
216: l_msg := substrb(l_msg || '; amount_ordered ' || amount_ordered(i) , 1, 2000);
217: l_msg := substrb(l_msg || '; request_unit_of_measure ' || request_unit_of_measure(i) , 1, 2000);
218: l_msg := substrb(l_msg || '; delete_record ' || delete_record(i) , 1, 2000);
219: FND_LOG.string( FND_LOG.LEVEL_STATEMENT,
220: 'po.plsql.PO_DISTRIBUTIONS_REC_TYPE.dump_to_log',
221: l_msg );
222: END LOOP;
223: END dump_to_log;