我想通過API列出船舶物品(UPS,FedEx等..)。正如它在Accounting > Shipping Items > List中所示。如何在NetSuite上列出運輸方式?
ItemFulfillment Record的文檔建議我使用操作GetSelectValue列出shipMethod可能值(與Ship Items相同)。
爲GetSelectValue(page 125)的文檔描述的SOAP請求,我需要使用:
<env:Body>
<platformMsgs:getSelectValue>
<fieldName fieldType="sales_salesOrder_shipMethod"/>
</platformMsgs:getSelectValue>
</env:Body>
但它不工作,似乎字段類型是錯誤的。
<soapenv:Fault>
<faultcode>soapenv:Server.userException</faultcode>
<faultstring>org.xml.sax.SAXException: fieldType not found on {urn:core_2013_2.platform.webservices.netsuite.com}GetSelectValueFieldDescription</faultstring>
<detail>
<ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">partners-java10005.bos.netledger.com</ns1:hostname>
</detail>
</soapenv:Fault>
我在哪裏可以找到正確的字段類型得到運送物品的清單?
但問題是什麼?請不要在沒有解釋的情況下發布代碼 – mjs