博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Axapta: get inventory quantity on hand Form
阅读量:5046 次
发布时间:2019-06-12

本文共 689 字,大约阅读时间需要 2 分钟。

As we known, in AR/AP module->Purch/Sales Line Button->Inventory->Onhand button.

in Invent module->On hand button

When you click this button, you can get quantity information on hand of an item.

When you created a new form included one or more item. How can i implement the function above? or How can get its quantity on hand?

 

Try it:

 

MenuFunction mf = new MenuFunction(menuItemDisplayStr(InventOnHandItem), MenuItemType::Display);

Args args = new Args();
super();

args.caller(element);

args.record(InventTable::find(Table1.Field1));  //Your datesource.itemid
mf.run(args);

 

 

posted on
2008-11-20 18:25 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/JackyXu1981/archive/2008/11/20/1337887.html

你可能感兴趣的文章
时间>金钱
查看>>
元数据元素
查看>>
Visual Studio Code 构建C/C++开发环境
查看>>
web自己主动保存表单
查看>>
一个小的日常实践——高速Fibonacci数算法
查看>>
创建与删除索引
查看>>
java的基本数据类型
查看>>
机器学些技法(9)--Decision Tree
查看>>
静态页面复习--用semantic UI写一个10min首页
查看>>
在Windows下安装64位压缩包版mysql 5.7.11版本的方法
查看>>
drf权限组件
查看>>
输入月份和日期,得出是今年第几天
查看>>
利用mysqldump备份mysql
查看>>
Qt中子窗口全屏显示与退出全屏
查看>>
使用brew安装软件
查看>>
[BZOJ1083] [SCOI2005] 繁忙的都市 (kruskal)
查看>>
吴裕雄 python 机器学习——数据预处理嵌入式特征选择
查看>>
Centos6.4安装JDK
查看>>
201521123069 《Java程序设计》 第4周学习总结
查看>>
线性表的顺序存储——线性表的本质和操作
查看>>