Accesschildrecordcreatedfromasublistontheparent
创始人
2024-05-16 01:23:44
0

从父列表中访问创建的子记录。

子记录是在父记录的子列表中创建的。要访问子记录,可以使用以下步骤:

  1. 获取对父记录的引用。
  2. 获取子列表的子列表ID。
  3. 使用子列表ID创建记录对象。
  4. 使用记录对象访问子记录的字段。

以下示例代码演示了如何访问在父列表中创建的子记录:

/**
* Create a new child record and access its field
*/

//Get the current sales order record
var mySalesOrder = nlapiLoadRecord('salesorder', 1234);

//Get the internal ID of the first item on the Sales Order
var itemId = mySalesOrder.getLineItemValue('item', 'item', 1);

//Create a new Inventory Adjustment record
var adjustment = nlapiCreateRecord('inventoryadjustment');

//Set the subsidiary and location to match the sales order
adjustment.setFieldValue('subsidiary', mySalesOrder.getFieldValue('subsidiary'));
adjustment.setFieldValue('location', mySalesOrder.getFieldValue('location'));

//Add a new line item for the item on the sales order
adjustment.selectNewLineItem('inventory');
adjustment.setCurrentLineItemValue('inventory', 'item', itemId);
adjustment.setCurrentLineItemValue('inventory', 'adjustqtyby', -1);
adjustment.setCurrentLineItemValue('inventory', 'reason', 'Sales Order');
adjustment.commitLineItem('inventory');

//Save the new adjustment record
var adjustmentId = nlapiSubmitRecord(adjustment);

//Load the newly created child record
var adjustmentRecord = nlapiLoadRecord('inventoryadjustment', adjustmentId);

//Access a field on the child record
var quantity = adjustmentRecord.getLineItemValue('inventory', 'adjustqtyby', 1);

//Log the quantity value
nlapiLogExecution('DEBUG', 'Quantity', quantity);

相关内容

热门资讯

闲鱼搜索规则与技巧 闲鱼最新特... 在闲鱼这个二手交易平台上,有很多用户都希望能够找到一些特殊的东西,比如一些罕见的收藏品、独特的手工艺...
玻璃硬盘原理图 玻璃硬盘原理 玻璃硬盘,又称为磁头悬浮硬盘(Magnetic Head Flying Disk,MHFD),是一种...
家里监控最长能保存多少天的记录... 家里监控一般保存多久 随着科技的发展,家庭监控系统已经成为了许多家庭的必备设备,它不仅可以帮助我们...
别人打电话听不见我说话怎么回事... 当我们在使用手机时,可能会遇到别人打电话过来听不见声音的情况,这种情况可能是由多种原因导致的,下面我...
QQ音乐提示代理模式可能无法正... QQ音乐提示代理模式可能无法正常访问,如上图所示,是怎么回事呢? 这个可能和你的网络设置有关系,首先...
ps5手柄可用手机快充充电吗 ... PS5手柄,即PlayStation 5的DualSense手柄,是索尼公司为PlayStation...
华为tag有用吗 华为tag-... 华为Tag是华为手机中的一种功能,它可以帮助用户更好地管理自己的手机数据和应用,通过使用华为Tag,...
a100显卡对应的cuda版本 在进行GPU加速的编程中,CUDA是常用的架构和平台,其版本和显卡型号之间存在着一定的对应关系。本篇...
frp内网穿透配置 HTTP ... HTTP 类型的代理相比于 TCP 类型,不仅在服务端只需要监听一个额外的端口 vhost_http...
hwid是永久激活吗 hwid... HWID,全称Hardware ID,是硬件识别码的缩写,它是计算机硬件制造商为了区分每一台设备而分...