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的更多相关文章
随机推荐
- django通过添加session来保存公共变量
有时候我们需要所有页面都使用同一个变量,比如用户登录信息.那不可能render每一个页面时都去传递一个变量,会非常麻烦 而用session可以解决这个问题 web的session可以通过reque ...
- IronPython 的几个问题
1.在脚本中使用datagridview.Rows[i].Cells[1].Value并将其转换为string时,遇到int类型 有时可是直接使用.toString()转换为字符 有时必须采用str( ...
- vue element upload上传、清除等
如果项目中可以使用file-list,那我们可以点击file-list删除文件列表: 有时候项目中是不要这个文件列表的,所以在上传成功以后,文件列表一直存在,要重新上传就必须刷新页面,所以我们需要手动 ...
- flash Air 在同一个目录下面创建txt,写入字
import flash.filesystem.*; var file:File=new File(File.applicationDirectory.nativePath + '/HelloWorl ...
- pta l2-6(树的遍历)
题目链接:https://pintia.cn/problem-sets/994805046380707840/problems/994805069361299456 题意:给出一个二叉树的结点数目n, ...
- codeblocks安装(自带gcc编译器)
下载安装自带c编译器的的codeblocks. 网址:http://www.codeblocks.org/downloads/26 自带gcc编译器的版本 codeblocks-16.01mingw- ...
- NumPy 矩阵库(Matrix)
NumPy 矩阵库(Matrix) NumPy 中包含了一个矩阵库 numpy.matlib,该模块中的函数返回的是一个矩阵,而不是 ndarray 对象. 一个 的矩阵是一个由行(row)列(col ...
- 对话框 AlterDialog
AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle("尊敬的用户"); bu ...
- Intellij Idea创建Android项目
创建工程前请已下载安装好了Intellij Idea和Android SDK. Intellij idea 2016.3.2 步骤 Android SDK设置 在FIle –> Other Se ...
- 理解Backtracking
Backtracking is an algorithm for finding all solutions by exploring all potential candidates. If the ...