首页 > 库存事务处理现有量检查

库存事务处理现有量检查

 --检查现有量CURSOR c_lot_number(l_organization_id   NUMBER,p_inventory_item_id IN NUMBER) ISSELECT mln.lot_number, mln.expiration_dateFROM mtl_lot_numbers mlnWHERE mln.inventory_item_id = p_inventory_item_id-- AND mln.status_id = 1 --有效合格批次AND mln.organization_id = l_organization_id; --需要添加合格字段FOR rec_loc IN c_lot_number(l_organization_id   => rec_header.organization_id,p_inventory_item_id => rec_line.inventory_item_id) LOOPinv_quantity_tree_pub.query_quantities(p_api_version_number => 1.0,p_init_msg_lst => NULL,x_return_status => l_return_status,x_msg_count => l_msg_count,x_msg_data => l_msg_data,p_organization_id => rec_header.organization_id, --仓库IDp_inventory_item_id => rec_line.inventory_item_id, --物料IDp_tree_mode => 3,p_is_revision_control => FALSE,p_is_lot_control => TRUE,p_is_serial_control => FALSE,p_revision => NULL,p_lot_number => rec_loc.lot_number,p_lot_expiration_date => rec_loc.expiration_date,p_subinventory_code => rec_header.subinventory_code, --子库codep_locator_id => NULL, --rec_loc.locator_id,p_cost_group_id => NULL,p_onhand_source => inv_quantity_tree_pvt.g_all_subs,x_qoh => l_qoh, --现有量x_rqoh => l_atp_qty,x_qr => l_qr,x_qs => l_qs,x_att => l_att,x_atr => l_atr);
end loop;



 

转载于:https://www.cnblogs.com/wanghang/p/6299526.html

更多相关:

  •     先吐为敬!   最近心血来潮研究nodejs如何完成微信支付功能,结果网上一搜索,一大堆“代码拷贝党”、“留一手”、“缺斤少两”、“不说人话”、“自己都没跑通还出来发blog”、“各种缺少依赖包”、“各种注释都没有”、“自己都不知道在写什么”的程序大神纷纷为了增加自己博客一个帖子的名额而发布了各种千奇百�...

  • 阅读ceph源码过程中需要明确当前操作是由哪个线程发出,此时需要根据线程id来确认线程名称 C++获取线程id是通过系统调用来直接获取 函数描述 头文件: 函数名称:syscall(SYS_gettid) 该函数直接返回了一个pid_t int类型的数字,即为当前线程id 此外函数pthread_s...

  • 面试题 分库分表之后,id 主键如何处理? 面试官心理分析 其实这是分库分表之后你必然要面对的一个问题,就是 id 咋生成?因为要是分成多个表之后,每个表都是从 1 开始累加,那肯定不对啊,需要一个全局唯一的 id 来支持。所以这都是你实际生产环境中必须考虑的问题。 面试题剖析 基于数据库的实现方案 数据库自增 id 这个就是说你的...

  • ORM操作    单表、一对多表操作 1 from django.db import models 2 3 4 class UserGroup(models.Model): 5 title = models.CharField(max_length=32) 6 7 8 class UserInfo(m...

  • 建立如下表: 建表语句: class表创建语句 create table class(cid int not null auto_increment primary key, caption varchar(32) not null)engine=innodb default charset=utf8;student表创建语句 c...

  •     组件pages/components/sg-hour-range.vue