We can enable logging by setting the below profile option:-
• FND: Debug Log Enabled profile set to ‘Yes’
• Turn on low level statement logging for a single user to monitor
• FND: Debug Log Level= Statement
Another way of gathering the same info is the following:
• First enable profile option FND: Diagnostics then
• At the end of the existing URL add: &aflog_level=Statement&aflog_module=*
• Use '*' for wildcard, not '%'. '%' is a special URL character)
Example:
• http://host:port/OA_HTML/OA.jsp?OAFunc=OAHOMEPAGE&aflog_level=STATEMENT&aflog_module=pa
You can see the log on screen by using by below code in your controller OR in Application ModuleImpl
For AM
getOADBTransaction().writeDiagnostics(this, "I am in the Application Module", 1);
For Controller
pageContext.writeDiagnostics(this, "I am in Controller PFR", 1);
• FND: Debug Log Enabled profile set to ‘Yes’
• Turn on low level statement logging for a single user to monitor
• FND: Debug Log Level= Statement
Another way of gathering the same info is the following:
• First enable profile option FND: Diagnostics then
• At the end of the existing URL add: &aflog_level=Statement
• Use '*' for wildcard, not '%'. '%' is a special URL character)
Example:
• http://host:port/OA_HTML/OA.jsp?OAFunc=OAHOMEPAGE&aflog_level=STATEMENT&aflog_module=pa
You can see the log on screen by using by below code in your controller OR in Application ModuleImpl
For AM
getOADBTransaction().writeDiagnostics(this, "I am in the Application Module", 1);
For Controller
pageContext.writeDiagnostics(this, "I am in Controller PFR", 1);
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.