我试图弄清楚如何使用Mulesoft中的NetSuite连接器从返回的搜索有效负载中获取值。
每当我使用这个连接器时,它返回List<Map<String, Object>>
的输出,我不确定是否有办法使用DataWeave并映射返回的值,因为这种类型的输出。
有没有办法实际获取此List的组件,并使用Dataweave将其映射到其他组件?
在一个示例中,我使用#[payload.hasNext() ? 'Employee Found: ' + payload.next().get('internalId') : 'Employee Not Found']
抓取搜索结果记录的internalId,我可以成功获取该值。
在我尝试将该internalId与NetSuite连接器“获取记录”功能一起使用的另一种情况下,我尝试以相同的方式输入internalId参数payload.next().get('internalId')
并获得如下错误。
<netsuite:get-record config-ref="NetSuite_Login_Auth" internalId="#[payload.next().get('internalId')]" type="EMPLOYEE" doc:name="NetSuite"/>
错误:
消息:无法调用getRecord。有效载荷
:org.mule.streaming.ConsumerIterator@20969555有效载荷类型: org.mule.streaming.ConsumerIterator元素: / streamMigrateAccountToCustomer /处理器/ 10/0/1/0/1 / searchEmployeeByEntityId /子处理器/ 3/1/0 @sfdc-netsuite-api元素XML: -------------------------------------------------- ------------------------------ Root异常堆栈跟踪:java.util.NoSuchElementException at org.mule.streaming.AbstractConsumer.consume(AbstractConsumer.java:70) at org.mule.streaming.ConsumerIterator.next(ConsumerIterator.java:60) 在sun.reflect.GeneratedMethodAccessor148.invoke(未知来源)at sun.reflect.DelegatingMethodAccessorImpl.invoke(未知来源)at java.lang.reflect.Method.invoke(未知来源)
答案 0 :(得分:1)
您可以获取值并将其传递到批处理执行中,并在批处理
中进行映射 <flow name="swt-ns-data-pull">
<dw:transform-message doc:name="Transform Message">
<dw:set-payload><![CDATA[%dw 1.0
%output application/java
---
{
basic: {
lastModifiedDate: {
operator: "AFTER",
searchValue: flowVars.modifiedDate
},
recordType: {
operator: "IS",
searchValue: "vendorPayment"
}
}
} as :object {
class : "com.netsuite.webservices.transactions.sales.TransactionSearch"
}
]]></dw:set-payload>
</dw:transform-message>
<logger message="started" level="INFO" doc:name="Logger"/>
<netsuite:search config-ref="NetSuite__Request_Level_Token_Based_Authentication" searchRecord="TRANSACTION" bodyFieldsOnly="false" fetchSize="1000" doc:name="NetSuite"/>
</flow>
制作内部批次
<batch:step name="RemittanceDetailCreation">
<json:object-to-json-transformer doc:name="Object to JSON"/>
<batch:set-record-variable variableName="rec" value="#[payload]" doc:name="Record Variable"/>
<dw:transform-message metadata:id="b7f75c92-a6c7-423a-8faa-cb9080914888" doc:name="Transform Message">
<dw:input-payload mimeType="application/json" doc:sample="C:\Users\sathekumar\Desktop\VedorPayment.json"/>
<dw:set-payload><![CDATA[%dw 1.0
%output application/csv header = false
%var NIC=sizeOf payload.applyList.apply
---
payload.applyList.apply map (( payment, indexOfPayment) ->{
NumberInCollection: '"' ++ NIC ++ '"' when NIC != null otherwise null,
ExternalPayableReferenceNumber: null,
ExternalSecondaryPayableReferenceNumber: null,
AdjustmentAmount: null,
DiscountAmount: '"' ++ payment.discAmt ++ '"' when payment.discAmt != null otherwise null,
GrossAmount: '"' ++ (payment.total as :string) ++ '"' when payment.total != null otherwise null,
NetAmount: '"' ++ (payment.amount as :string) ++ '"' when payment.amount != null otherwise null,
PayableDate: payload.PayableDate,
PayableReferenceNumber: paylaod.PR,
PayableType: null,
SecondaryPayableReferenceNumber: null,
SecondaryPayableType: null,
SupplierPayableReferenceNumber: null
})]]></dw:set-payload>
</dw:transform-message>
<byte-array-to-string-transformer doc:name="Byte Array to String"/>
<batch:commit size="1000" doc:name="Batch Commit">
答案 1 :(得分:0)
有没有办法实际获取此List的组件,并使用Dataweave将其映射到其他组件?
目前无法实现。 搜索操作返回Map<String, Object>
的列表,没有任何其他元数据,因此DataWeave无法识别包含哪些组件。我不确定这是否会响应NetSuite SOAP API的限制,或者它还没有在连接器中实现。
在我尝试将该internalId与NetSuite连接器“获取记录”功能一起使用的另一种情况下,我尝试以相同的方式输入internalId参数payload.next()。get('internalId')并获得错误如下。
搜索操作有效,因为它是一个分页操作,它将有效负载包装在ConsumerIterator
对象中。但是,获取记录未分页,只返回Map<String, Object>
。因此,您应该可以通过调用payload.get('internalId')
来获取该值。