Best Of
Re: Change in Customer Payment Terms and Open AR Transactions
Hi,
Backend data fix should work.
We have done this in one of our previous 11i customer.
Regards,
Arvind
Re: Where we can get the list of PUM images released and arriving in Peoplesoft ?
Please refer to following article with respect to the Application installed to check the PUM images release schedule.
PeopleSoft Update Manager (PUM) Home Page (Doc ID 1641843.2)
Re: Where we can get the list of PUM images released and arriving in Peoplesoft ?
Hello User,
Key document is: PeopleSoft Update Manager (PUM) Home Page (Doc ID 1641843.2)
Which has each section for HCM, Campus, FSCM list current image & future planned release date for each image.
Also, this documents gives more details of HCM specific:-
Finding Schedules for PeopleSoft Update Images (PUM) and PeopleSoft PeopleTools Patches (Doc ID 2591078.1)
Thanks,
Akash
Re: Hold notifications in invoice
Hi @User_49C1K,
Yes you are right . we have to update the deliver to person .. check this below document - and the whitepaper it will explain which query is used etc.
R12: AP: Technical Brief On AP Hold Resolution Workflow (Doc ID 1590008.1)
Thanks
Nirmal Kumar N
Re: Can multiple different Invoice number be given in Invoice search option
Please consider creating an Idea here in the community. If others vote for it, it could be delivered in a future release. It is possible to configure a query to accept a comma-delimited list of invoice numbers as an input variable instead of a single invoice number, so it should be possible to update the form to do the same thing. The user would have the list of invoices they want to find, so formatting them as a list wouldn't add much effort.
Re: Having decimal values in sequence generated column
You could use logminer to reconstruct SQL statements if you want to dig into it. You can also create a trigger to ensure column value is whole number or create check constraint:
SQL> CREATE TABLE TBL(N NUMBER);
Table created.
SQL> ALTER TABLE TBL ADD CONSTRAINT CHECK_IF_WHOLE_NUMBER CHECK(N = TRUNC(N));
Table altered.
SQL> INSERT INTO TBL VALUES(1);
1 row created.
SQL> INSERT INTO TBL VALUES(1.5);
INSERT INTO TBL VALUES(1.5)
*
ERROR at line 1:
ORA-02290: check constraint (SCOTT.CHECK_IF_WHOLE_NUMBER) violated
SQL>
SY.
Re: RPASCE V25: configuring ODA in Planning Application
Hi Andreas,
I have already logged an SR for ODA in MFP.
"Customer needs to request for this feature to be set up."
The Client expectation about ODA is to assist business users on the real time. currently they are checking with the dev team regarding this. once i get more info i'll update here.
In Retail Home we are having an ODA (but haven't raised any SR to enable this ), ODA answers are more generic to retail questions.
Retail home version :25.1.301.0
use cases were mentioned for ODA in AIF:
Re: Why is the job_queue_processes parameter not working in multitenant?
Hello Bruno,
I ran the test on CDB$ROOT to isolate PDB limitation issues.
The same behavior occurs with PDBs, no more than two schedulers are executed simultaneously in each PDB, but when running on different PDBs, than can be more than two schedulers simultaneously in the CDB.
The problem is that we have routines in the application that control parallelism by scheduler, and with only 2 running this compromises performance.
Thanks,
Everson




