How to use google translate URL in Oracle plsql

We all know Google Translate which can help translate from one language to another. We will explore the option to use Google functionality in Oracle plsql in the Oracle database to get the translation done. BEGINDBMS_NETWORK_ACL_ADMIN.CREATE_ACL(acl => ‘google_translatorapi.xml’,description => ‘Google Translator Access’,principal => ‘SCOTT’,is_grant => true,privilege => ‘connect’);DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(acl => ‘google_translatorapi.xml’,principal => ‘SCOTT’,is_grant => true,privilege => […]

How to use google translate URL in Oracle plsql Read More »

How to find the FND_FILE output of the running concurrent request

We generally write FND_FILE statements in concurrent programs for debugging, logs, and various other messages These are visible in Concurrent request logs and out once the concurrent program completes only If we want to see the logs and out for the running concurrent request, then we need to find the temporary log and out file

How to find the FND_FILE output of the running concurrent request Read More »

Scroll to Top