我是靠谱客的博主 慈祥犀牛,这篇文章主要介绍标准库存现有量界面取值,现在分享给大家,希望可以做个参考。

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;

最后

以上就是慈祥犀牛最近收集整理的关于标准库存现有量界面取值的全部内容,更多相关标准库存现有量界面取值内容请搜索靠谱客的其他文章。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部