WMS – Dest ID


Versao Portuguesa





In Oracle Retail the warehouses ( and other facilities as stores ) have a unique identify. Specific to the WMS, RIB sends/redirects specific information using that ID . That information needs to be in : RMS, TAFRs file and WMS.

The bellow query can be used to identify the WMS ID .





set lines 20
col description a30

col description form a30
set lines 200

select l.facility_id,description,dc_dest_id
from transshipment_setup t, facility l
where l.facility_id = t.facility_id;




Thank you for reading, hope this post was helpful.
Rogerio

Futher Reading :

https://docs.oracle.com/cd/E82085_01/1303/operations_guide/Chapter%207%20-%20Message%20and%20Routing%20(TAFR).htm
https://docs.oracle.com/cd/E12456_01/rwms/pdf/141/html/impg/wms-integration.htm


Comments