Best Of
Re: P4312 with Routing : Status of lot is coming from Source lot (F4108) OR item-BP lot status (F4102) ?
Your question/issue can best be addressed via a service request with the appropriate product support group.
If you are asking about P4312 and how that processes when lots are involved, open the SR under Procurement.
If you are asking about P4205 and how that processes when lots are involved, open the SR under Sales.
Regards,
Dennis - Oracle Support
Re: Is there more information on BUG 38290607 OR STATE MISC1 NOT MATCHING SIT SUBJNWHABLE TAX BAL ADJ?
Hi Celine - Occasionally this step can be missed, so thank you for calling it out.
Regards,
Justine
Re: Is there more information on BUG 38290607 OR STATE MISC1 NOT MATCHING SIT SUBJNWHABLE TAX BAL ADJ?
Hi Justine,
Thanks for explaining the BUG document posting timeline.
Celine Watson
Re: Orchestration Monitoring - Where is the trigger/setup to monitor a particular ORCH stored
Hi John
That's great, glad I was able to help.
All the best
Jonathan
Re: Why doesn't Transfer Invoice Charges use the ERV expenditure type from PJM Project Parameters?
This is working properly in our next test instance. I am going to mark the reference about EAM as correct since it's the most likely thing future readers on the forum here will run into. If I have more detail in the future, I will post it.
Re: Is there a toggle available in Peoplesoft for Dark Mode?
Hi - Yes unfortunately this is a browser settings ..if you need a specific toggle button for PeopleSoft then you need to customize the branding.. there is an idea already entered for this back in 2019 please vote and share with your collegues so that it get enough votes to get the product strategy attention.
tagging @Sasank_Vemana-Oracle
-Velu
Is there a toggle available in Peoplesoft for Dark Mode?
Is there a toggle available in PeopleTools for Dark Mode? Users are complaining. Our template it all white / 8.61 tools default. It seems to be working for most (or they have not complained), but few are complaining
Any ideas?
Thanks
Re: Orchestration Monitoring - Where is the trigger/setup to monitor a particular ORCH stored
Hi John
This is a total guess on my part as we don't have this feature in our Tools Release (we're on 9.2.8.4), but my guess would be that it's held in the blob data column (OROMRBLOB) within table F9524810.
Take a look at the table using Databrowser and open the blob data to see the XML. If you can find the code that switches on for a known Orchestration then you could possibly use SQL to find entries that have the monitoring switched on. For example, if the XML contains "<monitor>" for Orchestrations where it is switched on then something like the below should work for an Oracle database:
SELECT ORWOBNM as Object_Name
, ORWOUSER as Object_Owner
, ORWOOBNMS as Orchestrator_Name
, ORWOOBNML as Description
, ORSY as System_ID
, ORUSER as Updated_By
, ORWOUTIME as Updated_On
, ORPID as Updated_Pgm
, ORMKEY as Machine_Key
, TO_CLOB(OROMRBLOB) as Blob_Data
, 'PD920' as Env
FROM PD920.F9524810
WHERE DBMS_LOB.INSTR(OROMRBLOB, UTL_RAW.CAST_TO_RAW('<monitor>')) > 0;
Hope it helps
Jonathan


