ディスカッション
スイート全体に組み込まれた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の保存検索やレポートをマスターするための究極のガイドである分析センターを使用して、データの力を最大限に活用しましょう。複雑さを単純化し、組織の真の可能性を解き放ちます。今すぐ分析センターに参加して、新たな高みを目指しましょう!
Suitescriptを使用して注文書が終了とされた後に電子メールを送信する
適用
製品: NetSuite 2021.1
シナリオ
トランザクションが終了に変更されるタイミングでスクリプトとワークフローは実行させることはできません。これは、Enhancement 216263に記載されています。
beforeLoadで実行されるユーザーイベントスクリプトを作成します。
注意: Enhancementについては次の記事をご参照ください。 10054 Voting for Enhancements.
解決策
SuiteScript 1.0:
function userEventBeforeLoad(type, form, request){ var id = nlapiGetRecordId(); //レコードIDを取得 var transactiontype = nlapiGetRecordType(); //レコードの種類を取得 var status = nlapiGetFieldValue('status'); //注文書のステータスを取得 var salesrep = nlapiGetFieldValue('salesrep'); //営業担当を取得 if (status == 'Closed' ) //ステータスが終了であることを確認 { nlapiSendEmail(nlapiGetContext().getUser(), salesrep, '終了済み注文書' + transactiontype + id , 'この注文書は終了ステータスをなっています' ); //電子メール送信 } }
SuiteScript 2.0:
/** * @NApiVersion 2.x * @NScriptType UserEventScript * @NModuleScope SameAccount */ define(['N/record','N/email'], function (record,email){ function beforeLoad(scriptContext) { var recId = scriptContext.request.parameters.id; var soRecord = record.load({ type: record.Type.SALES_ORDER, id: recId, }) var soStatus = soRecord.getValue({fieldId: 'status'}) var soSalesRep = soRecord.getValue({fieldId: 'salesrep'}) || 2 if(soStatus=='Closed'){
タグ付けされた:
0