Search This Blog

how to Clear the Oracle Applications cache

 

Clear the Oracle Applications cache

clear oracle application cache

 

Every time you change user assignments to a user group, clear the Oracle Applications cache so that users logging into Oracle eBusiness Suite R12 see only the appropriate options. (Note that if you do not clear the cache, users may be able to see the wrong options but they cannot actually do them.)

  1. Log in as an Oracle ebs R12 user with the Functional Administrator responsibility. 
  2. The Security tab's Grants screen appears.

    Note:

    You can also log in as the sysadmin user if you do not want to assign the Functional Administrator responsibility only for the purpose of clearing cache.

  3. Click the Core Services tab from the Grants screen. The Lookup Types screen appears.
  4. Click Caching Framework from the list of secondary tabs. The Overview screen opens.
  5. Click Global Configuration from the left panel. The Global Cache Configuration screen opens.
  6. Click Clear All Cache. A warning appears.

    Click Yes.

Tables Used by Concurrent Request Concurrent Program

 Tables Used by Concurrent Request Concurrent Program

 

oracle ebs r12

FND_CONCURRENT_REQUESTS

Contains a complete history of all concurrent requests (both past history and those scheduled to run in the future).

 

FND_RUN_REQUESTS

Stores information about the reports in a report set that a user submits including the report set’s parameter values.

 

FND_CONC_REQUEST_ARGUMENTS

Records all arguments passed by Concurrent Managers to concurrent requests as those requests are running.

 

FND_DUAL

Records when a request does not update any database tables.

 

FND_CONCURRENT_PROCESSES

Records information about Oracle Applications processes and OS processes.

 

FND_CONC_STAT_LIST

Collects runtime performance statistics for concurrent requests.

 

FND_CONC_STAT_SUMMARY

Contains Concurrent Program performance statistics generated by the Purge Concurrent Request program or the manager data program. These programs use the data in FND_CONC_STAT_LIST to compute these statistics।

Query to find Concurrent Request Details from Concurrent Program Name

 

SELECT
   distinct user_concurrent_program_name,
    responsibility_name,
    request_date,
    argument_text,
    request_id,
    phase_code,
    status_code,
    logfile_name,
    outfile_name,
    output_file_type,
    hold_flag,
    user_name
FROM
    fnd_concurrent_requests fcr,
    fnd_concurrent_programs_tl fcp,
    fnd_responsibility_tl fr,
    fnd_user fu
WHERE
    fcr.CONCURRENT_PROGRAM_ID = fcp.concurrent_program_id
    and fcr.responsibility_id = fr.responsibility_id
    and fcr.requested_by = fu.user_id
    --and user_name = upper('SYSADMIN')
    and user_concurrent_program_name in 
('Active Users')
    and Phase_code='P'
ORDER BY REQUEST_DATE DESC;

 

Supplier Bank and Branches creation API in Oracle Apps R12

 

Supplier Bank and Branches creation API in Oracle Apps R12
API Used:
IBY_EXT_BANKACCT_PUB.create_ext_bank_branch
HZ_LOCATION_V2PUB.CREATE_LOCATION
HZ_PARTY_SITE_V2PUB.CREATE_PARTY_SITE
IBY_EXT_BANKACCT_PUB.create_ext_bank
 

Oracle API to insert supplier bank account information

Oracle API to insert supplier bank account information
API used: 
IBY_EXT_BANKACCT_PUB.create_ext_bank_acct
iby_disbursement_setup_pub.create_external_payee
iby_disbursement_setup_pub.set_payee_instr_assignment
IBY_EXT_BANKACCT_PUB.check_bank_acct_owner
IBY_EXT_BANKACCT_PUB.add_joint_account_owner