Sql Query for Oracle Fusion/Cloud Shipping parameters and rule
Shipping parameters and rule
select a.organization_code,b.ship_confirm_rule_name
from WSH_SHIPPING_PARAMETERS a,
WSH_SHIP_CONFIRM_RULES b,
hr_locations_all l1,
inv_org_parameters d
where a.organization_id = l1.inventory_organization_id
and a.organization_code =d.organization_code
and a.ship_confirm_rule_id = b.ship_confirm_rule_id
and l1.country IN ('US')
Comments
Post a Comment