Best Of
Re: Has anyone experienced AWE for PositionApproval NOT firing when creating a new effective dated defID
Hi Pam,
Please make sure that your process definition is Active and set as Default. For testing purpose, you may inactivate the old process definition.
Regards,
Claudia
Re: Steps to enable Third Party Payment in AP R12
Hi @User_K7JYN ,
Thank you for visiting the My Oracle Support Community (MOSC)!
In addition, please review below document:
R12: AP: How Remit to Bank Account Number Gets Populated On Invoice Workbench? (Doc ID 3059328.1)
Kind Regards,
Alexandru.
Re: Steps to enable Third Party Payment in AP R12
Hi
Refer to the below documents
R12: Technical Brief on Third Party Payments in Oracle Payables (Doc ID 978799.1)
thanks
Nirmal
Re: G-Invoicing Dashboard unable Remove or Disable the Close "X" Button on panels of the ECC Dashboard
Hi Ragha Chillarige,
As the response has provided you with an answer, please click Yes for the prompt ‘Did this answer the question? Yes No’ on the comment.
This helps identify effective solutions within threads and encourages community users to assist others by providing potential solutions.
Thanks
Re: After execution of concurrent program, SQLException encounter while executing data trigger
Hi User_TA6AG,
Please log service request with EBS XML publisher product to validate Data definition setup and validate data.
Thanks,
Hari
Re: Patch Wizard Credentials
Alexandru
Think this is definitely the issue as 37051792 has been superseded by 37059554:R12.ADO.C PASSWORD LIMITATIONS IN UPDATE MOS CREDENTIALS IN OAM.
Patrick
Re: OL9 ORA 19C OJVM Patch Re-link fails on target "javavm_refresh"
This resolved the issue.
--MOS - Patching fails during relink , with error code 102 :: Fatal error: Command failed for target `javavm_refresh' (Doc ID 2002334.1)
CAUSE
PERL5LIB environment variable is not set
SOLUTION
Oracle provided Perl needs to be referenced at the beginning of the PATH and PERL5LIB for Patch apply or rollback.
Set PATH and PERL5LIB environment variable and apply patch again.
export PATH=$ORACLE_HOME/perl/bin:$PATH
export PERL5LIB=$ORACLE_HOME/perl/lib
=========================================================
$ORACLE_HOME/OPatch/opatch rollback -id 36199232
$ cd /orahome1/orainstalls/PATCHES/DB/OJVM/36199232
$ $ORACLE_HOME/OPatch/opatch apply
=========================================================
Re: Performance issue due to index not being used
Index is on 4 columns and WHERE clause is on index first 3 columns. My guess would be optimizer can't properly access how many rows query returns. Is data skewed? If so, is stats collected with histograms? Also, what happens if you collect extended stats:
SELECT DBMS_STATS.CREATE_EXTENDED_STATS('<table-owner>','KCM_GRP_CONTRIBUTIONS','(POL_LINKED_POLICY_ID,STATUS,DATA_TYPE)')
FROM DUAL;
EXEC DBMS_STATS.GATHER_TABLE_STATS('<table-owner>','KCM_GRP_CONTRIBUTIONS');
SY.


