DBA Data[Home] [Help]

APPS.PO_AP_LINE_LOC_REC_TYPE dependencies on FND_LOG

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

151: END populate_calculated_fields;
152:
153:
154: -- Name: dump_to_log
155: -- Function: writes the contents of this object to the FND log.
156: -- Notes: This procedure is for debugging purposes only.
157: MEMBER PROCEDURE dump_to_log
158: IS
159: l_msg VARCHAR2(2000);

Line 179: FND_LOG.string( FND_LOG.LEVEL_STATEMENT,

175: l_msg := substrb(l_msg || '; retainage_released_amt ' || retainage_released_amt , 1, 2000);
176: l_msg := substrb(l_msg || '; last_update_login ' || last_update_login , 1, 2000);
177: l_msg := substrb(l_msg || '; request_id ' || request_id , 1, 2000);
178:
179: FND_LOG.string( FND_LOG.LEVEL_STATEMENT,
180: 'po.plsql.PO_AP_LINE_LOC_REC_TYPE.dump_to_log',
181: l_msg );
182: END dump_to_log;
183: