You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

Data is updated in the oracle base table and the older data version is not maintained.

edited Mar 18, 2025 3:17AM in Supply Chain Planning and Collaboration 3 comments

Summary:

To retrieve the Order header Freight terms code, we are utilizing the msc_xref_mapping table.
Please refer to the query below:

SELECT flvv.meaning freight_terms,dha.order_number
FROM fnd_lookup_values flvv,
msc_xref_mapping mxm,
doo_headers_all dha
WHERE flvv.lookup_type = 'WSH_FREIGHT_CHARGE_TERMS'
AND flvv.language = 'US'
AND mxm.source_value = flvv.lookup_code
AND mxm.target_value = dha.freight_terms_code
AND mxm.entity_name = 'WSH_FREIGHT_CHARGE_TERMS'
AND mxm.attribute_name = 'LOOKUP_CODE'
and dha.status_code not in ('DOO_DRAFT','DOO_REFERENCE')

To update the data, follow these steps:

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!