AX_Args
Args args;
FormRun formRun;
;
args = new Args();
args.name(formstr(FormName));
args.caller();
args.record();
formRun = classfactory.formRunClass(args);
formRun.init();
formRun.run();
formRun.dataSource().findRecord(common);
formRun.wait(); localSalesLine = element.args().record();
localSalesLine.ItemId = ctrlItemId.valueStr();
localSalesLine.dataSource().object(fieldNum(SalesLine, ItemId)).modified(); if (_args && _args.dataset() == bomCosTGroup.TableId)
{
if (_args.record().isFormDataSource())
{
formDataSource = _args.record().dataSource();
for(caller = formDataSource.getFirst(true) ? formDataSource.getFirst(true): _args.record();
caller;
caller = formDataSource.getNext())
{
info(caller.CostGroupId);
info("test");
}
}
}t. Args args = new Args();
;
args.record(wmsShipment);
args.caller(element);
args.parmObject(wmsShipmentOption);
new MenuFunction(menuitemactionstr(SalesFormLetter_PackingSlip), MenuItemType::Action).run(args);
AX_Args的更多相关文章
随机推荐
- 《xss跨站脚本剖析与防御》实验笔记
1.书籍<xss跨站脚本剖析与防御>上介绍的xss测试代码 <img src="javascrpt:alert('xss');">, <table b ...
- cupp字典生成器使用
下载: clone git https://github.com/Mebus/cupp.git
- ASP.NET 登录验证 ihttpmoudle
问题: 1.iis版本不同(IIS7.0,应用程序池采用的是集成模式,换成经典模式才起作用.) 在 IIS 7 以下的版本中,应用以下配置: <system.web> <httpMo ...
- zookeeper报错: org.I0Itec.zkclient.exception.ZkMarshallingError: java.io.EOFException
zookeeper报错: org.I0Itec.zkclient.exception.ZkMarshallingError: java.io.EOFException 主要因为是没有序列化. 可以使用 ...
- Django项目的创建与管理和pycharm与Github的秘密
随笔 - 174 文章 - 21 评论 - 19 Django项目创建与管理 1.主题 这部分教程主要介绍如何通过Pycharm创建.管理.运行一个Django工程.对于Django模块的相关 ...
- 最近读jdk源码一些基础的总结(有待后续深入)
第一点:java.lang 1.Object类,hashCode()方法,equals()方法,clone()方法,toString()方法,notify()和notifyAll()方法,wait() ...
- 100-days: Five
Title: Feel better now ? The rise and rise of the anxiety economy(焦虑经济) rise and rise 一直上升 anxiety n ...
- windows 2012安装不了KB2919355
直接安装KB2919355会报错 “此更新不适用于你的计算机” 此时应先安装 KB2919442 https://www.microsoft.com/zh-cn/download/confirmati ...
- [leetcode]123. Best Time to Buy and Sell Stock III 最佳炒股时机之三
Say you have an array for which the ith element is the price of a given stock on day i. Design an al ...
- RPC 框架之 Goole protobuf
Goole 的 protobuf 即 Protocol Buffers 是一个很好的RPC 框架,支持 c++ python java 接下来进行官方文档的解读,然后你会对protobuf 会有 ...