我是靠谱客的博主 慈祥犀牛,最近开发中收集的这篇文章主要介绍标准库存现有量界面取值,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

DECLARE
l_row_index
BINARY_INTEGER;
l_row_records jtf_grid_property.row_selection_type;
l_row_type
jtf_grid_property.row_interval_type;
l_rownumber
NUMBER;
p_org_id
NUMBER;
p_item_id
NUMBER;
p_subinv_code VARCHAR2(100);
BEGIN
l_row_records := jtf_grid.getrowselection('RESULTS.GRID');
/*
* If no records are selected then do nothing.
*/
--fnd_message.debug('l_row_records:'||l_row_records.COUNT);
IF l_row_records.count = 0 THEN
RETURN;
END IF;
l_row_index := l_row_records.first;
l_row_type
:= l_row_records(l_row_index);
l_rownumber := l_row_type.startrow;
--库存组织
p_org_id := jtf_grid.getcolumnnumbervalue('RESULTS.GRID',
l_rownumber,
'ORG_ID');
--物料id
p_item_id := jtf_grid.getcolumnnumbervalue('RESULTS.GRID',
l_rownumber,
'ITEM_ID');
--子库存编码
p_subinv_code := jtf_grid.getcolumncharvalue('RESULTS.GRID',
l_rownumber,
'SUBINVENTORY_CODE');
END;

最后

以上就是慈祥犀牛为你收集整理的标准库存现有量界面取值的全部内容,希望文章能够帮你解决标准库存现有量界面取值所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(72)

评论列表共有 0 条评论

立即
投稿
返回
顶部