FND Logging - oracle apps

Use FND Logging. At back Oracles FND Logging uses self reliant transaction to insert records in a table of name fnd_log_messages.

For example:
DECLARE
BEGIN
fnd_log.STRING(log_level => fnd_log.level_statement
,module => 'xxxx ' || 'pkg/procedurename '.
,message => 'your debug message here');
END ;

Three profile options effecting FND Logging are:
FND: Debug Log Mode
FND: Debug Log Enabled
FND: Debug Log Module
Substitution work in OA Framework
The base of working of Substitution in OA framework depends on the user that has logged into OA Framework......
Benefits of Substitution in OA Framework
To extend the OA Framework without customization of the underlying code. Helps in Up gradation.......
Import invoices into Oracle Receivables
Alternately by using API ar_invoice_api_pub.create_single_invoice for Receivables Invoice Import.......
Post your comment