The below query is used to get the order and line-level eff information
Wednesday, May 4, 2022
Wednesday, November 10, 2021
Query to get Order Bill to & Ship to Address for a customer
Below is the reference query for the Bill to & Ship to customer and address details
SCM: OM: SQL Query Obtain All FOB Information - FOB is not shown on Order Entry UI
FOB information is stored on DOO_HEADERS_ALL in the attribute - FOB_POINT_CODE.
Any Changes to FOB information must be collected, this is described in the following notes:
The collection process is described in: FA: SCM: GOP: Collecting Fusion Reference Data (Doc ID 2102248.1)
The following note describes how to view collected data: FA: SCM: GOP: How To Review Collected Order Reference Data (Doc ID 1329868.1)
NOTE: FOB information will only be shown on the Order Entry UI where:
1. The FOB is active.
2. A start date has been provided
3. The current date is between Start and End Date.
The following SQL can be used to identify the FOB information that has been created.
mslt.meaning ,
mslt.description ,
mslb.start_date_active,
mslb.end_date_Active ,
mslb.enabled_flag
FROM fusion.MSC_SR_LOOKUP_VALUES_B mslb,
fusion.MSC_SR_LOOKUP_VALUES_tl mslt
WHERE mslb.lookup_code = mslt.lookup_code
AND mslb.lookup_type = 'FOB'
AND mslt.language = userenv('LANG')
Cross reference data can be reviewed by running the following SQL: