码迷,mamicode.com
首页 > 其他好文 > 详细

[OM]Dropship SO(直发/直运订单)的流程

时间:2016-07-21 18:08:09      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:

What are the advantages of Drop Shipment Orders? These are the benefits:

  • No inventory is required
  • Reduced order fulfillment processing costs
  • Reduced flow times
  • Elimination of losses on non-sellable goods
  • Elimination of packing and shipping costs
  • Reduced inventory space requirements
  • Reduced shipping time to your customer
  • Allows you to offer a variety of products to your customers

技术分享

How to understand the dataflow for Drop shipment Orders?
To understand, here are the processes divided in sub process and the underline activity is highlighted here:

技术分享

DropShip SO的工作场景:
企业A向客户B销售产品,但是企业A本身并不生产该产品,而是向供应商C来采购,并且在大部分的情况都是C向B直接发货,也就是说企业A大部分的交易都是贸易,属于贸易型企业,除了贸易型企业,对于一些集团公司的销售公司或门店也采用这种销售方式。即‘左手倒右手’。

1.create a item,and ensure this item have purchasable and salable properties.
(according step 4 error,we should also type a value to list price field).
技术分享
2.Create a sale order,and ensure ‘Source Type‘  is ‘External‘.
if source type is ‘Internal‘,it stand for that you will sale item from your stock.
if source type is ‘External‘,it stand for that you will sale item from other supplier.(Drop ship Way)
技术分享

3.The Purchase Release program passes information about eligible drop-ship order lines to Oracle Purchasing.The interface table which gets populated is
po_requisitions_interface_all
技术分享

4.After Purchase Release has completed successfully, run Requisition Import in Oracle Purchasing to generate purchase requisitions for the processed order lines. The Requisition Import program reads the table po_requisitions_interface_all validates your data, derives or defaults additional information and writes an error message for every validation that fails into the po_interface_errors table.The validated data is then inserted into the requisition base tables po_requisition_headers_all,po_requisition_lines_all,po_requisition_distributions_all.Then use autocreate PO fuctionality to create purchase orders and then perform receipts against these purchase orders
技术分享
After requisition import,In PR summary form,Try to find your PR.
技术分享
技术分享
But can Not find my PR.
Execute below query,
SELECTe.error_message
FROM   po_requisitions_interface_all i, PO_INTERFACE_ERRORS e
WHERE   i.TRANSACTION_ID=e.INTERFACE_TRANSACTION_IDAND item_id =25875
Error is:This item is missing a list price in the item master setup window. Please enter a list price greater than zero (0) in the item master.
Then go back to Master item form,type a value to List price,
技术分享

Becasue Req Import does not pick up interface records that previously failed.we also need updateprocess_flag from ‘ERROR‘ to ‘FUTURE‘.
Script like:
update po_requisitions_interface_allset process_flag=‘FUTURE‘where item_id=25875
Then re-run Requisition Import request.PR got generated sucessfully.
技术分享
5.Auto create PO
技术分享
6.PO approve
技术分享
7.Receipt&Delivery
技术分享
9.After receipt,a sale order issue txn will automaticlly generate.
技术分享
Sale order line is closed.
技术分享

Once customer receipt the PO,Then you can take the AR which created by SO to customer,
Customer will give amount 1350 to you
转载请注明出处:http://blog.csdn.net/pan_tian/article/details/7432647

 

[OM]Dropship SO(直发/直运订单)的流程

标签:

原文地址:http://www.cnblogs.com/pompeii2008/p/5692487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!