Best Of
Re: Is it possible to use <af:query> <af:queryCriterion></af:queryCriterion></af:query> in JDeveloper12?
Hi,
No, under these constraints, there is no safe declarative only solution. Only programmatic alternatives are recommended and supported
Regards,
Ruxandra
Re: Is it possible to use <af:query> <af:queryCriterion></af:queryCriterion></af:query> in JDeveloper12?
Hi,
- af:queryCriterion tag is a declarative construct for query panel filtering. It does not directly support the rendered attribute. The behavior is undefined for its use on af:queryCriterion, especially inside af:query.
This is a reason for blank pages — the component is not expecting a conditional rendering attribute in this context, leading to rendering errors that may not produce stack traces. - partialTriggers is intended for ADF Faces UI components, not for queryCriterion. Updating query criteria dynamically based on other criteria's value is not natively supported in this way.
Regards,
Ruxandra
Re: My coordinates are sitting in the wrong world regions
GPS coordinates being mapped to the wrong world region is a classic spatial data issue and can be caused by several factors, most commonly involving data format errors, coordinate system mismatches, or data entry issues.below is a detailed explanation of the same .
Common Causes:
- Latitude/Longitude Swapping
Latitude (Y) and Longitude (X) are often accidentally swapped.
Example: Correct for San Francisco is (-122.4194, 37.7749) (longitude, latitude in X,Y). If swapped, you’d get (37.7749, -122.4194), which points to the Middle East. - Incorrect Spatial Reference System Identifier (SRID)
If the SRID (coordinate system) doesn’t match the data, Oracle (or any GIS) will misplace the features.
Common GPS: SRID 4326 (WGS 84). Using a local projection or SRID without transforming the data will give wrong locations. - Degree vs Radian Confusion
Some functions/tools expect coordinates in degrees (what GPS provides), others expect radians. - Incorrect Sign
Longitude: West is negative, East is positive.
Latitude: South is negative, North is positive.
If the sign is wrong, you could be on the wrong hemisphere. - Data Entry or Export Issues
Export/import tools might reformat or reorder columns, or drop negative signs (e.g., with Excel or CSV processing).
Thanks
Swati A
Re: Work Order Status not in Flow error while revising Sales Order Header
Hi @User_UKCQA ,
This issue would really be better handled under an SR - we can look at your full logs, perform a Zoom conference if needed, etc. These actions are not feasible via the Community.
However, you can go through below documents to make sure you have the correct setup in place.
E1: 31: Work Order (P48013) Interface with Sales Orders (P4210) Line Type W (Doc ID 626019.1)
E1: 31: Sales Order & Work Order Status Change Process (Doc ID 651056.1)
Regards,
Ankur Patel
Re: How to Make Supplier code Inactive in JDE , We tried to change the Search Type From V to "VO" but It
Hi @User_IEAPA,
Thank you for the post.
Currently there is no functionality available to prevent users from creating PR/PO or Voucher or Payment for a inactive supplier. For this an enhancement request is already raised with Oracle. Please refer below KM document.
E1: 43: Supplier Inactive Option on the Supplier Master Record (F0401) and Functionality in Purchase Order Entry (P4310) to Prevent Creation of Purchase Orders (Doc ID 2877727.1)
Regards,
Ankur Patel
Re: When can we expect a patch for Ireland on the Auto-Enrolment Retirement Savings Scheme
Hi , is there any Update on Pension Auto Enrolment for Ireland 2026 January , Is there any date for Patch availability ?
Re: SAML integration with Siebel IP24.10
I believe there is a misunderstanding, SAML is a protocol and can be used to implement SSO with Siebel.
Please review once more the document where it says:
Siebel expects SSO authentication to be performed before the request reaches Siebel and looks at the HTTP request header injection for the subject. The Identity Provider (IdP) vendor must review this functional requirement.
What Siebel doesn't have a way to valid SAML token because such feature doesn't exist within Siebel.
This is the reason that the validation is done by the Identity Provider (IdP).
For SAML deployments, note that Siebel does not currently have a SAML validator or Assertion Consumer Service built into the product.
Thanks,
Michael
Re: Seeded Business Event for Order Create / Update / Cancel
Hi Mirza,
Based on what I have learned from my experience in XML Gateway :
When Oracle Order Management receives an inbound PROCESS PO or CANCEL PO message, a business event "oracle.apps.ont.oi.po_inbound.create" is raised to start the order import workflow in order to process the received data.
After order import has been run on data received through XML, a business event "oracle.apps.ont.oi.po_ack.create" can be raised to trigger generation of an ACKNOWLEDGE PO XML message.
A business event "oracle.apps.ont.oi.show_so.create" can be raised to trigger generation of a SHOW SO or CHANGE SO XML message.The SHOW SO message contains status information about an order and can be generated on demand or as a result of changes to an existing sales order. The CHANGE SO message is used to notify the buyer of changes to a sales order and can be raised as a result of status or attribute changes on a sales order like Unit selling Price,Ordered Qty,Scheduled arrival date,Shipped Qty,Scheduled Ship Date.
Also No User setup is required for the Show_SalesOrder in event of following status change:
• Booking the order
• Shipping
• Scheduling of lines
When an order or line status changes, the show SO is generated.
Hope all these info helps you.
Please mark the response as helpful or correct when appropriate to make it easier for others to find it.
Regards
sanG1
Re: slow boot when connected to Oracle db19c on Azure
It is mainly due to higher network latency and increased round-trip times that amplify the impact of numerous small, sequential database queries and metadata lookups performed during startup; this is worsened by potential suboptimal JDBC driver and connection pool configurations, Azure-specific network factors such as load balancers causing connection instability or delays, and possibly storage performance differences-thus, resolving this requires minimizing database round-trips during startup (e.g., disabling schema validation), tuning JDBC and connection pool settings for cloud latency, ensuring the application server is deployed close to the Azure database (same region), optimizing Azure storage and network configurations for Oracle workloads, and monitoring startup queries to identify and optimize bottlenecks.
Cheers
Arsalan
