ディスカッション

スイート全体に組み込まれたAI機能は、データをより迅速に分析し、より優れた意思決定を促進する独自の考察を生成できるようにすることで、生産性を向上させ、リーダーに利便性をもたらします。オラクルのAI機能がどのように役立つかについては、これらのオンデマンド・ウェビナーをご覧ください。

AIを用いた自動化で請求書処理を合理化

AIを用いた考察を使用して、計画と予測を迅速化
NetSuiteの保存検索やレポートをマスターするための究極のガイドである分析センターを使用して、データの力を最大限に活用しましょう。複雑さを単純化し、組織の真の可能性を解き放ちます。今すぐ分析センターに参加して、新たな高みを目指しましょう!
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
No Limits. Just possibilities.
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Celebrate Your 2025 Community Recap & Achievements!

We’re excited to announce that the 2025 Community Recap is now available! This special recap highlights the amazing contributions and achievements of our members over the year and celebrates the collective success of our community.
Check your personalized recap to see the impact you made in 2025 and how your efforts helped shape our community’s growth and success.

View Your 2025 Community Recap

Thank you to everyone for your passion, collaboration, and support. Here’s to building an even stronger community together in the year ahead!
Staying Connected During the Holidays

Season’s greetings to you and yours! As we head into the holidays (December 24 – January 4), we want to take a moment to celebrate the incredible strength and collaboration within our community. Even during the break, you can continue to benefit from connecting with peers, searching related threads, posting your questions, and marking helpful replies as “Accepted” in the Support Community.

Please note our dedicated team will be on reduced coverage during this time, and regular responsiveness will resume on January 5. Wishing you a joyful and restful holiday season!

-The NetSuite Support Community Team

SuiteScriptを使用して、開始日と終了日に基づいて顧客に関連付けられたすべての請求書を一覧表示し、サブリストに追加する

編集済:Jun 2, 2025 2:48PM SuiteCloud / カスタマイズ

適用

製品: NetSuite 2021.1

シナリオ

SuiteScriptを使用して、開始日と終了日をフィルターとして使用して、顧客のすべての請求書を取得したい。

解決策

この特定の記事では、カスタムレコードとスクリプトの両方を利用しています。まず、以下の手順に従ってカスタムレコードを作成する必要があります。

  1. カスタマイズゼーション> リスト、レコード、およびフィールド> レコードの種類プ> 新規作成に移動します。カスタムレコードのタイトルを入力して保存します。
  2. カスタムレコードを再度編集し、カスタムレコードの種類ページで新しいフィールドをクリックします
  3. 開始日(種類:日付)と終了日(種類:日付)のフィールドを追加します
  4. 保存します

次に、スクリプトを使用する必要があります。ここでは、ユーザーイベントスクリプトとクライアントスクリプトの両方を使用します。この実装では、1つのファイルがユーザーイベントスクリプトとクライアントスクリプトの両方に使用されます。次のコードスニペットを確認してください。

ユーザーイベントスクリプト:

function beforeLoad(type, form, response)
{
    if(type == "create")
    {
        form.setScript('customscript166');
        var orders = form.addSubList('custpage_orders', 'inlineeditor', 'Orders');
        orders.addField('custpage_check','checkbox', 'Select');
         orders.addField('custpage_ordernum','select', 'Order#','transaction').setDisplayType('disabled');
         orders.addField('custpage_invoiced','date', 'Invoiced').setDisplayType('disabled');
         orders.addButton('custpage_customerinvoices', 'Search Invoices ', 'search_invoices()');
    }
}



クライアントスクリプト:

function search_invoices()
{
    	var customer = nlapiGetFieldValue('custrecord26');
	var startdate = nlapiGetFieldValue('custrecord23');
  	var enddate = nlapiGetFieldValue('custrecord24');

    	if(customer != null && customer != '')
    	{
        	var filter = new Array();
	        var columns = new Array();

        	filter[0] = new nlobjSearchFilter('entity', null, 'anyof', customer);
	        filter[1] = new nlobjSearchFilter('mainline', null, 'is', 'T');
        	filter[2] = new nlobjSearchFilter('trandate', null, 'within', [startdate, enddate]);

	  

ようこそ!

サインイン

完全な詳細を表示するには、サインインしてください。

登録

アカウントがありませんか?ここをクリックして始めましょう!

リーダーボード

コミュニティの達人

第4四半期 (Oct-Dec 2025年)

今週のリーダー

今月のリーダー

歴代リーダー