ディスカッション
スイート全体に組み込まれたAI機能は、データをより迅速に分析し、より優れた意思決定を促進する独自の考察を生成できるようにすることで、生産性を向上させ、リーダーに利便性をもたらします。オラクルのAI機能がどのように役立つかについては、これらのオンデマンド・ウェビナーをご覧ください。
AIを用いた自動化で請求書処理を合理化
AIを用いた考察を使用して、計画と予測を迅速化
AIを用いた自動化で請求書処理を合理化
AIを用いた考察を使用して、計画と予測を迅速化
Hello Community! Josh Maxwell, a User Experience Researcher for NetSuite Foundation has fun a question for you. Imagine for a moment that NetSuite had an assistant like Alexa or Siri. What would you ask of your NetSuite assistant? Use this survey link to share your top questions to the assistant.
Here are some examples to get your creative juices flowing.
"Did I pay vendor John Doe last month?"
"Take me to my largest sales order for this month."
"What invoices haven't been paid yet?"
Here are some examples to get your creative juices flowing.
"Did I pay vendor John Doe last month?"
"Take me to my largest sales order for this month."
"What invoices haven't been paid yet?"
NetSuiteの保存検索やレポートをマスターするための究極のガイドである分析センターを使用して、データの力を最大限に活用しましょう。複雑さを単純化し、組織の真の可能性を解き放ちます。今すぐ分析センターに参加して、新たな高みを目指しましょう!
注文書のアイテムに配送の保管棚番号を追加する
適用
製品: NetSuite 2021.2
シナリオ
注文書のアイテムに配送の保管棚番号を追加します。
解決策
注文書のアイテム・サブリストに保管棚番号を追加するには、以下の手順を実施します。
カスタマイゼーション > リスト、レコード、およびフィールド > トランザクション・ライン・フィールド > 新規 へ移動し、注文書へ追加するカスタムのトランザクション・ライン・フィールドを作成します。次の値も設定します。
- ラベル:保管棚番号
- ID: _bin_number
- 種類:テキスト・エリア
- 値を保存:マークします
- 次に適用:販売アイテム
- 保存を押下します
スクリプトのレコードを作成します。
- カスタマイゼーション > スクリプト > スクリプト > 新規 へ移動します
- 後述のサンプルコードのファイルをアップロードします
- スクリプトレコードを作成のボタンを押下します
- 名前を入力します
- 保存を押下します
デプロイメントレコードを作成し、次の値を設定します
- 次に適用:配送
- ステータス:テスティング/リリース済
- ロール:すべてを選択をマークします
- 保存を押下します
以下のサンプルコードを参照し、「*.js」ファイルとして保存します。
Client SuiteScript 2.0:
function saveRecord(scriptContext) { var itemFulfillRec = scriptContext.currentRecord
var itemFulfillCreatedFrom = itemFulfillRec.getValue({ fieldId: 'createdfrom' })
var itemCount = itemFulfillRec.getLineCount({ sublistId: 'item' })
//make sure to define the N/record module
//this will load the Sales Order where the item fulfillment is created
var soRec = record.load({
type: record.Type.SALES_ORDER,
id: itemFulfillCreatedFrom
})
for (var i = 0; i < itemCount; i++) {
//pulling the inventory detail subrecord in itemfulfillment
var inventoryDetailRec = itemFulfillRec.getSublistSubrecord({
sublistId: 'item',
fieldId: 'inventorydetail',
line: i
})
//pulling the binnumber text from the inventory detail sub record
var binNumber = inventoryDetailRec.getSublistText({
sublistId: 'inventoryassignment',
fieldId: 'binnumber',
line: 0
})
//setting the bin number value in the sales order custom field
タグ付けされた:
0