Skip to content

Pull Dispatch业务描述

当3PL根据联想VMI系统的pull料指令,将物料打包发运后,对于没有发生物权变化的信息,通过Pull Dispatch将发运信息回传VMI系统,VMI系统同步S4库存进行物料location转移。

Pull Dispatch接口集成方式

参考Batch Integration模块

Pull Dispatch业务字段

参数名称参数类型数据库type描述Primary Key是否必填/不为空
pullIdStringVARCHAR2(10)Pull header idY
shipToIdStringVARCHAR2(4)Logic plant
shippedDateStringDATEShipped date
pullLineIdStringVARCHAR2(10)Pull line idY
itemIdStringVARCHAR2(18)Item id
supplierIdStringVARCHAR2(40)Supplier id
sourceStorageLocationStringVARCHAR2(40)Source storage location
sourceBinStringVARCHAR2(40)Source bin
sourceTypeStringVARCHAR2(40)Source type
quantitynumberNUMBERDispatch quantity
dataTypeStringVARCHAR2(40)Dispatch

Pull Dispatch 报文示例

json
{
  "push_id": "11111",
   "workshop_code": "LSSC-SMT",
  "source_system": "HIC/LESHINE",
  "target_system": "VMI", 
  "system_time":"2020-11-20 14:00:00",
  "total_size": 2,
  "current_page": 1,
  "current_page_size": 1,
  "data": [
      {
		"pullId": "P102237",
		"shipToId": "L210",
		"shippedDate": "2021-09-11 11:11:11",
		"pullLineId": "PL136303",
		"itemId": "000000A36941",
		"supplierId": "1000037984",
		"sourceStorageLocation": "MRNM",
		"sourceBin": "VENDOR",
		"sourceType": "C51",
		"quantity": 21,
		"dataType": "Dispatch"
	}
  ]
}