Nat
09/21/2022, 7:33 PMCraig
09/21/2022, 8:53 PMSimon
09/21/2022, 9:52 PMTyler Lamparter
09/22/2022, 5:08 AMAhmed Khalid
09/22/2022, 9:38 AMSean Murphy
09/22/2022, 1:34 PMLincecum
09/22/2022, 5:33 PMTO_DATE
function in the formula, but when I hardcode TO_DATE('2022/03', 'YYYY/MM')
is worked, but if I pulled from record TO_DATE({custrecord_yyyymm}, 'YYYY/MM')
it failed 😞
Not sure where I did wrong...Nilesh Patil
09/22/2022, 6:22 PMvar swm_shipping = newRecord.getValue({fieldId:'custbody_swm'});
swm_shipping = String(swm_shipping);
log.debug('swm_shipping',swm_shipping);
var swm_ship = swm_shipping.includes("ups");
var swm_ship1 = swm_shipping.includes("UPS");
log.debug('swm_ship',swm_ship);
log.debug('swm_ship1',swm_ship1);
hdsea
09/22/2022, 6:27 PMkevinharwood
09/22/2022, 7:46 PMlastModified
timestamp is not updated for the sales order transaction when the line commitment updates. Does this sound correct? Looks like Stitch uses the lastModified
field to do delta syncs, and these updates then get missed.Jacob D
09/22/2022, 8:06 PMDan Warner
09/22/2022, 9:30 PMahmed saeed moawoad elmasry
09/23/2022, 5:57 AMscrenshaw
09/23/2022, 3:51 PMeminero
09/23/2022, 4:35 PMrmendoza
09/23/2022, 7:50 PMNicole
09/23/2022, 9:03 PMmg2017
09/25/2022, 9:21 AMalien4u
09/25/2022, 4:47 PMCraig
09/26/2022, 8:29 AMCraig
09/26/2022, 8:30 AMKevin
09/26/2022, 8:38 PM[com.netsuite.suitescript.scriptobject.ScriptNullObjectAdapter
] ?Shawn Talbert
09/26/2022, 9:38 PMcsvTask.submit()
getting back FAILED_TO_SUBMIT_JOB_REQUEST_1
and date formatting message something like Failed to submit job request: Date field not in your preferred date format for field "Date" : 57 You have entered an Invalid Field Value 09/21/2022 for the following field: trandate : 4 You have entered an Invalid Field Value 09/22/2022 for the following field: trandate : 53.
mg2017
09/27/2022, 3:51 PMobj_result['binnumber'] = result.getText({
name: 'binnumber',
join: 'inventoryDetail'
});
obj_result['issueinventorynumber'] = result.getText({
name: 'issueinventorynumber',
join: 'inventoryDetail'
});
obj_result['tobinnumber'] = result.getText({
name: 'tobinnumber',
join: 'inventoryDetail'
});
nathanw
09/27/2022, 10:42 PMWatz
09/28/2022, 8:50 AMSimon
09/28/2022, 1:32 PMWatz
09/28/2022, 1:35 PM/**
* @NApiVersion 2.1
* @NScriptType fiConnectivityPlugin
* @NModuleScope SameAccount
*/
define([],function(){
function getConfigurationIFrameUrl(context) {
log.debug('start getConfigurationIFrameUrl')
context.configurationIFrameUrl = "/app/site/hosting/scriptlet.nl?script=2090&deploy=14817&configurationId=abc"// + configurationId;
}
function getAccounts(context) {
log.debug('start getAccounts')
}
function getTransactionData(context) {
log.debug('start getTransactionData')
}
return {
getConfigurationIFrameUrl: getConfigurationIFrameUrl,
getAccounts: getAccounts,
getTransactionData: getTransactionData
}
});
amy
09/28/2022, 3:34 PMLincecum
09/28/2022, 4:13 PM