Best Of
Re: DISA Version
Hello,
Please download only the archive id 6 from patch id 38629497.
As example: p38629497_2511_MSWIN-x86-64_6of12.zip (this archive contains the DISA installable binaries for Windows).
Thank you,
Alexandru
Re: Secure 2.0 Section 603: PUM Delivery Status for PeopleSoft HCM
Hi,
The current estimate is early December, but Development will be posting it just as soon as they have it complete.
Regards,
Joyce
Re: JDE Orchestration Studio Notification
It's a bit surprising to me that the addition of a querystring is causing a 404. If I add "&dave=dave&what=what" to the end of a url ALREADY containing a querystring, the extra BS gets ignored.
My guess is that the querystring is auto-appended (why? you didnt specify it, so we shrug) WITHOUT the question mark to let the server know that it's into querystring land?
The rendered link comes out as https://yourURL.com/jde/E1Menu.maf&showMessage=True&showMessage=True I'm guessing?
IF this is the case, then one "hack" might be to add a question mark after the part of the URL you do control. In your message component is https://yourURL.com/jde/E1Menu.maf then I would change that to include a question mark after , so it would be "https://yourURL.com/jde/E1Menu.maf?"
Re: MySQL Server>Installation and Upgrading
Hello.
For installation instructions for P6 Pro v19, see:
https://docs.oracle.com/cd/F12059_01/index.htm
Thanks,
Ron
Re: JDE Orchestration Studio Notification
Yes, the query string is auto appended…. do not know why.
I applied the ? and it is working now. Thanks Dave!
Hi, is anyone aware of a way of importing layouts from P6 EPPM into OPC? We have a large set of layo
Hi, is anyone aware of a way of importing layouts from P6 EPPM into OPC? We have a large set of layouts we wish to transfer over and looking to see if there is a way of importing rather than trying to recreate each one in OPC?
Re: how to disable alter for REFRESH_FROM_MY_ORACLE_SUPPORT_JOB REFRESH UPDATES FROM ORACLE OPATCH_PAT..
Thanks @Satya Chandan-Oracle - I did try this in Dev environment, will watch for couple of days before propagate to higher environment.
Will update after two days .
Thanks
Re: Secure 2.0 - When will Oracle address the Roth Catch-up requirement for employees earing $145,000+
Hi Jessica,
After further discussion with Development, the PRP posting was moved a couple of weeks from that earlier estimate. The current ETA is early December, but Development will be posting it just as soon as they have it complete.
Regards,
Joyce
Re: seller side order import failed with failed pull error, can we rerun..
Hi,
It is important to clarify that the behavior differs depending on whether the order pull failed or the agreement generation failed.
Below are the steps to identify each scenario.
1. How to identify if the Order Import/Pull failed
Option A — ECC Dashboard
- Open the ECC Dashboard
- Search for the order number
- Go to the Exceptions tab and verify if any exception is displayed
Option B — Database Queries
Run the following query and look for error indicators in the columns
INTERNAL_DOCUMENT_STATUS, IGT_ERROR_DESC, IGT_ERROR_TITLE:
select *
from igt_document_requests
where igt_document_id = 'order_number'
order by creation_date desc;
Then validate the exceptions table (should match what you see in ECC):
select *
from pa_igt_exceptions
where document_number = 'order_number'
order by creation_date desc;
If you find an exception here, the order pull/import failed.
2. How to identify if the Order Pull was successful but Agreement Generation failed
First, verify the order record:
select *
from pa_igt_order
where order_number = 'order_number';
- If the row exists → Order pull was successful
- Check column LINK_AGREEMENT_ID
- If NULL, it means that the agreement was not generated
Confirm the agreement does not exist:
select *
from pa_agreement_versions
where agreement_id in (
select link_agreement_id
from pa_igt_order
where order_number = 'order_number'
);
3. Root Causes When Agreement Generation Fails Due to ALC Issues
If you confirm that the order exists but the agreement was not generated due to ALC validation, there are two possible causes:
A. Custom Extension Logic Issue
If you are using your extension:
pa_client_extn_igt_cust.Return_Customer_Num
Validate that the logic returns a correct and valid customer number.
B. Seeded Behavior — 1:1 ALC to Customer Requirement
If seeded logic is used, EBS requires a strict 1:1 relationship between ALC and customer_number.
The application validates using the following SQL:
SELECT 'T'
FROM DUAL
WHERE EXISTS (
SELECT 1
FROM pa_customer_lov_v
WHERE customer_number = '<Customer_num>'
)
AND EXISTS (
SELECT 1
FROM hz_cust_accounts_all
WHERE account_number = '<Customer_num>'
AND customer_class_code = 'FEDERAL'
);
If the query returns no rows, there are two possible issues:
- Mismatch between ALC and customer account
→ The ALC is not linked to the expected customer number - Customer class code is not
FEDERAL
→ Agreement creation requires the class code to be FEDERAL
4. How to Troubleshoot
To identify the exact root cause:
- Execute each subquery independently
- Temporarily comment out the customer_class_code filter to see if this is the source of the failure
- Based on findings:
- If customer_class_code is incorrect, update it to FEDERAL
- If the ALC–customer mapping is incorrect, register the correct account with the appropriate customer
5. If the Issue Is Resolved (Queries Now Return Rows), You May Need to Create the Agreement Manually
If you identify the root cause, fix it, and now the validation queries return rows, but the agreement still does not exist, you may need to manually create it.
How to Create the Agreement
- Go to the ECC Dashboard
- Search for the order and select the checkbox next to it
- Click the three-dot options menu (upper-right corner)
- Select Create Agreement
- Wait for the confirmation message
After Creating the Agreement
A. Try Opening the Update Agreement Page
- If the page is accessible → Agreement creation succeeded
B. If the page is not available
Run the ECC Data Load program to refresh the dashboard.
C. If the agreement still does not appear
Run the verification query again:
select *
from pa_agreement_versions
where agreement_id in (
select link_agreement_id
from pa_igt_order
where order_number = 'order_number'
);
- If no rows returned, then the system was unable to generate the agreement
- This may indicate an internal issue → you may need to raise an SR with Oracle Development for further investigation
Removing Priority in Approvals
Is there a way to remove this option for specific type. Like for Req's we don't want to see this option.
Also don't want to show text "Medium Priority" in lines. Instead by default we want to see all Reqs. Is that a setting?
We are on PT 8.61 / FSCM 9.2 / PI 48




