Skip to Main Content

E-Business Suite

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Modify Ship Method LOV on Ship Confirm screen using Form Personalization

user13106509Nov 6 2024 — edited Nov 6 2024

Requirement:

Need to modify the ship method LOV in Ship confirm screen to restrict values based on org similar to the ship method LOV on delivery tab in shipping transactions form.

Issue:

Developed solution using Form Personalization as per the Metalink docs, which is not working:

How to Replace Record Group with Form Personalization [763410.1]

How to Use Forms Personalization to Restrict Values in Customer Number LOV in Sales Order Form OEXOEORD [862066.1

Solution:

SQL query:

select SHIP_METHOD_MEANING "SHIP METHOD",
(SELECT DESCRIPTION FROM OE_SHIP_METHODS_V WHERE LOOKUP_TYPE = 'SHIP_METHOD' AND LOOKUP_CODE = SHIP_METHOD_CODE) "DESCRIPTION"
from WSH_CARRIER_SERVICES wcs,
WSH_ORG_CARRIER_SERVICES_v wocs
where wcs.CARRIER_SERVICE_ID = wocs.CARRIER_SERVICE_ID
and wocs.ORGANIZATION_ID = :DLVY.ORGANIZATION_ID

Request to please guide if any pre-req is required for this solution or pls do suggest an alternate approach

Thanks up front

Comments
Post Details
Added on Nov 6 2024
0 comments
83 views