ContributionsMost RecentMost LikesSolutionsRe: How to get data from NetSuite GET/Search Snap by passing specific input field Hi Vikas2022 , CustomerSubsidiaryRelationship object is standard NS object, it seems the WSDL year might be not correct. First please edit the NS account and validate the XSDL year of your account, it should be 2023 (Refer pic-1). and then try. You can also verify your changes if you open one NS create snap and check this object is coming or not. Refer -pic2 Re: NetSuite Update SNAP updating unchanged fields Hi Vikas2022 Before updating , pull the internal id of existing address and try to update. Re: NetSuite Update SNAP updating unchanged fields Hi Vikas2022 In such case you can validate your request from NS (Setup -> Integration _> SOAP Webservices log ). If your request doesn't contain that change then there would be chance of some NS internal script rans behind the scene while you update that particular NS object. Ask NS team to validate. I have faced same kind of issue before. Re: NetSuite Update SNAP updating unchanged fields Vikas2022 , As you already mapped external id, Did you observe the same behavior with NS Upsert Snap ? Re: Reduce an array of objects into a single object with the sum of fields as the result vgautam64 As I can't copy your json, have created my own, you can use it- Data ==> { "carList": [ { "color": "purple", "type": "minivan", "debit_amount": 50, "credit_amount": 7 }, { "color": "red", "type": "station wagon", "debit_amount": 100, "credit_amount": 5 }, { "color": "black", "type": "toyota", "debit_amount": 200, "credit_amount": 5 }, { "color": "blue", "type": "Maruti", "debit_amount": 300, "credit_amount": 5 } ] } 1. mapper : $carList.map((val,index)=>{"sum_debit_amount": jsonPath($, "carList[*].debit_amount").reduce((cur,acc)=>cur+acc),"sum_credit_amount" : jsonPath($, "carList[*].credit_amount").reduce((cur,acc)=>cur+acc)}.extend(val)).shift() Re: Unable to merge the objects of an array as a single object Hi vgautam64 , I am unable to attached pipeline. so give you an example- Data: { "carList": [ { "color": "purple", "type": "minivan", "registration": "2017-01-03", "capacity": 7 }, { "color": "red", "type": "station wagon", "registration": "2018-01-03", "capacity": 5 }, { "color": "black", "type": "toyota", "registration": "2017-01-03", "capacity": 5 }, { "color": "blue", "type": "Maruti", "registration": "2018-01-03", "capacity": 5 } ] } 1. use mapper for adding index : $carList.map((val,index)=> val.mapKeys((v,k)=> k+(index+1))) : $carList (target path of mapper) 2. use another mapper to merge in single array obejct : sl.ensureArray($carList.reduce((curr,acc)=>curr.extend(acc),{} )) Re: Filter json array of objects by another json array of objects vfantidou Please use below expression-. From your example seems there are some typo (2nd record in input0 should have ID not ID_NUMERIC). If it's not typo you need make null safe in mapper. input0.filter((val,index)=> $filterData.find((ele)=> ele['ID'] ==val['ID'] ) != null ) Re: Configuring Amazon MQ credentials in RabbitMQ account Hi mohamadelmardin Check TLSv1.2 and try. For me it's working. Re: Impact of Snaplogic to Salesforce Connectivity for Cipher Changes | Salesforce Government Cloud Yes Diane. Sorry for the typo. 🙂 Re: Impact of Snaplogic to Salesforce Connectivity for Cipher Changes | Salesforce Government Cloud Hi @dmiller Did you get any update from Dev team ? Appreciate your help.
GroupsPartner User Group This area is for our partners to communicate with each other and with the SnapLogic Alliances team.0 Posts
Partner User Group This area is for our partners to communicate with each other and with the SnapLogic Alliances team.0 Posts