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
Re: How to create a message with ZD_SYNC as SYNCED
Hi @Nigar Khan
This is expected behavior, Individual seed data tables are upgrade to dual row set on demand, for example SET1 is created by the 1st patching cycle the table is prepared in, later SET2 is created by the 2nd patching cycle the table is prepared in , after 3rd/4th cycle tables should be fully migrated to dual row set.
The 2 sets will have different counts if the last patch applied inserted/deleted rows from the seed data table. The next time table is prepared for patching by the seed manager the row sets will be synchronized.
The possible values for column ZD_SYNC would be:
SYNCED - Row is synchronized between sets
INSERTED – Row was inserted since last prepare
UPDATED - Row was updated since last prepare
Please refer to the following document for more detailed information on this:
Architectural changes in Seed Data Tables with AD/TXK Delta 8 (Doc ID 2283796.1)
Which means ---> having "INSERTED" value in ZD_SYNC column in the table does not indicate any issue. The functionality (On front end application) should work without any problem.
It should change to SYNCED after your next patching cycle.
Please also refer below note.
How to Synced User-Defined Elements in PAY_ELEMENT_TYPES_F (Doc ID 3018417.1)
Re: Form extension - Add a button
Is there a specific reason why you are trying top replicate the OK button?
Deepeak is correct but I am guessing you are then going to associate an ORCH or LEX to the new button?
You can add this to the OK button ans chose button cliked or post button clicked. Or….
Why not add it to the form level event, End Dialog or record is updated/added. We can associate ORCHs to events as well as controls
Click Associate Orchestrations then click just below the blue line that is around the form, then pick the event (dpending on the form there are different events) Note End Dialog gets executed on closing and 'OKing' a form though





