CData Sync App は、NetSuite データをデータベース、データレイク、またはデータウェアハウスに継続的にパイプライン化する簡単な方法を提供し、分析、レポート、AI、および機械学習で簡単に利用できるようにします。
NetSuite コネクタはCData Sync アプリケーションから使用可能で、NetSuite からデータを取得して、サポートされている任意の同期先に移動できます。
Sync App アプリケーションの接続 ページに移動し、接続の追加 パネルで対応するアイコンを選択して、NetSuite への接続を作成します。NetSuite アイコンが利用できない場合は、Add More アイコンをクリックしてCData サイトからNetSuite コネクタをダウンロードおよびインストールします。
必須プロパティは[設定]タブにリストされています。[Advanced]タブには、通常は必要ない接続プロパティが表示されます。
SuiteTalk はNetSuite との通信に使用する、SOAP ベースのより古いサービスです。多くのエンティティを幅広くサポートし、挿入、更新、および削除を完全にサポートします。 しかしデータの抽出用ツールは低機能で、SELECT 時のパフォーマンスは極めて低いです。テーブルを結合するよい方法もありません。データのグループ化および集計はこのAPI からは利用できず、そのためこれらの操作をサポートするには、すべてをクライアントサイドで実行しなければなりません。
SuiteQL は新しいAPI です。サービスとのSQL ライクな通信方法を実現するため、結合の機能はより豊富になり、GROUP BY や集計機能もサポートします。 加えて、抽出したいカラムだけを取得する機能も完全にサポートします。そのため、データを抽出する際のパフォーマンスがSuiteTalk に比べて大幅に向上しています。ただし、サポートされるのはデータの抽出のみです。
どちらのAPI を接続に使用するかは、Schema で指定できます。データの取得だけであればSuiteQL を、取得と変更の両方が必要であればSuiteTalk の使用を推奨します。 それぞれのAPI で、次に説明する異なる接続オプションを利用可能です。
Sync App はNetSuite Web サービス経由でNetSuite と通信します。これは接続するすべてのユーザーが、NetSuite Web サービス経由で接続するためのAccountId 上の権限を持っている必要があることを意味します。 必須の権限と任意の権限についての詳細は、許可の設定 を参照してください。
Web サービス権限用のロールを作成または編集する
Note:このセクションの内容はSuiteTalk でのみ有効です。SuiteQL ではOAuth またはトークン認証が必須です。
2020.2以降、NetSuite はユーザーネームとパスワードでの接続をサポートしていません。Version が2020.2以下の値に設定されている場合、CData Sync App はユーザーネームとパスワードでの接続を引き続きサポートしますが、すべてのお客様が次に記載のOAuth とトークンベース認証 システムに移行することを推奨します。ユーザー名とパスワード情報をサポートするには、AuthScheme をBasic に設定してください。ただし新しいバージョンではこの機能が削除されているため、使用するにはVersion に過去のバージョンを手動で指定する必要があります。
Token Based Authentication(トークンベース認証)またはTBA は、SuiteTalk およびSuiteQL Schema のどちらでも使用可能です。TBA をサポートするにはAuthScheme をToken に設定してください。 トークンベース認証は、権限を持った管理者がOAuthClientId、OAuthClientSecret、OAuthAccessToken、および OAuthAccessTokenSecret をNetSuite UI 内で直接作成することで実行されます。この処理に関する詳細はNetSuite でアクセストークンを作成 を参照してください。
OAuth をサポートするにはAuthScheme をOAuth に設定してください。 NetSuite は1.0と2.0の2つのOAuth 認証を提供します。トークンベース認証は実際には、 OAuthAccessToken とOAuthAccessTokenSecret を実行時ではなくNetSuite UI 内で作成する、単なるOAuth 1.0です。OAuth 1.0は SuiteTalk およびSuiteQL の両方で利用可能です。OAuth 2.0はSuiteQL でのみ利用可能です。そのためOAuthVersion はデフォルで空であり、 Schema をSuiteTalk に設定した場合はOAuth 1.0が使用され、Schema をSuiteQL に設定した場合はOAuth 2.0が使用されます。 これはOAuthVersion 接続プロパティを明示的に設定することでオーバーライドでき、SuiteTalk とSuiteQL をどちらも使用する場合や、 SuiteQL をOAuth 1.0のみがサポートされていた以前のバージョンからアップグレードする際に有効です。
OAuthVersion は変更できますがAPI 側でサポートしていないため、 Schema をSuiteTalk に設定したとしても、SuiteTalk でOAuth 2.0を使用することはできません。
OAuth 経由で接続する方法についての詳細は、OAuth 認証の使用 を参照してください。
NetSuite はアカウント毎に一定数の同時リクエストのみ受け付け、通常デフォルトでは5ですが、接続毎に設定できます。 最大の同時リクエストがすでに使用されている際に他のリクエストを試行した場合、次の接続の際に「1つのセッションに対して、一度に1つのリクエストしか行うことができません」という内容のエラーが表示されるかもしれません。 CData Sync App はこの制限を考慮して、同時リクエスト制限を超えないように追加のリクエストを遅延させます。 ただし、アカウントに複数のマシンやアプリケーションから接続がある場合、この処理を適切に実行することができないことがあります。
OAuth では認証するユーザーにブラウザでNetSuite との通信を要求します。下記で説明するとおり、Sync App はさまざまな方法でこれをサポートします。
Schema がSuiteTalk に設定されている場合、OAuthClientId とOAuthClientSecret を取得するには、アプリを登録する必要があります。
Schema がSuiteTalk に設定されている場合、またはOAuthVersion 1.0を使用したい場合にOAuth 経由で接続するには、すべてのケースでカスタムOAuth アプリの作成が必須です。
カスタムアプリの作成については、カスタムOAuth アプリの作成 を参照してください。
OAuth 1.0 を使用する場合、次のセクションはSuiteTalk とSuiteQL の両方のスキーマに適用されます。
管理者がまだ使用できる古いモデルでは、直接NetSuite UI でトークンを作成して割り当てます。これにより、OAuth アクセストークンを生成するための通常の手順をスキップできます。 これは、アクセスの付与をより直接制御したい場合に望ましい場合がありますが、毎回UI で手動の手順を実行する必要があります。 代わりに、UI でトークンを作成するには次の手順に従います:
アクセストークンの作成後、前の手順で取得した値を使用して接続を行うことができます。次の接続プロパティを指定して接続します。
NetSuite にはCData Sync App で使用可能な許可が多数あります。ロールの許可は、 NetSuite の[設定]->[ユーザー/ロール]->[ロール管理]から設定できます。このページには許可のリストが2つあります。1つは最も一般的に必要とされる許可のリストで、その他の許可はより広いニーズをサポートするためのものです。 NetSuite は各バージョンで新しいエンティティや許可をサポートするため、CData から許可の包括的なリストを提供することが不可能である点、ご留意ください。
Note:以下の許可のほとんどは、ロールの[許可]->[設定]セクションにあります。
許可 | 使用用途 |
アクセストークンの管理 | トークンベース認証において、ユーザーにアクセストークンの作成を可能にします。 |
カスタム<種類>フィールド(ビュー) | 入力された種類のカスタムフィールドを閲覧可能にします。IncludeCustomFieldColumns と一緒に使用されます。 |
カスタムリスト(ビュー) | カスタムリストテーブルのメタデータを表示可能にします。IncludeCustomListTables と一緒に使用されます。 |
カスタムレコードの種類(ビュー) | カスタムレコードテーブルのメタデータを表示可能にします。IncludeCustomRecordTables と一緒に使用されます。 |
顧客(ビュー) | この許可は[許可]->[リスト]にあります。RESTlets で接続をテストするのに使用します。 |
削除済みレコード(ビュー) | 削除済みレコードの情報を取得するのに使用します。 |
アクセストークンでログイン | REST やSOAP サービスにトークンでのログインを可能にします。 |
REST Webサービス | Schema がSuiteQL に設定されている場合とRESTlets のサポートを含む、すべてのREST リクエストです。 |
SOAP Webサービス | Schema がSuiteTalk(デフォルト)に設定されている場合やテスト接続、カスタムフィールド用のリクエストを含む、すべてのSOAP リクエストです。 |
SuiteAnalytics Workbook(ビュー) | [許可]->[レポート]にあります。SuiteQL アクセスに必要です。 |
その他のカスタムフィールド(ビュー) | 「その他」の種類のカスタムフィールドを閲覧可能にします。IncludeCustomFieldColumns と一緒に使用されます。 |
ユーザーアクセストークン | トークンベース認証とOAuth 認証の使用 で、ユーザーにトークンの作成を可能にします。 |
セクション | 許可 | 使用用途(SuiteTalk スキーマ) | 使用用途(SuiteQL スキーマ) |
[許可]->[カスタムレコード] | [カスタムレコード名] | 入力されたカスタムレコードテーブルへアクセス | 入力されたカスタムレコードテーブルへアクセス |
[許可]->[リスト] | 勘定科目(Accounts) | Account テーブルへアクセス | Account テーブルへアクセス |
[許可]->[リスト] | 保管棚(Bins) | Bin テーブルへアクセス | Bin テーブルへアクセス |
[許可]->[リスト] | カレンダー(Calendar) | イベント許可と合わせて使い、CalendarEvent テーブルへアクセス | イベント許可と合わせて使い、CalendarEvent テーブルへアクセス |
[許可]->[リスト] | ケース(Cases) | SupportCase テーブルへアクセス | SupportCase テーブルへアクセス |
[許可]->[リスト] | クラス(Classes) | Classification テーブルへアクセス | Classification テーブルへアクセス |
[許可]->[リスト] | 連絡先(Contacts) | Contact テーブルへアクセス | Contact テーブルへアクセス |
[許可]->[リスト] | 通貨(Currency) | Currency テーブルへアクセス | Currency テーブルへアクセス |
[許可]->[リスト] | 顧客(Customers) | Customer テーブルへアクセス | Customer テーブルへアクセス |
[許可]->[リスト] | 部門(Departments) | Department テーブルへアクセス | Department テーブルへアクセス |
[許可]->[リスト] | ドキュメントとファイル(Documents and Files) | File とFolder テーブルへアクセス | File とFolder テーブルへアクセス |
[許可]->[リスト] | 従業員レコード(Employee Record) | Employee テーブルへアクセス | Employee テーブルへアクセス |
[許可]->[リスト] | イベント(Events) | カレンダー(Calendars)許可と合わせて使い、CalendarEvent テーブルへアクセス | カレンダー(Calendars)許可と合わせて使い、CalendarEvent テーブルへアクセス |
[許可]->[リスト] | アイテム(Items) | DiscountItem、InventoryItem、NonInventoryItem などのさまざまなitem テーブルへアクセス | Item テーブルへアクセス |
[許可]->[リスト] | 場所(Locations) | Location テーブルへアクセス | Location テーブルへアクセス |
[許可]->[リスト] | 通話(Phone Calls) | PhoneCall テーブルへアクセス | PhoneCall テーブルへアクセス |
[許可]->[リスト] | プロジェクトタスク(Project Tasks) | ProjectTask テーブルへアクセス | ProjectTask テーブルへアクセス |
[許可]->[リスト] | 連結子会社(Subsidiaries) | Subsidiary テーブルへアクセス | Subsidiary テーブルへアクセス |
[許可]->[リスト] | タスク(Tasks) | Task テーブルへアクセス | Task テーブルへアクセス |
[許可]->[リスト] | 仕入先(Vendors) | Vendor テーブルへアクセス | Vendor テーブルへアクセス |
[許可]->[トランザクション] | [カスタムトランザクション名] | 特定のカスタムトランザクションから、対応するTransaction テーブル経由でデータを取得可能に | 特定のカスタムトランザクションから、Transaction テーブル経由でデータを取得可能に |
[許可]->[トランザクション] | アセンブリ構成(Build Assemblies) | AssemblyBuild テーブルへアクセス | Transaction テーブルからBuild の種類へアクセス |
[許可]->[トランザクション] | 現金売上(CashSale) | CashSale テーブルへアクセス | Transaction テーブルからCashSale の種類へアクセス |
[許可]->[トランザクション] | 現金売上払戻(CashSaleRefund) | CashRefund テーブルへアクセス | Transaction テーブルからCashRfnd の種類へアクセス |
[許可]->[トランザクション] | 支払(Charge) | Charge テーブルへアクセス | Transaction テーブルからCardChrg の種類へアクセス |
[許可]->[トランザクション] | 小切手(Check) | Check テーブルへアクセス | Transaction テーブルからCheck の種類へアクセス |
[許可]->[トランザクション] | クレジットメモ(Credit Memo) | CreditMemo テーブルへアクセス | Transaction テーブルからCredit Memo の種類へアクセス |
[許可]->[トランザクション] | 預入(Deposit) | Deposit テーブルへアクセス | Transaction テーブルからDeposit の種類へアクセス |
[許可]->[トランザクション] | 仕入先クレジットを入力(Enter Vendor Credits) | VendorCredit テーブルへアクセス | Transaction テーブルからVendorCredit の種類へアクセス |
[許可]->[トランザクション] | 注文を配送(Fullfill Orders) | ItemFulfillments テーブルへアクセス | Transaction テーブルからItem Fulfillment の種類へアクセス |
[許可]->[トランザクション] | 請求書(Invoice) | Invoice テーブルへアクセス | Transaction テーブルからInvoice の種類へアクセス |
[許可]->[トランザクション] | 受領書(Item Receipt) | ItemReceipt テーブルへアクセス | Transaction テーブルからItemRcpt の種類へアクセス |
[許可]->[トランザクション] | 商談(Opportunity) | Opportunity テーブルへアクセス | Transaction テーブルからOpportunity の種類へアクセス |
[許可]->[トランザクション] | 発注書(Purchase Order) | PurchaseOrder テーブルへアクセス | Transaction テーブルからPurchOrd の種類へアクセス |
[許可]->[トランザクション] | 注文書(Sales Order) | SalesOrder テーブルへアクセス | Transaction テーブルからSalesOrd の種類へアクセス |
[許可]->[トランザクション] | 移動伝票(Transfer Order) | TransferOrder テーブルへアクセス | Transaction テーブルからTrnfrOrd の種類へアクセス |
[許可]->[トランザクション] | 仕入先請求書承認(Vendor Bill Approval) | VendorCredit テーブルへアクセス | Transaction テーブルからVendorCredit の種類へアクセス |
[許可]->[トランザクション] | 仕入先返品許可(Vendor Return Authorization) | VendorReturnAuthorization テーブルへアクセス | Transaction テーブルからVendor Return Authorization の種類へアクセス |
[許可]->[トランザクション] | ワークオーダー(Work Order) | WorkOrder テーブルへアクセス | Transaction テーブルからWorkOrd の種類へアクセス |
以下の機能が、NetSuite に2020.1 で導入されました。これを使用するには、Version を2020.1 以降に設定する必要があります。さらに、NetSuite の[Company]->[Enable Features]->[SuiteCloud]->[REST Web Services]で、そのための機能を有効化する必要があります。
Sync App はこの接続をSchema 接続プロパティでサポートします。Schema をSuiteQL に設定するだけでサービスにアクセスできます。
SuiteQL はNetSuite からデータをクエリするためのOracle 構文を提供します。SuiteTalk でサポートされているデフォルトサービスは、代わりに、多くのSOAP リクエストを使用して、NetSuite の保存検索とより密接に関連する形式でデータを取得するように設計されています。 つまり、SuiteQL はSuiteTalk よりもはるかに複雑なクエリを扱うことができるということです。例えば、joins、aggregations、group by、order by、およびformulas はすべてSuiteQL を使ってサーバーサイドで処理することができます。 対照的に、SuiteTalk は、一部のjoins とpredicates のみをサポートします。 一般的に、SuiteQL はSQL を処理するサポートがより充実しているため、NetSuite に対してより高速にクエリを実行するためのよりパワフルなオプションです。
SuiteQL のメタデータは次の2つの方法で扱われます。Custom Fields / Columns およびNative tables / column です。カスタムフィールドとカラムにはメタデータサービスが含まれており、データを取得するために使用できます。 そのため、IncludeCustomFields とIncludeCustomRecordTables がtrue に設定されると、このメタデータが自動的に正しく取得される場合があります。
NetSuite には、ネイティブテーブルとカラムについてのメタデータを取得するAPI メソッドは含まれていません。したがって、アカウントテーブルのようなネイティブテーブルでは、ドライバー内でメタデータがハードコードされている必要があります。 不思議なことに、SuiteQL 内で定義されていても、アカウントやロールに特定のテーブルやカラムを表示する権限がない場合、送信されたSuiteQL に問題があったことを示す例外がAPI からスローされます。 これらの例外を回避するために、RowScanDepth 接続プロパティを追加しました。デフォルトは1000で、これは1ページ分のデータです。 この設定を有効にしておくと、接続時にテーブルのリストされたカラムを利用できるようになります。ただし、SuiteQL はフィールドがNULL の場合は返しません。 そのため、アクセスを必要とするフィールドが表示されない可能性があります。このオプションを無効にするにはRowScanDepth を0に設定しますが、データを取得しようとする際にSuiteQL が例外をスローするカラムをリストする可能性を考慮する必要があります。
NetSuite およびCData Sync App 全般の比較的新しい機能として、SuiteQL にはいくつかの制限があります。以下の制限が含まれます。
以下は、バージョン2020.1 時点でSuiteQL で利用可能な関数のリストです。
SuiteTalk は、長年にわたってCData Sync App により提供されてきたSchema です。フルCRUD 機能、カスタムレコード、フィールド、およびリストへのアクセスをサポートしています。 保存検索は、SOAP API(従来の方法)およびRESTlet(新しい方法)を介してサポートされています。 このセクションでは、SuiteTalk Schema の独自の機能について説明します。
CData Sync App は、NetSuite テーブルに関する情報を実行時に動的に取得します。 公開されるテーブルとカラムは、いくつかの接続プロパティで制御されます。 このセクションでは、リストされているテーブルとカラムの制御に使用できる接続プロパティについて、 および探しているNetSuite データを取得する方法について説明します。テーブルの種類と、各種類のテーブルに追加と更新を行う方法の例を含むより詳しい説明は、Tables を参照してください。
NetSuite には、カスタマイズせずとも多くのデフォルトのレコードの種類が存在します。 勘定科目(Account)、顧客(Customer)、仕入先(Vendor)などのエンティティです。注文書(SalesOrder)、請求書(Invoice)、発注書(PurchaseOrder)といったトランザクションも含まれます。 これらの各デフォルトのレコードの種類は、 Version 接続プロパティに基づいて実行時に決定されます。この方法で見つかった各レコードの種類について、1つのテーブルが公開されます。
これらの「デフォルトのレコードの種類」は、以下で子テーブルについて記述する際には、しばしば親テーブルとも呼称します。
少なくとも年2回、NetSuite は新バージョンをリリースします。新バージョンには、すべてのユーザーが利用可能な、新しいデフォルトのレコードの種類が含まれます。 最新のレコードの種類をテーブルとして公開するには、Version 接続プロパティを設定してください。 各メジャーリリース毎にNetSuite の最新バージョンと合致するよう、デフォルトのレコードの種類が更新されます。
NetSuite 内の多くのデフォルトのレコードの種類は、さまざまなデータのコレクションを含みます。例えば、顧客(Customer)には複数の住所を登録できます。 請求書(Invoice)には複数の明細を登録できます。これらの子コレクションは、子テーブルに公開されます。 例えば、Invoice_itemList は親テーブルであるInvoice の子テーブルと捉えられます。
子コレクションの数が多いため、これらを公開すると全表示テーブル数が何百の単位で大幅に増加します。 子テーブルは IncludeChildTables 接続プロパティをtrue に設定することで有効化できます。デフォルト値はfalse です。
子テーブルは初期レベル以上は公開されません。例えば、Purchase Order のExpense List は、リンクされたOrder List を含みます。 リンクされたOrder List には何のテーブルも公開されません。その代わり、 下記のように、このデータを取得するには集計カラムを使用する必要があります。
また、AggregateColumnMode 接続プロパティを使って、子コレクションを別の方法で公開することもできます。 集計カラムは住所や明細のコレクションのような、複雑なデータのコレクションを返します。 これらの値を1つのカラムに収めることはできないので、XML の値として集計されます。 ほとんどの子コレクションの情報は、 IncludeChildTables をtrue に設定した方が、簡単に取得でき、可読性も高いです。集計はデフォルトでは無効になっています。
集計は子テーブル上にさらにコレクションを公開するのに便利です。例えば、リンクされたOrder List をPurchase Order のExpense List から取得したいとしましょう。 IncludeChildTables をtrue に、AggregateColumnMode をList に設定してください。これらの設定をするとExpenseList_linkedOrderList カラムが表示され、PurchaseOrder_expenseList テーブルのデータが返されます。
集計カラムからINSERT を行う場合やデータの概要を確認するためのサンプルの取得のような、非常に小さなサンプルを試す場合以外では、AggregateColumnMode をListAndRetrieve に設定することは非推奨です。 AggregateColumnMode をListAndRetrieve に設定すると、集計カラムのデータがすべてのテーブルに常にリクエストされるようになります。 このデータがリクエストされる場合、 NetSuite がデータを返す速度が大幅に遅くなるので、Customer、PurchaseOrder、Invoice といった親テーブルのパフォーマンスを大きく低下させます。 AggregateColumnMode がList に設定されると、 NetSuite がデータをパフォーマンスの低下なしで取得するため、子テーブルからデータを取得する際に、集計カラムは必ずデータを返します。
カスタムレコードはフルテーブルとして公開されます。 NetSuite にデフォルトで公開されているレコードの種類のいくつかは、カスタムレコードとみなされます。NetSuite の[カスタマイゼーション]->[リスト]->[レコードとフィールド]->[レコードの種類]で利用可能なものは、CData ではすべてカスタムレコードとみなします。 この設定を変えるには、 IncludeCustomRecordTables を変更してください。
カスタムリストは、デフォルトでは公開されていません。NetSuite のカスタムリストは、いくつかの種類のカスタムフィールド用に選択可能な情報のリストです。 これらはほとんど変更されないため、通常重要なデータを含みません。 しかし、これらのリストはIncludeCustomListTables 接続プロパティをtrue に設定することで、テーブルとして公開することもできます。
カスタムフィールドはデフォルトで公開されており、適切なテーブルに直接表示されます。カスタムフィールドはInvoice やCustomer のような親テーブルと、Invoice_itemList やCustomer_addressbookList のような子テーブルの両方に表示されます。 カスタムフィールドの公開は、IncludeCustomFieldColumns 接続プロパティで設定できます。
参照カラムはレコード参照を含むカラムです。例えば、Invoice は1つのEntity レコード参照を含みます。レコード参照は常にInternalId とName を、場合によってはType やExternalId など、さまざまな情報を返します。 NetSuite のレコード参照カラムの数が多いため、デフォルトではInternalId とName のみ表示されます。 この動作は、IncludeReferenceColumns 接続プロパティから変更できます。
レポートはNetSuite API ではサポートされていません。これはAPI 側の制限で、そのためCData およびサードパーティ製のツールではレポートが利用できません。NetSuite は代わりに、PostingTransactionSummary を使用して、レポートにあるような情報を取得することを推奨しています。 PostingTransactionSummary ビューはこうした情報にアクセスするために使用できます。
Sync App はRESTlet をビューとしてモデル化できます。このセクションでは、同梱のRESTlet スクリプトを使用して保存検索をクエリする方法を示します。保存検索をより詳しく表示するために、テーブルスキーマを調整する方法も含みます。
保存検索をクエリするには、RESTlet の使用が推奨されます。RESTlet の使用方法は、保存検索 内に記載された手法とは異なります。この古い手法はSuiteTalk API に依存し、このAPI では保存検索が返す結果がより制限されます。
以下の手順に従って同梱のスクリプトをデプロイし、SELECT クエリを実行してRESTlet を実行します。
[設定]->[会社]->[機能を有効化]に進みます。[SuiteCloud]タブで、[クライアントSuiteScript]、[サーバーSuiteScript]、[SuiteScriptサーバーページ]がすべて有効化されていることを確認してください。
[ドキュメント]->[ファイル]->[SuiteScripts]に進みます。[ファイルを追加]ボタンをクリックしてください。 CData Sync App に同梱されているsearch_script.js スクリプトをアップロードしてください。インストールディレクトリのdb フォルダ以下に格納されています。
[カスタマイゼーション]->[スクリプト]->[スクリプト]->[新規作成]に移動してください。メニューからsearch_script.js を探して、選択してください。 その後[スクリプトレコードを作成]をクリックしてください。
スクリプトに名前を付けて、[デプロイメント]タブ以下でタイトルを追加します。 その後[保存]をクリックします。これで、デプロイメントが作成されます。
Note:[スクリプトデプロイメント]がテスティングのステータスにある間は、デプロイメントを作成したユーザーだけが、クエリされた保存検索の結果を返します。RESTlet を他のユーザーにも利用可能にするには、[スクリプトデプロイメント]のステータスをリリース済みにして、[閲覧者/閲覧許可]タブ内で許可するロールを追加してください。
スクリプトレコード内にデプロイメントへのリンクがあります。デプロイメントへのリンクを辿ってください。または、[カスタマイゼーション]->[スクリプト]->[スクリプトデプロイメント]に進み、フィルターを使って、作成したデプロイメントを探してください。 デプロイメントレコード内に、URL と外部URL があります。 スクリプト番号とデプロイメント番号をURL からコピーしてください。
search_script.js を実行するには、保存検索のId を渡す必要があります。 [リスト]->[検索]->[保存検索]と進み、保存検索のId からコピーしてください。作成日のような、常に同じ順序を返すカラムで整列する方法での検索を推奨します。 これはNetSuite が、結果をページングする際にデータが変更された場合、重複や欠損データが発生する可能性のある結果をキャッシュしないためです。
RESTlet は次の認証方法をサポートしています。
OAuth:OAuth 接続プロパティに加えて、RESTlet OAuth 認証にはAccountId が必要です。 認証するには、AccountId、OAuthClientId、OAuthClientSecret、OAuthAccessToken、およびOAuthAccessTokenSecret を設定します。
接続方法については、接続の確立 を参照してください。
CreateRestletSchema ストアドプロシージャを呼び出して、RESTlet 用のビュースキーマを作成できます。ストアドプロシージャはスキーマを返します。スキーマは.rsd ファイルで定義されています。カラム名はテキストエディタでカスタマイズすることも可能です。次のセクションを参照してください。
以下はストアドプロシージャへの入力例です。 スキーマを保存しておくフォルダの場所を指定するLocation 接続プロパティも設定する必要があります。
Note:このSync App は複数のスキーマをサポートするため、すべての個別のスキーマフォルダを含むルートフォルダを、ファイルパスの最後に指定してください。
EXEC CreateRESTletSchema @TableName='MyRESTletSchema', @ScriptId='548', @DeploymentNum='1', @FlattenSelects='true', @UseLabels='true', @SearchId='customsearch795'
注意として、少なくともTableName、ScriptId(デプロイメントURL より取得)、DeploymentNum(デプロイメントURL より取得)、SearchId が必要となります。 FlattenSelects と UseLabels はオプションです。
FlattenSelects:保存検索が複数選択のカラムを含む場合、このパラメータをfalse に設定してください。このパラメータは、Sync App が(エンティティやカスタム参照のような)選択されたデータ型をどのようにモデル化するかを設定します。FlattenSelects をfalse に設定すると、複数選択されたデータはJSON として集計され、返されます。
デフォルトではSync App は選択用に2つのカラムを表示します。1つは名前用で、1つは値(多くの場合Id)用です。この設定は、保存検索が複数選択のカラムを含む場合にはうまく動作しません。RESTlet メタデータには、複数選択と単一選択のカラムを区別する項目はありません。
UseLabels:Sync App がカラム名を保存検索に表示された結果と合致させるか、単に保存検索が返したAPI 名そのものを使用するかを決定します。 注意として、UseLabels がtrue に設定されていても、名前はアンダースコア付きの英数字に変換されます。また、保存検索ではラベルが同一名で返されることがあるので、注意してください。 こうした場合、名前を一意に保つため重複名の末尾に数字が付加されます。
Location を設定して接続すると、簡単なSELECT クエリでデータをテーブルから取得できます。次に例を示します。
SELECT * FROM MyRESTletSchema
Note:ページングはCData Sync App 側で自動的に処理されます。
スキーマの設定は.rsd ファイルで定義され、表示されるカラムをテキストエディタ上で変更することが可能となります。.rsd ファイルは、Location 接続プロパティで指定されたパスに書き込まれます。カラム名を変更するには、 <attr name=""> セクションを変更してください。
保存検索はNetSuite 側の制約のため、一定の制限付きでサポートされています。
Note:このページよりもRESTlets の参照を推奨します。この手順は現在でも動作しますが、以下に記述のSuiteTalk API から使用する保存検索は、メタデータの取得が可能かどうか、どのような内容が利用可能か、という両面で制限があります。 RESTlet は制限も少なく、NetSuite から正確なメタデータを返します。
SavedSearches ビューは、入力された検索タイプで利用可能な保存検索のリストを取得する方法として優れています。
SavedSearches ビューから情報を取得するには、SearchType を指定する必要があります。
次に例を示します。
SELECT * FROM SavedSearches WHERE SearchType='Transaction'
CreateSavedSearchSchema ストアドプロシージャは、保存検索用のスキーマファイルの生成に使用します。 このスキーマファイルは、保存検索の結果に基づいて自動的に生成されます。このファイルはLocation 接続プロパティで指定されたフォルダに書き込まれます。
Note: このSync App は複数のスキーマをサポートするため、すべての個別のスキーマフォルダを含むルートフォルダを、ファイルパスの最後に指定してください。
ストアドプロシージャを実行するには、Name、SearchType、Id(SavedSearches から返されます)を入力してください。
EXEC CreateSavedSearchSchema @SavedSearch='MySavedSearch', @SearchType='Transaction', @SavedSearchId='12345'
通常のテーブルとは異なり、保存検索にメタデータのリクエストはありません。メタデータを取得するには、結果のサンプルを取得して、レスポンスに基づいて利用可能なカラムを推測する必要があります。 場合によっては、サンプルレスポンス内ですべての値がnull であるために、カラムが欠損している可能性もあります。
これらのスキーマファイルを変更するのは簡単です。お好みのテキストエディタでファイルを開いてください。ファイルは、カラム名がファイルの上部付近で定義されているだけの、単なるXML です。 カラム名をよりふさわしいものに変更することもできます。 ただし、これらのXML ファイルの有効なカラム名は、英数字で、アルファベットで始まる必要があり、英数字以外ではアンダースコア"_" のみを使用できます。
スキーマファイルの作成後、そのスキーマ名を使用して保存検索からデータを取得できます。次に例を示します。
SELECT * FROM MySavedSearch
カラム名がUI に表示されるものと異なる可能性があります。これはNetSuite が、保存検索を実行する際のラベルを使用しているためです。 カラムは他のテーブルから取得される場合(結合がある場合)や、カスタムフィールドであることがあります。 保存検索のメタデータサービスが利用可能でないことから、自動でラベルを取得するのに適した方法はありません。 ただし上述のようにこれらのスキーマファイルは、手動でカラム名をお好みのものに変更することができます。
NetSuite は保存検索にいくつかの制限を課しています。計算を含むカラム(式)は、NetSuite API からは取得できません。
カラムはテーブルから直接の取得のみ可能です。保存検索内に計算を含む場合、計算内で使用される個々のカラムを返して、クライアントサイドで計算を行う必要があります。
つまり、以下のようになります。
SELECT (col1 / col2) AS calc FROM MySavedSearch
集計やサマリー(Group、Count、Sum、Minimum、Maximum、Average)を出力する保存検索は、返すことができません。 NetSuite API がこれらの保存検索を取得しようとすると、例外が発生します。 この制限のため、これらの保存検索はCData、および他のサードパーティ製のツールから利用できません。
このセクションでは、NetSuite Sync App の高度な機能を厳選して説明します。
Sync App を使用すると、事前設定されたクエリによって内容が決定されるユーザー定義ビューと呼ばれる仮想テーブルを定義できます。 このビューは、ドライバーに発行されるクエリを直接制御できない場合に有効です。 カスタムビューの作成と設定の概要については、ユーザー定義ビュー を参照してください。
SSL の設定 を使用して、Sync App が証明書のネゴシエーションをどのように扱うかを調整します。さまざまな証明書形式を選択できます。 詳しくは、接続文字列オプションにあるSSLServerCert プロパティを参照してください。
Windows プロキシとHTTP プロキシを含むファイアウォールとプロキシ に合致するようSync App を設定します。トンネル接続を設定することもできます。
Sync App は、NetSuite にできるだけ多くのSELECT ステートメント処理をオフロードし、残りのクエリをクライアント側のインメモリで処理します。
詳しくはクエリ処理 を参照してください。
CData ログを調整するために使用可能な設定の概要については、ログ を参照してください。基本的なロギングでは、 次の2つの接続プロパティを設定するだけです。LogModules 接続プロパティを使用してログに記録する情報のサブセットを選択できる、 より洗練されたロギングをサポートする多数の機能があります。
デフォルトでは、Sync App はサーバーの証明書をシステムの信頼できる証明書ストアと照合してSSL / TLS のネゴシエーションを試みます。
別の証明書を指定するには、利用可能なフォーマットについてSSLServerCert プロパティを参照してください。
Windows のシステムプロキシ経由の接続では、接続プロパティを追加で設定する必要はありません。他のプロキシに接続するには、ProxyAutoDetect をfalse に設定します。
さらにHTTP プロキシへの認証には、ProxyServer とProxyPort に加えてProxyAuthScheme、ProxyUser、およびProxyPassword を設定します。
次のプロパティを設定します。
SuiteTalk API で利用可能なエンティティについては、SuiteTalk Data Model を参照してください。
SuiteQL API で利用可能なエンティティについては、SuiteQL Data Model を参照してください。
このセクションでは、SuiteTalk Schema で利用可能なTables およびViews を示します。
CData Sync App は、NetSuite エンティティをリレーショナルテーブル、ビュー、およびストアドプロシージャにモデル化します。テーブル定義は、NetSuite アカウントに基づいて動的に取得されます。
テーブル定義は動的に取得されます。このセクションでは、NetSuite 開発環境に含まれるサンプルテーブル定義を示します。
ビューは変更ができないテーブルです。一般的には、Read-only で更新が不可能なデータはビューとして表されます。
ストアドプロシージャはデータソースのファンクションライクなインターフェースです。これらを使用して、データソース内の情報を検索、更新、および変更できます。
NetSuite のテーブルのメタデータは、実行時にNetSuite の定義済みの多数のスキーマ、および固有のNetSuite アカウント情報に基づいて取得されます。 カスタムテーブルおよびカスタムフィールドが一覧表示され、他のテーブルと同様に操作できます。 Sync App には、独自の機能を持ついくつかの異なるタイプのテーブルが用意されています。 このセクションでは、各種テーブルの使い方に関する説明やサンプルを見ることができます。
エンティティテーブルは、NetSuite のエンティティを表します。これらのアイテムは標準のリストに存在し、エンティティは子リストに表示されるか、InternalId 経由でトランザクションで参照されます。
エンティティテーブルは集計カラムを含む場合があります。
例えば、Account テーブルはSubsidiaryListAggregate カラムを持ちます。
このカラムは、アカウントに関連のある子会社のXML 形式のリストを含みます。
これらは集計を更新することで修正できます。例:
UPDATE Account SET SubsidiaryListAggregate='<Account_subsidiaryList><Row><SubsidiaryList_InternalId>00001</SubsidiaryList_InternalId></Row><Row><SubsidiaryList_InternalId>00002</SubsidiaryList_InternalId></Row></Account_subsidiaryList>' WHERE InternalId=@AccountInternalId
エンティティテーブルの例をいくつか示します。
名前 | 説明 |
Account | NetSuite のAccount テーブル。 |
Contact | NetSuite のContact テーブル。 |
Customer | NetSuite のCustomer テーブル。 |
Department | NetSuite のDepartment テーブル。 |
DiscountItem | NetSuite のDiscountItem テーブル。 |
Employee | NetSuite のEmployee テーブル。 |
InventoryItem | NetSuite のInventoryItem テーブル。 |
NonInventoryPurchaseItem | NetSuite のNonInventoryPurchaseItem テーブル。 |
Subsidiary | NetSuite のSubsidiary テーブル。 |
Vendor | NetSuite のVendor テーブル。 |
トランザクションテーブルは、NetSuite のトランザクションを表します。これらのトランザクションは、操作上、エンティティと同様に動作します。
ただし、いくつかのトランザクションでは、挿入を行うためにline アイテムを指定するよう要求される場合があります。
これらは、該当するすべてのリストで利用可能なItemListAggregate フィールドを使って指定できます。
AggregateColumnMode 接続プロパティをList に設定すると、これらのカラムが表示されます。
例えば、パラメータ化されたクエリが2つのline アイテムを持つCashRefund レコードを挿入する例を以下に示します。
<CashRefund_itemList> <Row> <itemlist_rate>2.00</itemlist_rate> <itemlist_taxcode_name>CA-ALAMEDA</itemlist_taxcode_name> <itemlist_units_name></itemlist_item_units_name> <itemlist_amount>2.0</itemlist_amount> <itemlist_item_internalid>860</itemlist_item_internalid> <itemlist_price_internalid>1</itemlist_price_internalid> <itemlist_taxcode_internalid>-159</itemlist_taxcode_internalid> <itemlist_description>Item Description</itemlist_description> <itemlist_item_name>Backing</itemlist_item_name> <itemlist_taxrate1>8.25%</itemlist_taxrate1> <itemlist_price_name>Base Price</itemlist_price_name> <itemlist_units_internalid></itemlist_units_internalid> <itemlist_quantity>1.0</itemlist_quantity> <itemlist_costestimate>0.0</itemlist_costestimate> </Row> <Row> <itemlist_taxcode_name>-Not Taxable-</itemlist_taxcode_name> <itemlist_units_name>Ea</itemlist_units_name> <itemlist_amount>100.0</itemlist_amount> <itemlist_item_internalid>704</itemlist_item_internalid> <itemlist_price_internalid>-1</itemlist_price_internalid> <itemlist_taxcode_internalid>-7</itemlist_taxcode_internalid> <itemlist_description>Designer Seat / Back Cushions</itemlist_description> <itemlist_item_name>Designer Seat Cushions</itemlist_item_name> <itemlist_price_name>Custom</itemlist_price_name> <itemlist_units_internalid>1</itemlist_units_internalid> <itemlist_quantity>4.0</itemlist_quantity> <itemlist_costestimate>100.0</itemlist_costestimate> </Row> </CashRefund_itemList> INSERT INTO CashRefund (entity_internalId, location_internalid, exchangerate, trandate, postingperiod_internalid, itemListAggregate) VALUES (@EntityInternalId, @LocationInternalId, '1', '01/22/2012', @PostingPeriodInternalId, @ItemListAggregate)
トランザクションテーブルの例をいくつか示します。
名前 | 説明 |
CashRefund | NetSuite のCashRefund テーブル。 |
CreditMemo | NetSuite のCreditMemo テーブル。 |
Estimate | NetSuite のEstimate テーブル。 |
Invoice | NetSuite のInvoice テーブル。 |
PurchaseOrder | NetSuite のPurchaseOrder テーブル。 |
SalesOrder | NetSuite のSalesOrder テーブル。 |
VendorBill | NetSuite のVendorBill テーブル。 |
VendorCredit | NetSuite のVendorCredit テーブル。 |
VendorPayment | NetSuite のVendorPayment テーブル。 |
WorkOrder | NetSuite のWorkOrder テーブル。 |
多くのテーブルには、テーブル上の指定されたエントリの一部として存在できる多くのリストがあります。CData はこのデータを、XML 集計カラムとして直接テーブルに表示します。 これらの子リストは、各行がリスト自体のシングルエントリを表す独自のテーブルとしてアクセスすることも可能です。 子テーブルを有効にするには、IncludeChildTables 接続プロパティをtrue に設定します。
子テーブルは、常にParentTableName_ChildListName 形式で表示されます。例えば、CashRefund_itemList です。すべての子テーブルは、子リスト自体の修正、または基本エンティティやトランザクションの挿入 / 更新に使用できます。 唯一の例外として、子テーブルから基本エンティティを削除することはできません。 削除コマンドは、子リストから指定した行を削除するコマンドとして解釈されます。
For inserting using a child table, a #TEMP table may be used to populate the structure that will eventually be passed to the parent as explained above.次に例を示します:
INSERT INTO CashRefund_itemList#TEMP (entity_internalId, itemlist_rate, itemlist_taxcode_name, itemlist_amount, itemlist_item_internalid, itemlist_price_internalid, itemlist_taxcode_internalid, itemlist_description, itemlist_item_name, itemlist_taxrate1, itemlist_price_name, itemlist_quantity, itemlist_costestimate, itemlist_units_name, itemlist_units_internalid) VALUES (@EntityInternalId, @LocationInternalId, '1', '01/22/2012', @PostingPeriodInternalId, '2.00', 'CA-ALAMEDA', '2.0', '860', '1', '-159', 'xxxx', 'Backing', '8.25%', 'Base Price', '1.0', '0.0', '', '') INSERT INTO CashRefund_itemList#TEMP (entity_internalId, itemlist_taxcode_name, itemlist_units_name, itemlist_amount, itemlist_item_internalid, itemlist_price_internalid, itemlist_taxcode_internalid, itemlist_description, itemlist_item_name, itemlist_price_name, itemlist_units_internalid, itemlist_quantity, itemlist_costestimate) VALUES (@CashRefundInternalId, @EntityInternalId, @LocationInternalId, '1', '01/22/2012', @PostingPeriodInternalId, '-Not Taxable-', 'Ea', '100.0', '704', '-1', '-7', 'Designer Seat / Back Cushions', 'Designer Seat Cushions', 'Custom', '1', '4.0', '100.0') INSERT INTO CashRefund (entity_internalId, location_internalid, exchangerate, trandate, postingperiod_internalid, ItemListAggregate) VALUES (@EntityInternalId, @LocationInternalId, '1', '01/22/2012', @PostingPeriodInternalId, 'CashRefund_itemList#TEMP')
Alternatively, a complete parent and child record may be inserted using the child table.But only a single child record may be inserted using this method.For example, the following will create two separate CashRefund records, each with a single item:
INSERT INTO CashRefund_itemList (entity_internalId, location_internalid, exchangerate, trandate, postingperiod_internalid, itemlist_taxcode_name, itemlist_units_name, itemlist_amount, itemlist_item_internalid, itemlist_price_internalid, itemlist_taxcode_internalid, itemlist_description, itemlist_item_name, itemlist_price_name, itemlist_units_internalid, itemlist_quantity, itemlist_costestimate) VALUES (@EntityInternalId, @LocationInternalId, '1', '01/22/2012', @PostingPeriodInternalId, '-Not Taxable-', 'Ea', '100.0', '704', '-1', '-7', 'Designer Seat / Back Cushions', 'Designer Seat Cushions', 'Custom', '1', '4.0', '100.0') INSERT INTO CashRefund_itemList (entity_internalId, location_internalid, exchangerate, trandate, postingperiod_internalid, itemlist_taxcode_name, itemlist_units_name, itemlist_amount, itemlist_item_internalid, itemlist_price_internalid, itemlist_taxcode_internalid, itemlist_description, itemlist_item_name, itemlist_price_name, itemlist_units_internalid, itemlist_quantity, itemlist_costestimate) VALUES (@EntityInternalId, @LocationInternalId, '2', '01/23/2012', @PostingPeriodInternalId, '-Not Taxable-', 'Ea', '101.0', '704', '-1', '-7', 'Designer Seat / Back Cushions', 'Designer Seat Cushions', 'Custom', '1', '4.0', '101.0')
既存のエンティティに行を追加するには、INSERT ステートメントでエンティティのInternalId を指定するだけです。
例:
INSERT INTO CashRefund_itemList (InternalId, entity_internalId, location_internalid, exchangerate, trandate, postingperiod_internalid, itemlist_rate, itemlist_taxcode_name, itemlist_amount, itemlist_item_internalid, itemlist_price_internalid, itemlist_taxcode_internalid, itemlist_description, itemlist_item_name, itemlist_taxrate1, itemlist_price_name, itemlist_quantity, itemlist_costestimate, itemlist_units_name, itemlist_units_internalid) VALUES (@CashRefundInternalId, @EntityInternalId, @LocationInternalId, '1', '01/22/2012', @PostingPeriodInternalId, '2.00', 'CA-ALAMEDA', '2.0', '860', '1', '-159', 'xxxx', 'Backing', '8.25%', 'Base Price', '1.0', '0.0', '', '') INSERT INTO CashRefund_itemList (InternalId, entity_internalId, location_internalid, exchangerate, trandate, postingperiod_internalid, itemlist_taxcode_name, itemlist_units_name, itemlist_amount, itemlist_item_internalid, itemlist_price_internalid, itemlist_taxcode_internalid, itemlist_description, itemlist_item_name, itemlist_price_name, itemlist_units_internalid, itemlist_quantity, itemlist_costestimate) VALUES (@CashRefundInternalId, @EntityInternalId, @LocationInternalId, '1', '01/22/2012', @PostingPeriodInternalId, '-Not Taxable-', 'Ea', '100.0', '704', '-1', '-7', 'Designer Seat / Back Cushions', 'Designer Seat Cushions', 'Custom', '1', '4.0', '100.0')
テーブルからデータを選択する場合、多くのテーブルはWHERE 句と一緒に使用できます。 しかし、NetSuite API には併用できず、すべてのアイテムがリストされるテーブルがあります。 これらは大抵の場合、返すデータをほとんど持たないシンプルなテーブルです。
デフォルトで設定されているSupportEnhancedSQL 機能を使うと、これらテーブルに対してクエリでWHERE 句を利用できます。 この機能を使うと、以下のテーブルがWHERE 句で使用可能になります。
名前 | 説明 |
BudgetCategory | NetSuite のBudgetCategory テーブル。 |
CampaignAudience | NetSuite のCampaignAudience テーブル。 |
CampaignCategory | NetSuite のCampaignCategory テーブル。 |
CampaignChannel | NetSuite のCampaignChannel テーブル。 |
CampaignFamily | NetSuite のCampaignFamily テーブル。 |
CampaignOffer | NetSuite のCampaignOffer テーブル。 |
CampaignSearchEngine | NetSuite のCampaignSearchEngine テーブル。 |
CampaignSubscription | NetSuite のCampaignSubscription テーブル。 |
CampaignVertical | NetSuite のCampaignVertical テーブル。 |
CostCategory | NetSuite のCostCategory テーブル。 |
Currency | NetSuite のCurrency テーブル。 |
LeadSource | NetSuite のLeadSource テーブル。 |
SalesTaxItem | NetSuite のSalesTaxItem テーブル。 |
State | NetSuite のState テーブル。 |
SupportCaseIssue | NetSuite のSupportCaseIssue テーブル。 |
SupportCaseOrigin | NetSuite のSupportCaseOrigin テーブル。 |
SupportCasePriority | NetSuite のSupportCasePriority テーブル。 |
SupportCaseStatus | NetSuite のSupportCaseStatus テーブル。 |
SupportCaseType | NetSuite のSupportCaseType テーブル。 |
TaxGroup | NetSuite のTaxGroup テーブル。 |
TaxType | NetSuite のTaxType テーブル。 |
カスタムテーブルは、NetSuite で作成されたあらゆるカスタムエンティティをリストします。これらも、トランザクションテーブルやエンティティテーブルと同じように動作します。 ただし、カスタムテーブルは集計カラムを持ちません。
NetSuite のAccount テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Account テーブルのInternalId。 |
AcctName | String | False |
Account テーブルのAcctName。 |
AcctNumber | String | False |
Account テーブルのAcctNumber。 |
AcctType | String | False |
Account テーブルのAcctType。 The allowed values are _accountsPayable, _accountsReceivable, _bank, _costOfGoodsSold, _creditCard, _deferredExpense, _deferredRevenue, _equity, _expense, _fixedAsset, _income, _longTermLiability, _nonPosting, _otherAsset, _otherCurrentAsset, _otherCurrentLiability, _otherExpense, _otherIncome, _unbilledReceivable. |
BillableExpensesAcct_ExternalId | String | False |
Account テーブルのBillableExpensesAcct_ExternalId。 |
BillableExpensesAcct_InternalId | String | False |
Account テーブルのBillableExpensesAcct_InternalId。 |
BillableExpensesAcct_Name | String | False |
Account テーブルのBillableExpensesAcct_Name。 |
BillableExpensesAcct_Type | String | False |
Account テーブルのBillableExpensesAcct_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CashFlowRate | String | False |
Account テーブルのCashFlowRate。 The allowed values are _average, _current, _historical. |
Category1099misc_ExternalId | String | False |
Account テーブルのCategory1099misc_ExternalId。 |
Category1099misc_InternalId | String | False |
Account テーブルのCategory1099misc_InternalId。 |
Category1099misc_Name | String | False |
Account テーブルのCategory1099misc_Name。 |
Category1099misc_Type | String | False |
Account テーブルのCategory1099misc_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Class_ExternalId | String | False |
Account テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
Account テーブルのClass_InternalId。 |
Class_Name | String | False |
Account テーブルのClass_Name。 |
Class_Type | String | False |
Account テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurDocNum | Long | False |
Account テーブルのCurDocNum。 |
Currency_ExternalId | String | False |
Account テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
Account テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
Account テーブルのCurrency_Name。 |
Currency_Type | String | False |
Account テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DeferralAcct_ExternalId | String | False |
Account テーブルのDeferralAcct_ExternalId。 |
DeferralAcct_InternalId | String | False |
Account テーブルのDeferralAcct_InternalId。 |
DeferralAcct_Name | String | False |
Account テーブルのDeferralAcct_Name。 |
DeferralAcct_Type | String | False |
Account テーブルのDeferralAcct_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
Account テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
Account テーブルのDepartment_InternalId。 |
Department_Name | String | False |
Account テーブルのDepartment_Name。 |
Department_Type | String | False |
Account テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Description | String | False |
Account テーブルのDescription。 |
Eliminate | Boolean | False |
Account テーブルのEliminate。 |
ExchangeRate | String | False |
Account テーブルのExchangeRate。 |
ExternalId | String | False |
Account テーブルのExternalId。 |
GeneralRate | String | False |
Account テーブルのGeneralRate。 The allowed values are _average, _current, _historical. |
IncludeChildren | Boolean | False |
Account テーブルのIncludeChildren。 |
Inventory | Boolean | False |
Account テーブルのInventory。 |
IsInactive | Boolean | False |
Account テーブルのIsInactive。 |
Location_ExternalId | String | False |
Account テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
Account テーブルのLocation_InternalId。 |
Location_Name | String | False |
Account テーブルのLocation_Name。 |
Location_Type | String | False |
Account テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OpeningBalance | Double | False |
Account テーブルのOpeningBalance。 |
Parent_ExternalId | String | False |
Account テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
Account テーブルのParent_InternalId。 |
Parent_Name | String | False |
Account テーブルのParent_Name。 |
Parent_Type | String | False |
Account テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Revalue | Boolean | False |
Account テーブルのRevalue。 |
TranDate | Datetime | False |
Account テーブルのTranDate。 |
TranslationsList_ReplaceAll | Boolean | False |
Account テーブルのTranslationsList_ReplaceAll。 |
NetSuite のAccountingPeriod テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
AccountingPeriod テーブルのInternalId。 |
AllLocked | Boolean | False |
AccountingPeriod テーブルのAllLocked。 |
AllowNonGLChanges | Boolean | False |
AccountingPeriod テーブルのAllowNonGLChanges。 |
ApLocked | Boolean | False |
AccountingPeriod テーブルのApLocked。 |
ArLocked | Boolean | False |
AccountingPeriod テーブルのArLocked。 |
Closed | Boolean | False |
AccountingPeriod テーブルのClosed。 |
ClosedOnDate | Datetime | False |
AccountingPeriod テーブルのClosedOnDate。 |
EndDate | Datetime | False |
AccountingPeriod テーブルのEndDate。 |
FiscalCalendar_ExternalId | String | False |
AccountingPeriod テーブルのFiscalCalendar_ExternalId。 |
FiscalCalendar_InternalId | String | False |
AccountingPeriod テーブルのFiscalCalendar_InternalId。 |
FiscalCalendar_Name | String | False |
AccountingPeriod テーブルのFiscalCalendar_Name。 |
FiscalCalendar_Type | String | False |
AccountingPeriod テーブルのFiscalCalendar_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
FiscalCalendarsList_ReplaceAll | Boolean | False |
AccountingPeriod テーブルのFiscalCalendarsList_ReplaceAll。 |
IsAdjust | Boolean | False |
AccountingPeriod テーブルのIsAdjust。 |
IsQuarter | Boolean | False |
AccountingPeriod テーブルのIsQuarter。 |
IsYear | Boolean | False |
AccountingPeriod テーブルのIsYear。 |
Parent_ExternalId | String | False |
AccountingPeriod テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
AccountingPeriod テーブルのParent_InternalId。 |
Parent_Name | String | False |
AccountingPeriod テーブルのParent_Name。 |
Parent_Type | String | False |
AccountingPeriod テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PayrollLocked | Boolean | False |
AccountingPeriod テーブルのPayrollLocked。 |
PeriodName | String | False |
AccountingPeriod テーブルのPeriodName。 |
StartDate | Datetime | False |
AccountingPeriod テーブルのStartDate。 |
NetSuite のAppDefinition テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
AppDefinition テーブルのInternalId。 |
Description | String | False |
AppDefinition テーブルのDescription。 |
ExternalId | String | False |
AppDefinition テーブルのExternalId。 |
Name | String | False |
AppDefinition テーブルのName。 |
PackagesList_ReplaceAll | Boolean | False |
AppDefinition テーブルのPackagesList_ReplaceAll。 |
NetSuite のAppPackage テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
AppPackage テーブルのInternalId。 |
AppDefinition_ExternalId | String | False |
AppPackage テーブルのAppDefinition_ExternalId。 |
AppDefinition_InternalId | String | False |
AppPackage テーブルのAppDefinition_InternalId。 |
AppDefinition_Name | String | False |
AppPackage テーブルのAppDefinition_Name。 |
AppDefinition_Type | String | False |
AppPackage テーブルのAppDefinition_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Bundle_ExternalId | String | False |
AppPackage テーブルのBundle_ExternalId。 |
Bundle_InternalId | String | False |
AppPackage テーブルのBundle_InternalId。 |
Bundle_Name | String | False |
AppPackage テーブルのBundle_Name。 |
Bundle_Type | String | False |
AppPackage テーブルのBundle_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Description | String | False |
AppPackage テーブルのDescription。 |
ExternalId | String | False |
AppPackage テーブルのExternalId。 |
PackageFile_ExternalId | String | False |
AppPackage テーブルのPackageFile_ExternalId。 |
PackageFile_InternalId | String | False |
AppPackage テーブルのPackageFile_InternalId。 |
PackageFile_Name | String | False |
AppPackage テーブルのPackageFile_Name。 |
PackageFile_Type | String | False |
AppPackage テーブルのPackageFile_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Version | String | False |
AppPackage テーブルのVersion。 |
NetSuite のAssemblyBuild テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
AssemblyBuild テーブルのInternalId。 |
BinNumbers | String | False |
AssemblyBuild テーブルのBinNumbers。 |
Buildable | Double | False |
AssemblyBuild テーブルのBuildable。 |
Class_ExternalId | String | False |
AssemblyBuild テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
AssemblyBuild テーブルのClass_InternalId。 |
Class_Name | String | False |
AssemblyBuild テーブルのClass_Name。 |
Class_Type | String | False |
AssemblyBuild テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ComponentList_ReplaceAll | Boolean | False |
AssemblyBuild テーブルのComponentList_ReplaceAll。 |
CreatedDate | Datetime | False |
AssemblyBuild テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
AssemblyBuild テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
AssemblyBuild テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
AssemblyBuild テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
AssemblyBuild テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
AssemblyBuild テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
AssemblyBuild テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
AssemblyBuild テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
AssemblyBuild テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
AssemblyBuild テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
AssemblyBuild テーブルのDepartment_InternalId。 |
Department_Name | String | False |
AssemblyBuild テーブルのDepartment_Name。 |
Department_Type | String | False |
AssemblyBuild テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExpirationDate | Datetime | False |
AssemblyBuild テーブルのExpirationDate。 |
ExternalId | String | False |
AssemblyBuild テーブルのExternalId。 |
InventoryDetail_CustomForm_ExternalId | String | False |
AssemblyBuild テーブルのInventoryDetail_CustomForm_ExternalId。 |
InventoryDetail_CustomForm_InternalId | String | False |
AssemblyBuild テーブルのInventoryDetail_CustomForm_InternalId。 |
InventoryDetail_CustomForm_Name | String | False |
AssemblyBuild テーブルのInventoryDetail_CustomForm_Name。 |
InventoryDetail_CustomForm_Type | String | False |
AssemblyBuild テーブルのInventoryDetail_CustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
InventoryDetail_InventoryAssignmentList_ReplaceAll | Boolean | False |
AssemblyBuild テーブルのInventoryDetail_InventoryAssignmentList_ReplaceAll。 |
Item_ExternalId | String | False |
AssemblyBuild テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
AssemblyBuild テーブルのItem_InternalId。 |
Item_Name | String | False |
AssemblyBuild テーブルのItem_Name。 |
Item_Type | String | False |
AssemblyBuild テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
AssemblyBuild テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
AssemblyBuild テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
AssemblyBuild テーブルのLocation_InternalId。 |
Location_Name | String | False |
AssemblyBuild テーブルのLocation_Name。 |
Location_Type | String | False |
AssemblyBuild テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
AssemblyBuild テーブルのMemo。 |
PostingPeriod_ExternalId | String | False |
AssemblyBuild テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
AssemblyBuild テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
AssemblyBuild テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
AssemblyBuild テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Quantity | Double | False |
AssemblyBuild テーブルのQuantity。 |
Revision_ExternalId | String | False |
AssemblyBuild テーブルのRevision_ExternalId。 |
Revision_InternalId | String | False |
AssemblyBuild テーブルのRevision_InternalId。 |
Revision_Name | String | False |
AssemblyBuild テーブルのRevision_Name。 |
Revision_Type | String | False |
AssemblyBuild テーブルのRevision_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SerialNumbers | String | False |
AssemblyBuild テーブルのSerialNumbers。 |
Subsidiary_ExternalId | String | False |
AssemblyBuild テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
AssemblyBuild テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
AssemblyBuild テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
AssemblyBuild テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Total | Double | False |
AssemblyBuild テーブルのTotal。 |
TranDate | Datetime | False |
AssemblyBuild テーブルのTranDate。 |
TranId | String | False |
AssemblyBuild テーブルのTranId。 |
Units_ExternalId | String | False |
AssemblyBuild テーブルのUnits_ExternalId。 |
Units_InternalId | String | False |
AssemblyBuild テーブルのUnits_InternalId。 |
Units_Name | String | False |
AssemblyBuild テーブルのUnits_Name。 |
Units_Type | String | False |
AssemblyBuild テーブルのUnits_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のAssemblyUnbuild テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
AssemblyUnbuild テーブルのInternalId。 |
BinNumbers | String | False |
AssemblyUnbuild テーブルのBinNumbers。 |
Built | Double | False |
AssemblyUnbuild テーブルのBuilt。 |
Class_ExternalId | String | False |
AssemblyUnbuild テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
AssemblyUnbuild テーブルのClass_InternalId。 |
Class_Name | String | False |
AssemblyUnbuild テーブルのClass_Name。 |
Class_Type | String | False |
AssemblyUnbuild テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ComponentList_ReplaceAll | Boolean | False |
AssemblyUnbuild テーブルのComponentList_ReplaceAll。 |
CreatedDate | Datetime | False |
AssemblyUnbuild テーブルのCreatedDate。 |
CustomForm_ExternalId | String | False |
AssemblyUnbuild テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
AssemblyUnbuild テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
AssemblyUnbuild テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
AssemblyUnbuild テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
AssemblyUnbuild テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
AssemblyUnbuild テーブルのDepartment_InternalId。 |
Department_Name | String | False |
AssemblyUnbuild テーブルのDepartment_Name。 |
Department_Type | String | False |
AssemblyUnbuild テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
AssemblyUnbuild テーブルのExternalId。 |
InventoryDetail_CustomForm_ExternalId | String | False |
AssemblyUnbuild テーブルのInventoryDetail_CustomForm_ExternalId。 |
InventoryDetail_CustomForm_InternalId | String | False |
AssemblyUnbuild テーブルのInventoryDetail_CustomForm_InternalId。 |
InventoryDetail_CustomForm_Name | String | False |
AssemblyUnbuild テーブルのInventoryDetail_CustomForm_Name。 |
InventoryDetail_CustomForm_Type | String | False |
AssemblyUnbuild テーブルのInventoryDetail_CustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
InventoryDetail_InventoryAssignmentList_ReplaceAll | Boolean | False |
AssemblyUnbuild テーブルのInventoryDetail_InventoryAssignmentList_ReplaceAll。 |
Item_ExternalId | String | False |
AssemblyUnbuild テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
AssemblyUnbuild テーブルのItem_InternalId。 |
Item_Name | String | False |
AssemblyUnbuild テーブルのItem_Name。 |
Item_Type | String | False |
AssemblyUnbuild テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
AssemblyUnbuild テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
AssemblyUnbuild テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
AssemblyUnbuild テーブルのLocation_InternalId。 |
Location_Name | String | False |
AssemblyUnbuild テーブルのLocation_Name。 |
Location_Type | String | False |
AssemblyUnbuild テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
AssemblyUnbuild テーブルのMemo。 |
PostingPeriod_ExternalId | String | False |
AssemblyUnbuild テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
AssemblyUnbuild テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
AssemblyUnbuild テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
AssemblyUnbuild テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Quantity | Double | False |
AssemblyUnbuild テーブルのQuantity。 |
SerialNumbers | String | False |
AssemblyUnbuild テーブルのSerialNumbers。 |
Subsidiary_ExternalId | String | False |
AssemblyUnbuild テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
AssemblyUnbuild テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
AssemblyUnbuild テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
AssemblyUnbuild テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Total | Double | False |
AssemblyUnbuild テーブルのTotal。 |
TranDate | Datetime | False |
AssemblyUnbuild テーブルのTranDate。 |
TranId | String | False |
AssemblyUnbuild テーブルのTranId。 |
Units_ExternalId | String | False |
AssemblyUnbuild テーブルのUnits_ExternalId。 |
Units_InternalId | String | False |
AssemblyUnbuild テーブルのUnits_InternalId。 |
Units_Name | String | False |
AssemblyUnbuild テーブルのUnits_Name。 |
Units_Type | String | False |
AssemblyUnbuild テーブルのUnits_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のBin テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Bin テーブルのInternalId。 |
BinNumber | String | False |
Bin テーブルのBinNumber。 |
ExternalId | String | False |
Bin テーブルのExternalId。 |
IsInactive | Boolean | False |
Bin テーブルのIsInactive。 |
Location_ExternalId | String | False |
Bin テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
Bin テーブルのLocation_InternalId。 |
Location_Name | String | False |
Bin テーブルのLocation_Name。 |
Location_Type | String | False |
Bin テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
Bin テーブルのMemo。 |
NetSuite のBinTransfer テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
BinTransfer テーブルのInternalId。 |
CreatedDate | Datetime | False |
BinTransfer テーブルのCreatedDate。 |
ExternalId | String | False |
BinTransfer テーブルのExternalId。 |
InventoryList_ReplaceAll | Boolean | False |
BinTransfer テーブルのInventoryList_ReplaceAll。 |
LastModifiedDate | Datetime | False |
BinTransfer テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
BinTransfer テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
BinTransfer テーブルのLocation_InternalId。 |
Location_Name | String | False |
BinTransfer テーブルのLocation_Name。 |
Location_Type | String | False |
BinTransfer テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
BinTransfer テーブルのMemo。 |
Subsidiary_ExternalId | String | False |
BinTransfer テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
BinTransfer テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
BinTransfer テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
BinTransfer テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranDate | Datetime | False |
BinTransfer テーブルのTranDate。 |
TranId | String | False |
BinTransfer テーブルのTranId。 |
NetSuite のBudget テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Budget テーブルのInternalId。 |
Account_ExternalId | String | False |
Budget テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
Budget テーブルのAccount_InternalId。 |
Account_Name | String | False |
Budget テーブルのAccount_Name。 |
Account_Type | String | False |
Budget テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Amount | Double | False |
Budget テーブルのAmount。 |
BudgetType | String | False |
Budget テーブルのBudgetType。 The allowed values are _global, _local. |
Category_ExternalId | String | False |
Budget テーブルのCategory_ExternalId。 |
Category_InternalId | String | False |
Budget テーブルのCategory_InternalId。 |
Category_Name | String | False |
Budget テーブルのCategory_Name。 |
Category_Type | String | False |
Budget テーブルのCategory_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Class_ExternalId | String | False |
Budget テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
Budget テーブルのClass_InternalId。 |
Class_Name | String | False |
Budget テーブルのClass_Name。 |
Class_Type | String | False |
Budget テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
Budget テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
Budget テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
Budget テーブルのCurrency_Name。 |
Currency_Type | String | False |
Budget テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Customer_ExternalId | String | False |
Budget テーブルのCustomer_ExternalId。 |
Customer_InternalId | String | False |
Budget テーブルのCustomer_InternalId。 |
Customer_Name | String | False |
Budget テーブルのCustomer_Name。 |
Customer_Type | String | False |
Budget テーブルのCustomer_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
Budget テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
Budget テーブルのDepartment_InternalId。 |
Department_Name | String | False |
Budget テーブルのDepartment_Name。 |
Department_Type | String | False |
Budget テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Item_ExternalId | String | False |
Budget テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
Budget テーブルのItem_InternalId。 |
Item_Name | String | False |
Budget テーブルのItem_Name。 |
Item_Type | String | False |
Budget テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Location_ExternalId | String | False |
Budget テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
Budget テーブルのLocation_InternalId。 |
Location_Name | String | False |
Budget テーブルのLocation_Name。 |
Location_Type | String | False |
Budget テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PeriodAmount1 | Double | False |
Budget テーブルのPeriodAmount1。 |
PeriodAmount10 | Double | False |
Budget テーブルのPeriodAmount10。 |
PeriodAmount11 | Double | False |
Budget テーブルのPeriodAmount11。 |
PeriodAmount12 | Double | False |
Budget テーブルのPeriodAmount12。 |
PeriodAmount2 | Double | False |
Budget テーブルのPeriodAmount2。 |
PeriodAmount3 | Double | False |
Budget テーブルのPeriodAmount3。 |
PeriodAmount4 | Double | False |
Budget テーブルのPeriodAmount4。 |
PeriodAmount5 | Double | False |
Budget テーブルのPeriodAmount5。 |
PeriodAmount6 | Double | False |
Budget テーブルのPeriodAmount6。 |
PeriodAmount7 | Double | False |
Budget テーブルのPeriodAmount7。 |
PeriodAmount8 | Double | False |
Budget テーブルのPeriodAmount8。 |
PeriodAmount9 | Double | False |
Budget テーブルのPeriodAmount9。 |
Subsidiary_ExternalId | String | False |
Budget テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
Budget テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
Budget テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
Budget テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Year_ExternalId | String | False |
Budget テーブルのYear_ExternalId。 |
Year_InternalId | String | False |
Budget テーブルのYear_InternalId。 |
Year_Name | String | False |
Budget テーブルのYear_Name。 |
Year_Type | String | False |
Budget テーブルのYear_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のBudgetCategory テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
BudgetCategory テーブルのInternalId。 |
BudgetType | Boolean | False |
BudgetCategory テーブルのBudgetType。 |
IsInactive | Boolean | False |
BudgetCategory テーブルのIsInactive。 |
Name | String | False |
BudgetCategory テーブルのName。 |
NetSuite のCalendarEvent テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CalendarEvent テーブルのInternalId。 |
AccessLevel | String | False |
CalendarEvent テーブルのAccessLevel。 The allowed values are _private, _public, _showAsBusy. |
AllDayEvent | Boolean | False |
CalendarEvent テーブルのAllDayEvent。 |
AttendeeList_ReplaceAll | Boolean | False |
CalendarEvent テーブルのAttendeeList_ReplaceAll。 |
Company_ExternalId | String | False |
CalendarEvent テーブルのCompany_ExternalId。 |
Company_InternalId | String | False |
CalendarEvent テーブルのCompany_InternalId。 |
Company_Name | String | False |
CalendarEvent テーブルのCompany_Name。 |
Company_Type | String | False |
CalendarEvent テーブルのCompany_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Contact_ExternalId | String | False |
CalendarEvent テーブルのContact_ExternalId。 |
Contact_InternalId | String | False |
CalendarEvent テーブルのContact_InternalId。 |
Contact_Name | String | False |
CalendarEvent テーブルのContact_Name。 |
Contact_Type | String | False |
CalendarEvent テーブルのContact_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
CalendarEvent テーブルのCreatedDate。 |
CustomForm_ExternalId | String | False |
CalendarEvent テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
CalendarEvent テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
CalendarEvent テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
CalendarEvent テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EndByDate | Datetime | False |
CalendarEvent テーブルのEndByDate。 |
EndDate | Datetime | False |
CalendarEvent テーブルのEndDate。 |
ExternalId | String | False |
CalendarEvent テーブルのExternalId。 |
Frequency | String | False |
CalendarEvent テーブルのFrequency。 The allowed values are _none, _day, _week, _month, _year. |
LastModifiedDate | Datetime | False |
CalendarEvent テーブルのLastModifiedDate。 |
Location | String | False |
CalendarEvent テーブルのLocation。 |
Message | String | False |
CalendarEvent テーブルのMessage。 |
NoEndDate | Boolean | False |
CalendarEvent テーブルのNoEndDate。 |
Organizer_ExternalId | String | False |
CalendarEvent テーブルのOrganizer_ExternalId。 |
Organizer_InternalId | String | False |
CalendarEvent テーブルのOrganizer_InternalId。 |
Organizer_Name | String | False |
CalendarEvent テーブルのOrganizer_Name。 |
Organizer_Type | String | False |
CalendarEvent テーブルのOrganizer_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Owner_ExternalId | String | False |
CalendarEvent テーブルのOwner_ExternalId。 |
Owner_InternalId | String | False |
CalendarEvent テーブルのOwner_InternalId。 |
Owner_Name | String | False |
CalendarEvent テーブルのOwner_Name。 |
Owner_Type | String | False |
CalendarEvent テーブルのOwner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Period | Long | False |
CalendarEvent テーブルのPeriod。 |
Recurrence | String | False |
CalendarEvent テーブルのRecurrence。 |
RecurrenceDow | String | False |
CalendarEvent テーブルのRecurrenceDow。 The allowed values are _sunday, _monday, _tuesday, _wednesday, _thursday, _friday, _saturday. |
RecurrenceDowim | String | False |
CalendarEvent テーブルのRecurrenceDowim。 The allowed values are _first, _second, _third, _fourth, _last. |
ReminderMinutes | String | False |
CalendarEvent テーブルのReminderMinutes。 The allowed values are _none, _0minutes, _10minutes, _12hours, _15minutes, _1day, _1hour, _1week, _2days, _2hours, _30minutes, _3days, _3hours, _4hours, _5hours, _5minutes, _8hours. |
ReminderType | String | False |
CalendarEvent テーブルのReminderType。 The allowed values are _none, _eMail, _popupWindow. |
ResourceList_ReplaceAll | Boolean | False |
CalendarEvent テーブルのResourceList_ReplaceAll。 |
SendEmail | Boolean | False |
CalendarEvent テーブルのSendEmail。 |
SeriesStartDate | Datetime | False |
CalendarEvent テーブルのSeriesStartDate。 |
StartDate | Datetime | False |
CalendarEvent テーブルのStartDate。 |
Status | String | False |
CalendarEvent テーブルのStatus。 The allowed values are _canceled, _completed, _confirmed, _tentative. |
SupportCase_ExternalId | String | False |
CalendarEvent テーブルのSupportCase_ExternalId。 |
SupportCase_InternalId | String | False |
CalendarEvent テーブルのSupportCase_InternalId。 |
SupportCase_Name | String | False |
CalendarEvent テーブルのSupportCase_Name。 |
SupportCase_Type | String | False |
CalendarEvent テーブルのSupportCase_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TimedEvent | Boolean | False |
CalendarEvent テーブルのTimedEvent。 |
TimeItemList_ReplaceAll | Boolean | False |
CalendarEvent テーブルのTimeItemList_ReplaceAll。 |
Title | String | False |
CalendarEvent テーブルのTitle。 |
Transaction_ExternalId | String | False |
CalendarEvent テーブルのTransaction_ExternalId。 |
Transaction_InternalId | String | False |
CalendarEvent テーブルのTransaction_InternalId。 |
Transaction_Name | String | False |
CalendarEvent テーブルのTransaction_Name。 |
Transaction_Type | String | False |
CalendarEvent テーブルのTransaction_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のCampaign テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Campaign テーブルのInternalId。 |
Audience_ExternalId | String | False |
Campaign テーブルのAudience_ExternalId。 |
Audience_InternalId | String | False |
Campaign テーブルのAudience_InternalId。 |
Audience_Name | String | False |
Campaign テーブルのAudience_Name。 |
Audience_Type | String | False |
Campaign テーブルのAudience_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BaseCost | Double | False |
Campaign テーブルのBaseCost。 |
CampaignDirectMailList_ReplaceAll | Boolean | False |
Campaign テーブルのCampaignDirectMailList_ReplaceAll。 |
CampaignEmailList_ReplaceAll | Boolean | False |
Campaign テーブルのCampaignEmailList_ReplaceAll。 |
CampaignEventList_ReplaceAll | Boolean | False |
Campaign テーブルのCampaignEventList_ReplaceAll。 |
CampaignId | String | False |
Campaign テーブルのCampaignId。 |
Category_ExternalId | String | False |
Campaign テーブルのCategory_ExternalId。 |
Category_InternalId | String | False |
Campaign テーブルのCategory_InternalId。 |
Category_Name | String | False |
Campaign テーブルのCategory_Name。 |
Category_Type | String | False |
Campaign テーブルのCategory_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ConvCostPerCustomer | Double | False |
Campaign テーブルのConvCostPerCustomer。 |
Conversions | Long | False |
Campaign テーブルのConversions。 |
Cost | Double | False |
Campaign テーブルのCost。 |
CostPerCustomer | Double | False |
Campaign テーブルのCostPerCustomer。 |
CustomForm_ExternalId | String | False |
Campaign テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Campaign テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Campaign テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Campaign テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EndDate | Datetime | False |
Campaign テーブルのEndDate。 |
EventResponseList_ReplaceAll | Boolean | False |
Campaign テーブルのEventResponseList_ReplaceAll。 |
ExpectedRevenue | Double | False |
Campaign テーブルのExpectedRevenue。 |
ExternalId | String | False |
Campaign テーブルのExternalId。 |
Family_ExternalId | String | False |
Campaign テーブルのFamily_ExternalId。 |
Family_InternalId | String | False |
Campaign テーブルのFamily_InternalId。 |
Family_Name | String | False |
Campaign テーブルのFamily_Name。 |
Family_Type | String | False |
Campaign テーブルのFamily_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsInactive | Boolean | False |
Campaign テーブルのIsInactive。 |
Keyword | String | False |
Campaign テーブルのKeyword。 |
LeadsGenerated | Long | False |
Campaign テーブルのLeadsGenerated。 |
Local | Boolean | False |
Campaign テーブルのLocal。 |
Message | String | False |
Campaign テーブルのMessage。 |
Offer_ExternalId | String | False |
Campaign テーブルのOffer_ExternalId。 |
Offer_InternalId | String | False |
Campaign テーブルのOffer_InternalId。 |
Offer_Name | String | False |
Campaign テーブルのOffer_Name。 |
Offer_Type | String | False |
Campaign テーブルのOffer_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Owner_ExternalId | String | False |
Campaign テーブルのOwner_ExternalId。 |
Owner_InternalId | String | False |
Campaign テーブルのOwner_InternalId。 |
Owner_Name | String | False |
Campaign テーブルのOwner_Name。 |
Owner_Type | String | False |
Campaign テーブルのOwner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Profit | Double | False |
Campaign テーブルのProfit。 |
PromotionCode_ExternalId | String | False |
Campaign テーブルのPromotionCode_ExternalId。 |
PromotionCode_InternalId | String | False |
Campaign テーブルのPromotionCode_InternalId。 |
PromotionCode_Name | String | False |
Campaign テーブルのPromotionCode_Name。 |
PromotionCode_Type | String | False |
Campaign テーブルのPromotionCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Roi | Double | False |
Campaign テーブルのRoi。 |
SearchEngine_ExternalId | String | False |
Campaign テーブルのSearchEngine_ExternalId。 |
SearchEngine_InternalId | String | False |
Campaign テーブルのSearchEngine_InternalId。 |
SearchEngine_Name | String | False |
Campaign テーブルのSearchEngine_Name。 |
SearchEngine_Type | String | False |
Campaign テーブルのSearchEngine_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
StartDate | Datetime | False |
Campaign テーブルのStartDate。 |
Title | String | False |
Campaign テーブルのTitle。 |
TotalRevenue | Double | False |
Campaign テーブルのTotalRevenue。 |
UniqueVisitors | Long | False |
Campaign テーブルのUniqueVisitors。 |
Url | String | False |
Campaign テーブルのUrl。 |
Vertical_ExternalId | String | False |
Campaign テーブルのVertical_ExternalId。 |
Vertical_InternalId | String | False |
Campaign テーブルのVertical_InternalId。 |
Vertical_Name | String | False |
Campaign テーブルのVertical_Name。 |
Vertical_Type | String | False |
Campaign テーブルのVertical_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のCampaignAudience テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CampaignAudience テーブルのInternalId。 |
Description | String | False |
CampaignAudience テーブルのDescription。 |
ExternalId | String | False |
CampaignAudience テーブルのExternalId。 |
IsInactive | Boolean | False |
CampaignAudience テーブルのIsInactive。 |
Name | String | False |
CampaignAudience テーブルのName。 |
NetSuite のCampaignCategory テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CampaignCategory テーブルのInternalId。 |
Description | String | False |
CampaignCategory テーブルのDescription。 |
ExternalId | String | False |
CampaignCategory テーブルのExternalId。 |
Isexternal | Boolean | False |
CampaignCategory テーブルのIsexternal。 |
IsInactive | Boolean | False |
CampaignCategory テーブルのIsInactive。 |
LeadSource_ExternalId | String | False |
CampaignCategory テーブルのLeadSource_ExternalId。 |
LeadSource_InternalId | String | False |
CampaignCategory テーブルのLeadSource_InternalId。 |
LeadSource_Name | String | False |
CampaignCategory テーブルのLeadSource_Name。 |
LeadSource_Type | String | False |
CampaignCategory テーブルのLeadSource_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Name | String | False |
CampaignCategory テーブルのName。 |
Parent_ExternalId | String | False |
CampaignCategory テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
CampaignCategory テーブルのParent_InternalId。 |
Parent_Name | String | False |
CampaignCategory テーブルのParent_Name。 |
Parent_Type | String | False |
CampaignCategory テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のCampaignChannel テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CampaignChannel テーブルのInternalId。 |
Description | String | False |
CampaignChannel テーブルのDescription。 |
EventType | String | False |
CampaignChannel テーブルのEventType。 The allowed values are _directMail, _email, _integration, _other. |
ExternalId | String | False |
CampaignChannel テーブルのExternalId。 |
IsInactive | Boolean | False |
CampaignChannel テーブルのIsInactive。 |
Name | String | False |
CampaignChannel テーブルのName。 |
NetSuite のCampaignFamily テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CampaignFamily テーブルのInternalId。 |
Description | String | False |
CampaignFamily テーブルのDescription。 |
ExternalId | String | False |
CampaignFamily テーブルのExternalId。 |
IsInactive | Boolean | False |
CampaignFamily テーブルのIsInactive。 |
Name | String | False |
CampaignFamily テーブルのName。 |
NetSuite のCampaignOffer テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CampaignOffer テーブルのInternalId。 |
Description | String | False |
CampaignOffer テーブルのDescription。 |
ExternalId | String | False |
CampaignOffer テーブルのExternalId。 |
IsInactive | Boolean | False |
CampaignOffer テーブルのIsInactive。 |
Name | String | False |
CampaignOffer テーブルのName。 |
NetSuite のCampaignSearchEngine テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CampaignSearchEngine テーブルのInternalId。 |
Description | String | False |
CampaignSearchEngine テーブルのDescription。 |
ExternalId | String | False |
CampaignSearchEngine テーブルのExternalId。 |
IsInactive | Boolean | False |
CampaignSearchEngine テーブルのIsInactive。 |
Name | String | False |
CampaignSearchEngine テーブルのName。 |
NetSuite のCampaignSubscription テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CampaignSubscription テーブルのInternalId。 |
Description | String | False |
CampaignSubscription テーブルのDescription。 |
ExternalDescription | String | False |
CampaignSubscription テーブルのExternalDescription。 |
ExternalId | String | False |
CampaignSubscription テーブルのExternalId。 |
ExternalName | String | False |
CampaignSubscription テーブルのExternalName。 |
IsInactive | Boolean | False |
CampaignSubscription テーブルのIsInactive。 |
Name | String | False |
CampaignSubscription テーブルのName。 |
SubscribedByDefault | Boolean | False |
CampaignSubscription テーブルのSubscribedByDefault。 |
Unsubscribed | Boolean | False |
CampaignSubscription テーブルのUnsubscribed。 |
NetSuite のCampaignVertical テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CampaignVertical テーブルのInternalId。 |
Description | String | False |
CampaignVertical テーブルのDescription。 |
ExternalId | String | False |
CampaignVertical テーブルのExternalId。 |
IsInactive | Boolean | False |
CampaignVertical テーブルのIsInactive。 |
Name | String | False |
CampaignVertical テーブルのName。 |
NetSuite のCashRefund テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CashRefund テーブルのInternalId。 |
Account_ExternalId | String | False |
CashRefund テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
CashRefund テーブルのAccount_InternalId。 |
Account_Name | String | False |
CashRefund テーブルのAccount_Name。 |
Account_Type | String | False |
CashRefund テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
AltHandlingCost | Double | False |
CashRefund テーブルのAltHandlingCost。 |
AltShippingCost | Double | False |
CashRefund テーブルのAltShippingCost。 |
BillAddress | String | False |
CashRefund テーブルのBillAddress。 |
BillAddressList_ExternalId | String | False |
CashRefund テーブルのBillAddressList_ExternalId。 |
BillAddressList_InternalId | String | False |
CashRefund テーブルのBillAddressList_InternalId。 |
BillAddressList_Name | String | False |
CashRefund テーブルのBillAddressList_Name。 |
BillAddressList_Type | String | False |
CashRefund テーブルのBillAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CcApproved | Boolean | False |
CashRefund テーブルのCcApproved。 |
CcExpireDate | Datetime | False |
CashRefund テーブルのCcExpireDate。 |
CcIsPurchaseCardBin | Boolean | False |
CashRefund テーブルのCcIsPurchaseCardBin。 |
CcName | String | False |
CashRefund テーブルのCcName。 |
CcNumber | String | False |
CashRefund テーブルのCcNumber。 |
CcProcessAsPurchaseCard | Boolean | False |
CashRefund テーブルのCcProcessAsPurchaseCard。 |
CcStreet | String | False |
CashRefund テーブルのCcStreet。 |
CcZipCode | String | False |
CashRefund テーブルのCcZipCode。 |
ChargeIt | Boolean | False |
CashRefund テーブルのChargeIt。 |
Class_ExternalId | String | False |
CashRefund テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
CashRefund テーブルのClass_InternalId。 |
Class_Name | String | False |
CashRefund テーブルのClass_Name。 |
Class_Type | String | False |
CashRefund テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ContribPct | String | False |
CashRefund テーブルのContribPct。 |
CreatedDate | Datetime | False |
CashRefund テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
CashRefund テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
CashRefund テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
CashRefund テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
CashRefund テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditCard_ExternalId | String | False |
CashRefund テーブルのCreditCard_ExternalId。 |
CreditCard_InternalId | String | False |
CashRefund テーブルのCreditCard_InternalId。 |
CreditCard_Name | String | False |
CashRefund テーブルのCreditCard_Name。 |
CreditCard_Type | String | False |
CashRefund テーブルのCreditCard_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditCardProcessor_ExternalId | String | False |
CashRefund テーブルのCreditCardProcessor_ExternalId。 |
CreditCardProcessor_InternalId | String | False |
CashRefund テーブルのCreditCardProcessor_InternalId。 |
CreditCardProcessor_Name | String | False |
CashRefund テーブルのCreditCardProcessor_Name。 |
CreditCardProcessor_Type | String | False |
CashRefund テーブルのCreditCardProcessor_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
CashRefund テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
CashRefund テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
CashRefund テーブルのCurrency_Name。 |
Currency_Type | String | False |
CashRefund テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
CashRefund テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
CashRefund テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
CashRefund テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
CashRefund テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
CashRefund テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DebitCardIssueNo | String | False |
CashRefund テーブルのDebitCardIssueNo。 |
DeferredRevenue | Double | False |
CashRefund テーブルのDeferredRevenue。 |
Department_ExternalId | String | False |
CashRefund テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
CashRefund テーブルのDepartment_InternalId。 |
Department_Name | String | False |
CashRefund テーブルのDepartment_Name。 |
Department_Type | String | False |
CashRefund テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountItem_ExternalId | String | False |
CashRefund テーブルのDiscountItem_ExternalId。 |
DiscountItem_InternalId | String | False |
CashRefund テーブルのDiscountItem_InternalId。 |
DiscountItem_Name | String | False |
CashRefund テーブルのDiscountItem_Name。 |
DiscountItem_Type | String | False |
CashRefund テーブルのDiscountItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountRate | String | False |
CashRefund テーブルのDiscountRate。 |
DiscountTotal | Double | False |
CashRefund テーブルのDiscountTotal。 |
String | False |
CashRefund テーブルのEmail。 | |
Entity_ExternalId | String | False |
CashRefund テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
CashRefund テーブルのEntity_InternalId。 |
Entity_Name | String | False |
CashRefund テーブルのEntity_Name。 |
Entity_Type | String | False |
CashRefund テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EstGrossProfit | Double | False |
CashRefund テーブルのEstGrossProfit。 |
EstGrossProfitPercent | Double | False |
CashRefund テーブルのEstGrossProfitPercent。 |
ExchangeRate | Double | False |
CashRefund テーブルのExchangeRate。 |
ExcludeCommission | Boolean | False |
CashRefund テーブルのExcludeCommission。 |
ExternalId | String | False |
CashRefund テーブルのExternalId。 |
Fax | String | False |
CashRefund テーブルのFax。 |
GiftCert_ExternalId | String | False |
CashRefund テーブルのGiftCert_ExternalId。 |
GiftCert_InternalId | String | False |
CashRefund テーブルのGiftCert_InternalId。 |
GiftCert_Name | String | False |
CashRefund テーブルのGiftCert_Name。 |
GiftCert_Type | String | False |
CashRefund テーブルのGiftCert_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
GiftCertApplied | Double | False |
CashRefund テーブルのGiftCertApplied。 |
GiftCertAvailable | Double | False |
CashRefund テーブルのGiftCertAvailable。 |
GiftCertTotal | Double | False |
CashRefund テーブルのGiftCertTotal。 |
HandlingCost | Double | False |
CashRefund テーブルのHandlingCost。 |
HandlingTax1Rate | Double | False |
CashRefund テーブルのHandlingTax1Rate。 |
HandlingTax2Rate | String | False |
CashRefund テーブルのHandlingTax2Rate。 |
HandlingTaxCode_ExternalId | String | False |
CashRefund テーブルのHandlingTaxCode_ExternalId。 |
HandlingTaxCode_InternalId | String | False |
CashRefund テーブルのHandlingTaxCode_InternalId。 |
HandlingTaxCode_Name | String | False |
CashRefund テーブルのHandlingTaxCode_Name。 |
HandlingTaxCode_Type | String | False |
CashRefund テーブルのHandlingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsTaxable | Boolean | False |
CashRefund テーブルのIsTaxable。 |
ItemList_ReplaceAll | Boolean | False |
CashRefund テーブルのItemList_ReplaceAll。 |
Job_ExternalId | String | False |
CashRefund テーブルのJob_ExternalId。 |
Job_InternalId | String | False |
CashRefund テーブルのJob_InternalId。 |
Job_Name | String | False |
CashRefund テーブルのJob_Name。 |
Job_Type | String | False |
CashRefund テーブルのJob_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
CashRefund テーブルのLastModifiedDate。 |
LeadSource_ExternalId | String | False |
CashRefund テーブルのLeadSource_ExternalId。 |
LeadSource_InternalId | String | False |
CashRefund テーブルのLeadSource_InternalId。 |
LeadSource_Name | String | False |
CashRefund テーブルのLeadSource_Name。 |
LeadSource_Type | String | False |
CashRefund テーブルのLeadSource_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Location_ExternalId | String | False |
CashRefund テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
CashRefund テーブルのLocation_InternalId。 |
Location_Name | String | False |
CashRefund テーブルのLocation_Name。 |
Location_Type | String | False |
CashRefund テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
CashRefund テーブルのMemo。 |
Message | String | False |
CashRefund テーブルのMessage。 |
MessageSel_ExternalId | String | False |
CashRefund テーブルのMessageSel_ExternalId。 |
MessageSel_InternalId | String | False |
CashRefund テーブルのMessageSel_InternalId。 |
MessageSel_Name | String | False |
CashRefund テーブルのMessageSel_Name。 |
MessageSel_Type | String | False |
CashRefund テーブルのMessageSel_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OtherRefNum | String | False |
RefNum of the CashRefund テーブルのOtherRefNum。 |
Partner_ExternalId | String | False |
CashRefund テーブルのPartner_ExternalId。 |
Partner_InternalId | String | False |
CashRefund テーブルのPartner_InternalId。 |
Partner_Name | String | False |
CashRefund テーブルのPartner_Name。 |
Partner_Type | String | False |
CashRefund テーブルのPartner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PartnersList_ReplaceAll | Boolean | False |
CashRefund テーブルのPartnersList_ReplaceAll。 |
PaymentMethod_ExternalId | String | False |
CashRefund テーブルのPaymentMethod_ExternalId。 |
PaymentMethod_InternalId | String | False |
CashRefund テーブルのPaymentMethod_InternalId。 |
PaymentMethod_Name | String | False |
CashRefund テーブルのPaymentMethod_Name。 |
PaymentMethod_Type | String | False |
CashRefund テーブルのPaymentMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PayPalAuthId | String | False |
CashRefund テーブルのPayPalAuthId。 |
PayPalProcess | Boolean | False |
CashRefund テーブルのPayPalProcess。 |
PayPalStatus | String | False |
CashRefund テーブルのPayPalStatus。 |
PayPalTranId | String | False |
CashRefund テーブルのPayPalTranId。 |
PnRefNum | String | False |
CashRefund テーブルのPnRefNum。 |
PostingPeriod_ExternalId | String | False |
CashRefund テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
CashRefund テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
CashRefund テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
CashRefund テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PromoCode_ExternalId | String | False |
CashRefund テーブルのPromoCode_ExternalId。 |
PromoCode_InternalId | String | False |
CashRefund テーブルのPromoCode_InternalId。 |
PromoCode_Name | String | False |
CashRefund テーブルのPromoCode_Name。 |
PromoCode_Type | String | False |
CashRefund テーブルのPromoCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RecognizedRevenue | Double | False |
CashRefund テーブルのRecognizedRevenue。 |
RefundCheck | Boolean | False |
CashRefund テーブルのRefundCheck。 |
RevenueStatus | String | False |
CashRefund テーブルのRevenueStatus。 The allowed values are _pending, _inProgress, _completed, _onRevCommitment. |
RevRecOnRevCommitment | Boolean | False |
CashRefund テーブルのRevRecOnRevCommitment。 |
SalesEffectiveDate | Datetime | False |
CashRefund テーブルのSalesEffectiveDate。 |
SalesGroup_ExternalId | String | False |
CashRefund テーブルのSalesGroup_ExternalId。 |
SalesGroup_InternalId | String | False |
CashRefund テーブルのSalesGroup_InternalId。 |
SalesGroup_Name | String | False |
CashRefund テーブルのSalesGroup_Name。 |
SalesGroup_Type | String | False |
CashRefund テーブルのSalesGroup_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesRep_ExternalId | String | False |
CashRefund テーブルのSalesRep_ExternalId。 |
SalesRep_InternalId | String | False |
CashRefund テーブルのSalesRep_InternalId。 |
SalesRep_Name | String | False |
CashRefund テーブルのSalesRep_Name。 |
SalesRep_Type | String | False |
CashRefund テーブルのSalesRep_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesTeamList_ReplaceAll | Boolean | False |
CashRefund テーブルのSalesTeamList_ReplaceAll。 |
ShipMethod_ExternalId | String | False |
CashRefund テーブルのShipMethod_ExternalId。 |
ShipMethod_InternalId | String | False |
CashRefund テーブルのShipMethod_InternalId。 |
ShipMethod_Name | String | False |
CashRefund テーブルのShipMethod_Name。 |
ShipMethod_Type | String | False |
CashRefund テーブルのShipMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShippingCost | Double | False |
CashRefund テーブルのShippingCost。 |
ShippingTax1Rate | Double | False |
CashRefund テーブルのShippingTax1Rate。 |
ShippingTax2Rate | String | False |
CashRefund テーブルのShippingTax2Rate。 |
ShippingTaxCode_ExternalId | String | False |
CashRefund テーブルのShippingTaxCode_ExternalId。 |
ShippingTaxCode_InternalId | String | False |
CashRefund テーブルのShippingTaxCode_InternalId。 |
ShippingTaxCode_Name | String | False |
CashRefund テーブルのShippingTaxCode_Name。 |
ShippingTaxCode_Type | String | False |
CashRefund テーブルのShippingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Source | String | False |
CashRefund テーブルのSource。 |
Status | String | False |
CashRefund テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
CashRefund テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
CashRefund テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
CashRefund テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
CashRefund テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SubTotal | Double | False |
CashRefund テーブルのSubTotal。 |
SyncPartnerTeams | Boolean | False |
CashRefund テーブルのSyncPartnerTeams。 |
SyncSalesTeams | Boolean | False |
CashRefund テーブルのSyncSalesTeams。 |
Tax2Total | Double | False |
CashRefund テーブルのTax2Total。 |
TaxItem_ExternalId | String | False |
CashRefund テーブルのTaxItem_ExternalId。 |
TaxItem_InternalId | String | False |
CashRefund テーブルのTaxItem_InternalId。 |
TaxItem_Name | String | False |
CashRefund テーブルのTaxItem_Name。 |
TaxItem_Type | String | False |
CashRefund テーブルのTaxItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxRate | Double | False |
CashRefund テーブルのTaxRate。 |
TaxTotal | Double | False |
CashRefund テーブルのTaxTotal。 |
ToBeEmailed | Boolean | False |
CashRefund テーブルのToBeEmailed。 |
ToBeFaxed | Boolean | False |
CashRefund テーブルのToBeFaxed。 |
ToBePrinted | Boolean | False |
CashRefund テーブルのToBePrinted。 |
ToPrint2 | Boolean | False |
CashRefund テーブルのToPrint2。 |
Total | Double | False |
CashRefund テーブルのTotal。 |
TotalCostEstimate | Double | False |
CashRefund テーブルのTotalCostEstimate。 |
TranDate | Datetime | False |
CashRefund テーブルのTranDate。 |
TranId | String | False |
CashRefund テーブルのTranId。 |
TranIsVsoeBundle | Boolean | False |
CashRefund テーブルのTranIsVsoeBundle。 |
TransactionBillAddress_BillAddr1 | String | False |
CashRefund テーブルのTransactionBillAddress_BillAddr1。 |
TransactionBillAddress_BillAddr2 | String | False |
CashRefund テーブルのTransactionBillAddress_BillAddr2。 |
TransactionBillAddress_BillAddr3 | String | False |
CashRefund テーブルのTransactionBillAddress_BillAddr3。 |
TransactionBillAddress_BillAddressee | String | False |
CashRefund テーブルのTransactionBillAddress_BillAddressee。 |
TransactionBillAddress_BillAttention | String | False |
CashRefund テーブルのTransactionBillAddress_BillAttention。 |
TransactionBillAddress_BillCity | String | False |
CashRefund テーブルのTransactionBillAddress_BillCity。 |
TransactionBillAddress_BillCountry | String | False |
CashRefund テーブルのTransactionBillAddress_BillCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionBillAddress_BillPhone | String | False |
CashRefund テーブルのTransactionBillAddress_BillPhone。 |
TransactionBillAddress_BillState | String | False |
CashRefund テーブルのTransactionBillAddress_BillState。 |
TransactionBillAddress_BillZip | String | False |
CashRefund テーブルのTransactionBillAddress_BillZip。 |
ValidFrom | Datetime | False |
CashRefund テーブルのValidFrom。 |
VatRegNum | String | False |
CashRefund テーブルのVatRegNum。 |
VsoeAutoCalc | Boolean | False |
CashRefund テーブルのVsoeAutoCalc。 |
NetSuite のCashSale テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CashSale テーブルのInternalId。 |
Account_ExternalId | String | False |
CashSale テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
CashSale テーブルのAccount_InternalId。 |
Account_Name | String | False |
CashSale テーブルのAccount_Name。 |
Account_Type | String | False |
CashSale テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
AltHandlingCost | Double | False |
CashSale テーブルのAltHandlingCost。 |
AltShippingCost | Double | False |
CashSale テーブルのAltShippingCost。 |
AuthCode | String | False |
CashSale テーブルのAuthCode。 |
BillAddress | String | False |
CashSale テーブルのBillAddress。 |
BillAddressList_ExternalId | String | False |
CashSale テーブルのBillAddressList_ExternalId。 |
BillAddressList_InternalId | String | False |
CashSale テーブルのBillAddressList_InternalId。 |
BillAddressList_Name | String | False |
CashSale テーブルのBillAddressList_Name。 |
BillAddressList_Type | String | False |
CashSale テーブルのBillAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BillingSchedule_ExternalId | String | False |
CashSale テーブルのBillingSchedule_ExternalId。 |
BillingSchedule_InternalId | String | False |
CashSale テーブルのBillingSchedule_InternalId。 |
BillingSchedule_Name | String | False |
CashSale テーブルのBillingSchedule_Name。 |
BillingSchedule_Type | String | False |
CashSale テーブルのBillingSchedule_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CcApproved | Boolean | False |
CashSale テーブルのCcApproved。 |
CcAvsStreetMatch | String | False |
CashSale テーブルのCcAvsStreetMatch。 The allowed values are _n, _x, _y. |
CcAvsZipMatch | String | False |
CashSale テーブルのCcAvsZipMatch。 The allowed values are _n, _x, _y. |
CcExpireDate | Datetime | False |
CashSale テーブルのCcExpireDate。 |
CcIsPurchaseCardBin | Boolean | False |
CashSale テーブルのCcIsPurchaseCardBin。 |
CcName | String | False |
CashSale テーブルのCcName。 |
CcNumber | String | False |
CashSale テーブルのCcNumber。 |
CcProcessAsPurchaseCard | Boolean | False |
CashSale テーブルのCcProcessAsPurchaseCard。 |
CcSecurityCode | String | False |
CashSale テーブルのCcSecurityCode。 |
CcSecurityCodeMatch | String | False |
CashSale テーブルのCcSecurityCodeMatch。 The allowed values are _n, _x, _y. |
CcStreet | String | False |
CashSale テーブルのCcStreet。 |
CcZipCode | String | False |
CashSale テーブルのCcZipCode。 |
ChargeIt | Boolean | False |
CashSale テーブルのChargeIt。 |
Class_ExternalId | String | False |
CashSale テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
CashSale テーブルのClass_InternalId。 |
Class_Name | String | False |
CashSale テーブルのClass_Name。 |
Class_Type | String | False |
CashSale テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ContribPct | String | False |
CashSale テーブルのContribPct。 |
CreatedDate | Datetime | False |
CashSale テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
CashSale テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
CashSale テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
CashSale テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
CashSale テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditCard_ExternalId | String | False |
CashSale テーブルのCreditCard_ExternalId。 |
CreditCard_InternalId | String | False |
CashSale テーブルのCreditCard_InternalId。 |
CreditCard_Name | String | False |
CashSale テーブルのCreditCard_Name。 |
CreditCard_Type | String | False |
CashSale テーブルのCreditCard_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditCardProcessor_ExternalId | String | False |
CashSale テーブルのCreditCardProcessor_ExternalId。 |
CreditCardProcessor_InternalId | String | False |
CashSale テーブルのCreditCardProcessor_InternalId。 |
CreditCardProcessor_Name | String | False |
CashSale テーブルのCreditCardProcessor_Name。 |
CreditCardProcessor_Type | String | False |
CashSale テーブルのCreditCardProcessor_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
CashSale テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
CashSale テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
CashSale テーブルのCurrency_Name。 |
Currency_Type | String | False |
CashSale テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
CashSale テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
CashSale テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
CashSale テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
CashSale テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
CashSale テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DebitCardIssueNo | String | False |
CashSale テーブルのDebitCardIssueNo。 |
DeferredRevenue | Double | False |
CashSale テーブルのDeferredRevenue。 |
Department_ExternalId | String | False |
CashSale テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
CashSale テーブルのDepartment_InternalId。 |
Department_Name | String | False |
CashSale テーブルのDepartment_Name。 |
Department_Type | String | False |
CashSale テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountItem_ExternalId | String | False |
CashSale テーブルのDiscountItem_ExternalId。 |
DiscountItem_InternalId | String | False |
CashSale テーブルのDiscountItem_InternalId。 |
DiscountItem_Name | String | False |
CashSale テーブルのDiscountItem_Name。 |
DiscountItem_Type | String | False |
CashSale テーブルのDiscountItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountRate | String | False |
CashSale テーブルのDiscountRate。 |
DiscountTotal | Double | False |
CashSale テーブルのDiscountTotal。 |
String | False |
CashSale テーブルのEmail。 | |
EndDate | Datetime | False |
CashSale テーブルのEndDate。 |
Entity_ExternalId | String | False |
CashSale テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
CashSale テーブルのEntity_InternalId。 |
Entity_Name | String | False |
CashSale テーブルのEntity_Name。 |
Entity_Type | String | False |
CashSale テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EstGrossProfit | Double | False |
CashSale テーブルのEstGrossProfit。 |
EstGrossProfitPercent | Double | False |
CashSale テーブルのEstGrossProfitPercent。 |
ExchangeRate | Double | False |
CashSale テーブルのExchangeRate。 |
ExcludeCommission | Boolean | False |
CashSale テーブルのExcludeCommission。 |
ExpCostDiscAmount | Double | False |
CashSale テーブルのExpCostDiscAmount。 |
ExpCostDiscount_ExternalId | String | False |
CashSale テーブルのExpCostDiscount_ExternalId。 |
ExpCostDiscount_InternalId | String | False |
CashSale テーブルのExpCostDiscount_InternalId。 |
ExpCostDiscount_Name | String | False |
CashSale テーブルのExpCostDiscount_Name。 |
ExpCostDiscount_Type | String | False |
CashSale テーブルのExpCostDiscount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExpCostDiscprint | Boolean | False |
CashSale テーブルのExpCostDiscprint。 |
ExpCostDiscRate | String | False |
CashSale テーブルのExpCostDiscRate。 |
ExpCostDiscTax1Amt | Double | False |
CashSale テーブルのExpCostDiscTax1Amt。 |
ExpCostDiscTaxable | Boolean | False |
CashSale テーブルのExpCostDiscTaxable。 |
ExpCostList_ReplaceAll | Boolean | False |
CashSale テーブルのExpCostList_ReplaceAll。 |
ExpCostTaxCode_ExternalId | String | False |
CashSale テーブルのExpCostTaxCode_ExternalId。 |
ExpCostTaxCode_InternalId | String | False |
CashSale テーブルのExpCostTaxCode_InternalId。 |
ExpCostTaxCode_Name | String | False |
CashSale テーブルのExpCostTaxCode_Name。 |
ExpCostTaxCode_Type | String | False |
CashSale テーブルのExpCostTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExpCostTaxRate1 | Double | False |
CashSale テーブルのExpCostTaxRate1。 |
ExpCostTaxRate2 | Double | False |
CashSale テーブルのExpCostTaxRate2。 |
ExternalId | String | False |
CashSale テーブルのExternalId。 |
Fax | String | False |
CashSale テーブルのFax。 |
Fob | String | False |
CashSale テーブルのFob。 |
GiftCertApplied | Double | False |
CashSale テーブルのGiftCertApplied。 |
GiftCertRedemptionList_ReplaceAll | Boolean | False |
CashSale テーブルのGiftCertRedemptionList_ReplaceAll。 |
HandlingCost | Double | False |
CashSale テーブルのHandlingCost。 |
HandlingTax1Rate | Double | False |
CashSale テーブルのHandlingTax1Rate。 |
HandlingTax2Rate | String | False |
CashSale テーブルのHandlingTax2Rate。 |
HandlingTaxCode_ExternalId | String | False |
CashSale テーブルのHandlingTaxCode_ExternalId。 |
HandlingTaxCode_InternalId | String | False |
CashSale テーブルのHandlingTaxCode_InternalId。 |
HandlingTaxCode_Name | String | False |
CashSale テーブルのHandlingTaxCode_Name。 |
HandlingTaxCode_Type | String | False |
CashSale テーブルのHandlingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IgnoreAvs | Boolean | False |
CashSale テーブルのIgnoreAvs。 |
IsTaxable | Boolean | False |
CashSale テーブルのIsTaxable。 |
ItemCostDiscAmount | Double | False |
CashSale テーブルのItemCostDiscAmount。 |
ItemCostDiscount_ExternalId | String | False |
CashSale テーブルのItemCostDiscount_ExternalId。 |
ItemCostDiscount_InternalId | String | False |
CashSale テーブルのItemCostDiscount_InternalId。 |
ItemCostDiscount_Name | String | False |
CashSale テーブルのItemCostDiscount_Name。 |
ItemCostDiscount_Type | String | False |
CashSale テーブルのItemCostDiscount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ItemCostDiscPrint | Boolean | False |
CashSale テーブルのItemCostDiscPrint。 |
ItemCostDiscRate | String | False |
CashSale テーブルのItemCostDiscRate。 |
ItemCostDiscTax1Amt | Double | False |
CashSale テーブルのItemCostDiscTax1Amt。 |
ItemCostDiscTaxable | Boolean | False |
CashSale テーブルのItemCostDiscTaxable。 |
ItemCostList_ReplaceAll | Boolean | False |
CashSale テーブルのItemCostList_ReplaceAll。 |
ItemCostTaxCode_ExternalId | String | False |
CashSale テーブルのItemCostTaxCode_ExternalId。 |
ItemCostTaxCode_InternalId | String | False |
CashSale テーブルのItemCostTaxCode_InternalId。 |
ItemCostTaxCode_Name | String | False |
CashSale テーブルのItemCostTaxCode_Name。 |
ItemCostTaxCode_Type | String | False |
CashSale テーブルのItemCostTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ItemCostTaxRate1 | Double | False |
CashSale テーブルのItemCostTaxRate1。 |
ItemCostTaxRate2 | Double | False |
CashSale テーブルのItemCostTaxRate2。 |
ItemList_ReplaceAll | Boolean | False |
CashSale テーブルのItemList_ReplaceAll。 |
Job_ExternalId | String | False |
CashSale テーブルのJob_ExternalId。 |
Job_InternalId | String | False |
CashSale テーブルのJob_InternalId。 |
Job_Name | String | False |
CashSale テーブルのJob_Name。 |
Job_Type | String | False |
CashSale テーブルのJob_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
CashSale テーブルのLastModifiedDate。 |
LeadSource_ExternalId | String | False |
CashSale テーブルのLeadSource_ExternalId。 |
LeadSource_InternalId | String | False |
CashSale テーブルのLeadSource_InternalId。 |
LeadSource_Name | String | False |
CashSale テーブルのLeadSource_Name。 |
LeadSource_Type | String | False |
CashSale テーブルのLeadSource_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LinkedTrackingNumbers | String | False |
CashSale テーブルのLinkedTrackingNumbers。 |
Location_ExternalId | String | False |
CashSale テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
CashSale テーブルのLocation_InternalId。 |
Location_Name | String | False |
CashSale テーブルのLocation_Name。 |
Location_Type | String | False |
CashSale テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
CashSale テーブルのMemo。 |
Message | String | False |
CashSale テーブルのMessage。 |
MessageSel_ExternalId | String | False |
CashSale テーブルのMessageSel_ExternalId。 |
MessageSel_InternalId | String | False |
CashSale テーブルのMessageSel_InternalId。 |
MessageSel_Name | String | False |
CashSale テーブルのMessageSel_Name。 |
MessageSel_Type | String | False |
CashSale テーブルのMessageSel_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Opportunity_ExternalId | String | False |
CashSale テーブルのOpportunity_ExternalId。 |
Opportunity_InternalId | String | False |
CashSale テーブルのOpportunity_InternalId。 |
Opportunity_Name | String | False |
CashSale テーブルのOpportunity_Name。 |
Opportunity_Type | String | False |
CashSale テーブルのOpportunity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OtherRefNum | String | False |
RefNum of the CashSale テーブルのOtherRefNum。 |
Partner_ExternalId | String | False |
CashSale テーブルのPartner_ExternalId。 |
Partner_InternalId | String | False |
CashSale テーブルのPartner_InternalId。 |
Partner_Name | String | False |
CashSale テーブルのPartner_Name。 |
Partner_Type | String | False |
CashSale テーブルのPartner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PartnersList_ReplaceAll | Boolean | False |
CashSale テーブルのPartnersList_ReplaceAll。 |
PaymentMethod_ExternalId | String | False |
CashSale テーブルのPaymentMethod_ExternalId。 |
PaymentMethod_InternalId | String | False |
CashSale テーブルのPaymentMethod_InternalId。 |
PaymentMethod_Name | String | False |
CashSale テーブルのPaymentMethod_Name。 |
PaymentMethod_Type | String | False |
CashSale テーブルのPaymentMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PaypalAuthId | String | False |
CashSale テーブルのPaypalAuthId。 |
PaypalProcess | Boolean | False |
CashSale テーブルのPaypalProcess。 |
PayPalStatus | String | False |
CashSale テーブルのPayPalStatus。 |
PayPalTranId | String | False |
CashSale テーブルのPayPalTranId。 |
PnRefNum | String | False |
CashSale テーブルのPnRefNum。 |
PostingPeriod_ExternalId | String | False |
CashSale テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
CashSale テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
CashSale テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
CashSale テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PromoCode_ExternalId | String | False |
CashSale テーブルのPromoCode_ExternalId。 |
PromoCode_InternalId | String | False |
CashSale テーブルのPromoCode_InternalId。 |
PromoCode_Name | String | False |
CashSale テーブルのPromoCode_Name。 |
PromoCode_Type | String | False |
CashSale テーブルのPromoCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RecognizedRevenue | Double | False |
CashSale テーブルのRecognizedRevenue。 |
RevenueStatus | String | False |
CashSale テーブルのRevenueStatus。 The allowed values are _pending, _inProgress, _completed, _onRevCommitment. |
RevRecEndDate | Datetime | False |
CashSale テーブルのRevRecEndDate。 |
RevRecOnRevCommitment | Boolean | False |
CashSale テーブルのRevRecOnRevCommitment。 |
RevRecSchedule_ExternalId | String | False |
CashSale テーブルのRevRecSchedule_ExternalId。 |
RevRecSchedule_InternalId | String | False |
CashSale テーブルのRevRecSchedule_InternalId。 |
RevRecSchedule_Name | String | False |
CashSale テーブルのRevRecSchedule_Name。 |
RevRecSchedule_Type | String | False |
CashSale テーブルのRevRecSchedule_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RevRecStartDate | Datetime | False |
CashSale テーブルのRevRecStartDate。 |
SalesEffectiveDate | Datetime | False |
CashSale テーブルのSalesEffectiveDate。 |
SalesGroup_ExternalId | String | False |
CashSale テーブルのSalesGroup_ExternalId。 |
SalesGroup_InternalId | String | False |
CashSale テーブルのSalesGroup_InternalId。 |
SalesGroup_Name | String | False |
CashSale テーブルのSalesGroup_Name。 |
SalesGroup_Type | String | False |
CashSale テーブルのSalesGroup_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesRep_ExternalId | String | False |
CashSale テーブルのSalesRep_ExternalId。 |
SalesRep_InternalId | String | False |
CashSale テーブルのSalesRep_InternalId。 |
SalesRep_Name | String | False |
CashSale テーブルのSalesRep_Name。 |
SalesRep_Type | String | False |
CashSale テーブルのSalesRep_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesTeamList_ReplaceAll | Boolean | False |
CashSale テーブルのSalesTeamList_ReplaceAll。 |
ShipAddress | String | False |
CashSale テーブルのShipAddress。 |
ShipAddressList_ExternalId | String | False |
CashSale テーブルのShipAddressList_ExternalId。 |
ShipAddressList_InternalId | String | False |
CashSale テーブルのShipAddressList_InternalId。 |
ShipAddressList_Name | String | False |
CashSale テーブルのShipAddressList_Name。 |
ShipAddressList_Type | String | False |
CashSale テーブルのShipAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShipDate | Datetime | False |
CashSale テーブルのShipDate。 |
ShipGroupList_ReplaceAll | Boolean | False |
CashSale テーブルのShipGroupList_ReplaceAll。 |
ShipMethod_ExternalId | String | False |
CashSale テーブルのShipMethod_ExternalId。 |
ShipMethod_InternalId | String | False |
CashSale テーブルのShipMethod_InternalId。 |
ShipMethod_Name | String | False |
CashSale テーブルのShipMethod_Name。 |
ShipMethod_Type | String | False |
CashSale テーブルのShipMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShippingCost | Double | False |
CashSale テーブルのShippingCost。 |
ShippingTax1Rate | Double | False |
CashSale テーブルのShippingTax1Rate。 |
ShippingTax2Rate | String | False |
CashSale テーブルのShippingTax2Rate。 |
ShippingTaxCode_ExternalId | String | False |
CashSale テーブルのShippingTaxCode_ExternalId。 |
ShippingTaxCode_InternalId | String | False |
CashSale テーブルのShippingTaxCode_InternalId。 |
ShippingTaxCode_Name | String | False |
CashSale テーブルのShippingTaxCode_Name。 |
ShippingTaxCode_Type | String | False |
CashSale テーブルのShippingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Source | String | False |
CashSale テーブルのSource。 |
StartDate | Datetime | False |
CashSale テーブルのStartDate。 |
Status | String | False |
CashSale テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
CashSale テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
CashSale テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
CashSale テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
CashSale テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SubTotal | Double | False |
CashSale テーブルのSubTotal。 |
SyncPartnerTeams | Boolean | False |
CashSale テーブルのSyncPartnerTeams。 |
SyncSalesTeams | Boolean | False |
CashSale テーブルのSyncSalesTeams。 |
Tax2Total | Double | False |
CashSale テーブルのTax2Total。 |
TaxItem_ExternalId | String | False |
CashSale テーブルのTaxItem_ExternalId。 |
TaxItem_InternalId | String | False |
CashSale テーブルのTaxItem_InternalId。 |
TaxItem_Name | String | False |
CashSale テーブルのTaxItem_Name。 |
TaxItem_Type | String | False |
CashSale テーブルのTaxItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxRate | Double | False |
CashSale テーブルのTaxRate。 |
TaxTotal | Double | False |
CashSale テーブルのTaxTotal。 |
ThreeDStatusCode | String | False |
CashSale テーブルのThreeDStatusCode。 |
TimeDiscAmount | Double | False |
CashSale テーブルのTimeDiscAmount。 |
TimeDiscount_ExternalId | String | False |
CashSale テーブルのTimeDiscount_ExternalId。 |
TimeDiscount_InternalId | String | False |
CashSale テーブルのTimeDiscount_InternalId。 |
TimeDiscount_Name | String | False |
CashSale テーブルのTimeDiscount_Name。 |
TimeDiscount_Type | String | False |
CashSale テーブルのTimeDiscount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TimeDiscPrint | Boolean | False |
CashSale テーブルのTimeDiscPrint。 |
TimeDiscRate | String | False |
CashSale テーブルのTimeDiscRate。 |
TimeDiscTax1Amt | Double | False |
CashSale テーブルのTimeDiscTax1Amt。 |
TimeDiscTaxable | Boolean | False |
CashSale テーブルのTimeDiscTaxable。 |
TimeList_ReplaceAll | Boolean | False |
CashSale テーブルのTimeList_ReplaceAll。 |
TimeTaxCode_ExternalId | String | False |
CashSale テーブルのTimeTaxCode_ExternalId。 |
TimeTaxCode_InternalId | String | False |
CashSale テーブルのTimeTaxCode_InternalId。 |
TimeTaxCode_Name | String | False |
CashSale テーブルのTimeTaxCode_Name。 |
TimeTaxCode_Type | String | False |
CashSale テーブルのTimeTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TimeTaxRate1 | Double | False |
CashSale テーブルのTimeTaxRate1。 |
TimeTaxRate2 | Double | False |
CashSale テーブルのTimeTaxRate2。 |
ToBeEmailed | Boolean | False |
CashSale テーブルのToBeEmailed。 |
ToBeFaxed | Boolean | False |
CashSale テーブルのToBeFaxed。 |
ToBePrinted | Boolean | False |
CashSale テーブルのToBePrinted。 |
Total | Double | False |
CashSale テーブルのTotal。 |
TotalCostEstimate | Double | False |
CashSale テーブルのTotalCostEstimate。 |
TrackingNumbers | String | False |
CashSale テーブルのTrackingNumbers。 |
TranDate | Datetime | False |
CashSale テーブルのTranDate。 |
TranId | String | False |
CashSale テーブルのTranId。 |
TranIsVsoeBundle | Boolean | False |
CashSale テーブルのTranIsVsoeBundle。 |
TransactionBillAddress_BillAddr1 | String | False |
CashSale テーブルのTransactionBillAddress_BillAddr1。 |
TransactionBillAddress_BillAddr2 | String | False |
CashSale テーブルのTransactionBillAddress_BillAddr2。 |
TransactionBillAddress_BillAddr3 | String | False |
CashSale テーブルのTransactionBillAddress_BillAddr3。 |
TransactionBillAddress_BillAddressee | String | False |
CashSale テーブルのTransactionBillAddress_BillAddressee。 |
TransactionBillAddress_BillAttention | String | False |
CashSale テーブルのTransactionBillAddress_BillAttention。 |
TransactionBillAddress_BillCity | String | False |
CashSale テーブルのTransactionBillAddress_BillCity。 |
TransactionBillAddress_BillCountry | String | False |
CashSale テーブルのTransactionBillAddress_BillCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionBillAddress_BillPhone | String | False |
CashSale テーブルのTransactionBillAddress_BillPhone。 |
TransactionBillAddress_BillState | String | False |
CashSale テーブルのTransactionBillAddress_BillState。 |
TransactionBillAddress_BillZip | String | False |
CashSale テーブルのTransactionBillAddress_BillZip。 |
TransactionShipAddress_ShipAddr1 | String | False |
CashSale テーブルのTransactionShipAddress_ShipAddr1。 |
TransactionShipAddress_ShipAddr2 | String | False |
CashSale テーブルのTransactionShipAddress_ShipAddr2。 |
TransactionShipAddress_ShipAddr3 | String | False |
CashSale テーブルのTransactionShipAddress_ShipAddr3。 |
TransactionShipAddress_ShipAddressee | String | False |
CashSale テーブルのTransactionShipAddress_ShipAddressee。 |
TransactionShipAddress_ShipAttention | String | False |
CashSale テーブルのTransactionShipAddress_ShipAttention。 |
TransactionShipAddress_ShipCity | String | False |
CashSale テーブルのTransactionShipAddress_ShipCity。 |
TransactionShipAddress_ShipCountry | String | False |
CashSale テーブルのTransactionShipAddress_ShipCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionShipAddress_ShipIsResidential | Boolean | False |
CashSale テーブルのTransactionShipAddress_ShipIsResidential。 |
TransactionShipAddress_ShipPhone | String | False |
CashSale テーブルのTransactionShipAddress_ShipPhone。 |
TransactionShipAddress_ShipState | String | False |
CashSale テーブルのTransactionShipAddress_ShipState。 |
TransactionShipAddress_ShipZip | String | False |
CashSale テーブルのTransactionShipAddress_ShipZip。 |
UndepFunds | Boolean | False |
CashSale テーブルのUndepFunds。 |
ValidFrom | Datetime | False |
CashSale テーブルのValidFrom。 |
VatRegNum | String | False |
CashSale テーブルのVatRegNum。 |
VsoeAutoCalc | Boolean | False |
CashSale テーブルのVsoeAutoCalc。 |
NetSuite のCheck テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Check テーブルのInternalId。 |
Account_ExternalId | String | False |
Check テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
Check テーブルのAccount_InternalId。 |
Account_Name | String | False |
Check テーブルのAccount_Name。 |
Account_Type | String | False |
Check テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Address | String | False |
Check テーブルのAddress。 |
Balance | Double | False |
Check テーブルのBalance。 |
BillPay | Boolean | False |
Check テーブルのBillPay。 |
Class_ExternalId | String | False |
Check テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
Check テーブルのClass_InternalId。 |
Class_Name | String | False |
Check テーブルのClass_Name。 |
Class_Type | String | False |
Check テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
Check テーブルのCreatedDate。 |
Currency_ExternalId | String | False |
Check テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
Check テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
Check テーブルのCurrency_Name。 |
Currency_Type | String | False |
Check テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
Check テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Check テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Check テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Check テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
Check テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
Check テーブルのDepartment_InternalId。 |
Department_Name | String | False |
Check テーブルのDepartment_Name。 |
Department_Type | String | False |
Check テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Entity_ExternalId | String | False |
Check テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
Check テーブルのEntity_InternalId。 |
Entity_Name | String | False |
Check テーブルのEntity_Name。 |
Entity_Type | String | False |
Check テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExchangeRate | Double | False |
Check テーブルのExchangeRate。 |
ExpenseList_ReplaceAll | Boolean | False |
Check テーブルのExpenseList_ReplaceAll。 |
ExternalId | String | False |
Check テーブルのExternalId。 |
ItemList_ReplaceAll | Boolean | False |
Check テーブルのItemList_ReplaceAll。 |
LandedCostMethod | String | False |
Check テーブルのLandedCostMethod。 The allowed values are _quantity, _value, _weight. |
LandedCostsList_ReplaceAll | Boolean | False |
Check テーブルのLandedCostsList_ReplaceAll。 |
LastModifiedDate | Datetime | False |
Check テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
Check テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
Check テーブルのLocation_InternalId。 |
Location_Name | String | False |
Check テーブルのLocation_Name。 |
Location_Type | String | False |
Check テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
Check テーブルのMemo。 |
PostingPeriod_ExternalId | String | False |
Check テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
Check テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
Check テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
Check テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Status | String | False |
Check テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
Check テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
Check テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
Check テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
Check テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Tax2Total | Double | False |
Check テーブルのTax2Total。 |
TaxTotal | Double | False |
Check テーブルのTaxTotal。 |
ToBePrinted | Boolean | False |
Check テーブルのToBePrinted。 |
TranDate | Datetime | False |
Check テーブルのTranDate。 |
TranId | String | False |
Check テーブルのTranId。 |
UserTotal | Double | False |
Check テーブルのUserTotal。 |
VoidJournal_ExternalId | String | False |
Check テーブルのVoidJournal_ExternalId。 |
VoidJournal_InternalId | String | False |
Check テーブルのVoidJournal_InternalId。 |
VoidJournal_Name | String | False |
Check テーブルのVoidJournal_Name。 |
VoidJournal_Type | String | False |
Check テーブルのVoidJournal_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のClassification テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Classification テーブルのInternalId。 |
ClassTranslationList_ReplaceAll | Boolean | False |
Classification テーブルのClassTranslationList_ReplaceAll。 |
ExternalId | String | False |
Classification テーブルのExternalId。 |
IncludeChildren | Boolean | False |
Classification テーブルのIncludeChildren。 |
IsInactive | Boolean | False |
Classification テーブルのIsInactive。 |
Name | String | False |
Classification テーブルのName。 |
Parent_ExternalId | String | False |
Classification テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
Classification テーブルのParent_InternalId。 |
Parent_Name | String | False |
Classification テーブルのParent_Name。 |
Parent_Type | String | False |
Classification テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のContact テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Contact テーブルのInternalId。 |
AddressbookList_ReplaceAll | Boolean | False |
Contact テーブルのAddressbookList_ReplaceAll。 |
AltEmail | String | False |
Contact テーブルのAltEmail。 |
Assistant_ExternalId | String | False |
Contact テーブルのAssistant_ExternalId。 |
Assistant_InternalId | String | False |
Contact テーブルのAssistant_InternalId。 |
Assistant_Name | String | False |
Contact テーブルのAssistant_Name。 |
Assistant_Type | String | False |
Contact テーブルのAssistant_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
AssistantPhone | String | False |
Contact テーブルのAssistantPhone。 |
BillPay | Boolean | False |
Contact テーブルのBillPay。 |
Comments | String | False |
Contact テーブルのComments。 |
Company_ExternalId | String | False |
Contact テーブルのCompany_ExternalId。 |
Company_InternalId | String | False |
Contact テーブルのCompany_InternalId。 |
Company_Name | String | False |
Contact テーブルのCompany_Name。 |
Company_Type | String | False |
Contact テーブルのCompany_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ContactSource_ExternalId | String | False |
Contact テーブルのContactSource_ExternalId。 |
ContactSource_InternalId | String | False |
Contact テーブルのContactSource_InternalId。 |
ContactSource_Name | String | False |
Contact テーブルのContactSource_Name。 |
ContactSource_Type | String | False |
Contact テーブルのContactSource_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
Contact テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Contact テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Contact テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Contact テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DateCreated | Datetime | False |
Contact テーブルのDateCreated。 |
DefaultAddress | String | False |
Contact テーブルのDefaultAddress。 |
String | False |
Contact テーブルのEmail。 | |
EntityId | String | False |
Contact テーブルのEntityId。 |
ExternalId | String | False |
Contact テーブルのExternalId。 |
Fax | String | False |
Contact テーブルのFax。 |
FirstName | String | False |
Contact テーブルのFirstName。 |
GlobalSubscriptionStatus | String | False |
Contact テーブルのGlobalSubscriptionStatus。 The allowed values are _confirmedOptIn, _confirmedOptOut, _softOptIn, _softOptOut. |
HomePhone | String | False |
Contact テーブルのHomePhone。 |
Image_ExternalId | String | False |
Contact テーブルのImage_ExternalId。 |
Image_InternalId | String | False |
Contact テーブルのImage_InternalId。 |
Image_Name | String | False |
Contact テーブルのImage_Name。 |
Image_Type | String | False |
Contact テーブルのImage_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsInactive | Boolean | False |
Contact テーブルのIsInactive。 |
IsPrivate | Boolean | False |
Contact テーブルのIsPrivate。 |
LastModifiedDate | Datetime | False |
Contact テーブルのLastModifiedDate。 |
LastName | String | False |
Contact テーブルのLastName。 |
MiddleName | String | False |
Contact テーブルのMiddleName。 |
MobilePhone | String | False |
Contact テーブルのMobilePhone。 |
OfficePhone | String | False |
Contact テーブルのOfficePhone。 |
Phone | String | False |
Contact テーブルのPhone。 |
PhoneticName | String | False |
Contact テーブルのPhoneticName。 |
Salutation | String | False |
Contact テーブルのSalutation。 |
SubscriptionsList_ReplaceAll | Boolean | False |
Contact テーブルのSubscriptionsList_ReplaceAll。 |
Subsidiary_ExternalId | String | False |
Contact テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
Contact テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
Contact テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
Contact テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Supervisor_ExternalId | String | False |
Contact テーブルのSupervisor_ExternalId。 |
Supervisor_InternalId | String | False |
Contact テーブルのSupervisor_InternalId。 |
Supervisor_Name | String | False |
Contact テーブルのSupervisor_Name。 |
Supervisor_Type | String | False |
Contact テーブルのSupervisor_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SupervisorPhone | String | False |
Contact テーブルのSupervisorPhone。 |
Title | String | False |
Contact テーブルのTitle。 |
NetSuite のContactCategory テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
ContactCategory テーブルのInternalId。 |
ExternalId | String | False |
ContactCategory テーブルのExternalId。 |
IsInactive | Boolean | False |
ContactCategory テーブルのIsInactive。 |
Name | String | False |
ContactCategory テーブルのName。 |
Private | Boolean | False |
ContactCategory テーブルのPrivate。 |
Sync | Boolean | False |
ContactCategory テーブルのSync。 |
NetSuite のContactRole テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
ContactRole テーブルのInternalId。 |
Description | String | False |
ContactRole テーブルのDescription。 |
ExternalId | String | False |
ContactRole テーブルのExternalId。 |
IsInactive | Boolean | False |
ContactRole テーブルのIsInactive。 |
Name | String | False |
ContactRole テーブルのName。 |
NetSuite のCostCategory テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CostCategory テーブルのInternalId。 |
Account_ExternalId | String | False |
CostCategory テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
CostCategory テーブルのAccount_InternalId。 |
Account_Name | String | False |
CostCategory テーブルのAccount_Name。 |
Account_Type | String | False |
CostCategory テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
CostCategory テーブルのExternalId。 |
IsInactive | Boolean | False |
CostCategory テーブルのIsInactive。 |
ItemCostType | String | False |
CostCategory テーブルのItemCostType。 The allowed values are _landed, _material, _service, _laborRun, _laborRunOverhead, _laborSetup, _laborSetupOverhead, _machineRun, _machineRunOverhead, _machineSetup, _machineSetupOverhead. |
Name | String | False |
CostCategory テーブルのName。 |
NetSuite のCouponCode テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CouponCode テーブルのInternalId。 |
Code | String | False |
CouponCode テーブルのCode。 |
DateSent | Datetime | False |
CouponCode テーブルのDateSent。 |
ExternalId | String | False |
CouponCode テーブルのExternalId。 |
Promotion_ExternalId | String | False |
CouponCode テーブルのPromotion_ExternalId。 |
Promotion_InternalId | String | False |
CouponCode テーブルのPromotion_InternalId。 |
Promotion_Name | String | False |
CouponCode テーブルのPromotion_Name。 |
Promotion_Type | String | False |
CouponCode テーブルのPromotion_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Recipient_ExternalId | String | False |
CouponCode テーブルのRecipient_ExternalId。 |
Recipient_InternalId | String | False |
CouponCode テーブルのRecipient_InternalId。 |
Recipient_Name | String | False |
CouponCode テーブルのRecipient_Name。 |
Recipient_Type | String | False |
CouponCode テーブルのRecipient_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
UseCount | Long | False |
CouponCode テーブルのUseCount。 |
Used | Boolean | False |
CouponCode テーブルのUsed。 |
NetSuite のCreditMemo テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CreditMemo テーブルのInternalId。 |
Account_ExternalId | String | False |
CreditMemo テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
CreditMemo テーブルのAccount_InternalId。 |
Account_Name | String | False |
CreditMemo テーブルのAccount_Name。 |
Account_Type | String | False |
CreditMemo テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
AltHandlingCost | Double | False |
CreditMemo テーブルのAltHandlingCost。 |
AltShippingCost | Double | False |
CreditMemo テーブルのAltShippingCost。 |
AmountPaid | Double | False |
CreditMemo テーブルのAmountPaid。 |
AmountRemaining | Double | False |
CreditMemo テーブルのAmountRemaining。 |
Applied | Double | False |
CreditMemo テーブルのApplied。 |
ApplyList_ReplaceAll | Boolean | False |
CreditMemo テーブルのApplyList_ReplaceAll。 |
AutoApply | Boolean | False |
CreditMemo テーブルのAutoApply。 |
Balance | Double | False |
CreditMemo テーブルのBalance。 |
BillAddress | String | False |
CreditMemo テーブルのBillAddress。 |
BillAddressList_ExternalId | String | False |
CreditMemo テーブルのBillAddressList_ExternalId。 |
BillAddressList_InternalId | String | False |
CreditMemo テーブルのBillAddressList_InternalId。 |
BillAddressList_Name | String | False |
CreditMemo テーブルのBillAddressList_Name。 |
BillAddressList_Type | String | False |
CreditMemo テーブルのBillAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Class_ExternalId | String | False |
CreditMemo テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
CreditMemo テーブルのClass_InternalId。 |
Class_Name | String | False |
CreditMemo テーブルのClass_Name。 |
Class_Type | String | False |
CreditMemo テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ContribPct | String | False |
CreditMemo テーブルのContribPct。 |
CreatedDate | Datetime | False |
CreditMemo テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
CreditMemo テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
CreditMemo テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
CreditMemo テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
CreditMemo テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
CreditMemo テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
CreditMemo テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
CreditMemo テーブルのCurrency_Name。 |
Currency_Type | String | False |
CreditMemo テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
CreditMemo テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
CreditMemo テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
CreditMemo テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
CreditMemo テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
CreditMemo テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DeferredRevenue | Double | False |
CreditMemo テーブルのDeferredRevenue。 |
Department_ExternalId | String | False |
CreditMemo テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
CreditMemo テーブルのDepartment_InternalId。 |
Department_Name | String | False |
CreditMemo テーブルのDepartment_Name。 |
Department_Type | String | False |
CreditMemo テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountItem_ExternalId | String | False |
CreditMemo テーブルのDiscountItem_ExternalId。 |
DiscountItem_InternalId | String | False |
CreditMemo テーブルのDiscountItem_InternalId。 |
DiscountItem_Name | String | False |
CreditMemo テーブルのDiscountItem_Name。 |
DiscountItem_Type | String | False |
CreditMemo テーブルのDiscountItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountRate | String | False |
CreditMemo テーブルのDiscountRate。 |
DiscountTotal | Double | False |
CreditMemo テーブルのDiscountTotal。 |
String | False |
CreditMemo テーブルのEmail。 | |
Entity_ExternalId | String | False |
CreditMemo テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
CreditMemo テーブルのEntity_InternalId。 |
Entity_Name | String | False |
CreditMemo テーブルのEntity_Name。 |
Entity_Type | String | False |
CreditMemo テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EstGrossProfit | Double | False |
CreditMemo テーブルのEstGrossProfit。 |
EstGrossProfitPercent | Double | False |
CreditMemo テーブルのEstGrossProfitPercent。 |
ExchangeRate | Double | False |
CreditMemo テーブルのExchangeRate。 |
ExcludeCommission | Boolean | False |
CreditMemo テーブルのExcludeCommission。 |
ExternalId | String | False |
CreditMemo テーブルのExternalId。 |
Fax | String | False |
CreditMemo テーブルのFax。 |
GiftCert_ExternalId | String | False |
CreditMemo テーブルのGiftCert_ExternalId。 |
GiftCert_InternalId | String | False |
CreditMemo テーブルのGiftCert_InternalId。 |
GiftCert_Name | String | False |
CreditMemo テーブルのGiftCert_Name。 |
GiftCert_Type | String | False |
CreditMemo テーブルのGiftCert_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
GiftCertApplied | Double | False |
CreditMemo テーブルのGiftCertApplied。 |
GiftCertAvailable | Double | False |
CreditMemo テーブルのGiftCertAvailable。 |
GiftCertTotal | Double | False |
CreditMemo テーブルのGiftCertTotal。 |
HandlingCost | Double | False |
CreditMemo テーブルのHandlingCost。 |
HandlingTax1Rate | Double | False |
CreditMemo テーブルのHandlingTax1Rate。 |
HandlingTax2Rate | String | False |
CreditMemo テーブルのHandlingTax2Rate。 |
HandlingTaxCode_ExternalId | String | False |
CreditMemo テーブルのHandlingTaxCode_ExternalId。 |
HandlingTaxCode_InternalId | String | False |
CreditMemo テーブルのHandlingTaxCode_InternalId。 |
HandlingTaxCode_Name | String | False |
CreditMemo テーブルのHandlingTaxCode_Name。 |
HandlingTaxCode_Type | String | False |
CreditMemo テーブルのHandlingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsTaxable | Boolean | False |
CreditMemo テーブルのIsTaxable。 |
ItemList_ReplaceAll | Boolean | False |
CreditMemo テーブルのItemList_ReplaceAll。 |
Job_ExternalId | String | False |
CreditMemo テーブルのJob_ExternalId。 |
Job_InternalId | String | False |
CreditMemo テーブルのJob_InternalId。 |
Job_Name | String | False |
CreditMemo テーブルのJob_Name。 |
Job_Type | String | False |
CreditMemo テーブルのJob_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
CreditMemo テーブルのLastModifiedDate。 |
LeadSource_ExternalId | String | False |
CreditMemo テーブルのLeadSource_ExternalId。 |
LeadSource_InternalId | String | False |
CreditMemo テーブルのLeadSource_InternalId。 |
LeadSource_Name | String | False |
CreditMemo テーブルのLeadSource_Name。 |
LeadSource_Type | String | False |
CreditMemo テーブルのLeadSource_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Location_ExternalId | String | False |
CreditMemo テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
CreditMemo テーブルのLocation_InternalId。 |
Location_Name | String | False |
CreditMemo テーブルのLocation_Name。 |
Location_Type | String | False |
CreditMemo テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
CreditMemo テーブルのMemo。 |
Message | String | False |
CreditMemo テーブルのMessage。 |
MessageSel_ExternalId | String | False |
CreditMemo テーブルのMessageSel_ExternalId。 |
MessageSel_InternalId | String | False |
CreditMemo テーブルのMessageSel_InternalId。 |
MessageSel_Name | String | False |
CreditMemo テーブルのMessageSel_Name。 |
MessageSel_Type | String | False |
CreditMemo テーブルのMessageSel_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OnCreditHold | String | False |
CreditMemo テーブルのOnCreditHold。 |
OtherRefNum | String | False |
RefNum of the CreditMemo テーブルのOtherRefNum。 |
Partner_ExternalId | String | False |
CreditMemo テーブルのPartner_ExternalId。 |
Partner_InternalId | String | False |
CreditMemo テーブルのPartner_InternalId。 |
Partner_Name | String | False |
CreditMemo テーブルのPartner_Name。 |
Partner_Type | String | False |
CreditMemo テーブルのPartner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PartnersList_ReplaceAll | Boolean | False |
CreditMemo テーブルのPartnersList_ReplaceAll。 |
PostingPeriod_ExternalId | String | False |
CreditMemo テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
CreditMemo テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
CreditMemo テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
CreditMemo テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PromoCode_ExternalId | String | False |
CreditMemo テーブルのPromoCode_ExternalId。 |
PromoCode_InternalId | String | False |
CreditMemo テーブルのPromoCode_InternalId。 |
PromoCode_Name | String | False |
CreditMemo テーブルのPromoCode_Name。 |
PromoCode_Type | String | False |
CreditMemo テーブルのPromoCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RecognizedRevenue | Double | False |
CreditMemo テーブルのRecognizedRevenue。 |
RevenueStatus | String | False |
CreditMemo テーブルのRevenueStatus。 The allowed values are _pending, _inProgress, _completed, _onRevCommitment. |
RevRecOnRevCommitment | Boolean | False |
CreditMemo テーブルのRevRecOnRevCommitment。 |
SalesEffectiveDate | Datetime | False |
CreditMemo テーブルのSalesEffectiveDate。 |
SalesGroup_ExternalId | String | False |
CreditMemo テーブルのSalesGroup_ExternalId。 |
SalesGroup_InternalId | String | False |
CreditMemo テーブルのSalesGroup_InternalId。 |
SalesGroup_Name | String | False |
CreditMemo テーブルのSalesGroup_Name。 |
SalesGroup_Type | String | False |
CreditMemo テーブルのSalesGroup_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesRep_ExternalId | String | False |
CreditMemo テーブルのSalesRep_ExternalId。 |
SalesRep_InternalId | String | False |
CreditMemo テーブルのSalesRep_InternalId。 |
SalesRep_Name | String | False |
CreditMemo テーブルのSalesRep_Name。 |
SalesRep_Type | String | False |
CreditMemo テーブルのSalesRep_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesTeamList_ReplaceAll | Boolean | False |
CreditMemo テーブルのSalesTeamList_ReplaceAll。 |
ShipMethod_ExternalId | String | False |
CreditMemo テーブルのShipMethod_ExternalId。 |
ShipMethod_InternalId | String | False |
CreditMemo テーブルのShipMethod_InternalId。 |
ShipMethod_Name | String | False |
CreditMemo テーブルのShipMethod_Name。 |
ShipMethod_Type | String | False |
CreditMemo テーブルのShipMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShippingCost | Double | False |
CreditMemo テーブルのShippingCost。 |
ShippingTax1Rate | Double | False |
CreditMemo テーブルのShippingTax1Rate。 |
ShippingTax2Rate | String | False |
CreditMemo テーブルのShippingTax2Rate。 |
ShippingTaxCode_ExternalId | String | False |
CreditMemo テーブルのShippingTaxCode_ExternalId。 |
ShippingTaxCode_InternalId | String | False |
CreditMemo テーブルのShippingTaxCode_InternalId。 |
ShippingTaxCode_Name | String | False |
CreditMemo テーブルのShippingTaxCode_Name。 |
ShippingTaxCode_Type | String | False |
CreditMemo テーブルのShippingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Source | String | False |
CreditMemo テーブルのSource。 |
Status | String | False |
CreditMemo テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
CreditMemo テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
CreditMemo テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
CreditMemo テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
CreditMemo テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SubTotal | Double | False |
CreditMemo テーブルのSubTotal。 |
SyncPartnerTeams | Boolean | False |
CreditMemo テーブルのSyncPartnerTeams。 |
SyncSalesTeams | Boolean | False |
CreditMemo テーブルのSyncSalesTeams。 |
Tax2Total | Double | False |
CreditMemo テーブルのTax2Total。 |
TaxItem_ExternalId | String | False |
CreditMemo テーブルのTaxItem_ExternalId。 |
TaxItem_InternalId | String | False |
CreditMemo テーブルのTaxItem_InternalId。 |
TaxItem_Name | String | False |
CreditMemo テーブルのTaxItem_Name。 |
TaxItem_Type | String | False |
CreditMemo テーブルのTaxItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxRate | Double | False |
CreditMemo テーブルのTaxRate。 |
TaxTotal | Double | False |
CreditMemo テーブルのTaxTotal。 |
ToBeEmailed | Boolean | False |
CreditMemo テーブルのToBeEmailed。 |
ToBeFaxed | Boolean | False |
CreditMemo テーブルのToBeFaxed。 |
ToBePrinted | Boolean | False |
CreditMemo テーブルのToBePrinted。 |
Total | Double | False |
CreditMemo テーブルのTotal。 |
TotalCostEstimate | Double | False |
CreditMemo テーブルのTotalCostEstimate。 |
TranDate | Datetime | False |
CreditMemo テーブルのTranDate。 |
TranId | String | False |
CreditMemo テーブルのTranId。 |
TranIsVsoeBundle | Boolean | False |
CreditMemo テーブルのTranIsVsoeBundle。 |
TransactionBillAddress_BillAddr1 | String | False |
CreditMemo テーブルのTransactionBillAddress_BillAddr1。 |
TransactionBillAddress_BillAddr2 | String | False |
CreditMemo テーブルのTransactionBillAddress_BillAddr2。 |
TransactionBillAddress_BillAddr3 | String | False |
CreditMemo テーブルのTransactionBillAddress_BillAddr3。 |
TransactionBillAddress_BillAddressee | String | False |
CreditMemo テーブルのTransactionBillAddress_BillAddressee。 |
TransactionBillAddress_BillAttention | String | False |
CreditMemo テーブルのTransactionBillAddress_BillAttention。 |
TransactionBillAddress_BillCity | String | False |
CreditMemo テーブルのTransactionBillAddress_BillCity。 |
TransactionBillAddress_BillCountry | String | False |
CreditMemo テーブルのTransactionBillAddress_BillCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionBillAddress_BillPhone | String | False |
CreditMemo テーブルのTransactionBillAddress_BillPhone。 |
TransactionBillAddress_BillState | String | False |
CreditMemo テーブルのTransactionBillAddress_BillState。 |
TransactionBillAddress_BillZip | String | False |
CreditMemo テーブルのTransactionBillAddress_BillZip。 |
Unapplied | Double | False |
CreditMemo テーブルのUnapplied。 |
VatRegNum | String | False |
CreditMemo テーブルのVatRegNum。 |
VsoeAutoCalc | Boolean | False |
CreditMemo テーブルのVsoeAutoCalc。 |
NetSuite のCurrency テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Currency テーブルのInternalId。 |
CurrencyPrecision | String | False |
Currency テーブルCurrencyPrecision。 The allowed values are _one, _two, _zero. |
DisplaySymbol | String | False |
Currency テーブルのDisplaySymbol。 |
ExchangeRate | Double | False |
Currency テーブルのExchangeRate。 |
ExternalId | String | False |
Currency テーブルのExternalId。 |
FormatSample | String | False |
Currency テーブルのFormatSample。 |
FxRateUpdateTimezone | String | False |
Currency テーブルのFxRateUpdateTimezone。 The allowed values are _americaNewYork, _asiaMagadan, _asiaTokyo, _europeParis. |
InclInFxRateUpdates | Boolean | False |
Currency テーブルのInclInFxRateUpdates。 |
IsBaseCurrency | Boolean | False |
Currency テーブルのIsBaseCurrency。 |
IsInactive | Boolean | False |
Currency テーブルのIsInactive。 |
Locale | String | False |
Currency テーブルのLocale。 The allowed values are _afghanistanPashto, _afghanistanPersian, _alandIslandsSwedish, _albaniaAlbanian, _algeriaArabic, _angolaPortuguese, _anguillaEnglish, _antiguaAndBarbudaEnglish, _argentinaSpanish, _armeniaArmenian, _arubaEnglish, _arubaPortuguese, _australiaEnglish, _austriaGerman, _azerbaijanAzerbaijani, _bahamasEnglish, _bahrainArabic, _barbadosEnglish, _belarusByelorussian, _belgiumDutch, _belgiumFrench, _belizeEnglish, _bengali, _beninFrench, _bermudaEnglish, _bhutanDzongkha, _boliviaSpanish, _bonaireSaintEustatiusAndSabaDutch, _bosniaAndHerzegovinaBosnian, _botswanaEnglish, _brazilPortuguese, _bruneiMalay, _bulgariaBulgarian, _burkinaFasoFrench, _burundiFrench, _cambodiaKhmer, _cameroonFrench, _canadaEnglish, _canadaFrench, _canaryIslandsSpanish, _capeVerdePortuguese, _caymanIslandsEnglish, _centralAfricanRepublicFrench, _ceutaAndMelillaSpanish, _chadFrench, _chileSpanish, _chinaChinese, _colombiaSpanish, _comorosFrench, _congoDemocraticRepublicEnglish, _congoDemocraticRepublicFrench, _congoRepublicOfFrench, _costaRicaSpanish, _coteDivoireFrench, _croatiaCroatian, _cubaSpanish, _curacaoDutch, _cyprusEnglish, _cyprusEnglishEuro, _czechRepublicCzech, _denmarkDanish, _djiboutiArabic, _djiboutiFrench, _dominicaEnglish, _dominicanRepublicSpanish, _ecuadorSpanish, _egyptArabic, _elSalvadorSpanish, _equatorialGuineaSpanish, _eritreaAfar, _estoniaEstonian, _ethiopiaAmharic, _falklandIslandsEnglish, _fijiFijian, _finlandFinnish, _finlandFinnishEuro, _franceFrench, _franceFrenchEuro, _frenchPolynesiaFrench, _gabonFrench, _gambiaEnglish, _georgiaGeorgian, _germanyGerman, _germanyGermanEuro, _ghanaEnglish, _gibraltarEnglish, _goldOunce, _greeceGreek, _grenadaEnglish, _guatemalaSpanish, _guineaBissauPortuguese, _guineaFrench, _guyanaEnglish, _haitian, _hondurasSpanish, _hongKongChinese, _hungaryHungarian, _icelandIcelandic, _indiaEnglish, _indiaGujarati, _indiaHindi, _indiaKannada, _indiaMarathi, _indiaPanjabi, _indiaTamil, _indiaTelugu, _indonesiaIndonesian, _iranPersian, _iraqArabic, _irelandEnglish, _israelHebrew, _italyItalian, _italyItalianEuro, _jamaicaEnglish, _japanJapanese, _jordanArabic, _jordanEnglish, _kazakhstanRussian, _kenyaEnglish, _kuwaitArabic, _kuwaitEnglish, _kyrgyzstanRussian, _laosLao, _latviaLatvianLettish, _lebanonArabic, _lesothoEnglish, _liberiaEnglish, _libyaArabic, _lithuaniaLithuanian, _luxembourgFrench, _luxembourgGerman, _luxembourgLuxembourgish, _macauChinese, _macedoniaMacedonian, _malawiEnglish, _malaysiaMalay, _maldivesDhivehi, _maliFrench, _mauritiusEnglish, _mexicoSpanish, _moldovaRomanian, _moldovaRussian, _mongoliaMongolian, _moroccoArabic, _mozambiquePortuguese, _myanmarBurmese, _namibiaEnglish, _nepalNepali, _netherlandsAntillesDutch, _netherlandsDutch, _netherlandsDutchEuro, _newCaledoniaFrench, _newZealandEnglish, _nicaraguaSpanish, _nigerFrench, _nigeriaEnglish, _northKoreaKorean, _norwayNorwegian, _omanArabic, _pakistanUrdu, _palladiumOunce, _panamaSpanish, _papuaNewGuineaEnglish, _paraguaySpanish, _peruSpanish, _philippinesEnglish, _philippinesTagalog, _platinumOunce, _polandPolish, _portugalPortuguese, _portugalPortugueseEuro, _puertoRicoSpanish, _qatarArabic, _qatarEnglish, _romaniaRomanian, _russiaRussian, _rwandaFrench, _saintBarthelemyFrench, _saintHelenaEnglish, _saintKittsAndNevisEnglish, _saintLuciaEnglish, _saintMartinEnglish, _saintVincentAndTheGrenadinesEnglish, _samoaSamoan, _saoTomeAndPrincipePortuguese, _saudiArabiaArabic, _senegalFrench, _serbiaAndMontenegroSerbian, _serbiaSerbian, _serbiaSerboCroatian, _seychellesEnglish, _seychellesFrench, _sierraLeoneEnglish, _silverOunce, _singaporeEnglish, _sintMaartenDutch, _slovakiaSlovak, _slovakiaSlovakEuro, _sloveniaSlovenian, _sloveniaSlovenianEuro, _solomonIslandsEnglish, _somaliaSomali, _southAfricaAfrikaans, _southAfricaEnglish, _southKoreaKorean, _southSudanEnglish, _spainCatalan, _spainSpanish, _spainSpanishEuro, _sriLankaSinhalese, _sudanArabic, _surinameDutch, _swazilandSwati, _swedenSwedish, _switzerlandFrench, _switzerlandGerman, _switzerlandItalian, _syriaArabic, _taiwanChinese, _tajikistanTajik, _tanzaniaEnglish, _thailandThai, _togoFrench, _tongaTonga, _trinidadAndTobagoEnglish, _tunisiaArabic, _turkeyTurkish, _turkmenistanTurkmen, _turksAndCaicosIslandsEnglish, _ugandaEnglish, _ukraineUkrainian, _unitedArabEmiratesArabic, _unitedArabEmiratesEnglish, _unitedKingdomEnglish, _unitedStatesEnglish, _uruguaySpanish, _uzbekistanUzbek, _vanuatuEnglish, _vanuatuFrench, _venezuelaSpanish, _vietnamVietnamese, _wallisAndFutunaFrench, _yemenArabic, _zambiaEnglish. |
Name | String | False |
Currency テーブルのName。 |
OverrideCurrencyFormat | Boolean | False |
Currency テーブルのOverrideCurrencyFormat。 |
Symbol | String | False |
Currency テーブルのSymbol。 |
SymbolPlacement | String | False |
Currency テーブルのSymbolPlacement。 The allowed values are _afterNumber, _beforeNumber. |
NetSuite のCustomer テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Customer テーブルのInternalId。 |
AccessRole_ExternalId | String | False |
Customer テーブルのAccessRole_ExternalId。 |
AccessRole_InternalId | String | False |
Customer テーブルのAccessRole_InternalId。 |
AccessRole_Name | String | False |
Customer テーブルのAccessRole_Name。 |
AccessRole_Type | String | False |
Customer テーブルのAccessRole_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
AccountNumber | String | False |
Customer テーブルのAccountNumber。 |
AddressbookList_ReplaceAll | Boolean | False |
Customer テーブルのAddressbookList_ReplaceAll。 |
Aging | Double | False |
Customer テーブルのAging。 |
AltEmail | String | False |
Customer テーブルのAltEmail。 |
AltName | String | False |
Customer テーブルのAltName。 |
AltPhone | String | False |
Customer テーブルのAltPhone。 |
Balance | Double | False |
Customer テーブルのBalance。 |
BillPay | Boolean | False |
Customer テーブルのBillPay。 |
BuyingReason_ExternalId | String | False |
Customer テーブルのBuyingReason_ExternalId。 |
BuyingReason_InternalId | String | False |
Customer テーブルのBuyingReason_InternalId。 |
BuyingReason_Name | String | False |
Customer テーブルのBuyingReason_Name。 |
BuyingReason_Type | String | False |
Customer テーブルのBuyingReason_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BuyingTimeFrame_ExternalId | String | False |
Customer テーブルのBuyingTimeFrame_ExternalId。 |
BuyingTimeFrame_InternalId | String | False |
Customer テーブルのBuyingTimeFrame_InternalId。 |
BuyingTimeFrame_Name | String | False |
Customer テーブルのBuyingTimeFrame_Name。 |
BuyingTimeFrame_Type | String | False |
Customer テーブルのBuyingTimeFrame_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CampaignCategory_ExternalId | String | False |
Customer テーブルのCampaignCategory_ExternalId。 |
CampaignCategory_InternalId | String | False |
Customer テーブルのCampaignCategory_InternalId。 |
CampaignCategory_Name | String | False |
Customer テーブルのCampaignCategory_Name。 |
CampaignCategory_Type | String | False |
Customer テーブルのCampaignCategory_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Category_ExternalId | String | False |
Customer テーブルのCategory_ExternalId。 |
Category_InternalId | String | False |
Customer テーブルのCategory_InternalId。 |
Category_Name | String | False |
Customer テーブルのCategory_Name。 |
Category_Type | String | False |
Customer テーブルのCategory_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ClickStream | String | False |
Customer テーブルのClickStream。 |
Comments | String | False |
Customer テーブルのComments。 |
CompanyName | String | False |
Customer テーブルのCompanyName。 |
ConsolAging | Double | False |
Customer テーブルのConsolAging。 |
ConsolBalance | Double | False |
Customer テーブルのConsolBalance。 |
ConsolDaysOverdue | Long | False |
Customer テーブルのConsolDaysOverdue。 |
ConsolDepositBalance | Double | False |
Customer テーブルのConsolDepositBalance。 |
ConsolOverdueBalance | Double | False |
Customer テーブルのConsolOverdueBalance。 |
ConsolUnbilledOrders | Double | False |
Customer テーブルのConsolUnbilledOrders。 |
ContactRolesList_ReplaceAll | Boolean | False |
Customer テーブルのContactRolesList_ReplaceAll。 |
ContribPct | String | False |
Customer テーブルのContribPct。 |
CreditCardsList_ReplaceAll | Boolean | False |
Customer テーブルのCreditCardsList_ReplaceAll。 |
CreditHoldOverride | String | False |
Customer テーブルのCreditHoldOverride。 The allowed values are _auto, _on, _off. |
CreditLimit | Double | False |
Customer テーブルのCreditLimit。 |
Currency_ExternalId | String | False |
Customer テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
Customer テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
Customer テーブルのCurrency_Name。 |
Currency_Type | String | False |
Customer テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyList_ReplaceAll | Boolean | False |
Customer テーブルのCurrencyList_ReplaceAll。 |
CustomForm_ExternalId | String | False |
Customer テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Customer テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Customer テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Customer テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DateCreated | Datetime | False |
Customer テーブルのDateCreated。 |
DaysOverdue | Long | False |
Customer テーブルのDaysOverdue。 |
DefaultAddress | String | False |
Customer テーブルのDefaultAddress。 |
DepositBalance | Double | False |
Customer テーブルのDepositBalance。 |
DisplaySymbol | String | False |
Customer テーブルのDisplaySymbol。 |
DownloadList_ReplaceAll | Boolean | False |
Customer テーブルのDownloadList_ReplaceAll。 |
DrAccount_ExternalId | String | False |
Customer テーブルのDrAccount_ExternalId。 |
DrAccount_InternalId | String | False |
Customer テーブルのDrAccount_InternalId。 |
DrAccount_Name | String | False |
Customer テーブルのDrAccount_Name。 |
DrAccount_Type | String | False |
Customer テーブルのDrAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
String | False |
Customer テーブルのEmail。 | |
EmailPreference | String | False |
Customer テーブルのEmailPreference。 The allowed values are _default, _hTML, _pDF. |
EmailTransactions | Boolean | False |
Customer テーブルのEmailTransactions。 |
EndDate | Datetime | False |
Customer テーブルのEndDate。 |
EntityId | String | False |
Customer テーブルのEntityId。 |
EntityStatus_ExternalId | String | False |
Customer テーブルのEntityStatus_ExternalId。 |
EntityStatus_InternalId | String | False |
Customer テーブルのEntityStatus_InternalId。 |
EntityStatus_Name | String | False |
Customer テーブルのEntityStatus_Name。 |
EntityStatus_Type | String | False |
Customer テーブルのEntityStatus_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EstimatedBudget | Double | False |
Customer テーブルのEstimatedBudget。 |
ExternalId | String | False |
Customer テーブルのExternalId。 |
Fax | String | False |
Customer テーブルのFax。 |
FaxTransactions | Boolean | False |
Customer テーブルのFaxTransactions。 |
FirstName | String | False |
Customer テーブルのFirstName。 |
FirstVisit | Datetime | False |
Customer テーブルのFirstVisit。 |
FxAccount_ExternalId | String | False |
Customer テーブルのFxAccount_ExternalId。 |
FxAccount_InternalId | String | False |
Customer テーブルのFxAccount_InternalId。 |
FxAccount_Name | String | False |
Customer テーブルのFxAccount_Name。 |
FxAccount_Type | String | False |
Customer テーブルのFxAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
GiveAccess | Boolean | False |
Customer テーブルのGiveAccess。 |
GlobalSubscriptionStatus | String | False |
Customer テーブルのGlobalSubscriptionStatus。 The allowed values are _confirmedOptIn, _confirmedOptOut, _softOptIn, _softOptOut. |
GroupPricingList_ReplaceAll | Boolean | False |
Customer テーブルのGroupPricingList_ReplaceAll。 |
HomePhone | String | False |
Customer テーブルのHomePhone。 |
Image_ExternalId | String | False |
Customer テーブルのImage_ExternalId。 |
Image_InternalId | String | False |
Customer テーブルのImage_InternalId。 |
Image_Name | String | False |
Customer テーブルのImage_Name。 |
Image_Type | String | False |
Customer テーブルのImage_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsBudgetApproved | Boolean | False |
Customer テーブルのIsBudgetApproved。 |
IsInactive | Boolean | False |
Customer テーブルのIsInactive。 |
IsPerson | Boolean | False |
Customer テーブルのIsPerson。 |
ItemPricingList_ReplaceAll | Boolean | False |
Customer テーブルのItemPricingList_ReplaceAll。 |
Keywords | String | False |
Customer テーブルのKeywords。 |
Language | String | False |
Customer テーブルのLanguage。 The allowed values are _arabic, _australian, _bengali, _bulgarian, _catalan, _chineseSimplified, _chineseTraditional, _croatian, _czech, _danish, _dutch, _english, _estonian, _finnish, _frenchCanada, _frenchFrance, _german, _greek, _haitian, _hebrew, _hungarian, _icelandic, _indonesian, _italian, _japanese, _korean, _latinAmericanSpanish, _latvian, _lithuanian, _norwegian, _polish, _portugueseBrazil, _portuguesePortugal, _romanian, _russian, _slovak, _slovenian, _spanish, _swedish, _thai, _turkish, _usEnglish, _vietnamese. |
LastModifiedDate | Datetime | False |
Customer テーブルのLastModifiedDate。 |
LastName | String | False |
Customer テーブルのLastName。 |
LastPageVisited | String | False |
Customer テーブルのLastPageVisited。 |
LastVisit | Datetime | False |
Customer テーブルのLastVisit。 |
LeadSource_ExternalId | String | False |
Customer テーブルのLeadSource_ExternalId。 |
LeadSource_InternalId | String | False |
Customer テーブルのLeadSource_InternalId。 |
LeadSource_Name | String | False |
Customer テーブルのLeadSource_Name。 |
LeadSource_Type | String | False |
Customer テーブルのLeadSource_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
MiddleName | String | False |
Customer テーブルのMiddleName。 |
MobilePhone | String | False |
Customer テーブルのMobilePhone。 |
NegativeNumberFormat | String | False |
Customer テーブルのNegativeNumberFormat。 The allowed values are _bracketSurrounded, _minusSigned. |
NumberFormat | String | False |
Customer テーブルのNumberFormat。 The allowed values are _spaceAsDigitGroupSeparatorAndDecimalComma, _spaceAsDigitGroupSeparatorAndDecimalPoint, _commaAsDigitGroupSeparatorAndDecimalPoint, _pointAsDigitGroupSeparatorAndDecimalComma, _apostropheAsDigitGroupSeparatorAndDecimalComma, _apostropheAsDigitGroupSeparatorAndDecimalPoint. |
OpeningBalance | Double | False |
Customer テーブルのOpeningBalance。 |
OpeningBalanceAccount_ExternalId | String | False |
Customer テーブルのOpeningBalanceAccount_ExternalId。 |
OpeningBalanceAccount_InternalId | String | False |
Customer テーブルのOpeningBalanceAccount_InternalId。 |
OpeningBalanceAccount_Name | String | False |
Customer テーブルのOpeningBalanceAccount_Name。 |
OpeningBalanceAccount_Type | String | False |
Customer テーブルのOpeningBalanceAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OpeningBalanceDate | Datetime | False |
Customer テーブルのOpeningBalanceDate。 |
OverdueBalance | Double | False |
Customer テーブルのOverdueBalance。 |
OverrideCurrencyFormat | Boolean | False |
Customer テーブルのOverrideCurrencyFormat。 |
Parent_ExternalId | String | False |
Customer テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
Customer テーブルのParent_InternalId。 |
Parent_Name | String | False |
Customer テーブルのParent_Name。 |
Parent_Type | String | False |
Customer テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Partner_ExternalId | String | False |
Customer テーブルのPartner_ExternalId。 |
Partner_InternalId | String | False |
Customer テーブルのPartner_InternalId。 |
Partner_Name | String | False |
Customer テーブルのPartner_Name。 |
Partner_Type | String | False |
Customer テーブルのPartner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PartnersList_ReplaceAll | Boolean | False |
Customer テーブルのPartnersList_ReplaceAll。 |
Password | String | False |
Customer テーブルのPassword。 |
Password2 | String | False |
Customer テーブルのPassword2。 |
Phone | String | False |
Customer テーブルのPhone。 |
PhoneticName | String | False |
Customer テーブルのPhoneticName。 |
PrefCCProcessor_ExternalId | String | False |
Customer テーブルのPrefCCProcessor_ExternalId。 |
PrefCCProcessor_InternalId | String | False |
Customer テーブルのPrefCCProcessor_InternalId。 |
PrefCCProcessor_Name | String | False |
Customer テーブルのPrefCCProcessor_Name。 |
PrefCCProcessor_Type | String | False |
Customer テーブルのPrefCCProcessor_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PriceLevel_ExternalId | String | False |
Customer テーブルのPriceLevel_ExternalId。 |
PriceLevel_InternalId | String | False |
Customer テーブルのPriceLevel_InternalId。 |
PriceLevel_Name | String | False |
Customer テーブルのPriceLevel_Name。 |
PriceLevel_Type | String | False |
Customer テーブルのPriceLevel_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PrintOnCheckAs | String | False |
Customer テーブルのPrintOnCheckAs。 |
PrintTransactions | Boolean | False |
Customer テーブルのPrintTransactions。 |
ReceivablesAccount_ExternalId | String | False |
Customer テーブルのReceivablesAccount_ExternalId。 |
ReceivablesAccount_InternalId | String | False |
Customer テーブルのReceivablesAccount_InternalId。 |
ReceivablesAccount_Name | String | False |
Customer テーブルのReceivablesAccount_Name。 |
ReceivablesAccount_Type | String | False |
Customer テーブルのReceivablesAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Referrer | String | False |
Customer テーブルのReferrer。 |
ReminderDays | Long | False |
Customer テーブルのReminderDays。 |
RepresentingSubsidiary_ExternalId | String | False |
Customer テーブルのRepresentingSubsidiary_ExternalId。 |
RepresentingSubsidiary_InternalId | String | False |
Customer テーブルのRepresentingSubsidiary_InternalId。 |
RepresentingSubsidiary_Name | String | False |
Customer テーブルのRepresentingSubsidiary_Name。 |
RepresentingSubsidiary_Type | String | False |
Customer テーブルのRepresentingSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RequirePwdChange | Boolean | False |
Customer テーブルのRequirePwdChange。 |
ResaleNumber | String | False |
Customer テーブルのResaleNumber。 |
SalesGroup_ExternalId | String | False |
Customer テーブルのSalesGroup_ExternalId。 |
SalesGroup_InternalId | String | False |
Customer テーブルのSalesGroup_InternalId。 |
SalesGroup_Name | String | False |
Customer テーブルのSalesGroup_Name。 |
SalesGroup_Type | String | False |
Customer テーブルのSalesGroup_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesReadiness_ExternalId | String | False |
Customer テーブルのSalesReadiness_ExternalId。 |
SalesReadiness_InternalId | String | False |
Customer テーブルのSalesReadiness_InternalId。 |
SalesReadiness_Name | String | False |
Customer テーブルのSalesReadiness_Name。 |
SalesReadiness_Type | String | False |
Customer テーブルのSalesReadiness_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesRep_ExternalId | String | False |
Customer テーブルのSalesRep_ExternalId。 |
SalesRep_InternalId | String | False |
Customer テーブルのSalesRep_InternalId。 |
SalesRep_Name | String | False |
Customer テーブルのSalesRep_Name。 |
SalesRep_Type | String | False |
Customer テーブルのSalesRep_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesTeamList_ReplaceAll | Boolean | False |
Customer テーブルのSalesTeamList_ReplaceAll。 |
Salutation | String | False |
Customer テーブルのSalutation。 |
SendEmail | Boolean | False |
Customer テーブルのSendEmail。 |
ShipComplete | Boolean | False |
Customer テーブルのShipComplete。 |
ShippingItem_ExternalId | String | False |
Customer テーブルのShippingItem_ExternalId。 |
ShippingItem_InternalId | String | False |
Customer テーブルのShippingItem_InternalId。 |
ShippingItem_Name | String | False |
Customer テーブルのShippingItem_Name。 |
ShippingItem_Type | String | False |
Customer テーブルのShippingItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Stage | String | False |
Customer テーブルのStage。 The allowed values are _customer, _lead, _prospect. |
StartDate | Datetime | False |
Customer テーブルのStartDate。 |
SubscriptionsList_ReplaceAll | Boolean | False |
Customer テーブルのSubscriptionsList_ReplaceAll。 |
Subsidiary_ExternalId | String | False |
Customer テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
Customer テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
Customer テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
Customer テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SymbolPlacement | String | False |
Customer テーブルのSymbolPlacement。 The allowed values are _afterNumber, _beforeNumber. |
SyncPartnerTeams | Boolean | False |
Customer テーブルのSyncPartnerTeams。 |
Taxable | Boolean | False |
Customer テーブルのTaxable。 |
TaxExempt | Boolean | False |
Customer テーブルのTaxExempt。 |
TaxItem_ExternalId | String | False |
Customer テーブルのTaxItem_ExternalId。 |
TaxItem_InternalId | String | False |
Customer テーブルのTaxItem_InternalId。 |
TaxItem_Name | String | False |
Customer テーブルのTaxItem_Name。 |
TaxItem_Type | String | False |
Customer テーブルのTaxItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Terms_ExternalId | String | False |
Customer テーブルのTerms_ExternalId。 |
Terms_InternalId | String | False |
Customer テーブルのTerms_InternalId。 |
Terms_Name | String | False |
Customer テーブルのTerms_Name。 |
Terms_Type | String | False |
Customer テーブルのTerms_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Territory_ExternalId | String | False |
Customer テーブルのTerritory_ExternalId。 |
Territory_InternalId | String | False |
Customer テーブルのTerritory_InternalId。 |
Territory_Name | String | False |
Customer テーブルのTerritory_Name。 |
Territory_Type | String | False |
Customer テーブルのTerritory_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ThirdPartyAcct | String | False |
Customer テーブルのThirdPartyAcct。 |
ThirdPartyCountry | String | False |
Customer テーブルのThirdPartyCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
ThirdPartyZipcode | String | False |
Customer テーブルのThirdPartyZipcode。 |
Title | String | False |
Customer テーブルのTitle。 |
UnbilledOrders | Double | False |
Customer テーブルのUnbilledOrders。 |
Url | String | False |
Customer テーブルのUrl。 |
VatRegNumber | String | False |
Customer テーブルのVatRegNumber。 |
Visits | Long | False |
Customer テーブルのVisits。 |
WebLead | String | False |
Customer テーブルのWebLead。 |
NetSuite のCustomerCategory テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CustomerCategory テーブルのInternalId。 |
ExternalId | String | False |
CustomerCategory テーブルのExternalId。 |
IsInactive | Boolean | False |
CustomerCategory テーブルのIsInactive。 |
Name | String | False |
CustomerCategory テーブルのName。 |
NetSuite のCustomerDeposit テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CustomerDeposit テーブルのInternalId。 |
Account_ExternalId | String | False |
CustomerDeposit テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
CustomerDeposit テーブルのAccount_InternalId。 |
Account_Name | String | False |
CustomerDeposit テーブルのAccount_Name。 |
Account_Type | String | False |
CustomerDeposit テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ApplyList_ReplaceAll | Boolean | False |
CustomerDeposit テーブルのApplyList_ReplaceAll。 |
AuthCode | String | False |
CustomerDeposit テーブルのAuthCode。 |
CcApproved | Boolean | False |
CustomerDeposit テーブルのCcApproved。 |
CcAvsStreetMatch | String | False |
CustomerDeposit テーブルのCcAvsStreetMatch。 The allowed values are _n, _x, _y. |
CcAvsZipMatch | String | False |
CustomerDeposit テーブルのCcAvsZipMatch。 The allowed values are _n, _x, _y. |
CcExpireDate | Datetime | False |
CustomerDeposit テーブルのCcExpireDate。 |
CcIsPurchaseCardBin | Boolean | False |
CustomerDeposit テーブルのCcIsPurchaseCardBin。 |
CcName | String | False |
CustomerDeposit テーブルのCcName。 |
CcNumber | String | False |
CustomerDeposit テーブルのCcNumber。 |
CcProcessAsPurchaseCard | Boolean | False |
CustomerDeposit テーブルのCcProcessAsPurchaseCard。 |
CcSecurityCode | String | False |
CustomerDeposit テーブルのCcSecurityCode。 |
CcSecurityCodeMatch | String | False |
CustomerDeposit テーブルのCcSecurityCodeMatch。 The allowed values are _n, _x, _y. |
CcStreet | String | False |
CustomerDeposit テーブルのCcStreet。 |
CcZipCode | String | False |
CustomerDeposit テーブルのCcZipCode。 |
ChargeIt | Boolean | False |
CustomerDeposit テーブルのChargeIt。 |
CheckNum | String | False |
CustomerDeposit テーブルのCheckNum。 |
Class_ExternalId | String | False |
CustomerDeposit テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
CustomerDeposit テーブルのClass_InternalId。 |
Class_Name | String | False |
CustomerDeposit テーブルのClass_Name。 |
Class_Type | String | False |
CustomerDeposit テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
CustomerDeposit テーブルのCreatedDate。 |
CreditCard_ExternalId | String | False |
CustomerDeposit テーブルのCreditCard_ExternalId。 |
CreditCard_InternalId | String | False |
CustomerDeposit テーブルのCreditCard_InternalId。 |
CreditCard_Name | String | False |
CustomerDeposit テーブルのCreditCard_Name。 |
CreditCard_Type | String | False |
CustomerDeposit テーブルのCreditCard_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditCardProcessor_ExternalId | String | False |
CustomerDeposit テーブルのCreditCardProcessor_ExternalId。 |
CreditCardProcessor_InternalId | String | False |
CustomerDeposit テーブルのCreditCardProcessor_InternalId。 |
CreditCardProcessor_Name | String | False |
CustomerDeposit テーブルのCreditCardProcessor_Name。 |
CreditCardProcessor_Type | String | False |
CustomerDeposit テーブルのCreditCardProcessor_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
CustomerDeposit テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
CustomerDeposit テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
CustomerDeposit テーブルのCurrency_Name。 |
Currency_Type | String | False |
CustomerDeposit テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
CustomerDeposit テーブルのCurrencyName。 |
Customer_ExternalId | String | False |
CustomerDeposit テーブルのCustomer_ExternalId。 |
Customer_InternalId | String | False |
CustomerDeposit テーブルのCustomer_InternalId。 |
Customer_Name | String | False |
CustomerDeposit テーブルのCustomer_Name。 |
Customer_Type | String | False |
CustomerDeposit テーブルのCustomer_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
CustomerDeposit テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
CustomerDeposit テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
CustomerDeposit テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
CustomerDeposit テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DebitCardIssueNo | String | False |
CustomerDeposit テーブルのDebitCardIssueNo。 |
Department_ExternalId | String | False |
CustomerDeposit テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
CustomerDeposit テーブルのDepartment_InternalId。 |
Department_Name | String | False |
CustomerDeposit テーブルのDepartment_Name。 |
Department_Type | String | False |
CustomerDeposit テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExchangeRate | Double | False |
CustomerDeposit テーブルのExchangeRate。 |
ExternalId | String | False |
CustomerDeposit テーブルのExternalId。 |
IgnoreAvs | Boolean | False |
CustomerDeposit テーブルのIgnoreAvs。 |
LastModifiedDate | Datetime | False |
CustomerDeposit テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
CustomerDeposit テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
CustomerDeposit テーブルのLocation_InternalId。 |
Location_Name | String | False |
CustomerDeposit テーブルのLocation_Name。 |
Location_Type | String | False |
CustomerDeposit テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
CustomerDeposit テーブルのMemo。 |
Payment | Double | False |
CustomerDeposit テーブルのPayment。 |
PaymentMethod_ExternalId | String | False |
CustomerDeposit テーブルのPaymentMethod_ExternalId。 |
PaymentMethod_InternalId | String | False |
CustomerDeposit テーブルのPaymentMethod_InternalId。 |
PaymentMethod_Name | String | False |
CustomerDeposit テーブルのPaymentMethod_Name。 |
PaymentMethod_Type | String | False |
CustomerDeposit テーブルのPaymentMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PnRefNum | String | False |
CustomerDeposit テーブルのPnRefNum。 |
PostingPeriod_ExternalId | String | False |
CustomerDeposit テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
CustomerDeposit テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
CustomerDeposit テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
CustomerDeposit テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesOrder_ExternalId | String | False |
CustomerDeposit テーブルのSalesOrder_ExternalId。 |
SalesOrder_InternalId | String | False |
CustomerDeposit テーブルのSalesOrder_InternalId。 |
SalesOrder_Name | String | False |
CustomerDeposit テーブルのSalesOrder_Name。 |
SalesOrder_Type | String | False |
CustomerDeposit テーブルのSalesOrder_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SoftDescriptor | String | False |
CustomerDeposit テーブルのSoftDescriptor。 |
Status | String | False |
CustomerDeposit テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
CustomerDeposit テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
CustomerDeposit テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
CustomerDeposit テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
CustomerDeposit テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ThreeDStatusCode | String | False |
CustomerDeposit テーブルのThreeDStatusCode。 |
TranDate | Datetime | False |
CustomerDeposit テーブルのTranDate。 |
UndepFunds | Boolean | False |
CustomerDeposit テーブルのUndepFunds。 |
ValidFrom | Datetime | False |
CustomerDeposit テーブルのValidFrom。 |
NetSuite のCustomerMessage テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CustomerMessage テーブルのInternalId。 |
Description | String | False |
CustomerMessage テーブルのDescription。 |
ExternalId | String | False |
CustomerMessage テーブルのExternalId。 |
IsInactive | Boolean | False |
CustomerMessage テーブルのIsInactive。 |
Name | String | False |
CustomerMessage テーブルのName。 |
Preferred | Boolean | False |
CustomerMessage テーブルのPreferred。 |
NetSuite のCustomerPayment テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CustomerPayment テーブルのInternalId。 |
Account_ExternalId | String | False |
CustomerPayment テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
CustomerPayment テーブルのAccount_InternalId。 |
Account_Name | String | False |
CustomerPayment テーブルのAccount_Name。 |
Account_Type | String | False |
CustomerPayment テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Applied | Double | False |
CustomerPayment テーブルのApplied。 |
ApplyList_ReplaceAll | Boolean | False |
CustomerPayment テーブルのApplyList_ReplaceAll。 |
ArAcct_ExternalId | String | False |
CustomerPayment テーブルのArAcct_ExternalId。 |
ArAcct_InternalId | String | False |
CustomerPayment テーブルのArAcct_InternalId。 |
ArAcct_Name | String | False |
CustomerPayment テーブルのArAcct_Name。 |
ArAcct_Type | String | False |
CustomerPayment テーブルのArAcct_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
AuthCode | String | False |
CustomerPayment テーブルのAuthCode。 |
AutoApply | Boolean | False |
CustomerPayment テーブルのAutoApply。 |
Balance | Double | False |
CustomerPayment テーブルのBalance。 |
CcApproved | Boolean | False |
CustomerPayment テーブルのCcApproved。 |
CcAvsStreetMatch | String | False |
CustomerPayment テーブルのCcAvsStreetMatch。 The allowed values are _n, _x, _y. |
CcAvsZipMatch | String | False |
CustomerPayment テーブルのCcAvsZipMatch。 The allowed values are _n, _x, _y. |
CcExpireDate | Datetime | False |
CustomerPayment テーブルのCcExpireDate。 |
CcIsPurchaseCardBin | Boolean | False |
CustomerPayment テーブルのCcIsPurchaseCardBin。 |
CcName | String | False |
CustomerPayment テーブルのCcName。 |
CcNumber | String | False |
CustomerPayment テーブルのCcNumber。 |
CcProcessAsPurchaseCard | Boolean | False |
CustomerPayment テーブルのCcProcessAsPurchaseCard。 |
CcSecurityCode | String | False |
CustomerPayment テーブルのCcSecurityCode。 |
CcSecurityCodeMatch | String | False |
CustomerPayment テーブルのCcSecurityCodeMatch。 The allowed values are _n, _x, _y. |
CcStreet | String | False |
CustomerPayment テーブルのCcStreet。 |
CcZipCode | String | False |
CustomerPayment テーブルのCcZipCode。 |
ChargeIt | Boolean | False |
CustomerPayment テーブルのChargeIt。 |
CheckNum | String | False |
CustomerPayment テーブルのCheckNum。 |
Class_ExternalId | String | False |
CustomerPayment テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
CustomerPayment テーブルのClass_InternalId。 |
Class_Name | String | False |
CustomerPayment テーブルのClass_Name。 |
Class_Type | String | False |
CustomerPayment テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
CustomerPayment テーブルのCreatedDate。 |
CreditCard_ExternalId | String | False |
CustomerPayment テーブルのCreditCard_ExternalId。 |
CreditCard_InternalId | String | False |
CustomerPayment テーブルのCreditCard_InternalId。 |
CreditCard_Name | String | False |
CustomerPayment テーブルのCreditCard_Name。 |
CreditCard_Type | String | False |
CustomerPayment テーブルのCreditCard_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditCardProcessor_ExternalId | String | False |
CustomerPayment テーブルのCreditCardProcessor_ExternalId。 |
CreditCardProcessor_InternalId | String | False |
CustomerPayment テーブルのCreditCardProcessor_InternalId。 |
CreditCardProcessor_Name | String | False |
CustomerPayment テーブルのCreditCardProcessor_Name。 |
CreditCardProcessor_Type | String | False |
CustomerPayment テーブルのCreditCardProcessor_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditList_ReplaceAll | Boolean | False |
CustomerPayment テーブルのCreditList_ReplaceAll。 |
Currency_ExternalId | String | False |
CustomerPayment テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
CustomerPayment テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
CustomerPayment テーブルのCurrency_Name。 |
Currency_Type | String | False |
CustomerPayment テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
CustomerPayment テーブルのCurrencyName。 |
Customer_ExternalId | String | False |
CustomerPayment テーブルのCustomer_ExternalId。 |
Customer_InternalId | String | False |
CustomerPayment テーブルのCustomer_InternalId。 |
Customer_Name | String | False |
CustomerPayment テーブルのCustomer_Name。 |
Customer_Type | String | False |
CustomerPayment テーブルのCustomer_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
CustomerPayment テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
CustomerPayment テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
CustomerPayment テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
CustomerPayment テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DebitCardIssueNo | String | False |
CustomerPayment テーブルのDebitCardIssueNo。 |
Department_ExternalId | String | False |
CustomerPayment テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
CustomerPayment テーブルのDepartment_InternalId。 |
Department_Name | String | False |
CustomerPayment テーブルのDepartment_Name。 |
Department_Type | String | False |
CustomerPayment テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DepositList_ReplaceAll | Boolean | False |
CustomerPayment テーブルのDepositList_ReplaceAll。 |
ExchangeRate | Double | False |
CustomerPayment テーブルのExchangeRate。 |
ExternalId | String | False |
CustomerPayment テーブルのExternalId。 |
IgnoreAvs | Boolean | False |
CustomerPayment テーブルのIgnoreAvs。 |
LastModifiedDate | Datetime | False |
CustomerPayment テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
CustomerPayment テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
CustomerPayment テーブルのLocation_InternalId。 |
Location_Name | String | False |
CustomerPayment テーブルのLocation_Name。 |
Location_Type | String | False |
CustomerPayment テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
CustomerPayment テーブルのMemo。 |
Payment | Double | False |
CustomerPayment テーブルのPayment。 |
PaymentMethod_ExternalId | String | False |
CustomerPayment テーブルのPaymentMethod_ExternalId。 |
PaymentMethod_InternalId | String | False |
CustomerPayment テーブルのPaymentMethod_InternalId。 |
PaymentMethod_Name | String | False |
CustomerPayment テーブルのPaymentMethod_Name。 |
PaymentMethod_Type | String | False |
CustomerPayment テーブルのPaymentMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Pending | Double | False |
CustomerPayment テーブルのPending。 |
PnRefNum | String | False |
CustomerPayment テーブルのPnRefNum。 |
PostingPeriod_ExternalId | String | False |
CustomerPayment テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
CustomerPayment テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
CustomerPayment テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
CustomerPayment テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Status | String | False |
CustomerPayment テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
CustomerPayment テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
CustomerPayment テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
CustomerPayment テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
CustomerPayment テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ThreeDStatusCode | String | False |
CustomerPayment テーブルのThreeDStatusCode。 |
Total | Double | False |
CustomerPayment テーブルのTotal。 |
TranDate | Datetime | False |
CustomerPayment テーブルのTranDate。 |
Unapplied | Double | False |
CustomerPayment テーブルのUnapplied。 |
UndepFunds | Boolean | False |
CustomerPayment テーブルのUndepFunds。 |
ValidFrom | Datetime | False |
CustomerPayment テーブルのValidFrom。 |
NetSuite のCustomerRefund テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CustomerRefund テーブルのInternalId。 |
Account_ExternalId | String | False |
CustomerRefund テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
CustomerRefund テーブルのAccount_InternalId。 |
Account_Name | String | False |
CustomerRefund テーブルのAccount_Name。 |
Account_Type | String | False |
CustomerRefund テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Address | String | False |
CustomerRefund テーブルのAddress。 |
ApplyList_ReplaceAll | Boolean | False |
CustomerRefund テーブルのApplyList_ReplaceAll。 |
ArAcct_ExternalId | String | False |
CustomerRefund テーブルのArAcct_ExternalId。 |
ArAcct_InternalId | String | False |
CustomerRefund テーブルのArAcct_InternalId。 |
ArAcct_Name | String | False |
CustomerRefund テーブルのArAcct_Name。 |
ArAcct_Type | String | False |
CustomerRefund テーブルのArAcct_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Balance | Double | False |
CustomerRefund テーブルのBalance。 |
CcApproved | Boolean | False |
CustomerRefund テーブルのCcApproved。 |
CcExpireDate | Datetime | False |
CustomerRefund テーブルのCcExpireDate。 |
CcIsPurchaseCardBin | Boolean | False |
CustomerRefund テーブルのCcIsPurchaseCardBin。 |
CcName | String | False |
CustomerRefund テーブルのCcName。 |
CcNumber | String | False |
CustomerRefund テーブルのCcNumber。 |
CcProcessAsPurchaseCard | Boolean | False |
CustomerRefund テーブルのCcProcessAsPurchaseCard。 |
CcStreet | String | False |
CustomerRefund テーブルのCcStreet。 |
CcZipCode | String | False |
CustomerRefund テーブルのCcZipCode。 |
ChargeIt | Boolean | False |
CustomerRefund テーブルのChargeIt。 |
Class_ExternalId | String | False |
CustomerRefund テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
CustomerRefund テーブルのClass_InternalId。 |
Class_Name | String | False |
CustomerRefund テーブルのClass_Name。 |
Class_Type | String | False |
CustomerRefund テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
CustomerRefund テーブルのCreatedDate。 |
CreditCard_ExternalId | String | False |
CustomerRefund テーブルのCreditCard_ExternalId。 |
CreditCard_InternalId | String | False |
CustomerRefund テーブルのCreditCard_InternalId。 |
CreditCard_Name | String | False |
CustomerRefund テーブルのCreditCard_Name。 |
CreditCard_Type | String | False |
CustomerRefund テーブルのCreditCard_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditCardProcessor_ExternalId | String | False |
CustomerRefund テーブルのCreditCardProcessor_ExternalId。 |
CreditCardProcessor_InternalId | String | False |
CustomerRefund テーブルのCreditCardProcessor_InternalId。 |
CreditCardProcessor_Name | String | False |
CustomerRefund テーブルのCreditCardProcessor_Name。 |
CreditCardProcessor_Type | String | False |
CustomerRefund テーブルのCreditCardProcessor_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
CustomerRefund テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
CustomerRefund テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
CustomerRefund テーブルのCurrency_Name。 |
Currency_Type | String | False |
CustomerRefund テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
CustomerRefund テーブルのCurrencyName。 |
Customer_ExternalId | String | False |
CustomerRefund テーブルのCustomer_ExternalId。 |
Customer_InternalId | String | False |
CustomerRefund テーブルのCustomer_InternalId。 |
Customer_Name | String | False |
CustomerRefund テーブルのCustomer_Name。 |
Customer_Type | String | False |
CustomerRefund テーブルのCustomer_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
CustomerRefund テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
CustomerRefund テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
CustomerRefund テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
CustomerRefund テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DebitCardIssueNo | String | False |
CustomerRefund テーブルのDebitCardIssueNo。 |
Department_ExternalId | String | False |
CustomerRefund テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
CustomerRefund テーブルのDepartment_InternalId。 |
Department_Name | String | False |
CustomerRefund テーブルのDepartment_Name。 |
Department_Type | String | False |
CustomerRefund テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DepositList_ReplaceAll | Boolean | False |
CustomerRefund テーブルのDepositList_ReplaceAll。 |
ExchangeRate | Double | False |
CustomerRefund テーブルのExchangeRate。 |
ExternalId | String | False |
CustomerRefund テーブルのExternalId。 |
LastModifiedDate | Datetime | False |
CustomerRefund テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
CustomerRefund テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
CustomerRefund テーブルのLocation_InternalId。 |
Location_Name | String | False |
CustomerRefund テーブルのLocation_Name。 |
Location_Type | String | False |
CustomerRefund テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
CustomerRefund テーブルのMemo。 |
PaymentMethod_ExternalId | String | False |
CustomerRefund テーブルのPaymentMethod_ExternalId。 |
PaymentMethod_InternalId | String | False |
CustomerRefund テーブルのPaymentMethod_InternalId。 |
PaymentMethod_Name | String | False |
CustomerRefund テーブルのPaymentMethod_Name。 |
PaymentMethod_Type | String | False |
CustomerRefund テーブルのPaymentMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PnRefNum | String | False |
CustomerRefund テーブルのPnRefNum。 |
PostingPeriod_ExternalId | String | False |
CustomerRefund テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
CustomerRefund テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
CustomerRefund テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
CustomerRefund テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Status | String | False |
CustomerRefund テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
CustomerRefund テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
CustomerRefund テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
CustomerRefund テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
CustomerRefund テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ToBePrinted | Boolean | False |
CustomerRefund テーブルのToBePrinted。 |
Total | Double | False |
CustomerRefund テーブルのTotal。 |
TranDate | Datetime | False |
CustomerRefund テーブルのTranDate。 |
TranId | String | False |
CustomerRefund テーブルのTranId。 |
ValidFrom | Datetime | False |
CustomerRefund テーブルのValidFrom。 |
VoidJournal_ExternalId | String | False |
CustomerRefund テーブルのVoidJournal_ExternalId。 |
VoidJournal_InternalId | String | False |
CustomerRefund テーブルのVoidJournal_InternalId。 |
VoidJournal_Name | String | False |
CustomerRefund テーブルのVoidJournal_Name。 |
VoidJournal_Type | String | False |
CustomerRefund テーブルのVoidJournal_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のCustomerStatus テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
CustomerStatus テーブルのInternalId。 |
Description | String | False |
CustomerStatus テーブルのDescription。 |
ExternalId | String | False |
CustomerStatus テーブルのExternalId。 |
IncludeInLeadReports | Boolean | False |
CustomerStatus テーブルのIncludeInLeadReports。 |
IsInactive | Boolean | False |
CustomerStatus テーブルのIsInactive。 |
Name | String | False |
CustomerStatus テーブルのName。 |
Probability | Double | False |
CustomerStatus テーブルのProbability。 |
Stage | String | False |
CustomerStatus テーブルのStage。 The allowed values are _customer, _lead, _prospect. |
NetSuite のDepartment テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Department テーブルのInternalId。 |
ClassTranslationList_ReplaceAll | Boolean | False |
Department テーブルのClassTranslationList_ReplaceAll。 |
ExternalId | String | False |
Department テーブルのExternalId。 |
IncludeChildren | Boolean | False |
Department テーブルのIncludeChildren。 |
IsInactive | Boolean | False |
Department テーブルのIsInactive。 |
Name | String | False |
Department テーブルのName。 |
Parent_ExternalId | String | False |
Department テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
Department テーブルのParent_InternalId。 |
Parent_Name | String | False |
Department テーブルのParent_Name。 |
Parent_Type | String | False |
Department テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のDepositApplication テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
DepositApplication テーブルのInternalId。 |
Applied | Double | False |
DepositApplication テーブルのApplied。 |
ApplyList_ReplaceAll | Boolean | False |
DepositApplication テーブルのApplyList_ReplaceAll。 |
ArAcct | String | False |
DepositApplication テーブルのArAcct。 |
Class_ExternalId | String | False |
DepositApplication テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
DepositApplication テーブルのClass_InternalId。 |
Class_Name | String | False |
DepositApplication テーブルのClass_Name。 |
Class_Type | String | False |
DepositApplication テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
DepositApplication テーブルのCreatedDate。 |
Currency_ExternalId | String | False |
DepositApplication テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
DepositApplication テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
DepositApplication テーブルのCurrency_Name。 |
Currency_Type | String | False |
DepositApplication テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Customer_ExternalId | String | False |
DepositApplication テーブルのCustomer_ExternalId。 |
Customer_InternalId | String | False |
DepositApplication テーブルのCustomer_InternalId。 |
Customer_Name | String | False |
DepositApplication テーブルのCustomer_Name。 |
Customer_Type | String | False |
DepositApplication テーブルのCustomer_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
DepositApplication テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
DepositApplication テーブルのDepartment_InternalId。 |
Department_Name | String | False |
DepositApplication テーブルのDepartment_Name。 |
Department_Type | String | False |
DepositApplication テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DepDate | Datetime | False |
DepositApplication テーブルのDepDate。 |
Deposit_ExternalId | String | False |
DepositApplication テーブルのDeposit_ExternalId。 |
Deposit_InternalId | String | False |
DepositApplication テーブルのDeposit_InternalId。 |
Deposit_Name | String | False |
DepositApplication テーブルのDeposit_Name。 |
Deposit_Type | String | False |
DepositApplication テーブルのDeposit_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExchangeRate | Double | False |
DepositApplication テーブルのExchangeRate。 |
ExternalId | String | False |
DepositApplication テーブルのExternalId。 |
LastModifiedDate | Datetime | False |
DepositApplication テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
DepositApplication テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
DepositApplication テーブルのLocation_InternalId。 |
Location_Name | String | False |
DepositApplication テーブルのLocation_Name。 |
Location_Type | String | False |
DepositApplication テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
DepositApplication テーブルのMemo。 |
PostingPeriod_ExternalId | String | False |
DepositApplication テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
DepositApplication テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
DepositApplication テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
DepositApplication テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Status | String | False |
DepositApplication テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
DepositApplication テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
DepositApplication テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
DepositApplication テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
DepositApplication テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Total | Double | False |
DepositApplication テーブルのTotal。 |
TranDate | Datetime | False |
DepositApplication テーブルのTranDate。 |
TranId | String | False |
DepositApplication テーブルのTranId。 |
Unapplied | Double | False |
DepositApplication テーブルのUnapplied。 |
NetSuite のEmployee テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Employee テーブルのInternalId。 |
AccountNumber | String | False |
Employee テーブルのAccountNumber。 |
AccruedTimeList_ReplaceAll | Boolean | False |
Employee テーブルのAccruedTimeList_ReplaceAll。 |
AddressbookList_ReplaceAll | Boolean | False |
Employee テーブルのAddressbookList_ReplaceAll。 |
AdpId | String | False |
Employee テーブルのAdpId。 |
AltName | String | False |
Employee テーブルのAltName。 |
ApprovalLimit | Double | False |
Employee テーブルのApprovalLimit。 |
Approver_ExternalId | String | False |
Employee テーブルのApprover_ExternalId。 |
Approver_InternalId | String | False |
Employee テーブルのApprover_InternalId。 |
Approver_Name | String | False |
Employee テーブルのApprover_Name。 |
Approver_Type | String | False |
Employee テーブルのApprover_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BillingClass_ExternalId | String | False |
Employee テーブルのBillingClass_ExternalId。 |
BillingClass_InternalId | String | False |
Employee テーブルのBillingClass_InternalId。 |
BillingClass_Name | String | False |
Employee テーブルのBillingClass_Name。 |
BillingClass_Type | String | False |
Employee テーブルのBillingClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BillPay | Boolean | False |
Employee テーブルのBillPay。 |
BirthDate | Datetime | False |
Employee テーブルのBirthDate。 |
Class_ExternalId | String | False |
Employee テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
Employee テーブルのClass_InternalId。 |
Class_Name | String | False |
Employee テーブルのClass_Name。 |
Class_Type | String | False |
Employee テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Comments | String | False |
Employee テーブルのComments。 |
CommissionPaymentPreference | String | False |
Employee テーブルのCommissionPaymentPreference。 The allowed values are _accountsPayable, _payroll, _systemPreference. |
CompanyContributionList_ReplaceAll | Boolean | False |
Employee テーブルのCompanyContributionList_ReplaceAll。 |
ConcurrentWebServicesUser | Boolean | False |
Employee テーブルのConcurrentWebServicesUser。 |
Currency_ExternalId | String | False |
Employee テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
Employee テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
Employee テーブルのCurrency_Name。 |
Currency_Type | String | False |
Employee テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
Employee テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Employee テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Employee テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Employee テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DateCreated | Datetime | False |
Employee テーブルのDateCreated。 |
DeductionList_ReplaceAll | Boolean | False |
Employee テーブルのDeductionList_ReplaceAll。 |
DefaultAddress | String | False |
Employee テーブルのDefaultAddress。 |
Department_ExternalId | String | False |
Employee テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
Employee テーブルのDepartment_InternalId。 |
Department_Name | String | False |
Employee テーブルのDepartment_Name。 |
Department_Type | String | False |
Employee テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DirectDeposit | Boolean | False |
Employee テーブルのDirectDeposit。 |
DirectDepositList_ReplaceAll | Boolean | False |
Employee テーブルのDirectDepositList_ReplaceAll。 |
EarningList_ReplaceAll | Boolean | False |
Employee テーブルのEarningList_ReplaceAll。 |
EligibleForCommission | Boolean | False |
Employee テーブルのEligibleForCommission。 |
String | False |
Employee テーブルのEmail。 | |
EmergencyContactList_ReplaceAll | Boolean | False |
Employee テーブルのEmergencyContactList_ReplaceAll。 |
EmployeeStatus_ExternalId | String | False |
Employee テーブルのEmployeeStatus_ExternalId。 |
EmployeeStatus_InternalId | String | False |
Employee テーブルのEmployeeStatus_InternalId。 |
EmployeeStatus_Name | String | False |
Employee テーブルのEmployeeStatus_Name。 |
EmployeeStatus_Type | String | False |
Employee テーブルのEmployeeStatus_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EmployeeType_ExternalId | String | False |
Employee テーブルのEmployeeType_ExternalId。 |
EmployeeType_InternalId | String | False |
Employee テーブルのEmployeeType_InternalId。 |
EmployeeType_Name | String | False |
Employee テーブルのEmployeeType_Name。 |
EmployeeType_Type | String | False |
Employee テーブルのEmployeeType_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EntityId | String | False |
Employee テーブルのEntityId。 |
Ethnicity_ExternalId | String | False |
Employee テーブルのEthnicity_ExternalId。 |
Ethnicity_InternalId | String | False |
Employee テーブルのEthnicity_InternalId。 |
Ethnicity_Name | String | False |
Employee テーブルのEthnicity_Name。 |
Ethnicity_Type | String | False |
Employee テーブルのEthnicity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExpenseLimit | Double | False |
Employee テーブルのExpenseLimit。 |
ExternalId | String | False |
Employee テーブルのExternalId。 |
Fax | String | False |
Employee テーブルのFax。 |
FirstName | String | False |
Employee テーブルのFirstName。 |
Gender | String | False |
Employee テーブルのGender。 The allowed values are _omitted, _female, _male. |
GiveAccess | Boolean | False |
Employee テーブルのGiveAccess。 |
GlobalSubscriptionStatus | String | False |
Employee テーブルのGlobalSubscriptionStatus。 The allowed values are _confirmedOptIn, _confirmedOptOut, _softOptIn, _softOptOut. |
HasOfflineAccess | Boolean | False |
Employee テーブルのHasOfflineAccess。 |
HireDate | Datetime | False |
Employee テーブルのHireDate。 |
HomePhone | String | False |
Employee テーブルのHomePhone。 |
HrEducationList_ReplaceAll | Boolean | False |
Employee テーブルのHrEducationList_ReplaceAll。 |
Image_ExternalId | String | False |
Employee テーブルのImage_ExternalId。 |
Image_InternalId | String | False |
Employee テーブルのImage_InternalId。 |
Image_Name | String | False |
Employee テーブルのImage_Name。 |
Image_Type | String | False |
Employee テーブルのImage_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
InheritIPRules | Boolean | False |
Employee テーブルのInheritIPRules。 |
Initials | String | False |
Employee テーブルのInitials。 |
IPAddressRule | String | False |
Employee テーブルのIPAddressRule。 |
IsInactive | Boolean | False |
Employee テーブルのIsInactive。 |
IsJobResource | Boolean | False |
Employee テーブルのIsJobResource。 |
IsSalesRep | Boolean | False |
Employee テーブルのIsSalesRep。 |
IsSupportRep | Boolean | False |
Employee テーブルのIsSupportRep。 |
JobDescription | String | False |
Employee テーブルのJobDescription。 |
LaborCost | Double | False |
Employee テーブルのLaborCost。 |
LastModifiedDate | Datetime | False |
Employee テーブルのLastModifiedDate。 |
LastName | String | False |
Employee テーブルのLastName。 |
LastPaidDate | Datetime | False |
Employee テーブルのLastPaidDate。 |
LastReviewDate | Datetime | False |
Employee テーブルのLastReviewDate。 |
Location_ExternalId | String | False |
Employee テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
Employee テーブルのLocation_InternalId。 |
Location_Name | String | False |
Employee テーブルのLocation_Name。 |
Location_Type | String | False |
Employee テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
MaritalStatus_ExternalId | String | False |
Employee テーブルのMaritalStatus_ExternalId。 |
MaritalStatus_InternalId | String | False |
Employee テーブルのMaritalStatus_InternalId。 |
MaritalStatus_Name | String | False |
Employee テーブルのMaritalStatus_Name。 |
MaritalStatus_Type | String | False |
Employee テーブルのMaritalStatus_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
MiddleName | String | False |
Employee テーブルのMiddleName。 |
MobilePhone | String | False |
Employee テーブルのMobilePhone。 |
NextReviewDate | Datetime | False |
Employee テーブルのNextReviewDate。 |
OfficePhone | String | False |
Employee テーブルのOfficePhone。 |
Password | String | False |
Employee テーブルのPassword。 |
Password2 | String | False |
Employee テーブルのPassword2。 |
PayFrequency | String | False |
Employee テーブルのPayFrequency。 The allowed values are _annually, _custom, _daily, _endOfPeriod, _everyFourWeeks, _everyThreeYears, _everyTwoMonths, _everyTwoWeeks, _everyTwoYears, _monthly, _never, _oneTime, _quarterly, _startOfPeriod, _twiceAMonth, _twiceAYear, _weekly. |
Phone | String | False |
Employee テーブルのPhone。 |
PhoneticName | String | False |
Employee テーブルのPhoneticName。 |
PurchaseOrderApprovalLimit | Double | False |
Employee テーブルのPurchaseOrderApprovalLimit。 |
PurchaseOrderApprover_ExternalId | String | False |
Employee テーブルのPurchaseOrderApprover_ExternalId。 |
PurchaseOrderApprover_InternalId | String | False |
Employee テーブルのPurchaseOrderApprover_InternalId。 |
PurchaseOrderApprover_Name | String | False |
Employee テーブルのPurchaseOrderApprover_Name。 |
PurchaseOrderApprover_Type | String | False |
Employee テーブルのPurchaseOrderApprover_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PurchaseOrderLimit | Double | False |
Employee テーブルのPurchaseOrderLimit。 |
ReleaseDate | Datetime | False |
Employee テーブルのReleaseDate。 |
RequirePwdChange | Boolean | False |
Employee テーブルのRequirePwdChange。 |
RolesList_ReplaceAll | Boolean | False |
Employee テーブルのRolesList_ReplaceAll。 |
SalesRole_ExternalId | String | False |
Employee テーブルのSalesRole_ExternalId。 |
SalesRole_InternalId | String | False |
Employee テーブルのSalesRole_InternalId。 |
SalesRole_Name | String | False |
Employee テーブルのSalesRole_Name。 |
SalesRole_Type | String | False |
Employee テーブルのSalesRole_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Salutation | String | False |
Employee テーブルのSalutation。 |
SendEmail | Boolean | False |
Employee テーブルのSendEmail。 |
SocialSecurityNumber | String | False |
Employee テーブルのSocialSecurityNumber。 |
SubscriptionsList_ReplaceAll | Boolean | False |
Employee テーブルのSubscriptionsList_ReplaceAll。 |
Subsidiary_ExternalId | String | False |
Employee テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
Employee テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
Employee テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
Employee テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Supervisor_ExternalId | String | False |
Employee テーブルのSupervisor_ExternalId。 |
Supervisor_InternalId | String | False |
Employee テーブルのSupervisor_InternalId。 |
Supervisor_Name | String | False |
Employee テーブルのSupervisor_Name。 |
Supervisor_Type | String | False |
Employee テーブルのSupervisor_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Template_ExternalId | String | False |
Employee テーブルのTemplate_ExternalId。 |
Template_InternalId | String | False |
Employee テーブルのTemplate_InternalId。 |
Template_Name | String | False |
Employee テーブルのTemplate_Name。 |
Template_Type | String | False |
Employee テーブルのTemplate_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TimeApprover_ExternalId | String | False |
Employee テーブルのTimeApprover_ExternalId。 |
TimeApprover_InternalId | String | False |
Employee テーブルのTimeApprover_InternalId。 |
TimeApprover_Name | String | False |
Employee テーブルのTimeApprover_Name。 |
TimeApprover_Type | String | False |
Employee テーブルのTimeApprover_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Title | String | False |
Employee テーブルのTitle。 |
UsePerquest | Boolean | False |
Employee テーブルのUsePerquest。 |
UseTimeData | String | False |
Employee テーブルのUseTimeData。 The allowed values are _wage, _salary. |
WorkCalendar_ExternalId | String | False |
Employee テーブルのWorkCalendar_ExternalId。 |
WorkCalendar_InternalId | String | False |
Employee テーブルのWorkCalendar_InternalId。 |
WorkCalendar_Name | String | False |
Employee テーブルのWorkCalendar_Name。 |
WorkCalendar_Type | String | False |
Employee テーブルのWorkCalendar_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Workplace_ExternalId | String | False |
Employee テーブルのWorkplace_ExternalId。 |
Workplace_InternalId | String | False |
Employee テーブルのWorkplace_InternalId。 |
Workplace_Name | String | False |
Employee テーブルのWorkplace_Name。 |
Workplace_Type | String | False |
Employee テーブルのWorkplace_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のEntityGroup テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
EntityGroup テーブルのInternalId。 |
CalendarDefaultView | String | False |
EntityGroup テーブルのCalendarDefaultView。 The allowed values are _daily, _weekly, _monthly. |
CalendarEndTime | String | False |
EntityGroup テーブルのCalendarEndTime。 The allowed values are _1200am, _1230am, _100am, _130am, _200am, _230am, _300am, _330am, _400am, _430am, _500am, _530am, _600am, _630am, _700am, _730am, _800am, _830am, _900am, _930am, _1000am, _1030am, _1100am, _1130am, _noon, _1230pm, _100pm, _130pm, _200pm, _230pm, _300pm, _330pm, _400pm, _430pm, _500pm, _530pm, _600pm, _630pm, _700pm, _730pm, _800pm, _830pm, _900pm, _930pm, _1000pm, _1030pm, _1100pm, _1130pm. |
CalendarName | String | False |
EntityGroup テーブルのCalendarName。 |
CalendarPeriod | String | False |
EntityGroup テーブルのCalendarPeriod。 The allowed values are _10minutes, _15minutes, _20minutes, _30minutes, _oneHour. |
CalendarStartTime | String | False |
EntityGroup テーブルのCalendarStartTime。 The allowed values are _1200am, _1230am, _100am, _130am, _200am, _230am, _300am, _330am, _400am, _430am, _500am, _530am, _600am, _630am, _700am, _730am, _800am, _830am, _900am, _930am, _1000am, _1030am, _1100am, _1130am, _noon, _1230pm, _100pm, _130pm, _200pm, _230pm, _300pm, _330pm, _400pm, _430pm, _500pm, _530pm, _600pm, _630pm, _700pm, _730pm, _800pm, _830pm, _900pm, _930pm, _1000pm, _1030pm, _1100pm, _1130pm. |
Comments | String | False |
EntityGroup テーブルのComments。 |
String | False |
EntityGroup テーブルのEmail。 | |
ExternalId | String | False |
EntityGroup テーブルのExternalId。 |
GroupName | String | False |
EntityGroup テーブルのGroupName。 |
GroupOwner_ExternalId | String | False |
EntityGroup テーブルのGroupOwner_ExternalId。 |
GroupOwner_InternalId | String | False |
EntityGroup テーブルのGroupOwner_InternalId。 |
GroupOwner_Name | String | False |
EntityGroup テーブルのGroupOwner_Name。 |
GroupOwner_Type | String | False |
EntityGroup テーブルのGroupOwner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
GroupType | String | False |
EntityGroup テーブルのGroupType。 The allowed values are _contact, _customer, _employee, _partner, _vendor. |
IsFunctionalTeam | Boolean | False |
EntityGroup テーブルのIsFunctionalTeam。 |
IsInactive | Boolean | False |
EntityGroup テーブルのIsInactive。 |
IsManufacturingWorkCenter | Boolean | False |
EntityGroup テーブルのIsManufacturingWorkCenter。 |
IsPrivate | Boolean | False |
EntityGroup テーブルのIsPrivate。 |
IsProductTeam | Boolean | False |
EntityGroup テーブルのIsProductTeam。 |
IsSalesRep | Boolean | False |
EntityGroup テーブルのIsSalesRep。 |
IsSalesTeam | Boolean | False |
EntityGroup テーブルのIsSalesTeam。 |
IsSavedSearch | Boolean | False |
EntityGroup テーブルのIsSavedSearch。 |
IssueRole_ExternalId | String | False |
EntityGroup テーブルのIssueRole_ExternalId。 |
IssueRole_InternalId | String | False |
EntityGroup テーブルのIssueRole_InternalId。 |
IssueRole_Name | String | False |
EntityGroup テーブルのIssueRole_Name。 |
IssueRole_Type | String | False |
EntityGroup テーブルのIssueRole_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsSupportRep | Boolean | False |
EntityGroup テーブルのIsSupportRep。 |
LaborResources | Long | False |
EntityGroup テーブルのLaborResources。 |
MachineResources | Long | False |
EntityGroup テーブルのMachineResources。 |
ParentGroupType | String | False |
EntityGroup テーブルのParentGroupType。 The allowed values are _contact, _customer, _employee, _partner, _vendor. |
RestrictionGroup_ExternalId | String | False |
EntityGroup テーブルのRestrictionGroup_ExternalId。 |
RestrictionGroup_InternalId | String | False |
EntityGroup テーブルのRestrictionGroup_InternalId。 |
RestrictionGroup_Name | String | False |
EntityGroup テーブルのRestrictionGroup_Name。 |
RestrictionGroup_Type | String | False |
EntityGroup テーブルのRestrictionGroup_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SavedSearch_ExternalId | String | False |
EntityGroup テーブルのSavedSearch_ExternalId。 |
SavedSearch_InternalId | String | False |
EntityGroup テーブルのSavedSearch_InternalId。 |
SavedSearch_Name | String | False |
EntityGroup テーブルのSavedSearch_Name。 |
SavedSearch_Type | String | False |
EntityGroup テーブルのSavedSearch_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Subsidiary_ExternalId | String | False |
EntityGroup テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
EntityGroup テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
EntityGroup テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
EntityGroup テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のEstimate テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Estimate テーブルのInternalId。 |
AltHandlingCost | Double | False |
Estimate テーブルのAltHandlingCost。 |
AltSalesTotal | Double | False |
Estimate テーブルのAltSalesTotal。 |
AltShippingCost | Double | False |
Estimate テーブルのAltShippingCost。 |
BillAddress | String | False |
Estimate テーブルのBillAddress。 |
BillAddressList_ExternalId | String | False |
Estimate テーブルのBillAddressList_ExternalId。 |
BillAddressList_InternalId | String | False |
Estimate テーブルのBillAddressList_InternalId。 |
BillAddressList_Name | String | False |
Estimate テーブルのBillAddressList_Name。 |
BillAddressList_Type | String | False |
Estimate テーブルのBillAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BillingSchedule_ExternalId | String | False |
Estimate テーブルのBillingSchedule_ExternalId。 |
BillingSchedule_InternalId | String | False |
Estimate テーブルのBillingSchedule_InternalId。 |
BillingSchedule_Name | String | False |
Estimate テーブルのBillingSchedule_Name。 |
BillingSchedule_Type | String | False |
Estimate テーブルのBillingSchedule_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Class_ExternalId | String | False |
Estimate テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
Estimate テーブルのClass_InternalId。 |
Class_Name | String | False |
Estimate テーブルのClass_Name。 |
Class_Type | String | False |
Estimate テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ContribPct | String | False |
Estimate テーブルのContribPct。 |
CreatedDate | Datetime | False |
Estimate テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
Estimate テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
Estimate テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
Estimate テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
Estimate テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
Estimate テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
Estimate テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
Estimate テーブルのCurrency_Name。 |
Currency_Type | String | False |
Estimate テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
Estimate テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
Estimate テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Estimate テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Estimate テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Estimate テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
Estimate テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
Estimate テーブルのDepartment_InternalId。 |
Department_Name | String | False |
Estimate テーブルのDepartment_Name。 |
Department_Type | String | False |
Estimate テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountItem_ExternalId | String | False |
Estimate テーブルのDiscountItem_ExternalId。 |
DiscountItem_InternalId | String | False |
Estimate テーブルのDiscountItem_InternalId。 |
DiscountItem_Name | String | False |
Estimate テーブルのDiscountItem_Name。 |
DiscountItem_Type | String | False |
Estimate テーブルのDiscountItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountRate | String | False |
Estimate テーブルのDiscountRate。 |
DiscountTotal | Double | False |
Estimate テーブルのDiscountTotal。 |
DueDate | Datetime | False |
Estimate テーブルのDueDate。 |
String | False |
Estimate テーブルのEmail。 | |
EndDate | Datetime | False |
Estimate テーブルのEndDate。 |
Entity_ExternalId | String | False |
Estimate テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
Estimate テーブルのEntity_InternalId。 |
Entity_Name | String | False |
Estimate テーブルのEntity_Name。 |
Entity_Type | String | False |
Estimate テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EntityStatus_ExternalId | String | False |
Estimate テーブルのEntityStatus_ExternalId。 |
EntityStatus_InternalId | String | False |
Estimate テーブルのEntityStatus_InternalId。 |
EntityStatus_Name | String | False |
Estimate テーブルのEntityStatus_Name。 |
EntityStatus_Type | String | False |
Estimate テーブルのEntityStatus_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EstGrossProfit | Double | False |
Estimate テーブルのEstGrossProfit。 |
EstGrossProfitPercent | Double | False |
Estimate テーブルのEstGrossProfitPercent。 |
ExchangeRate | Double | False |
Estimate テーブルのExchangeRate。 |
ExpectedCloseDate | Datetime | False |
Estimate テーブルのExpectedCloseDate。 |
ExternalId | String | False |
Estimate テーブルのExternalId。 |
Fax | String | False |
Estimate テーブルのFax。 |
Fob | String | False |
Estimate テーブルのFob。 |
ForecastType_ExternalId | String | False |
Estimate テーブルのForecastType_ExternalId。 |
ForecastType_InternalId | String | False |
Estimate テーブルのForecastType_InternalId。 |
ForecastType_Name | String | False |
Estimate テーブルのForecastType_Name。 |
ForecastType_Type | String | False |
Estimate テーブルのForecastType_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
HandlingCost | Double | False |
Estimate テーブルのHandlingCost。 |
HandlingTax1Rate | Double | False |
Estimate テーブルのHandlingTax1Rate。 |
HandlingTax2Rate | String | False |
Estimate テーブルのHandlingTax2Rate。 |
HandlingTaxCode_ExternalId | String | False |
Estimate テーブルのHandlingTaxCode_ExternalId。 |
HandlingTaxCode_InternalId | String | False |
Estimate テーブルのHandlingTaxCode_InternalId。 |
HandlingTaxCode_Name | String | False |
Estimate テーブルのHandlingTaxCode_Name。 |
HandlingTaxCode_Type | String | False |
Estimate テーブルのHandlingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IncludeInForecast | Boolean | False |
Estimate テーブルのIncludeInForecast。 |
IsTaxable | Boolean | False |
Estimate テーブルのIsTaxable。 |
ItemList_ReplaceAll | Boolean | False |
Estimate テーブルのItemList_ReplaceAll。 |
Job_ExternalId | String | False |
Estimate テーブルのJob_ExternalId。 |
Job_InternalId | String | False |
Estimate テーブルのJob_InternalId。 |
Job_Name | String | False |
Estimate テーブルのJob_Name。 |
Job_Type | String | False |
Estimate テーブルのJob_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
Estimate テーブルのLastModifiedDate。 |
LeadSource_ExternalId | String | False |
Estimate テーブルのLeadSource_ExternalId。 |
LeadSource_InternalId | String | False |
Estimate テーブルのLeadSource_InternalId。 |
LeadSource_Name | String | False |
Estimate テーブルのLeadSource_Name。 |
LeadSource_Type | String | False |
Estimate テーブルのLeadSource_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LinkedTrackingNumbers | String | False |
Estimate テーブルのLinkedTrackingNumbers。 |
Location_ExternalId | String | False |
Estimate テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
Estimate テーブルのLocation_InternalId。 |
Location_Name | String | False |
Estimate テーブルのLocation_Name。 |
Location_Type | String | False |
Estimate テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
Estimate テーブルのMemo。 |
Message | String | False |
Estimate テーブルのMessage。 |
MessageSel_ExternalId | String | False |
Estimate テーブルのMessageSel_ExternalId。 |
MessageSel_InternalId | String | False |
Estimate テーブルのMessageSel_InternalId。 |
MessageSel_Name | String | False |
Estimate テーブルのMessageSel_Name。 |
MessageSel_Type | String | False |
Estimate テーブルのMessageSel_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Opportunity_ExternalId | String | False |
Estimate テーブルのOpportunity_ExternalId。 |
Opportunity_InternalId | String | False |
Estimate テーブルのOpportunity_InternalId。 |
Opportunity_Name | String | False |
Estimate テーブルのOpportunity_Name。 |
Opportunity_Type | String | False |
Estimate テーブルのOpportunity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OtherRefNum | String | False |
RefNum of the Estimate テーブルのOtherRefNum。 |
Partner_ExternalId | String | False |
Estimate テーブルのPartner_ExternalId。 |
Partner_InternalId | String | False |
Estimate テーブルのPartner_InternalId。 |
Partner_Name | String | False |
Estimate テーブルのPartner_Name。 |
Partner_Type | String | False |
Estimate テーブルのPartner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PartnersList_ReplaceAll | Boolean | False |
Estimate テーブルのPartnersList_ReplaceAll。 |
Probability | Double | False |
Estimate テーブルのProbability。 |
PromoCode_ExternalId | String | False |
Estimate テーブルのPromoCode_ExternalId。 |
PromoCode_InternalId | String | False |
Estimate テーブルのPromoCode_InternalId。 |
PromoCode_Name | String | False |
Estimate テーブルのPromoCode_Name。 |
PromoCode_Type | String | False |
Estimate テーブルのPromoCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesGroup_ExternalId | String | False |
Estimate テーブルのSalesGroup_ExternalId。 |
SalesGroup_InternalId | String | False |
Estimate テーブルのSalesGroup_InternalId。 |
SalesGroup_Name | String | False |
Estimate テーブルのSalesGroup_Name。 |
SalesGroup_Type | String | False |
Estimate テーブルのSalesGroup_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesRep_ExternalId | String | False |
Estimate テーブルのSalesRep_ExternalId。 |
SalesRep_InternalId | String | False |
Estimate テーブルのSalesRep_InternalId。 |
SalesRep_Name | String | False |
Estimate テーブルのSalesRep_Name。 |
SalesRep_Type | String | False |
Estimate テーブルのSalesRep_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesTeamList_ReplaceAll | Boolean | False |
Estimate テーブルのSalesTeamList_ReplaceAll。 |
ShipAddress | String | False |
Estimate テーブルのShipAddress。 |
ShipAddressList_ExternalId | String | False |
Estimate テーブルのShipAddressList_ExternalId。 |
ShipAddressList_InternalId | String | False |
Estimate テーブルのShipAddressList_InternalId。 |
ShipAddressList_Name | String | False |
Estimate テーブルのShipAddressList_Name。 |
ShipAddressList_Type | String | False |
Estimate テーブルのShipAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShipDate | Datetime | False |
Estimate テーブルのShipDate。 |
ShipGroupList_ReplaceAll | Boolean | False |
Estimate テーブルのShipGroupList_ReplaceAll。 |
ShipMethod_ExternalId | String | False |
Estimate テーブルのShipMethod_ExternalId。 |
ShipMethod_InternalId | String | False |
Estimate テーブルのShipMethod_InternalId。 |
ShipMethod_Name | String | False |
Estimate テーブルのShipMethod_Name。 |
ShipMethod_Type | String | False |
Estimate テーブルのShipMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShippingCost | Double | False |
Estimate テーブルのShippingCost。 |
ShippingTax1Rate | Double | False |
Estimate テーブルのShippingTax1Rate。 |
ShippingTax2Rate | String | False |
Estimate テーブルのShippingTax2Rate。 |
ShippingTaxCode_ExternalId | String | False |
Estimate テーブルのShippingTaxCode_ExternalId。 |
ShippingTaxCode_InternalId | String | False |
Estimate テーブルのShippingTaxCode_InternalId。 |
ShippingTaxCode_Name | String | False |
Estimate テーブルのShippingTaxCode_Name。 |
ShippingTaxCode_Type | String | False |
Estimate テーブルのShippingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Source | String | False |
Estimate テーブルのSource。 |
StartDate | Datetime | False |
Estimate テーブルのStartDate。 |
Status | String | False |
Estimate テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
Estimate テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
Estimate テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
Estimate テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
Estimate テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SubTotal | Double | False |
Estimate テーブルのSubTotal。 |
SyncPartnerTeams | Boolean | False |
Estimate テーブルのSyncPartnerTeams。 |
SyncSalesTeams | Boolean | False |
Estimate テーブルのSyncSalesTeams。 |
Tax2Total | Double | False |
Estimate テーブルのTax2Total。 |
TaxItem_ExternalId | String | False |
Estimate テーブルのTaxItem_ExternalId。 |
TaxItem_InternalId | String | False |
Estimate テーブルのTaxItem_InternalId。 |
TaxItem_Name | String | False |
Estimate テーブルのTaxItem_Name。 |
TaxItem_Type | String | False |
Estimate テーブルのTaxItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxRate | Double | False |
Estimate テーブルのTaxRate。 |
TaxTotal | Double | False |
Estimate テーブルのTaxTotal。 |
Terms_ExternalId | String | False |
Estimate テーブルのTerms_ExternalId。 |
Terms_InternalId | String | False |
Estimate テーブルのTerms_InternalId。 |
Terms_Name | String | False |
Estimate テーブルのTerms_Name。 |
Terms_Type | String | False |
Estimate テーブルのTerms_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Title | String | False |
Estimate テーブルのTitle。 |
ToBeEmailed | Boolean | False |
Estimate テーブルのToBeEmailed。 |
ToBeFaxed | Boolean | False |
Estimate テーブルのToBeFaxed。 |
ToBePrinted | Boolean | False |
Estimate テーブルのToBePrinted。 |
Total | Double | False |
Estimate テーブルのTotal。 |
TotalCostEstimate | Double | False |
Estimate テーブルのTotalCostEstimate。 |
TrackingNumbers | String | False |
Estimate テーブルのTrackingNumbers。 |
TranDate | Datetime | False |
Estimate テーブルのTranDate。 |
TranId | String | False |
Estimate テーブルのTranId。 |
TransactionBillAddress_BillAddr1 | String | False |
Estimate テーブルのTransactionBillAddress_BillAddr1。 |
TransactionBillAddress_BillAddr2 | String | False |
Estimate テーブルのTransactionBillAddress_BillAddr2。 |
TransactionBillAddress_BillAddr3 | String | False |
Estimate テーブルのTransactionBillAddress_BillAddr3。 |
TransactionBillAddress_BillAddressee | String | False |
Estimate テーブルのTransactionBillAddress_BillAddressee。 |
TransactionBillAddress_BillAttention | String | False |
Estimate テーブルのTransactionBillAddress_BillAttention。 |
TransactionBillAddress_BillCity | String | False |
Estimate テーブルのTransactionBillAddress_BillCity。 |
TransactionBillAddress_BillCountry | String | False |
Estimate テーブルのTransactionBillAddress_BillCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionBillAddress_BillPhone | String | False |
Estimate テーブルのTransactionBillAddress_BillPhone。 |
TransactionBillAddress_BillState | String | False |
Estimate テーブルのTransactionBillAddress_BillState。 |
TransactionBillAddress_BillZip | String | False |
Estimate テーブルのTransactionBillAddress_BillZip。 |
TransactionShipAddress_ShipAddr1 | String | False |
Estimate テーブルのTransactionShipAddress_ShipAddr1。 |
TransactionShipAddress_ShipAddr2 | String | False |
Estimate テーブルのTransactionShipAddress_ShipAddr2。 |
TransactionShipAddress_ShipAddr3 | String | False |
Estimate テーブルのTransactionShipAddress_ShipAddr3。 |
TransactionShipAddress_ShipAddressee | String | False |
Estimate テーブルのTransactionShipAddress_ShipAddressee。 |
TransactionShipAddress_ShipAttention | String | False |
Estimate テーブルのTransactionShipAddress_ShipAttention。 |
TransactionShipAddress_ShipCity | String | False |
Estimate テーブルのTransactionShipAddress_ShipCity。 |
TransactionShipAddress_ShipCountry | String | False |
Estimate テーブルのTransactionShipAddress_ShipCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionShipAddress_ShipIsResidential | Boolean | False |
Estimate テーブルのTransactionShipAddress_ShipIsResidential。 |
TransactionShipAddress_ShipPhone | String | False |
Estimate テーブルのTransactionShipAddress_ShipPhone。 |
TransactionShipAddress_ShipState | String | False |
Estimate テーブルのTransactionShipAddress_ShipState。 |
TransactionShipAddress_ShipZip | String | False |
Estimate テーブルのTransactionShipAddress_ShipZip。 |
VatRegNum | String | False |
Estimate テーブルのVatRegNum。 |
VisibleToCustomer | Boolean | False |
Estimate テーブルのVisibleToCustomer。 |
NetSuite のExpenseCategory テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
ExpenseCategory テーブルのInternalId。 |
CustomForm_ExternalId | String | False |
ExpenseCategory テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
ExpenseCategory テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
ExpenseCategory テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
ExpenseCategory テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Description | String | False |
ExpenseCategory テーブルのDescription。 |
ExpenseAcct_ExternalId | String | False |
ExpenseCategory テーブルのExpenseAcct_ExternalId。 |
ExpenseAcct_InternalId | String | False |
ExpenseCategory テーブルのExpenseAcct_InternalId。 |
ExpenseAcct_Name | String | False |
ExpenseCategory テーブルのExpenseAcct_Name。 |
ExpenseAcct_Type | String | False |
ExpenseCategory テーブルのExpenseAcct_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
ExpenseCategory テーブルのExternalId。 |
IsInactive | Boolean | False |
ExpenseCategory テーブルのIsInactive。 |
Name | String | False |
ExpenseCategory テーブルのName。 |
TranslationsList_ReplaceAll | Boolean | False |
ExpenseCategory テーブルのTranslationsList_ReplaceAll。 |
NetSuite のExpenseReport テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
ExpenseReport テーブルのInternalId。 |
Account_ExternalId | String | False |
ExpenseReport テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
ExpenseReport テーブルのAccount_InternalId。 |
Account_Name | String | False |
ExpenseReport テーブルのAccount_Name。 |
Account_Type | String | False |
ExpenseReport テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
AccountingApproval | Boolean | False |
ExpenseReport テーブルのAccountingApproval。 |
Advance | Double | False |
ExpenseReport テーブルのAdvance。 |
Amount | Double | False |
ExpenseReport テーブルのAmount。 |
ApprovalStatus_ExternalId | String | False |
ExpenseReport テーブルのApprovalStatus_ExternalId。 |
ApprovalStatus_InternalId | String | False |
ExpenseReport テーブルのApprovalStatus_InternalId。 |
ApprovalStatus_Name | String | False |
ExpenseReport テーブルのApprovalStatus_Name。 |
ApprovalStatus_Type | String | False |
ExpenseReport テーブルのApprovalStatus_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Class_ExternalId | String | False |
ExpenseReport テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
ExpenseReport テーブルのClass_InternalId。 |
Class_Name | String | False |
ExpenseReport テーブルのClass_Name。 |
Class_Type | String | False |
ExpenseReport テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Complete | Boolean | False |
ExpenseReport テーブルのComplete。 |
CreatedDate | Datetime | False |
ExpenseReport テーブルのCreatedDate。 |
CustomForm_ExternalId | String | False |
ExpenseReport テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
ExpenseReport テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
ExpenseReport テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
ExpenseReport テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
ExpenseReport テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
ExpenseReport テーブルのDepartment_InternalId。 |
Department_Name | String | False |
ExpenseReport テーブルのDepartment_Name。 |
Department_Type | String | False |
ExpenseReport テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DueDate | Datetime | False |
ExpenseReport テーブルのDueDate。 |
Entity_ExternalId | String | False |
ExpenseReport テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
ExpenseReport テーブルのEntity_InternalId。 |
Entity_Name | String | False |
ExpenseReport テーブルのEntity_Name。 |
Entity_Type | String | False |
ExpenseReport テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExpenseList_ReplaceAll | Boolean | False |
ExpenseReport テーブルのExpenseList_ReplaceAll。 |
ExternalId | String | False |
ExpenseReport テーブルのExternalId。 |
LastModifiedDate | Datetime | False |
ExpenseReport テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
ExpenseReport テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
ExpenseReport テーブルのLocation_InternalId。 |
Location_Name | String | False |
ExpenseReport テーブルのLocation_Name。 |
Location_Type | String | False |
ExpenseReport テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
ExpenseReport テーブルのMemo。 |
NextApprover_ExternalId | String | False |
ExpenseReport テーブルのNextApprover_ExternalId。 |
NextApprover_InternalId | String | False |
ExpenseReport テーブルのNextApprover_InternalId。 |
NextApprover_Name | String | False |
ExpenseReport テーブルのNextApprover_Name。 |
NextApprover_Type | String | False |
ExpenseReport テーブルのNextApprover_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PostingPeriod_ExternalId | String | False |
ExpenseReport テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
ExpenseReport テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
ExpenseReport テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
ExpenseReport テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Status | String | False |
ExpenseReport テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
ExpenseReport テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
ExpenseReport テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
ExpenseReport テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
ExpenseReport テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SupervisorApproval | Boolean | False |
ExpenseReport テーブルのSupervisorApproval。 |
Tax1Amt | Double | False |
ExpenseReport テーブルのTax1Amt。 |
Tax2Amt | Double | False |
ExpenseReport テーブルのTax2Amt。 |
Total | Double | False |
ExpenseReport テーブルのTotal。 |
TranDate | Datetime | False |
ExpenseReport テーブルのTranDate。 |
TranId | String | False |
ExpenseReport テーブルのTranId。 |
UseMultiCurrency | Boolean | False |
ExpenseReport テーブルのUseMultiCurrency。 |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
rows@next | String |
これは、NetSuite で結果をページ移動するためのシステムカラムです。このフィールドを直接使用しないでください。 |
NetSuite のFile テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
File テーブルのInternalId。 |
AltTagCaption | String | False |
File テーブルのAltTagCaption。 |
AttachFrom | String | False |
File テーブルのAttachFrom。 The allowed values are _computer, _web. |
Bundleable | Boolean | False |
File テーブルのBundleable。 |
Caption | String | False |
File テーブルのCaption。 |
Class | String | False |
File テーブルのClass。 |
Content | String | False |
File テーブルのContent。 |
CreatedDate | Datetime | False |
File テーブルのCreatedDate。 |
Department | String | False |
File テーブルのDepartment。 |
Description | String | False |
File テーブルのDescription。 |
Encoding | String | False |
File テーブルのEncoding。 The allowed values are _autoDetect, _shiftJis, _utf8, _windows1252. |
ExternalId | String | False |
File テーブルのExternalId。 |
FeaturedDescription | String | False |
File テーブルのFeaturedDescription。 |
FileSize | Double | False |
File テーブルのFileSize。 |
FileType | String | False |
File テーブルのFileType。 The allowed values are _AUTOCAD, _BMPIMAGE, _CONFIG, _CSV, _EXCEL, _FLASH, _GIFIMAGE, _GZIP, _HTMLDOC, _ICON, _IMAGE, _JAVASCRIPT, _JPGIMAGE, _JSON, _MESSAGERFC, _MISCBINARY, _MISCTEXT, _MP3, _MPEGMOVIE, _MSPROJECT, _PDF, _PJPGIMAGE, _PLAINTEXT, _PNGIMAGE, _POSTSCRIPT, _POWERPOINT, _QUICKTIME, _RTF, _SMS, _STYLESHEET, _TAR, _TARCOMP, _TIFFIMAGE, _VISIO, _WEBAPPPAGE, _WEBAPPSCRIPT, _WORD, _XMLDOC, _ZIP. |
Folder_ExternalId | String | False |
File テーブルのFolder_ExternalId。 |
Folder_InternalId | String | False |
File テーブルのFolder_InternalId。 |
Folder_Name | String | False |
File テーブルのFolder_Name。 |
Folder_Type | String | False |
File テーブルのFolder_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
HideInBundle | Boolean | False |
File テーブルのHideInBundle。 |
IsInactive | Boolean | False |
File テーブルのIsInactive。 |
IsOnline | Boolean | False |
File テーブルのIsOnline。 |
IsPrivate | Boolean | False |
File テーブルのIsPrivate。 |
LastModifiedDate | Datetime | False |
File テーブルのLastModifiedDate。 |
MediaFile_ExternalId | String | False |
File テーブルのMediaFile_ExternalId。 |
MediaFile_InternalId | String | False |
File テーブルのMediaFile_InternalId。 |
MediaFile_Name | String | False |
File テーブルのMediaFile_Name。 |
MediaFile_Type | String | False |
File テーブルのMediaFile_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
MediaTypeName | String | False |
File テーブルのMediaTypeName。 |
Name | String | False |
File テーブルのName。 |
Owner_ExternalId | String | False |
File テーブルのOwner_ExternalId。 |
Owner_InternalId | String | False |
File テーブルのOwner_InternalId。 |
Owner_Name | String | False |
File テーブルのOwner_Name。 |
Owner_Type | String | False |
File テーブルのOwner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SiteCategoryList_ReplaceAll | Boolean | False |
File テーブルのSiteCategoryList_ReplaceAll。 |
SiteDescription | String | False |
File テーブルのSiteDescription。 |
StoreDisplayThumbnail_ExternalId | String | False |
File テーブルのStoreDisplayThumbnail_ExternalId。 |
StoreDisplayThumbnail_InternalId | String | False |
File テーブルのStoreDisplayThumbnail_InternalId。 |
StoreDisplayThumbnail_Name | String | False |
File テーブルのStoreDisplayThumbnail_Name。 |
StoreDisplayThumbnail_Type | String | False |
File テーブルのStoreDisplayThumbnail_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TextFileEncoding | String | False |
File テーブルのTextFileEncoding。 The allowed values are _big5, _gb2312, _gb18030, _iso88591, _macRoman, _shiftJis, _utf8, _windows1252. |
Url | String | False |
File テーブルのUrl。 |
UrlComponent | String | False |
File テーブルのUrlComponent。 |
NetSuite のFolder テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Folder テーブルのInternalId。 |
Bundleable | Boolean | False |
Folder テーブルのBundleable。 |
Class_ExternalId | String | False |
Folder テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
Folder テーブルのClass_InternalId。 |
Class_Name | String | False |
Folder テーブルのClass_Name。 |
Class_Type | String | False |
Folder テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
Folder テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
Folder テーブルのDepartment_InternalId。 |
Department_Name | String | False |
Folder テーブルのDepartment_Name。 |
Department_Type | String | False |
Folder テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Description | String | False |
Folder テーブルのDescription。 |
ExternalId | String | False |
Folder テーブルのExternalId。 |
Group_ExternalId | String | False |
Folder テーブルのGroup_ExternalId。 |
Group_InternalId | String | False |
Folder テーブルのGroup_InternalId。 |
Group_Name | String | False |
Folder テーブルのGroup_Name。 |
Group_Type | String | False |
Folder テーブルのGroup_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
HideInBundle | Boolean | False |
Folder テーブルのHideInBundle。 |
IsInactive | Boolean | False |
Folder テーブルのIsInactive。 |
IsOnline | Boolean | False |
Folder テーブルのIsOnline。 |
IsPrivate | Boolean | False |
Folder テーブルのIsPrivate。 |
Location_ExternalId | String | False |
Folder テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
Folder テーブルのLocation_InternalId。 |
Location_Name | String | False |
Folder テーブルのLocation_Name。 |
Location_Type | String | False |
Folder テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Name | String | False |
Folder テーブルのName。 |
Parent_ExternalId | String | False |
Folder テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
Folder テーブルのParent_InternalId。 |
Parent_Name | String | False |
Folder テーブルのParent_Name。 |
Parent_Type | String | False |
Folder テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Subsidiary_ExternalId | String | False |
Folder テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
Folder テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
Folder テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
Folder テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
rows@next | String |
これは、NetSuite で結果をページ移動するためのシステムカラムです。このフィールドを直接使用しないでください。 |
NetSuite のGiftCertificate テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
GiftCertificate テーブルのInternalId。 |
AmountRemaining | Double | False |
GiftCertificate テーブルのAmountRemaining。 |
CreatedDate | Datetime | False |
GiftCertificate テーブルのCreatedDate。 |
String | False |
GiftCertificate テーブルのEmail。 | |
ExpirationDate | Datetime | False |
GiftCertificate テーブルのExpirationDate。 |
GiftCertCode | String | False |
GiftCertificate テーブルのGiftCertCode。 |
LastModifiedDate | Datetime | False |
GiftCertificate テーブルのLastModifiedDate。 |
Message | String | False |
GiftCertificate テーブルのMessage。 |
Name | String | False |
GiftCertificate テーブルのName。 |
OriginalAmount | Double | False |
GiftCertificate テーブルのOriginalAmount。 |
Sender | String | False |
GiftCertificate テーブルのSender。 |
NetSuite のInventoryAdjustment テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
InventoryAdjustment テーブルのInternalId。 |
Account_ExternalId | String | False |
InventoryAdjustment テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
InventoryAdjustment テーブルのAccount_InternalId。 |
Account_Name | String | False |
InventoryAdjustment テーブルのAccount_Name。 |
Account_Type | String | False |
InventoryAdjustment テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
AdjLocation_ExternalId | String | False |
InventoryAdjustment テーブルのAdjLocation_ExternalId。 |
AdjLocation_InternalId | String | False |
InventoryAdjustment テーブルのAdjLocation_InternalId。 |
AdjLocation_Name | String | False |
InventoryAdjustment テーブルのAdjLocation_Name。 |
AdjLocation_Type | String | False |
InventoryAdjustment テーブルのAdjLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Class_ExternalId | String | False |
InventoryAdjustment テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
InventoryAdjustment テーブルのClass_InternalId。 |
Class_Name | String | False |
InventoryAdjustment テーブルのClass_Name。 |
Class_Type | String | False |
InventoryAdjustment テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
InventoryAdjustment テーブルのCreatedDate。 |
Customer_ExternalId | String | False |
InventoryAdjustment テーブルのCustomer_ExternalId。 |
Customer_InternalId | String | False |
InventoryAdjustment テーブルのCustomer_InternalId。 |
Customer_Name | String | False |
InventoryAdjustment テーブルのCustomer_Name。 |
Customer_Type | String | False |
InventoryAdjustment テーブルのCustomer_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
InventoryAdjustment テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
InventoryAdjustment テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
InventoryAdjustment テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
InventoryAdjustment テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
InventoryAdjustment テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
InventoryAdjustment テーブルのDepartment_InternalId。 |
Department_Name | String | False |
InventoryAdjustment テーブルのDepartment_Name。 |
Department_Type | String | False |
InventoryAdjustment テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EstimatedTotalValue | Double | False |
InventoryAdjustment テーブルのEstimatedTotalValue。 |
ExternalId | String | False |
InventoryAdjustment テーブルのExternalId。 |
InventoryList_ReplaceAll | Boolean | False |
InventoryAdjustment テーブルのInventoryList_ReplaceAll。 |
LastModifiedDate | Datetime | False |
InventoryAdjustment テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
InventoryAdjustment テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
InventoryAdjustment テーブルのLocation_InternalId。 |
Location_Name | String | False |
InventoryAdjustment テーブルのLocation_Name。 |
Location_Type | String | False |
InventoryAdjustment テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
InventoryAdjustment テーブルのMemo。 |
PostingPeriod_ExternalId | String | False |
InventoryAdjustment テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
InventoryAdjustment テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
InventoryAdjustment テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
InventoryAdjustment テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Subsidiary_ExternalId | String | False |
InventoryAdjustment テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
InventoryAdjustment テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
InventoryAdjustment テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
InventoryAdjustment テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranDate | Datetime | False |
InventoryAdjustment テーブルのTranDate。 |
TranId | String | False |
InventoryAdjustment テーブルのTranId。 |
NetSuite のInventoryNumber テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
InventoryNumber テーブルのInternalId。 |
ExpirationDate | Datetime | False |
InventoryNumber テーブルのExpirationDate。 |
ExternalId | String | False |
InventoryNumber テーブルのExternalId。 |
InventoryNumber | String | False |
InventoryNumber テーブルのInventoryNumber。 |
Item_ExternalId | String | False |
InventoryNumber テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
InventoryNumber テーブルのItem_InternalId。 |
Item_Name | String | False |
InventoryNumber テーブルのItem_Name。 |
Item_Type | String | False |
InventoryNumber テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LocationsList_ReplaceAll | Boolean | False |
InventoryNumber テーブルのLocationsList_ReplaceAll。 |
Memo | String | False |
InventoryNumber テーブルのMemo。 |
Status | String | False |
InventoryNumber テーブルのStatus。 |
Units | String | False |
InventoryNumber テーブルのUnits。 |
NetSuite のInventoryTransfer テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
InventoryTransfer テーブルのInternalId。 |
Class_ExternalId | String | False |
InventoryTransfer テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
InventoryTransfer テーブルのClass_InternalId。 |
Class_Name | String | False |
InventoryTransfer テーブルのClass_Name。 |
Class_Type | String | False |
InventoryTransfer テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
InventoryTransfer テーブルのCreatedDate。 |
Department_ExternalId | String | False |
InventoryTransfer テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
InventoryTransfer テーブルのDepartment_InternalId。 |
Department_Name | String | False |
InventoryTransfer テーブルのDepartment_Name。 |
Department_Type | String | False |
InventoryTransfer テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
InventoryTransfer テーブルのExternalId。 |
InventoryList_ReplaceAll | Boolean | False |
InventoryTransfer テーブルのInventoryList_ReplaceAll。 |
LastModifiedDate | Datetime | False |
InventoryTransfer テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
InventoryTransfer テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
InventoryTransfer テーブルのLocation_InternalId。 |
Location_Name | String | False |
InventoryTransfer テーブルのLocation_Name。 |
Location_Type | String | False |
InventoryTransfer テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
InventoryTransfer テーブルのMemo。 |
PostingPeriod_ExternalId | String | False |
InventoryTransfer テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
InventoryTransfer テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
InventoryTransfer テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
InventoryTransfer テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Subsidiary_ExternalId | String | False |
InventoryTransfer テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
InventoryTransfer テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
InventoryTransfer テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
InventoryTransfer テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranDate | Datetime | False |
InventoryTransfer テーブルのTranDate。 |
TranId | String | False |
InventoryTransfer テーブルのTranId。 |
TransferLocation_ExternalId | String | False |
InventoryTransfer テーブルのTransferLocation_ExternalId。 |
TransferLocation_InternalId | String | False |
InventoryTransfer テーブルのTransferLocation_InternalId。 |
TransferLocation_Name | String | False |
InventoryTransfer テーブルのTransferLocation_Name。 |
TransferLocation_Type | String | False |
InventoryTransfer テーブルのTransferLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のInvoice テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Invoice テーブルのInternalId。 |
Account_ExternalId | String | False |
Invoice テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
Invoice テーブルのAccount_InternalId。 |
Account_Name | String | False |
Invoice テーブルのAccount_Name。 |
Account_Type | String | False |
Invoice テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
AltHandlingCost | Double | False |
Invoice テーブルのAltHandlingCost。 |
AltShippingCost | Double | False |
Invoice テーブルのAltShippingCost。 |
AmountPaid | Double | False |
Invoice テーブルのAmountPaid。 |
AmountRemaining | Double | False |
Invoice テーブルのAmountRemaining。 |
Balance | Double | False |
Invoice テーブルのBalance。 |
BillAddress | String | False |
Invoice テーブルのBillAddress。 |
BillAddressList_ExternalId | String | False |
Invoice テーブルのBillAddressList_ExternalId。 |
BillAddressList_InternalId | String | False |
Invoice テーブルのBillAddressList_InternalId。 |
BillAddressList_Name | String | False |
Invoice テーブルのBillAddressList_Name。 |
BillAddressList_Type | String | False |
Invoice テーブルのBillAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BillingSchedule_ExternalId | String | False |
Invoice テーブルのBillingSchedule_ExternalId。 |
BillingSchedule_InternalId | String | False |
Invoice テーブルのBillingSchedule_InternalId。 |
BillingSchedule_Name | String | False |
Invoice テーブルのBillingSchedule_Name。 |
BillingSchedule_Type | String | False |
Invoice テーブルのBillingSchedule_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Class_ExternalId | String | False |
Invoice テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
Invoice テーブルのClass_InternalId。 |
Class_Name | String | False |
Invoice テーブルのClass_Name。 |
Class_Type | String | False |
Invoice テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ContribPct | String | False |
Invoice テーブルのContribPct。 |
CreatedDate | Datetime | False |
Invoice テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
Invoice テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
Invoice テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
Invoice テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
Invoice テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
Invoice テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
Invoice テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
Invoice テーブルのCurrency_Name。 |
Currency_Type | String | False |
Invoice テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
Invoice テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
Invoice テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Invoice テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Invoice テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Invoice テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DeferredRevenue | Double | False |
Invoice テーブルのDeferredRevenue。 |
Department_ExternalId | String | False |
Invoice テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
Invoice テーブルのDepartment_InternalId。 |
Department_Name | String | False |
Invoice テーブルのDepartment_Name。 |
Department_Type | String | False |
Invoice テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountAmount | Double | False |
Invoice テーブルのDiscountAmount。 |
DiscountDate | Datetime | False |
Invoice テーブルのDiscountDate。 |
DiscountItem_ExternalId | String | False |
Invoice テーブルのDiscountItem_ExternalId。 |
DiscountItem_InternalId | String | False |
Invoice テーブルのDiscountItem_InternalId。 |
DiscountItem_Name | String | False |
Invoice テーブルのDiscountItem_Name。 |
DiscountItem_Type | String | False |
Invoice テーブルのDiscountItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountRate | String | False |
Invoice テーブルのDiscountRate。 |
DiscountTotal | Double | False |
Invoice テーブルのDiscountTotal。 |
DueDate | Datetime | False |
Invoice テーブルのDueDate。 |
String | False |
Invoice テーブルのEmail。 | |
EndDate | Datetime | False |
Invoice テーブルのEndDate。 |
Entity_ExternalId | String | False |
Invoice テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
Invoice テーブルのEntity_InternalId。 |
Entity_Name | String | False |
Invoice テーブルのEntity_Name。 |
Entity_Type | String | False |
Invoice テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EstGrossProfit | Double | False |
Invoice テーブルのEstGrossProfit。 |
EstGrossProfitPercent | Double | False |
Invoice テーブルのEstGrossProfitPercent。 |
ExchangeRate | Double | False |
Invoice テーブルのExchangeRate。 |
ExcludeCommission | Boolean | False |
Invoice テーブルのExcludeCommission。 |
ExpCostDiscAmount | Double | False |
Invoice テーブルのExpCostDiscAmount。 |
ExpCostDiscount_ExternalId | String | False |
Invoice テーブルのExpCostDiscount_ExternalId。 |
ExpCostDiscount_InternalId | String | False |
Invoice テーブルのExpCostDiscount_InternalId。 |
ExpCostDiscount_Name | String | False |
Invoice テーブルのExpCostDiscount_Name。 |
ExpCostDiscount_Type | String | False |
Invoice テーブルのExpCostDiscount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExpCostDiscPrint | Boolean | False |
Invoice テーブルのExpCostDiscPrint。 |
ExpCostDiscRate | String | False |
Invoice テーブルのExpCostDiscRate。 |
ExpCostDiscTax1Amt | Double | False |
Invoice テーブルのExpCostDiscTax1Amt。 |
ExpCostDiscTaxable | Boolean | False |
Invoice テーブルのExpCostDiscTaxable。 |
ExpCostList_ReplaceAll | Boolean | False |
Invoice テーブルのExpCostList_ReplaceAll。 |
ExpCostTaxCode_ExternalId | String | False |
Invoice テーブルのExpCostTaxCode_ExternalId。 |
ExpCostTaxCode_InternalId | String | False |
Invoice テーブルのExpCostTaxCode_InternalId。 |
ExpCostTaxCode_Name | String | False |
Invoice テーブルのExpCostTaxCode_Name。 |
ExpCostTaxCode_Type | String | False |
Invoice テーブルのExpCostTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExpCostTaxRate1 | Double | False |
Invoice テーブルのExpCostTaxRate1。 |
ExpCostTaxRate2 | Double | False |
Invoice テーブルのExpCostTaxRate2。 |
ExternalId | String | False |
Invoice テーブルのExternalId。 |
Fax | String | False |
Invoice テーブルのFax。 |
Fob | String | False |
Invoice テーブルのFob。 |
GiftCertApplied | Double | False |
Invoice テーブルのGiftCertApplied。 |
GiftCertRedemptionList_ReplaceAll | Boolean | False |
Invoice テーブルのGiftCertRedemptionList_ReplaceAll。 |
HandlingCost | Double | False |
Invoice テーブルのHandlingCost。 |
HandlingTax1Rate | Double | False |
Invoice テーブルのHandlingTax1Rate。 |
HandlingTax2Rate | String | False |
Invoice テーブルのHandlingTax2Rate。 |
HandlingTaxCode_ExternalId | String | False |
Invoice テーブルのHandlingTaxCode_ExternalId。 |
HandlingTaxCode_InternalId | String | False |
Invoice テーブルのHandlingTaxCode_InternalId。 |
HandlingTaxCode_Name | String | False |
Invoice テーブルのHandlingTaxCode_Name。 |
HandlingTaxCode_Type | String | False |
Invoice テーブルのHandlingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsTaxable | Boolean | False |
Invoice テーブルのIsTaxable。 |
ItemCostDiscAmount | Double | False |
Invoice テーブルのItemCostDiscAmount。 |
ItemCostDiscount_ExternalId | String | False |
Invoice テーブルのItemCostDiscount_ExternalId。 |
ItemCostDiscount_InternalId | String | False |
Invoice テーブルのItemCostDiscount_InternalId。 |
ItemCostDiscount_Name | String | False |
Invoice テーブルのItemCostDiscount_Name。 |
ItemCostDiscount_Type | String | False |
Invoice テーブルのItemCostDiscount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ItemCostDiscPrint | Boolean | False |
Invoice テーブルのItemCostDiscPrint。 |
ItemCostDiscRate | String | False |
Invoice テーブルのItemCostDiscRate。 |
ItemCostDiscTax1Amt | Double | False |
Invoice テーブルのItemCostDiscTax1Amt。 |
ItemCostDiscTaxable | Boolean | False |
Invoice テーブルのItemCostDiscTaxable。 |
ItemCostList_ReplaceAll | Boolean | False |
Invoice テーブルのItemCostList_ReplaceAll。 |
ItemCostTaxCode_ExternalId | String | False |
Invoice テーブルのItemCostTaxCode_ExternalId。 |
ItemCostTaxCode_InternalId | String | False |
Invoice テーブルのItemCostTaxCode_InternalId。 |
ItemCostTaxCode_Name | String | False |
Invoice テーブルのItemCostTaxCode_Name。 |
ItemCostTaxCode_Type | String | False |
Invoice テーブルのItemCostTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ItemCostTaxRate1 | Double | False |
Invoice テーブルのItemCostTaxRate1。 |
ItemCostTaxRate2 | Double | False |
Invoice テーブルのItemCostTaxRate2。 |
ItemList_ReplaceAll | Boolean | False |
Invoice テーブルのItemList_ReplaceAll。 |
Job_ExternalId | String | False |
Invoice テーブルのJob_ExternalId。 |
Job_InternalId | String | False |
Invoice テーブルのJob_InternalId。 |
Job_Name | String | False |
Invoice テーブルのJob_Name。 |
Job_Type | String | False |
Invoice テーブルのJob_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
Invoice テーブルのLastModifiedDate。 |
LeadSource_ExternalId | String | False |
Invoice テーブルのLeadSource_ExternalId。 |
LeadSource_InternalId | String | False |
Invoice テーブルのLeadSource_InternalId。 |
LeadSource_Name | String | False |
Invoice テーブルのLeadSource_Name。 |
LeadSource_Type | String | False |
Invoice テーブルのLeadSource_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LinkedTrackingNumbers | String | False |
Invoice テーブルのLinkedTrackingNumbers。 |
Location_ExternalId | String | False |
Invoice テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
Invoice テーブルのLocation_InternalId。 |
Location_Name | String | False |
Invoice テーブルのLocation_Name。 |
Location_Type | String | False |
Invoice テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
Invoice テーブルのMemo。 |
Message | String | False |
Invoice テーブルのMessage。 |
MessageSel_ExternalId | String | False |
Invoice テーブルのMessageSel_ExternalId。 |
MessageSel_InternalId | String | False |
Invoice テーブルのMessageSel_InternalId。 |
MessageSel_Name | String | False |
Invoice テーブルのMessageSel_Name。 |
MessageSel_Type | String | False |
Invoice テーブルのMessageSel_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OnCreditHold | String | False |
Invoice テーブルのOnCreditHold。 |
Opportunity_ExternalId | String | False |
Invoice テーブルのOpportunity_ExternalId。 |
Opportunity_InternalId | String | False |
Invoice テーブルのOpportunity_InternalId。 |
Opportunity_Name | String | False |
Invoice テーブルのOpportunity_Name。 |
Opportunity_Type | String | False |
Invoice テーブルのOpportunity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OtherRefNum | String | False |
RefNum of the Invoice テーブルのOtherRefNum。 |
Partner_ExternalId | String | False |
Invoice テーブルのPartner_ExternalId。 |
Partner_InternalId | String | False |
Invoice テーブルのPartner_InternalId。 |
Partner_Name | String | False |
Invoice テーブルのPartner_Name。 |
Partner_Type | String | False |
Invoice テーブルのPartner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PartnersList_ReplaceAll | Boolean | False |
Invoice テーブルのPartnersList_ReplaceAll。 |
PostingPeriod_ExternalId | String | False |
Invoice テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
Invoice テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
Invoice テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
Invoice テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PromoCode_ExternalId | String | False |
Invoice テーブルのPromoCode_ExternalId。 |
PromoCode_InternalId | String | False |
Invoice テーブルのPromoCode_InternalId。 |
PromoCode_Name | String | False |
Invoice テーブルのPromoCode_Name。 |
PromoCode_Type | String | False |
Invoice テーブルのPromoCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RecognizedRevenue | Double | False |
Invoice テーブルのRecognizedRevenue。 |
RevenueStatus | String | False |
Invoice テーブルのRevenueStatus。 The allowed values are _pending, _inProgress, _completed, _onRevCommitment. |
RevRecEndDate | Datetime | False |
Invoice テーブルのRevRecEndDate。 |
RevRecOnRevCommitment | Boolean | False |
Invoice テーブルのRevRecOnRevCommitment。 |
RevRecSchedule_ExternalId | String | False |
Invoice テーブルのRevRecSchedule_ExternalId。 |
RevRecSchedule_InternalId | String | False |
Invoice テーブルのRevRecSchedule_InternalId。 |
RevRecSchedule_Name | String | False |
Invoice テーブルのRevRecSchedule_Name。 |
RevRecSchedule_Type | String | False |
Invoice テーブルのRevRecSchedule_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RevRecStartDate | Datetime | False |
Invoice テーブルのRevRecStartDate。 |
SalesEffectiveDate | Datetime | False |
Invoice テーブルのSalesEffectiveDate。 |
SalesGroup_ExternalId | String | False |
Invoice テーブルのSalesGroup_ExternalId。 |
SalesGroup_InternalId | String | False |
Invoice テーブルのSalesGroup_InternalId。 |
SalesGroup_Name | String | False |
Invoice テーブルのSalesGroup_Name。 |
SalesGroup_Type | String | False |
Invoice テーブルのSalesGroup_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesRep_ExternalId | String | False |
Invoice テーブルのSalesRep_ExternalId。 |
SalesRep_InternalId | String | False |
Invoice テーブルのSalesRep_InternalId。 |
SalesRep_Name | String | False |
Invoice テーブルのSalesRep_Name。 |
SalesRep_Type | String | False |
Invoice テーブルのSalesRep_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesTeamList_ReplaceAll | Boolean | False |
Invoice テーブルのSalesTeamList_ReplaceAll。 |
ShipAddress | String | False |
Invoice テーブルのShipAddress。 |
ShipAddressList_ExternalId | String | False |
Invoice テーブルのShipAddressList_ExternalId。 |
ShipAddressList_InternalId | String | False |
Invoice テーブルのShipAddressList_InternalId。 |
ShipAddressList_Name | String | False |
Invoice テーブルのShipAddressList_Name。 |
ShipAddressList_Type | String | False |
Invoice テーブルのShipAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShipDate | Datetime | False |
Invoice テーブルのShipDate。 |
ShipGroupList_ReplaceAll | Boolean | False |
Invoice テーブルのShipGroupList_ReplaceAll。 |
ShipMethod_ExternalId | String | False |
Invoice テーブルのShipMethod_ExternalId。 |
ShipMethod_InternalId | String | False |
Invoice テーブルのShipMethod_InternalId。 |
ShipMethod_Name | String | False |
Invoice テーブルのShipMethod_Name。 |
ShipMethod_Type | String | False |
Invoice テーブルのShipMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShippingCost | Double | False |
Invoice テーブルのShippingCost。 |
ShippingTax1Rate | Double | False |
Invoice テーブルのShippingTax1Rate。 |
ShippingTax2Rate | String | False |
Invoice テーブルのShippingTax2Rate。 |
ShippingTaxCode_ExternalId | String | False |
Invoice テーブルのShippingTaxCode_ExternalId。 |
ShippingTaxCode_InternalId | String | False |
Invoice テーブルのShippingTaxCode_InternalId。 |
ShippingTaxCode_Name | String | False |
Invoice テーブルのShippingTaxCode_Name。 |
ShippingTaxCode_Type | String | False |
Invoice テーブルのShippingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Source | String | False |
Invoice テーブルのSource。 |
StartDate | Datetime | False |
Invoice テーブルのStartDate。 |
Status | String | False |
Invoice テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
Invoice テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
Invoice テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
Invoice テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
Invoice テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SubTotal | Double | False |
Invoice テーブルのSubTotal。 |
SyncPartnerTeams | Boolean | False |
Invoice テーブルのSyncPartnerTeams。 |
SyncSalesTeams | Boolean | False |
Invoice テーブルのSyncSalesTeams。 |
Tax2Total | Double | False |
Invoice テーブルのTax2Total。 |
TaxItem_ExternalId | String | False |
Invoice テーブルのTaxItem_ExternalId。 |
TaxItem_InternalId | String | False |
Invoice テーブルのTaxItem_InternalId。 |
TaxItem_Name | String | False |
Invoice テーブルのTaxItem_Name。 |
TaxItem_Type | String | False |
Invoice テーブルのTaxItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxRate | Double | False |
Invoice テーブルのTaxRate。 |
TaxTotal | Double | False |
Invoice テーブルのTaxTotal。 |
Terms_ExternalId | String | False |
Invoice テーブルのTerms_ExternalId。 |
Terms_InternalId | String | False |
Invoice テーブルのTerms_InternalId。 |
Terms_Name | String | False |
Invoice テーブルのTerms_Name。 |
Terms_Type | String | False |
Invoice テーブルのTerms_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TimeDiscAmount | Double | False |
Invoice テーブルのTimeDiscAmount。 |
TimeDiscount_ExternalId | String | False |
Invoice テーブルのTimeDiscount_ExternalId。 |
TimeDiscount_InternalId | String | False |
Invoice テーブルのTimeDiscount_InternalId。 |
TimeDiscount_Name | String | False |
Invoice テーブルのTimeDiscount_Name。 |
TimeDiscount_Type | String | False |
Invoice テーブルのTimeDiscount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TimeDiscPrint | Boolean | False |
Invoice テーブルのTimeDiscPrint。 |
TimeDiscRate | String | False |
Invoice テーブルのTimeDiscRate。 |
TimeDiscTax1Amt | Double | False |
Invoice テーブルのTimeDiscTax1Amt。 |
TimeDiscTaxable | Boolean | False |
Invoice テーブルのTimeDiscTaxable。 |
TimeList_ReplaceAll | Boolean | False |
Invoice テーブルのTimeList_ReplaceAll。 |
TimeTaxCode_ExternalId | String | False |
Invoice テーブルのTimeTaxCode_ExternalId。 |
TimeTaxCode_InternalId | String | False |
Invoice テーブルのTimeTaxCode_InternalId。 |
TimeTaxCode_Name | String | False |
Invoice テーブルのTimeTaxCode_Name。 |
TimeTaxCode_Type | String | False |
Invoice テーブルのTimeTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TimeTaxRate1 | Double | False |
Invoice テーブルのTimeTaxRate1。 |
TimeTaxRate2 | Double | False |
Invoice テーブルのTimeTaxRate2。 |
ToBeEmailed | Boolean | False |
Invoice テーブルのToBeEmailed。 |
ToBeFaxed | Boolean | False |
Invoice テーブルのToBeFaxed。 |
ToBePrinted | Boolean | False |
Invoice テーブルのToBePrinted。 |
Total | Double | False |
Invoice テーブルのTotal。 |
TotalCostEstimate | Double | False |
Invoice テーブルのTotalCostEstimate。 |
TrackingNumbers | String | False |
Invoice テーブルのTrackingNumbers。 |
TranDate | Datetime | False |
Invoice テーブルのTranDate。 |
TranId | String | False |
Invoice テーブルのTranId。 |
TranIsVsoeBundle | Boolean | False |
Invoice テーブルのTranIsVsoeBundle。 |
TransactionBillAddress_BillAddr1 | String | False |
Invoice テーブルのTransactionBillAddress_BillAddr1。 |
TransactionBillAddress_BillAddr2 | String | False |
Invoice テーブルのTransactionBillAddress_BillAddr2。 |
TransactionBillAddress_BillAddr3 | String | False |
Invoice テーブルのTransactionBillAddress_BillAddr3。 |
TransactionBillAddress_BillAddressee | String | False |
Invoice テーブルのTransactionBillAddress_BillAddressee。 |
TransactionBillAddress_BillAttention | String | False |
Invoice テーブルのTransactionBillAddress_BillAttention。 |
TransactionBillAddress_BillCity | String | False |
Invoice テーブルのTransactionBillAddress_BillCity。 |
TransactionBillAddress_BillCountry | String | False |
Invoice テーブルのTransactionBillAddress_BillCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionBillAddress_BillPhone | String | False |
Invoice テーブルのTransactionBillAddress_BillPhone。 |
TransactionBillAddress_BillState | String | False |
Invoice テーブルのTransactionBillAddress_BillState。 |
TransactionBillAddress_BillZip | String | False |
Invoice テーブルのTransactionBillAddress_BillZip。 |
TransactionShipAddress_ShipAddr1 | String | False |
Invoice テーブルのTransactionShipAddress_ShipAddr1。 |
TransactionShipAddress_ShipAddr2 | String | False |
Invoice テーブルのTransactionShipAddress_ShipAddr2。 |
TransactionShipAddress_ShipAddr3 | String | False |
Invoice テーブルのTransactionShipAddress_ShipAddr3。 |
TransactionShipAddress_ShipAddressee | String | False |
Invoice テーブルのTransactionShipAddress_ShipAddressee。 |
TransactionShipAddress_ShipAttention | String | False |
Invoice テーブルのTransactionShipAddress_ShipAttention。 |
TransactionShipAddress_ShipCity | String | False |
Invoice テーブルのTransactionShipAddress_ShipCity。 |
TransactionShipAddress_ShipCountry | String | False |
Invoice テーブルのTransactionShipAddress_ShipCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionShipAddress_ShipIsResidential | Boolean | False |
Invoice テーブルのTransactionShipAddress_ShipIsResidential。 |
TransactionShipAddress_ShipPhone | String | False |
Invoice テーブルのTransactionShipAddress_ShipPhone。 |
TransactionShipAddress_ShipState | String | False |
Invoice テーブルのTransactionShipAddress_ShipState。 |
TransactionShipAddress_ShipZip | String | False |
Invoice テーブルのTransactionShipAddress_ShipZip。 |
VatRegNum | String | False |
Invoice テーブルのVatRegNum。 |
VsoeAutoCalc | Boolean | False |
Invoice テーブルのVsoeAutoCalc。 |
NetSuite のIssue テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Issue テーブルのInternalId。 |
Assigned_ExternalId | String | False |
Issue テーブルのAssigned_ExternalId。 |
Assigned_InternalId | String | False |
Issue テーブルのAssigned_InternalId。 |
Assigned_Name | String | False |
Issue テーブルのAssigned_Name。 |
Assigned_Type | String | False |
Issue テーブルのAssigned_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BrokenInVersionList_ReplaceAll | Boolean | False |
Issue テーブルのBrokenInVersionList_ReplaceAll。 |
CreatedDate | Datetime | False |
Issue テーブルのCreatedDate。 |
CustomForm_ExternalId | String | False |
Issue テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Issue テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Issue テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Issue テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DuplicateOf_ExternalId | String | False |
Issue テーブルのDuplicateOf_ExternalId。 |
DuplicateOf_InternalId | String | False |
Issue テーブルのDuplicateOf_InternalId。 |
DuplicateOf_Name | String | False |
Issue テーブルのDuplicateOf_Name。 |
DuplicateOf_Type | String | False |
Issue テーブルのDuplicateOf_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EmailAssignee | Boolean | False |
Issue テーブルのEmailAssignee。 |
ExternalAbstract | String | False |
Issue テーブルのExternalAbstract。 |
ExternalDetails | String | False |
Issue テーブルのExternalDetails。 |
ExternalId | String | False |
Issue テーブルのExternalId。 |
FixedInVersionList_ReplaceAll | Boolean | False |
Issue テーブルのFixedInVersionList_ReplaceAll。 |
IsOwner | Boolean | False |
Issue テーブルのIsOwner。 |
IsReviewed | Boolean | False |
Issue テーブルのIsReviewed。 |
IsShowStopper | Boolean | False |
Issue テーブルのIsShowStopper。 |
IssueAbstract | String | False |
Issue テーブルのIssueAbstract。 |
IssueNumber | String | False |
Issue テーブルのIssueNumber。 |
IssueStatus_ExternalId | String | False |
Issue テーブルのIssueStatus_ExternalId。 |
IssueStatus_InternalId | String | False |
Issue テーブルのIssueStatus_InternalId。 |
IssueStatus_Name | String | False |
Issue テーブルのIssueStatus_Name。 |
IssueStatus_Type | String | False |
Issue テーブルのIssueStatus_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IssueType_ExternalId | String | False |
Issue テーブルのIssueType_ExternalId。 |
IssueType_InternalId | String | False |
Issue テーブルのIssueType_InternalId。 |
IssueType_Name | String | False |
Issue テーブルのIssueType_Name。 |
IssueType_Type | String | False |
Issue テーブルのIssueType_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Item_ExternalId | String | False |
Issue テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
Issue テーブルのItem_InternalId。 |
Item_Name | String | False |
Issue テーブルのItem_Name。 |
Item_Type | String | False |
Issue テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
Issue テーブルのLastModifiedDate。 |
Module_ExternalId | String | False |
Issue テーブルのModule_ExternalId。 |
Module_InternalId | String | False |
Issue テーブルのModule_InternalId。 |
Module_Name | String | False |
Issue テーブルのModule_Name。 |
Module_Type | String | False |
Issue テーブルのModule_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NewDetails | String | False |
Issue テーブルのNewDetails。 |
Priority_ExternalId | String | False |
Issue テーブルのPriority_ExternalId。 |
Priority_InternalId | String | False |
Issue テーブルのPriority_InternalId。 |
Priority_Name | String | False |
Issue テーブルのPriority_Name。 |
Priority_Type | String | False |
Issue テーブルのPriority_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Product_ExternalId | String | False |
Issue テーブルのProduct_ExternalId。 |
Product_InternalId | String | False |
Issue テーブルのProduct_InternalId。 |
Product_Name | String | False |
Issue テーブルのProduct_Name。 |
Product_Type | String | False |
Issue テーブルのProduct_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ProductTeam_ExternalId | String | False |
Issue テーブルのProductTeam_ExternalId。 |
ProductTeam_InternalId | String | False |
Issue テーブルのProductTeam_InternalId。 |
ProductTeam_Name | String | False |
Issue テーブルのProductTeam_Name。 |
ProductTeam_Type | String | False |
Issue テーブルのProductTeam_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ReportedBy_ExternalId | String | False |
Issue テーブルのReportedBy_ExternalId。 |
ReportedBy_InternalId | String | False |
Issue テーブルのReportedBy_InternalId。 |
ReportedBy_Name | String | False |
Issue テーブルのReportedBy_Name。 |
ReportedBy_Type | String | False |
Issue テーブルのReportedBy_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Reproduce_ExternalId | String | False |
Issue テーブルのReproduce_ExternalId。 |
Reproduce_InternalId | String | False |
Issue テーブルのReproduce_InternalId。 |
Reproduce_Name | String | False |
Issue テーブルのReproduce_Name。 |
Reproduce_Type | String | False |
Issue テーブルのReproduce_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Reviewer_ExternalId | String | False |
Issue テーブルのReviewer_ExternalId。 |
Reviewer_InternalId | String | False |
Issue テーブルのReviewer_InternalId。 |
Reviewer_Name | String | False |
Issue テーブルのReviewer_Name。 |
Reviewer_Type | String | False |
Issue テーブルのReviewer_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Severity_ExternalId | String | False |
Issue テーブルのSeverity_ExternalId。 |
Severity_InternalId | String | False |
Issue テーブルのSeverity_InternalId。 |
Severity_Name | String | False |
Issue テーブルのSeverity_Name。 |
Severity_Type | String | False |
Issue テーブルのSeverity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Source_ExternalId | String | False |
Issue テーブルのSource_ExternalId。 |
Source_InternalId | String | False |
Issue テーブルのSource_InternalId。 |
Source_Name | String | False |
Issue テーブルのSource_Name。 |
Source_Type | String | False |
Issue テーブルのSource_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TargetVersionList_ReplaceAll | Boolean | False |
Issue テーブルのTargetVersionList_ReplaceAll。 |
TrackCode | String | False |
Issue テーブルのTrackCode。 The allowed values are _never, _onAnyChange, _whenBaseStatusIsClosed, _whenBaseStatusIsOnHold, _whenBaseStatusIsOpen, _whenBaseStatusIsResolved. |
NetSuite のItemFulfillment テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
ItemFulfillment テーブルのInternalId。 |
AccessibilityTypeFedEx | String | False |
ItemFulfillment テーブルのAccessibilityTypeFedEx。 The allowed values are _accessible, _inaccessible. |
AncillaryEndorsementFedEx | String | False |
ItemFulfillment テーブルのAncillaryEndorsementFedEx。 The allowed values are _addressCorrection, _carrierLeaveIfNoResponse, _changeService, _forwardingService, _returnService. |
B13aFilingOptionFedEx | String | False |
ItemFulfillment テーブルのB13aFilingOptionFedEx。 The allowed values are _filedElectronically, _manuallyAttached, _notRequired, _summaryReporting. |
B13aStatementDataFedEx | String | False |
ItemFulfillment テーブルのB13aStatementDataFedEx。 |
BackupEmailAddressFedEx | String | False |
ItemFulfillment テーブルのBackupEmailAddressFedEx。 |
BackupEmailAddressUps | String | False |
ItemFulfillment テーブルのBackupEmailAddressUps。 |
BlanketEndDateUps | Datetime | False |
ItemFulfillment テーブルのBlanketEndDateUps。 |
BlanketStartDateUps | Datetime | False |
ItemFulfillment テーブルのBlanketStartDateUps。 |
BookingConfirmationNumFedEx | String | False |
ItemFulfillment テーブルのBookingConfirmationNumFedEx。 |
CarrierIdUps | String | False |
ItemFulfillment テーブルのCarrierIdUps。 |
CreatedDate | Datetime | False |
ItemFulfillment テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
ItemFulfillment テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
ItemFulfillment テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
ItemFulfillment テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
ItemFulfillment テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedFromShipGroup | Long | False |
ItemFulfillment テーブルのCreatedFromShipGroup。 |
CustomForm_ExternalId | String | False |
ItemFulfillment テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
ItemFulfillment テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
ItemFulfillment テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
ItemFulfillment テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EccNumberUps | String | False |
ItemFulfillment テーブルのEccNumberUps。 |
Entity_ExternalId | String | False |
ItemFulfillment テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
ItemFulfillment テーブルのEntity_InternalId。 |
Entity_Name | String | False |
ItemFulfillment テーブルのEntity_Name。 |
Entity_Type | String | False |
ItemFulfillment テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EntryNumberUps | String | False |
ItemFulfillment テーブルのEntryNumberUps。 |
ExportTypeUps | String | False |
ItemFulfillment テーブルのExportTypeUps。 The allowed values are _domesticExports, _foreignExports, _foreignMilitarySales. |
ExternalId | String | False |
ItemFulfillment テーブルのExternalId。 |
GenerateIntegratedShipperLabel | Boolean | False |
ItemFulfillment テーブルのGenerateIntegratedShipperLabel。 |
HalAddr1FedEx | String | False |
ItemFulfillment テーブルのHalAddr1FedEx。 |
HalAddr2FedEx | String | False |
ItemFulfillment テーブルのHalAddr2FedEx。 |
HalAddr3FedEx | String | False |
ItemFulfillment テーブルのHalAddr3FedEx。 |
HalCityFedEx | String | False |
ItemFulfillment テーブルのHalCityFedEx。 |
HalCountryFedEx | String | False |
ItemFulfillment テーブルのHalCountryFedEx。 |
HalPhoneFedEx | String | False |
ItemFulfillment テーブルのHalPhoneFedEx。 |
HalStateFedEx | String | False |
ItemFulfillment テーブルのHalStateFedEx。 |
HalZipFedEx | String | False |
ItemFulfillment テーブルのHalZipFedEx。 |
HandlingCost | Double | False |
ItemFulfillment テーブルのHandlingCost。 |
HazmatTypeFedEx | String | False |
ItemFulfillment テーブルのHazmatTypeFedEx。 The allowed values are _dangerousGoods, _hazmat. |
HoldAtLocationFedEx | Boolean | False |
ItemFulfillment テーブルのHoldAtLocationFedEx。 |
HomeDeliveryDateFedEx | Datetime | False |
ItemFulfillment テーブルのHomeDeliveryDateFedEx。 |
HomeDeliveryTypeFedEx | String | False |
ItemFulfillment テーブルのHomeDeliveryTypeFedEx。 The allowed values are _appointment, _dateCertain, _evening. |
InbondCodeUps | String | False |
ItemFulfillment テーブルのInbondCodeUps。 |
InsideDeliveryFedEx | Boolean | False |
ItemFulfillment テーブルのInsideDeliveryFedEx。 |
InsidePickupFedEx | Boolean | False |
ItemFulfillment テーブルのInsidePickupFedEx。 |
IntlExemptionNumFedEx | String | False |
ItemFulfillment テーブルのIntlExemptionNumFedEx。 |
IsCargoAircraftOnlyFedEx | Boolean | False |
ItemFulfillment テーブルのIsCargoAircraftOnlyFedEx。 |
IsRoutedExportTransactionUps | Boolean | False |
ItemFulfillment テーブルのIsRoutedExportTransactionUps。 |
ItemList_ReplaceAll | Boolean | False |
ItemFulfillment テーブルのItemList_ReplaceAll。 |
LastModifiedDate | Datetime | False |
ItemFulfillment テーブルのLastModifiedDate。 |
LicenseDateUps | Datetime | False |
ItemFulfillment テーブルのLicenseDateUps。 |
LicenseExceptionUps | String | False |
ItemFulfillment テーブルのLicenseExceptionUps。 The allowed values are _agr, _apr, _avs, _bag, _civ, _ctp, _enc, _gbs, _gft, _gov, _kmi, _lvs, _nlr, _rpl, _tmp, _tspa, _tsr, _tsu. |
LicenseNumberUps | String | False |
ItemFulfillment テーブルのLicenseNumberUps。 |
Memo | String | False |
ItemFulfillment テーブルのMemo。 |
MethodOfTransportUps | String | False |
ItemFulfillment テーブルのMethodOfTransportUps。 The allowed values are _air, _airContainerized, _auto, _fixedTransportInstallations, _mail, _passengerHandcarried, _pedestrian, _rail, _railContainerized, _roadOther, _seaBarge, _seaContainerized, _seaNoncontainerized, _truck, _truckContainerized. |
PackageFedExList_ReplaceAll | Boolean | False |
ItemFulfillment テーブルのPackageFedExList_ReplaceAll。 |
PackageList_ReplaceAll | Boolean | False |
ItemFulfillment テーブルのPackageList_ReplaceAll。 |
PackageUpsList_ReplaceAll | Boolean | False |
ItemFulfillment テーブルのPackageUpsList_ReplaceAll。 |
PackageUspsList_ReplaceAll | Boolean | False |
ItemFulfillment テーブルのPackageUspsList_ReplaceAll。 |
PartiesToTransactionUps | Boolean | False |
ItemFulfillment テーブルのPartiesToTransactionUps。 |
Partner_ExternalId | String | False |
ItemFulfillment テーブルのPartner_ExternalId。 |
Partner_InternalId | String | False |
ItemFulfillment テーブルのPartner_InternalId。 |
Partner_Name | String | False |
ItemFulfillment テーブルのPartner_Name。 |
Partner_Type | String | False |
ItemFulfillment テーブルのPartner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PostingPeriod_ExternalId | String | False |
ItemFulfillment テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
ItemFulfillment テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
ItemFulfillment テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
ItemFulfillment テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RecipientTaxIdUps | String | False |
ItemFulfillment テーブルのRecipientTaxIdUps。 |
SaturdayDeliveryFedEx | Boolean | False |
ItemFulfillment テーブルのSaturdayDeliveryFedEx。 |
SaturdayDeliveryUps | Boolean | False |
ItemFulfillment テーブルのSaturdayDeliveryUps。 |
SaturdayPickupFedex | Boolean | False |
ItemFulfillment テーブルのSaturdayPickupFedex。 |
SendBackupEmailFedEx | Boolean | False |
ItemFulfillment テーブルのSendBackupEmailFedEx。 |
SendBackupEmailUps | Boolean | False |
ItemFulfillment テーブルのSendBackupEmailUps。 |
SendShipNotifyEmailFedEx | Boolean | False |
ItemFulfillment テーブルのSendShipNotifyEmailFedEx。 |
SendShipNotifyEmailUps | Boolean | False |
ItemFulfillment テーブルのSendShipNotifyEmailUps。 |
ShipAddress | String | False |
ItemFulfillment テーブルのShipAddress。 |
ShipAddressList_ExternalId | String | False |
ItemFulfillment テーブルのShipAddressList_ExternalId。 |
ShipAddressList_InternalId | String | False |
ItemFulfillment テーブルのShipAddressList_InternalId。 |
ShipAddressList_Name | String | False |
ItemFulfillment テーブルのShipAddressList_Name。 |
ShipAddressList_Type | String | False |
ItemFulfillment テーブルのShipAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShipDateFedEx | Datetime | False |
ItemFulfillment テーブルのShipDateFedEx。 |
ShipGroupList_ReplaceAll | Boolean | False |
ItemFulfillment テーブルのShipGroupList_ReplaceAll。 |
ShipmentWeightFedEx | Double | False |
ItemFulfillment テーブルのShipmentWeightFedEx。 |
ShipmentWeightUps | Double | False |
ItemFulfillment テーブルのShipmentWeightUps。 |
ShipMethod_ExternalId | String | False |
ItemFulfillment テーブルのShipMethod_ExternalId。 |
ShipMethod_InternalId | String | False |
ItemFulfillment テーブルのShipMethod_InternalId。 |
ShipMethod_Name | String | False |
ItemFulfillment テーブルのShipMethod_Name。 |
ShipMethod_Type | String | False |
ItemFulfillment テーブルのShipMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShipNotifyEmailAddress2Ups | String | False |
ItemFulfillment テーブルのShipNotifyEmailAddress2Ups。 |
ShipNotifyEmailAddressFedEx | String | False |
ItemFulfillment テーブルのShipNotifyEmailAddressFedEx。 |
ShipNotifyEmailAddressUps | String | False |
ItemFulfillment テーブルのShipNotifyEmailAddressUps。 |
ShipNotifyEmailMessageUps | String | False |
ItemFulfillment テーブルのShipNotifyEmailMessageUps。 |
ShippingCost | Double | False |
ItemFulfillment テーブルのShippingCost。 |
ShipStatus | String | False |
ItemFulfillment テーブルのShipStatus。 The allowed values are _packed, _picked, _shipped. |
SignatureHomeDeliveryFedEx | Boolean | False |
ItemFulfillment テーブルのSignatureHomeDeliveryFedEx。 |
TermsFreightChargeFedEx | Double | False |
ItemFulfillment テーブルのTermsFreightChargeFedEx。 |
TermsInsuranceChargeFedEx | Double | False |
ItemFulfillment テーブルのTermsInsuranceChargeFedEx。 |
TermsOfSaleFedEx | String | False |
ItemFulfillment テーブルのTermsOfSaleFedEx。 The allowed values are _fob, _cf, _cif. |
ThirdPartyAcctFedEx | String | False |
ItemFulfillment テーブルのThirdPartyAcctFedEx。 |
ThirdPartyAcctUps | String | False |
ItemFulfillment テーブルのThirdPartyAcctUps。 |
ThirdPartyCountryFedEx | String | False |
ItemFulfillment テーブルのThirdPartyCountryFedEx。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
ThirdPartyCountryUps | String | False |
ItemFulfillment テーブルのThirdPartyCountryUps。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
ThirdPartyTypeFedEx | String | False |
ItemFulfillment テーブルのThirdPartyTypeFedEx。 The allowed values are _billRecipient, _billThirdParty, _noneSelected. |
ThirdPartyTypeUps | String | False |
ItemFulfillment テーブルのThirdPartyTypeUps。 The allowed values are _consigneeBilling, _noneSelected, _thirdPartyBilling. |
ThirdPartyZipcodeUps | String | False |
ItemFulfillment テーブルのThirdPartyZipcodeUps。 |
TranDate | Datetime | False |
ItemFulfillment テーブルのTranDate。 |
TranId | String | False |
ItemFulfillment テーブルのTranId。 |
TransactionShipAddress_ShipAddr1 | String | False |
ItemFulfillment テーブルのTransactionShipAddress_ShipAddr1。 |
TransactionShipAddress_ShipAddr2 | String | False |
ItemFulfillment テーブルのTransactionShipAddress_ShipAddr2。 |
TransactionShipAddress_ShipAddr3 | String | False |
ItemFulfillment テーブルのTransactionShipAddress_ShipAddr3。 |
TransactionShipAddress_ShipAddressee | String | False |
ItemFulfillment テーブルのTransactionShipAddress_ShipAddressee。 |
TransactionShipAddress_ShipAttention | String | False |
ItemFulfillment テーブルのTransactionShipAddress_ShipAttention。 |
TransactionShipAddress_ShipCity | String | False |
ItemFulfillment テーブルのTransactionShipAddress_ShipCity。 |
TransactionShipAddress_ShipCountry | String | False |
ItemFulfillment テーブルのTransactionShipAddress_ShipCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionShipAddress_ShipIsResidential | Boolean | False |
ItemFulfillment テーブルのTransactionShipAddress_ShipIsResidential。 |
TransactionShipAddress_ShipPhone | String | False |
ItemFulfillment テーブルのTransactionShipAddress_ShipPhone。 |
TransactionShipAddress_ShipState | String | False |
ItemFulfillment テーブルのTransactionShipAddress_ShipState。 |
TransactionShipAddress_ShipZip | String | False |
ItemFulfillment テーブルのTransactionShipAddress_ShipZip。 |
TransferLocation_ExternalId | String | False |
ItemFulfillment テーブルのTransferLocation_ExternalId。 |
TransferLocation_InternalId | String | False |
ItemFulfillment テーブルのTransferLocation_InternalId。 |
TransferLocation_Name | String | False |
ItemFulfillment テーブルのTransferLocation_Name。 |
TransferLocation_Type | String | False |
ItemFulfillment テーブルのTransferLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のItemReceipt テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
ItemReceipt テーブルのInternalId。 |
CreatedDate | Datetime | False |
ItemReceipt テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
ItemReceipt テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
ItemReceipt テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
ItemReceipt テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
ItemReceipt テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
ItemReceipt テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
ItemReceipt テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
ItemReceipt テーブルのCurrency_Name。 |
Currency_Type | String | False |
ItemReceipt テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
ItemReceipt テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
ItemReceipt テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
ItemReceipt テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
ItemReceipt テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
ItemReceipt テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Entity_ExternalId | String | False |
ItemReceipt テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
ItemReceipt テーブルのEntity_InternalId。 |
Entity_Name | String | False |
ItemReceipt テーブルのEntity_Name。 |
Entity_Type | String | False |
ItemReceipt テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExchangeRate | Double | False |
ItemReceipt テーブルのExchangeRate。 |
ExpenseList_ReplaceAll | Boolean | False |
ItemReceipt テーブルのExpenseList_ReplaceAll。 |
ExternalId | String | False |
ItemReceipt テーブルのExternalId。 |
ItemList_ReplaceAll | Boolean | False |
ItemReceipt テーブルのItemList_ReplaceAll。 |
LandedCostMethod | String | False |
ItemReceipt テーブルのLandedCostMethod。 The allowed values are _quantity, _value, _weight. |
LandedCostsList_ReplaceAll | Boolean | False |
ItemReceipt テーブルのLandedCostsList_ReplaceAll。 |
LastModifiedDate | Datetime | False |
ItemReceipt テーブルのLastModifiedDate。 |
Memo | String | False |
ItemReceipt テーブルのMemo。 |
Partner_ExternalId | String | False |
ItemReceipt テーブルのPartner_ExternalId。 |
Partner_InternalId | String | False |
ItemReceipt テーブルのPartner_InternalId。 |
Partner_Name | String | False |
ItemReceipt テーブルのPartner_Name。 |
Partner_Type | String | False |
ItemReceipt テーブルのPartner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PostingPeriod_ExternalId | String | False |
ItemReceipt テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
ItemReceipt テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
ItemReceipt テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
ItemReceipt テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Subsidiary_ExternalId | String | False |
ItemReceipt テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
ItemReceipt テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
ItemReceipt テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
ItemReceipt テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranDate | Datetime | False |
ItemReceipt テーブルのTranDate。 |
TranId | String | False |
ItemReceipt テーブルのTranId。 |
NetSuite のItemRevision テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
ItemRevision テーブルのInternalId。 |
EffectiveDate | Datetime | False |
ItemRevision テーブルのEffectiveDate。 |
ExternalId | String | False |
ItemRevision テーブルのExternalId。 |
Inactive | Boolean | False |
ItemRevision テーブルのInactive。 |
Item_ExternalId | String | False |
ItemRevision テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
ItemRevision テーブルのItem_InternalId。 |
Item_Name | String | False |
ItemRevision テーブルのItem_Name。 |
Item_Type | String | False |
ItemRevision テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
ItemRevision テーブルのMemo。 |
Name | String | False |
ItemRevision テーブルのName。 |
ObsoleteDate | Datetime | False |
ItemRevision テーブルのObsoleteDate。 |
NetSuite のJob テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Job テーブルのInternalId。 |
AccountNumber | String | False |
Job テーブルのAccountNumber。 |
ActualTime_TimeSpan | Double | False |
Job テーブルのActualTime_TimeSpan。 |
ActualTime_Unit | String | False |
Job テーブルのActualTime_Unit。 The allowed values are hour. |
AddressbookList_ReplaceAll | Boolean | False |
Job テーブルのAddressbookList_ReplaceAll。 |
AllocatePayrollExpenses | Boolean | False |
Job テーブルのAllocatePayrollExpenses。 |
AllowAllResourcesForTasks | Boolean | False |
Job テーブルのAllowAllResourcesForTasks。 |
AllowExpenses | Boolean | False |
Job テーブルのAllowExpenses。 |
AllowTime | Boolean | False |
Job テーブルのAllowTime。 |
AltName | String | False |
Job テーブルのAltName。 |
AltPhone | String | False |
Job テーブルのAltPhone。 |
BillingSchedule_ExternalId | String | False |
Job テーブルのBillingSchedule_ExternalId。 |
BillingSchedule_InternalId | String | False |
Job テーブルのBillingSchedule_InternalId。 |
BillingSchedule_Name | String | False |
Job テーブルのBillingSchedule_Name。 |
BillingSchedule_Type | String | False |
Job テーブルのBillingSchedule_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BillPay | Boolean | False |
Job テーブルのBillPay。 |
CalculatedEndDate | Datetime | False |
Job テーブルのCalculatedEndDate。 |
CalculatedEndDateBaseline | Datetime | False |
Job テーブルのCalculatedEndDateBaseline。 |
Category_ExternalId | String | False |
Job テーブルのCategory_ExternalId。 |
Category_InternalId | String | False |
Job テーブルのCategory_InternalId。 |
Category_Name | String | False |
Job テーブルのCategory_Name。 |
Category_Type | String | False |
Job テーブルのCategory_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Comments | String | False |
Job テーブルのComments。 |
CompanyName | String | False |
Job テーブルのCompanyName。 |
CreditCardsList_ReplaceAll | Boolean | False |
Job テーブルのCreditCardsList_ReplaceAll。 |
Currency_ExternalId | String | False |
Job テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
Job テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
Job テーブルのCurrency_Name。 |
Currency_Type | String | False |
Job テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
Job テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Job テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Job テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Job テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DateCreated | Datetime | False |
Job テーブルのDateCreated。 |
DefaultAddress | String | False |
Job テーブルのDefaultAddress。 |
String | False |
Job テーブルのEmail。 | |
EmailPreference | String | False |
Job テーブルのEmailPreference。 The allowed values are _default, _hTML, _pDF. |
EndDate | Datetime | False |
Job テーブルのEndDate。 |
EntityId | String | False |
Job テーブルのEntityId。 |
EntityStatus_ExternalId | String | False |
Job テーブルのEntityStatus_ExternalId。 |
EntityStatus_InternalId | String | False |
Job テーブルのEntityStatus_InternalId。 |
EntityStatus_Name | String | False |
Job テーブルのEntityStatus_Name。 |
EntityStatus_Type | String | False |
Job テーブルのEntityStatus_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EstimatedCost | Double | False |
Job テーブルのEstimatedCost。 |
EstimatedGrossProfit | Double | False |
Job テーブルのEstimatedGrossProfit。 |
EstimatedGrossProfitPercent | Double | False |
Job テーブルのEstimatedGrossProfitPercent。 |
EstimatedLaborCost | Double | False |
Job テーブルのEstimatedLaborCost。 |
EstimatedLaborCostBaseline | Double | False |
Job テーブルのEstimatedLaborCostBaseline。 |
EstimatedLaborRevenue | Double | False |
Job テーブルのEstimatedLaborRevenue。 |
EstimatedRevenue | Double | False |
Job テーブルのEstimatedRevenue。 |
EstimatedTime_TimeSpan | Double | False |
Job テーブルのEstimatedTime_TimeSpan。 |
EstimatedTime_Unit | String | False |
Job テーブルのEstimatedTime_Unit。 The allowed values are hour. |
EstimatedTimeOverride_TimeSpan | Double | False |
Job テーブルのEstimatedTimeOverride_TimeSpan。 |
EstimatedTimeOverride_Unit | String | False |
Job テーブルのEstimatedTimeOverride_Unit。 The allowed values are hour. |
EstimateRevRecTemplate_ExternalId | String | False |
Job テーブルのEstimateRevRecTemplate_ExternalId。 |
EstimateRevRecTemplate_InternalId | String | False |
Job テーブルのEstimateRevRecTemplate_InternalId。 |
EstimateRevRecTemplate_Name | String | False |
Job テーブルのEstimateRevRecTemplate_Name。 |
EstimateRevRecTemplate_Type | String | False |
Job テーブルのEstimateRevRecTemplate_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
Job テーブルのExternalId。 |
Fax | String | False |
Job テーブルのFax。 |
FxRate | Double | False |
Job テーブルのFxRate。 |
GlobalSubscriptionStatus | String | False |
Job テーブルのGlobalSubscriptionStatus。 The allowed values are _confirmedOptIn, _confirmedOptOut, _softOptIn, _softOptOut. |
IncludeCrmTasksInTotals | Boolean | False |
Job テーブルのIncludeCrmTasksInTotals。 |
IsExemptTime | Boolean | False |
Job テーブルのIsExemptTime。 |
IsInactive | Boolean | False |
Job テーブルのIsInactive。 |
IsProductiveTime | Boolean | False |
Job テーブルのIsProductiveTime。 |
IsUtilizedTime | Boolean | False |
Job テーブルのIsUtilizedTime。 |
JobBillingType | String | False |
Job テーブルのJobBillingType。 The allowed values are _none, _fixedBidInterval, _fixedBidMilestone, _timeAndMaterials. |
JobItem_ExternalId | String | False |
Job テーブルのJobItem_ExternalId。 |
JobItem_InternalId | String | False |
Job テーブルのJobItem_InternalId。 |
JobItem_Name | String | False |
Job テーブルのJobItem_Name。 |
JobItem_Type | String | False |
Job テーブルのJobItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
JobPrice | Double | False |
Job テーブルのJobPrice。 |
JobResourcesList_ReplaceAll | Boolean | False |
Job テーブルのJobResourcesList_ReplaceAll。 |
JobType_ExternalId | String | False |
Job テーブルのJobType_ExternalId。 |
JobType_InternalId | String | False |
Job テーブルのJobType_InternalId。 |
JobType_Name | String | False |
Job テーブルのJobType_Name。 |
JobType_Type | String | False |
Job テーブルのJobType_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Language_ExternalId | String | False |
Job テーブルのLanguage_ExternalId。 |
Language_InternalId | String | False |
Job テーブルのLanguage_InternalId。 |
Language_Name | String | False |
Job テーブルのLanguage_Name。 |
Language_Type | String | False |
Job テーブルのLanguage_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastBaselineDate | Datetime | False |
Job テーブルのLastBaselineDate。 |
LastModifiedDate | Datetime | False |
Job テーブルのLastModifiedDate。 |
LimitTimeToAssignees | Boolean | False |
Job テーブルのLimitTimeToAssignees。 |
MaterializeTime | Boolean | False |
Job テーブルのMaterializeTime。 |
MilestonesList_ReplaceAll | Boolean | False |
Job テーブルのMilestonesList_ReplaceAll。 |
OpeningBalance | Double | False |
Job テーブルのOpeningBalance。 |
OpeningBalanceAccount_ExternalId | String | False |
Job テーブルのOpeningBalanceAccount_ExternalId。 |
OpeningBalanceAccount_InternalId | String | False |
Job テーブルのOpeningBalanceAccount_InternalId。 |
OpeningBalanceAccount_Name | String | False |
Job テーブルのOpeningBalanceAccount_Name。 |
OpeningBalanceAccount_Type | String | False |
Job テーブルのOpeningBalanceAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OpeningBalanceDate | Datetime | False |
Job テーブルのOpeningBalanceDate。 |
Parent_ExternalId | String | False |
Job テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
Job テーブルのParent_InternalId。 |
Parent_Name | String | False |
Job テーブルのParent_Name。 |
Parent_Type | String | False |
Job テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PercentComplete | Double | False |
Job テーブルのPercentComplete。 |
PercentTimeComplete | Double | False |
Job テーブルのPercentTimeComplete。 |
Phone | String | False |
Job テーブルのPhone。 |
PhoneticName | String | False |
Job テーブルのPhoneticName。 |
ProjectedEndDate | Datetime | False |
Job テーブルのProjectedEndDate。 |
ProjectedEndDateBaseline | Datetime | False |
Job テーブルのProjectedEndDateBaseline。 |
StartDate | Datetime | False |
Job テーブルのStartDate。 |
StartDateBaseline | Datetime | False |
Job テーブルのStartDateBaseline。 |
Subsidiary_ExternalId | String | False |
Job テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
Job テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
Job テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
Job テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TimeRemaining_TimeSpan | Double | False |
Job テーブルのTimeRemaining_TimeSpan。 |
TimeRemaining_Unit | String | False |
Job テーブルのTimeRemaining_Unit。 The allowed values are hour. |
Workplace_ExternalId | String | False |
Job テーブルのWorkplace_ExternalId。 |
Workplace_InternalId | String | False |
Job テーブルのWorkplace_InternalId。 |
Workplace_Name | String | False |
Job テーブルのWorkplace_Name。 |
Workplace_Type | String | False |
Job テーブルのWorkplace_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のJobStatus テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
JobStatus テーブルのInternalId。 |
Description | String | False |
JobStatus テーブルのDescription。 |
ExternalId | String | False |
JobStatus テーブルのExternalId。 |
IsInactive | Boolean | False |
JobStatus テーブルのIsInactive。 |
Name | String | False |
JobStatus テーブルのName。 |
NetSuite のJobType テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
JobType テーブルのInternalId。 |
ExternalId | String | False |
JobType テーブルのExternalId。 |
IsInactive | Boolean | False |
JobType テーブルのIsInactive。 |
Name | String | False |
JobType テーブルのName。 |
Parent_ExternalId | String | False |
JobType テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
JobType テーブルのParent_InternalId。 |
Parent_Name | String | False |
JobType テーブルのParent_Name。 |
Parent_Type | String | False |
JobType テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のJournalEntry テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
JournalEntry テーブルのInternalId。 |
Approved | Boolean | False |
JournalEntry テーブルのApproved。 |
Class_ExternalId | String | False |
JournalEntry テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
JournalEntry テーブルのClass_InternalId。 |
Class_Name | String | False |
JournalEntry テーブルのClass_Name。 |
Class_Type | String | False |
JournalEntry テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
JournalEntry テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
JournalEntry テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
JournalEntry テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
JournalEntry テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
JournalEntry テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
JournalEntry テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
JournalEntry テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
JournalEntry テーブルのCurrency_Name。 |
Currency_Type | String | False |
JournalEntry テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
JournalEntry テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
JournalEntry テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
JournalEntry テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
JournalEntry テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
JournalEntry テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
JournalEntry テーブルのDepartment_InternalId。 |
Department_Name | String | False |
JournalEntry テーブルのDepartment_Name。 |
Department_Type | String | False |
JournalEntry テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExchangeRate | Double | False |
JournalEntry テーブルのExchangeRate。 |
ExternalId | String | False |
JournalEntry テーブルのExternalId。 |
LastModifiedDate | Datetime | False |
JournalEntry テーブルのLastModifiedDate。 |
LineList_ReplaceAll | Boolean | False |
JournalEntry テーブルのLineList_ReplaceAll。 |
Location_ExternalId | String | False |
JournalEntry テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
JournalEntry テーブルのLocation_InternalId。 |
Location_Name | String | False |
JournalEntry テーブルのLocation_Name。 |
Location_Type | String | False |
JournalEntry テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ParentExpenseAlloc_ExternalId | String | False |
JournalEntry テーブルのParentExpenseAlloc_ExternalId。 |
ParentExpenseAlloc_InternalId | String | False |
JournalEntry テーブルのParentExpenseAlloc_InternalId。 |
ParentExpenseAlloc_Name | String | False |
JournalEntry テーブルのParentExpenseAlloc_Name。 |
ParentExpenseAlloc_Type | String | False |
JournalEntry テーブルのParentExpenseAlloc_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PostingPeriod_ExternalId | String | False |
JournalEntry テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
JournalEntry テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
JournalEntry テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
JournalEntry テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ReversalDate | Datetime | False |
JournalEntry テーブルのReversalDate。 |
ReversalDefer | Boolean | False |
JournalEntry テーブルのReversalDefer。 |
ReversalEntry | String | False |
JournalEntry テーブルのReversalEntry。 |
Subsidiary_ExternalId | String | False |
JournalEntry テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
JournalEntry テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
JournalEntry テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
JournalEntry テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ToSubsidiary_ExternalId | String | False |
JournalEntry テーブルのToSubsidiary_ExternalId。 |
ToSubsidiary_InternalId | String | False |
JournalEntry テーブルのToSubsidiary_InternalId。 |
ToSubsidiary_Name | String | False |
JournalEntry テーブルのToSubsidiary_Name。 |
ToSubsidiary_Type | String | False |
JournalEntry テーブルのToSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranDate | Datetime | False |
JournalEntry テーブルのTranDate。 |
TranId | String | False |
JournalEntry テーブルのTranId。 |
NetSuite のLeadSource テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
LeadSource テーブルのInternalId。 |
Description | String | False |
LeadSource テーブルのDescription。 |
ExternalId | String | False |
LeadSource テーブルのExternalId。 |
IsInactive | Boolean | False |
LeadSource テーブルのIsInactive。 |
Name | String | False |
LeadSource テーブルのName。 |
NetSuite のLocation テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Location テーブルのInternalId。 |
Addr1 | String | False |
Location テーブルのAddr1。 |
Addr2 | String | False |
Location テーブルのAddr2。 |
Addr3 | String | False |
Location テーブルのAddr3。 |
Addressee | String | False |
Location テーブルのAddressee。 |
AddrPhone | String | False |
Location テーブルのAddrPhone。 |
AddrText | String | False |
Location テーブルのAddrText。 |
Attention | String | False |
Location テーブルのAttention。 |
City | String | False |
Location テーブルのCity。 |
ClassTranslationList_ReplaceAll | Boolean | False |
Location テーブルのClassTranslationList_ReplaceAll。 |
Country | String | False |
Location テーブルのCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
ExternalId | String | False |
Location テーブルのExternalId。 |
IncludeChildren | Boolean | False |
Location テーブルのIncludeChildren。 |
IsInactive | Boolean | False |
Location テーブルのIsInactive。 |
Logo_ExternalId | String | False |
Location テーブルのLogo_ExternalId。 |
Logo_InternalId | String | False |
Location テーブルのLogo_InternalId。 |
Logo_Name | String | False |
Location テーブルのLogo_Name。 |
Logo_Type | String | False |
Location テーブルのLogo_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
MakeInventoryAvailable | Boolean | False |
Location テーブルのMakeInventoryAvailable。 |
MakeInventoryAvailableStore | Boolean | False |
Location テーブルのMakeInventoryAvailableStore。 |
Name | String | False |
Location テーブルのName。 |
Override | Boolean | False |
Location テーブルのOverride。 |
Parent_ExternalId | String | False |
Location テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
Location テーブルのParent_InternalId。 |
Parent_Name | String | False |
Location テーブルのParent_Name。 |
Parent_Type | String | False |
Location テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
State | String | False |
Location テーブルのState。 |
TranPrefix | String | False |
Location テーブルのTranPrefix。 |
Zip | String | False |
Location テーブルのZip。 |
NetSuite のManufacturingCostTemplate テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
ManufacturingCostTemplate テーブルのInternalId。 |
CostDetailList_ReplaceAll | Boolean | False |
ManufacturingCostTemplate テーブルのCostDetailList_ReplaceAll。 |
CustomForm_ExternalId | String | False |
ManufacturingCostTemplate テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
ManufacturingCostTemplate テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
ManufacturingCostTemplate テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
ManufacturingCostTemplate テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
ManufacturingCostTemplate テーブルのExternalId。 |
IsInactive | Boolean | False |
ManufacturingCostTemplate テーブルのIsInactive。 |
Memo | String | False |
ManufacturingCostTemplate テーブルのMemo。 |
Name | String | False |
ManufacturingCostTemplate テーブルのName。 |
Subsidiary_ExternalId | String | False |
ManufacturingCostTemplate テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
ManufacturingCostTemplate テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
ManufacturingCostTemplate テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
ManufacturingCostTemplate テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のManufacturingOperationTask テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
ManufacturingOperationTask テーブルのInternalId。 |
ActualWork | Double | False |
ManufacturingOperationTask テーブルのActualWork。 |
CompletedQuantity | Double | False |
ManufacturingOperationTask テーブルのCompletedQuantity。 |
CostDetailList_ReplaceAll | Boolean | False |
ManufacturingOperationTask テーブルのCostDetailList_ReplaceAll。 |
CustomForm_ExternalId | String | False |
ManufacturingOperationTask テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
ManufacturingOperationTask テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
ManufacturingOperationTask テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
ManufacturingOperationTask テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EndDate | Datetime | False |
ManufacturingOperationTask テーブルのEndDate。 |
EstimatedWork | Double | False |
ManufacturingOperationTask テーブルのEstimatedWork。 |
ExternalId | String | False |
ManufacturingOperationTask テーブルのExternalId。 |
InputQuantity | Double | False |
ManufacturingOperationTask テーブルのInputQuantity。 |
LaborResources | Long | False |
ManufacturingOperationTask テーブルのLaborResources。 |
MachineResources | Long | False |
ManufacturingOperationTask テーブルのMachineResources。 |
ManufacturingCostTemplate_ExternalId | String | False |
ManufacturingOperationTask テーブルのManufacturingCostTemplate_ExternalId。 |
ManufacturingCostTemplate_InternalId | String | False |
ManufacturingOperationTask テーブルのManufacturingCostTemplate_InternalId。 |
ManufacturingCostTemplate_Name | String | False |
ManufacturingOperationTask テーブルのManufacturingCostTemplate_Name。 |
ManufacturingCostTemplate_Type | String | False |
ManufacturingOperationTask テーブルのManufacturingCostTemplate_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ManufacturingWorkCenter_ExternalId | String | False |
ManufacturingOperationTask テーブルのManufacturingWorkCenter_ExternalId。 |
ManufacturingWorkCenter_InternalId | String | False |
ManufacturingOperationTask テーブルのManufacturingWorkCenter_InternalId。 |
ManufacturingWorkCenter_Name | String | False |
ManufacturingOperationTask テーブルのManufacturingWorkCenter_Name。 |
ManufacturingWorkCenter_Type | String | False |
ManufacturingOperationTask テーブルのManufacturingWorkCenter_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Message | String | False |
ManufacturingOperationTask テーブルのMessage。 |
OperationSequence | Long | False |
ManufacturingOperationTask テーブルのOperationSequence。 |
Order_ExternalId | String | False |
ManufacturingOperationTask テーブルのOrder_ExternalId。 |
Order_InternalId | String | False |
ManufacturingOperationTask テーブルのOrder_InternalId。 |
Order_Name | String | False |
ManufacturingOperationTask テーブルのOrder_Name。 |
Order_Type | String | False |
ManufacturingOperationTask テーブルのOrder_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RemainingWork | Double | False |
ManufacturingOperationTask テーブルのRemainingWork。 |
RunRate | Double | False |
ManufacturingOperationTask テーブルのRunRate。 |
SetupTime | Double | False |
ManufacturingOperationTask テーブルのSetupTime。 |
StartDate | Datetime | False |
ManufacturingOperationTask テーブルのStartDate。 |
Status | String | False |
ManufacturingOperationTask テーブルのStatus。 The allowed values are _completed, _inProgress, _notStarted. |
Title | String | False |
ManufacturingOperationTask テーブルのTitle。 |
WorkOrder_ExternalId | String | False |
ManufacturingOperationTask テーブルのWorkOrder_ExternalId。 |
WorkOrder_InternalId | String | False |
ManufacturingOperationTask テーブルのWorkOrder_InternalId。 |
WorkOrder_Name | String | False |
ManufacturingOperationTask テーブルのWorkOrder_Name。 |
WorkOrder_Type | String | False |
ManufacturingOperationTask テーブルのWorkOrder_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のManufacturingRouting テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
ManufacturingRouting テーブルのInternalId。 |
CustomForm_ExternalId | String | False |
ManufacturingRouting テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
ManufacturingRouting テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
ManufacturingRouting テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
ManufacturingRouting テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
ManufacturingRouting テーブルのExternalId。 |
IsDefault | Boolean | False |
ManufacturingRouting テーブルのIsDefault。 |
IsInactive | Boolean | False |
ManufacturingRouting テーブルのIsInactive。 |
Item_ExternalId | String | False |
ManufacturingRouting テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
ManufacturingRouting テーブルのItem_InternalId。 |
Item_Name | String | False |
ManufacturingRouting テーブルのItem_Name。 |
Item_Type | String | False |
ManufacturingRouting テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
ManufacturingRouting テーブルのMemo。 |
Name | String | False |
ManufacturingRouting テーブルのName。 |
RoutingStepList_ReplaceAll | Boolean | False |
ManufacturingRouting テーブルのRoutingStepList_ReplaceAll。 |
Subsidiary_ExternalId | String | False |
ManufacturingRouting テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
ManufacturingRouting テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
ManufacturingRouting テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
ManufacturingRouting テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のMessage テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Message テーブルのInternalId。 |
Activity_ExternalId | String | False |
Message テーブルのActivity_ExternalId。 |
Activity_InternalId | String | False |
Message テーブルのActivity_InternalId。 |
Activity_Name | String | False |
Message テーブルのActivity_Name。 |
Activity_Type | String | False |
Message テーブルのActivity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Author_ExternalId | String | False |
Message テーブルのAuthor_ExternalId。 |
Author_InternalId | String | False |
Message テーブルのAuthor_InternalId。 |
Author_Name | String | False |
Message テーブルのAuthor_Name。 |
Author_Type | String | False |
Message テーブルのAuthor_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Bcc | String | False |
Message テーブルのBcc。 |
Cc | String | False |
Message テーブルのCc。 |
CompressAttachments | Boolean | False |
Message テーブルのCompressAttachments。 |
DateTime | String | False |
Message テーブルのDateTime。 |
Emailed | Boolean | False |
Message テーブルのEmailed。 |
ExternalId | String | False |
Message テーブルのExternalId。 |
Incoming | Boolean | False |
Message テーブルのIncoming。 |
LastModifiedDate | Datetime | False |
Message テーブルのLastModifiedDate。 |
MediaItemList_ReplaceAll | Boolean | False |
Message テーブルのMediaItemList_ReplaceAll。 |
Message | String | False |
Message テーブルのMessage。 |
MessageDate | Datetime | False |
Message テーブルのMessageDate。 |
Recipient_ExternalId | String | False |
Message テーブルのRecipient_ExternalId。 |
Recipient_InternalId | String | False |
Message テーブルのRecipient_InternalId。 |
Recipient_Name | String | False |
Message テーブルのRecipient_Name。 |
Recipient_Type | String | False |
Message テーブルのRecipient_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RecordName | String | False |
Message テーブルのRecordName。 |
RecordTypeName | String | False |
Message テーブルのRecordTypeName。 |
Subject | String | False |
Message テーブルのSubject。 |
Transaction_ExternalId | String | False |
Message テーブルのTransaction_ExternalId。 |
Transaction_InternalId | String | False |
Message テーブルのTransaction_InternalId。 |
Transaction_Name | String | False |
Message テーブルのTransaction_Name。 |
Transaction_Type | String | False |
Message テーブルのTransaction_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のNexus テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Nexus テーブルのInternalId。 |
Country | String | False |
Nexus テーブルのCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
Description | String | False |
Nexus テーブルのDescription。 |
ExternalId | String | False |
Nexus テーブルのExternalId。 |
State_ExternalId | String | False |
Nexus テーブルのState_ExternalId。 |
State_InternalId | String | False |
Nexus テーブルのState_InternalId。 |
State_Name | String | False |
Nexus テーブルのState_Name。 |
State_Type | String | False |
Nexus テーブルのState_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxAgency_ExternalId | String | False |
Nexus テーブルのTaxAgency_ExternalId。 |
TaxAgency_InternalId | String | False |
Nexus テーブルのTaxAgency_InternalId。 |
TaxAgency_Name | String | False |
Nexus テーブルのTaxAgency_Name。 |
TaxAgency_Type | String | False |
Nexus テーブルのTaxAgency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxAgencyPst_ExternalId | String | False |
Nexus テーブルのTaxAgencyPst_ExternalId。 |
TaxAgencyPst_InternalId | String | False |
Nexus テーブルのTaxAgencyPst_InternalId。 |
TaxAgencyPst_Name | String | False |
Nexus テーブルのTaxAgencyPst_Name。 |
TaxAgencyPst_Type | String | False |
Nexus テーブルのTaxAgencyPst_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxCode_ExternalId | String | False |
Nexus テーブルのTaxCode_ExternalId。 |
TaxCode_InternalId | String | False |
Nexus テーブルのTaxCode_InternalId。 |
TaxCode_Name | String | False |
Nexus テーブルのTaxCode_Name。 |
TaxCode_Type | String | False |
Nexus テーブルのTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のNote テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Note テーブルのInternalId。 |
Activity_ExternalId | String | False |
Note テーブルのActivity_ExternalId。 |
Activity_InternalId | String | False |
Note テーブルのActivity_InternalId。 |
Activity_Name | String | False |
Note テーブルのActivity_Name。 |
Activity_Type | String | False |
Note テーブルのActivity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Author_ExternalId | String | False |
Note テーブルのAuthor_ExternalId。 |
Author_InternalId | String | False |
Note テーブルのAuthor_InternalId。 |
Author_Name | String | False |
Note テーブルのAuthor_Name。 |
Author_Type | String | False |
Note テーブルのAuthor_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Direction | String | False |
Note テーブルのDirection。 The allowed values are _incoming, _outgoing. |
Entity_ExternalId | String | False |
Note テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
Note テーブルのEntity_InternalId。 |
Entity_Name | String | False |
Note テーブルのEntity_Name。 |
Entity_Type | String | False |
Note テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
Note テーブルのExternalId。 |
Folder_ExternalId | String | False |
Note テーブルのFolder_ExternalId。 |
Folder_InternalId | String | False |
Note テーブルのFolder_InternalId。 |
Folder_Name | String | False |
Note テーブルのFolder_Name。 |
Folder_Type | String | False |
Note テーブルのFolder_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Item_ExternalId | String | False |
Note テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
Note テーブルのItem_InternalId。 |
Item_Name | String | False |
Note テーブルのItem_Name。 |
Item_Type | String | False |
Note テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
Note テーブルのLastModifiedDate。 |
Media_ExternalId | String | False |
Note テーブルのMedia_ExternalId。 |
Media_InternalId | String | False |
Note テーブルのMedia_InternalId。 |
Media_Name | String | False |
Note テーブルのMedia_Name。 |
Media_Type | String | False |
Note テーブルのMedia_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Note | String | False |
Note テーブルのNote。 |
NoteDate | Datetime | False |
Note テーブルのNoteDate。 |
NoteType_ExternalId | String | False |
Note テーブルのNoteType_ExternalId。 |
NoteType_InternalId | String | False |
Note テーブルのNoteType_InternalId。 |
NoteType_Name | String | False |
Note テーブルのNoteType_Name。 |
NoteType_Type | String | False |
Note テーブルのNoteType_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Record_ExternalId | String | False |
Note テーブルのRecord_ExternalId。 |
Record_InternalId | String | False |
Note テーブルのRecord_InternalId。 |
Record_Name | String | False |
Note テーブルのRecord_Name。 |
Record_Type | String | False |
Note テーブルのRecord_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RecordType_ExternalId | String | False |
Note テーブルのRecordType_ExternalId。 |
RecordType_InternalId | String | False |
Note テーブルのRecordType_InternalId。 |
RecordType_Name | String | False |
Note テーブルのRecordType_Name。 |
RecordType_Type | String | False |
Note テーブルのRecordType_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Title | String | False |
Note テーブルのTitle。 |
Topic_ExternalId | String | False |
Note テーブルのTopic_ExternalId。 |
Topic_InternalId | String | False |
Note テーブルのTopic_InternalId。 |
Topic_Name | String | False |
Note テーブルのTopic_Name。 |
Topic_Type | String | False |
Note テーブルのTopic_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Transaction_ExternalId | String | False |
Note テーブルのTransaction_ExternalId。 |
Transaction_InternalId | String | False |
Note テーブルのTransaction_InternalId。 |
Transaction_Name | String | False |
Note テーブルのTransaction_Name。 |
Transaction_Type | String | False |
Note テーブルのTransaction_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のNoteType テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
NoteType テーブルのInternalId。 |
Description | String | False |
NoteType テーブルのDescription。 |
ExternalId | String | False |
NoteType テーブルのExternalId。 |
IsInactive | Boolean | False |
NoteType テーブルのIsInactive。 |
Name | String | False |
NoteType テーブルのName。 |
NetSuite のOpportunity テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Opportunity テーブルのInternalId。 |
ActionItem | String | False |
Opportunity テーブルのActionItem。 |
AltSalesRangeHigh | Double | False |
Opportunity テーブルのAltSalesRangeHigh。 |
AltSalesRangeLow | Double | False |
Opportunity テーブルのAltSalesRangeLow。 |
BillAddress | String | False |
Opportunity テーブルのBillAddress。 |
BillAddressList_ExternalId | String | False |
Opportunity テーブルのBillAddressList_ExternalId。 |
BillAddressList_InternalId | String | False |
Opportunity テーブルのBillAddressList_InternalId。 |
BillAddressList_Name | String | False |
Opportunity テーブルのBillAddressList_Name。 |
BillAddressList_Type | String | False |
Opportunity テーブルのBillAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BuyingReason_ExternalId | String | False |
Opportunity テーブルのBuyingReason_ExternalId。 |
BuyingReason_InternalId | String | False |
Opportunity テーブルのBuyingReason_InternalId。 |
BuyingReason_Name | String | False |
Opportunity テーブルのBuyingReason_Name。 |
BuyingReason_Type | String | False |
Opportunity テーブルのBuyingReason_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BuyingTimeFrame_ExternalId | String | False |
Opportunity テーブルのBuyingTimeFrame_ExternalId。 |
BuyingTimeFrame_InternalId | String | False |
Opportunity テーブルのBuyingTimeFrame_InternalId。 |
BuyingTimeFrame_Name | String | False |
Opportunity テーブルのBuyingTimeFrame_Name。 |
BuyingTimeFrame_Type | String | False |
Opportunity テーブルのBuyingTimeFrame_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Class_ExternalId | String | False |
Opportunity テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
Opportunity テーブルのClass_InternalId。 |
Class_Name | String | False |
Opportunity テーブルのClass_Name。 |
Class_Type | String | False |
Opportunity テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CloseDate | Datetime | False |
Opportunity テーブルのCloseDate。 |
CompetitorsList_ReplaceAll | Boolean | False |
Opportunity テーブルのCompetitorsList_ReplaceAll。 |
ContribPct | String | False |
Opportunity テーブルのContribPct。 |
CreatedDate | Datetime | False |
Opportunity テーブルのCreatedDate。 |
Currency_ExternalId | String | False |
Opportunity テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
Opportunity テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
Opportunity テーブルのCurrency_Name。 |
Currency_Type | String | False |
Opportunity テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
Opportunity テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
Opportunity テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Opportunity テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Opportunity テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Opportunity テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DaysOpen | Long | False |
Opportunity テーブルのDaysOpen。 |
Department_ExternalId | String | False |
Opportunity テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
Opportunity テーブルのDepartment_InternalId。 |
Department_Name | String | False |
Opportunity テーブルのDepartment_Name。 |
Department_Type | String | False |
Opportunity テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Entity_ExternalId | String | False |
Opportunity テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
Opportunity テーブルのEntity_InternalId。 |
Entity_Name | String | False |
Opportunity テーブルのEntity_Name。 |
Entity_Type | String | False |
Opportunity テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EntityStatus_ExternalId | String | False |
Opportunity テーブルのEntityStatus_ExternalId。 |
EntityStatus_InternalId | String | False |
Opportunity テーブルのEntityStatus_InternalId。 |
EntityStatus_Name | String | False |
Opportunity テーブルのEntityStatus_Name。 |
EntityStatus_Type | String | False |
Opportunity テーブルのEntityStatus_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EstGrossProfit | Double | False |
Opportunity テーブルのEstGrossProfit。 |
EstGrossProfitPercent | Double | False |
Opportunity テーブルのEstGrossProfitPercent。 |
EstimatedBudget | Double | False |
Opportunity テーブルのEstimatedBudget。 |
ExchangeRate | Double | False |
Opportunity テーブルのExchangeRate。 |
ExpectedCloseDate | Datetime | False |
Opportunity テーブルのExpectedCloseDate。 |
ExternalId | String | False |
Opportunity テーブルのExternalId。 |
ForecastType_ExternalId | String | False |
Opportunity テーブルのForecastType_ExternalId。 |
ForecastType_InternalId | String | False |
Opportunity テーブルのForecastType_InternalId。 |
ForecastType_Name | String | False |
Opportunity テーブルのForecastType_Name。 |
ForecastType_Type | String | False |
Opportunity テーブルのForecastType_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsBudgetApproved | Boolean | False |
Opportunity テーブルのIsBudgetApproved。 |
ItemList_ReplaceAll | Boolean | False |
Opportunity テーブルのItemList_ReplaceAll。 |
Job_ExternalId | String | False |
Opportunity テーブルのJob_ExternalId。 |
Job_InternalId | String | False |
Opportunity テーブルのJob_InternalId。 |
Job_Name | String | False |
Opportunity テーブルのJob_Name。 |
Job_Type | String | False |
Opportunity テーブルのJob_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
Opportunity テーブルのLastModifiedDate。 |
LeadSource_ExternalId | String | False |
Opportunity テーブルのLeadSource_ExternalId。 |
LeadSource_InternalId | String | False |
Opportunity テーブルのLeadSource_InternalId。 |
LeadSource_Name | String | False |
Opportunity テーブルのLeadSource_Name。 |
LeadSource_Type | String | False |
Opportunity テーブルのLeadSource_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Location_ExternalId | String | False |
Opportunity テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
Opportunity テーブルのLocation_InternalId。 |
Location_Name | String | False |
Opportunity テーブルのLocation_Name。 |
Location_Type | String | False |
Opportunity テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
Opportunity テーブルのMemo。 |
Partner_ExternalId | String | False |
Opportunity テーブルのPartner_ExternalId。 |
Partner_InternalId | String | False |
Opportunity テーブルのPartner_InternalId。 |
Partner_Name | String | False |
Opportunity テーブルのPartner_Name。 |
Partner_Type | String | False |
Opportunity テーブルのPartner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PartnersList_ReplaceAll | Boolean | False |
Opportunity テーブルのPartnersList_ReplaceAll。 |
Probability | Double | False |
Opportunity テーブルのProbability。 |
ProjAltSalesAmt | Double | False |
Opportunity テーブルのProjAltSalesAmt。 |
ProjectedTotal | Double | False |
Opportunity テーブルのProjectedTotal。 |
RangeHigh | Double | False |
Opportunity テーブルのRangeHigh。 |
RangeLow | Double | False |
Opportunity テーブルのRangeLow。 |
SalesGroup_ExternalId | String | False |
Opportunity テーブルのSalesGroup_ExternalId。 |
SalesGroup_InternalId | String | False |
Opportunity テーブルのSalesGroup_InternalId。 |
SalesGroup_Name | String | False |
Opportunity テーブルのSalesGroup_Name。 |
SalesGroup_Type | String | False |
Opportunity テーブルのSalesGroup_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesReadiness_ExternalId | String | False |
Opportunity テーブルのSalesReadiness_ExternalId。 |
SalesReadiness_InternalId | String | False |
Opportunity テーブルのSalesReadiness_InternalId。 |
SalesReadiness_Name | String | False |
Opportunity テーブルのSalesReadiness_Name。 |
SalesReadiness_Type | String | False |
Opportunity テーブルのSalesReadiness_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesRep_ExternalId | String | False |
Opportunity テーブルのSalesRep_ExternalId。 |
SalesRep_InternalId | String | False |
Opportunity テーブルのSalesRep_InternalId。 |
SalesRep_Name | String | False |
Opportunity テーブルのSalesRep_Name。 |
SalesRep_Type | String | False |
Opportunity テーブルのSalesRep_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesTeamList_ReplaceAll | Boolean | False |
Opportunity テーブルのSalesTeamList_ReplaceAll。 |
ShipAddress | String | False |
Opportunity テーブルのShipAddress。 |
ShipAddressList_ExternalId | String | False |
Opportunity テーブルのShipAddressList_ExternalId。 |
ShipAddressList_InternalId | String | False |
Opportunity テーブルのShipAddressList_InternalId。 |
ShipAddressList_Name | String | False |
Opportunity テーブルのShipAddressList_Name。 |
ShipAddressList_Type | String | False |
Opportunity テーブルのShipAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Source | String | False |
Opportunity テーブルのSource。 |
Status | String | False |
Opportunity テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
Opportunity テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
Opportunity テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
Opportunity テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
Opportunity テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SyncPartnerTeams | Boolean | False |
Opportunity テーブルのSyncPartnerTeams。 |
SyncSalesTeams | Boolean | False |
Opportunity テーブルのSyncSalesTeams。 |
Tax2Total | Double | False |
Opportunity テーブルのTax2Total。 |
TaxTotal | Double | False |
Opportunity テーブルのTaxTotal。 |
Title | String | False |
Opportunity テーブルのTitle。 |
TotalCostEstimate | Double | False |
Opportunity テーブルのTotalCostEstimate。 |
TranDate | Datetime | False |
Opportunity テーブルのTranDate。 |
TranId | String | False |
Opportunity テーブルのTranId。 |
TransactionBillAddress_BillAddr1 | String | False |
Opportunity テーブルのTransactionBillAddress_BillAddr1。 |
TransactionBillAddress_BillAddr2 | String | False |
Opportunity テーブルのTransactionBillAddress_BillAddr2。 |
TransactionBillAddress_BillAddr3 | String | False |
Opportunity テーブルのTransactionBillAddress_BillAddr3。 |
TransactionBillAddress_BillAddressee | String | False |
Opportunity テーブルのTransactionBillAddress_BillAddressee。 |
TransactionBillAddress_BillAttention | String | False |
Opportunity テーブルのTransactionBillAddress_BillAttention。 |
TransactionBillAddress_BillCity | String | False |
Opportunity テーブルのTransactionBillAddress_BillCity。 |
TransactionBillAddress_BillCountry | String | False |
Opportunity テーブルのTransactionBillAddress_BillCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionBillAddress_BillPhone | String | False |
Opportunity テーブルのTransactionBillAddress_BillPhone。 |
TransactionBillAddress_BillState | String | False |
Opportunity テーブルのTransactionBillAddress_BillState。 |
TransactionBillAddress_BillZip | String | False |
Opportunity テーブルのTransactionBillAddress_BillZip。 |
TransactionShipAddress_ShipAddr1 | String | False |
Opportunity テーブルのTransactionShipAddress_ShipAddr1。 |
TransactionShipAddress_ShipAddr2 | String | False |
Opportunity テーブルのTransactionShipAddress_ShipAddr2。 |
TransactionShipAddress_ShipAddr3 | String | False |
Opportunity テーブルのTransactionShipAddress_ShipAddr3。 |
TransactionShipAddress_ShipAddressee | String | False |
Opportunity テーブルのTransactionShipAddress_ShipAddressee。 |
TransactionShipAddress_ShipAttention | String | False |
Opportunity テーブルのTransactionShipAddress_ShipAttention。 |
TransactionShipAddress_ShipCity | String | False |
Opportunity テーブルのTransactionShipAddress_ShipCity。 |
TransactionShipAddress_ShipCountry | String | False |
Opportunity テーブルのTransactionShipAddress_ShipCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionShipAddress_ShipIsResidential | Boolean | False |
Opportunity テーブルのTransactionShipAddress_ShipIsResidential。 |
TransactionShipAddress_ShipPhone | String | False |
Opportunity テーブルのTransactionShipAddress_ShipPhone。 |
TransactionShipAddress_ShipState | String | False |
Opportunity テーブルのTransactionShipAddress_ShipState。 |
TransactionShipAddress_ShipZip | String | False |
Opportunity テーブルのTransactionShipAddress_ShipZip。 |
VatRegNum | String | False |
Opportunity テーブルのVatRegNum。 |
WeightedTotal | Double | False |
Opportunity テーブルのWeightedTotal。 |
WinLossReason_ExternalId | String | False |
Opportunity テーブルのWinLossReason_ExternalId。 |
WinLossReason_InternalId | String | False |
Opportunity テーブルのWinLossReason_InternalId。 |
WinLossReason_Name | String | False |
Opportunity テーブルのWinLossReason_Name。 |
WinLossReason_Type | String | False |
Opportunity テーブルのWinLossReason_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のOtherNameCategory テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
OtherNameCategory テーブルのInternalId。 |
ExternalId | String | False |
OtherNameCategory テーブルのExternalId。 |
IsInactive | Boolean | False |
OtherNameCategory テーブルのIsInactive。 |
Name | String | False |
OtherNameCategory テーブルのName。 |
NetSuite のPartner テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Partner テーブルのInternalId。 |
AccessRole_ExternalId | String | False |
Partner テーブルのAccessRole_ExternalId。 |
AccessRole_InternalId | String | False |
Partner テーブルのAccessRole_InternalId。 |
AccessRole_Name | String | False |
Partner テーブルのAccessRole_Name。 |
AccessRole_Type | String | False |
Partner テーブルのAccessRole_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
AddressbookList_ReplaceAll | Boolean | False |
Partner テーブルのAddressbookList_ReplaceAll。 |
AltEmail | String | False |
Partner テーブルのAltEmail。 |
AltName | String | False |
Partner テーブルのAltName。 |
Bcn | String | False |
Partner テーブルのBcn。 |
Class_ExternalId | String | False |
Partner テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
Partner テーブルのClass_InternalId。 |
Class_Name | String | False |
Partner テーブルのClass_Name。 |
Class_Type | String | False |
Partner テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Comments | String | False |
Partner テーブルのComments。 |
CompanyName | String | False |
Partner テーブルのCompanyName。 |
ContactRolesList_ReplaceAll | Boolean | False |
Partner テーブルのContactRolesList_ReplaceAll。 |
CustomForm_ExternalId | String | False |
Partner テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Partner テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Partner テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Partner テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DateCreated | Datetime | False |
Partner テーブルのDateCreated。 |
DefaultAddress | String | False |
Partner テーブルのDefaultAddress。 |
Department_ExternalId | String | False |
Partner テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
Partner テーブルのDepartment_InternalId。 |
Department_Name | String | False |
Partner テーブルのDepartment_Name。 |
Department_Type | String | False |
Partner テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EligibleForCommission | Boolean | False |
Partner テーブルのEligibleForCommission。 |
String | False |
Partner テーブルのEmail。 | |
EmailPreference | String | False |
Partner テーブルのEmailPreference。 The allowed values are _default, _hTML, _pDF. |
EntityId | String | False |
Partner テーブルのEntityId。 |
ExternalId | String | False |
Partner テーブルのExternalId。 |
Fax | String | False |
Partner テーブルのFax。 |
FirstName | String | False |
Partner テーブルのFirstName。 |
GiveAccess | Boolean | False |
Partner テーブルのGiveAccess。 |
GlobalSubscriptionStatus | String | False |
Partner テーブルのGlobalSubscriptionStatus。 The allowed values are _confirmedOptIn, _confirmedOptOut, _softOptIn, _softOptOut. |
HomePhone | String | False |
Partner テーブルのHomePhone。 |
Image_ExternalId | String | False |
Partner テーブルのImage_ExternalId。 |
Image_InternalId | String | False |
Partner テーブルのImage_InternalId。 |
Image_Name | String | False |
Partner テーブルのImage_Name。 |
Image_Type | String | False |
Partner テーブルのImage_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsInactive | Boolean | False |
Partner テーブルのIsInactive。 |
IsPerson | Boolean | False |
Partner テーブルのIsPerson。 |
LastModifiedDate | Datetime | False |
Partner テーブルのLastModifiedDate。 |
LastName | String | False |
Partner テーブルのLastName。 |
Location_ExternalId | String | False |
Partner テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
Partner テーブルのLocation_InternalId。 |
Location_Name | String | False |
Partner テーブルのLocation_Name。 |
Location_Type | String | False |
Partner テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LoginAs | String | False |
Partner テーブルのLoginAs。 |
MiddleName | String | False |
Partner テーブルのMiddleName。 |
MobilePhone | String | False |
Partner テーブルのMobilePhone。 |
Parent_ExternalId | String | False |
Partner テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
Partner テーブルのParent_InternalId。 |
Parent_Name | String | False |
Partner テーブルのParent_Name。 |
Parent_Type | String | False |
Partner テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PartnerCode | String | False |
Partner テーブルのPartnerCode。 |
Password | String | False |
Partner テーブルのPassword。 |
Password2 | String | False |
Partner テーブルのPassword2。 |
Phone | String | False |
Partner テーブルのPhone。 |
PhoneticName | String | False |
Partner テーブルのPhoneticName。 |
PrintOnCheckAs | String | False |
Partner テーブルのPrintOnCheckAs。 |
PromoCodeList_ReplaceAll | Boolean | False |
Partner テーブルのPromoCodeList_ReplaceAll。 |
ReferringUrl | String | False |
Partner テーブルのReferringUrl。 |
RequirePwdChange | Boolean | False |
Partner テーブルのRequirePwdChange。 |
Salutation | String | False |
Partner テーブルのSalutation。 |
SendEmail | Boolean | False |
Partner テーブルのSendEmail。 |
SubPartnerLogin | Boolean | False |
Partner テーブルのSubPartnerLogin。 |
SubscriptionsList_ReplaceAll | Boolean | False |
Partner テーブルのSubscriptionsList_ReplaceAll。 |
Subsidiary_ExternalId | String | False |
Partner テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
Partner テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
Partner テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
Partner テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxFractionUnit | String | False |
Partner テーブルのTaxFractionUnit。 The allowed values are _001andBelow, _01andBelow, _100andBelow, _10andBelow, _1andBelow. |
TaxIdNum | String | False |
Partner テーブルのTaxIdNum。 |
TaxRounding | String | False |
Partner テーブルのTaxRounding。 The allowed values are _roundDown, _roundOff, _roundUp. |
Title | String | False |
Partner テーブルのTitle。 |
Url | String | False |
Partner テーブルのUrl。 |
VatRegNumber | String | False |
Partner テーブルのVatRegNumber。 |
NetSuite のPartnerCategory テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
PartnerCategory テーブルのInternalId。 |
ExternalId | String | False |
PartnerCategory テーブルのExternalId。 |
IsInactive | Boolean | False |
PartnerCategory テーブルのIsInactive。 |
Name | String | False |
PartnerCategory テーブルのName。 |
Parent_ExternalId | String | False |
PartnerCategory テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
PartnerCategory テーブルのParent_InternalId。 |
Parent_Name | String | False |
PartnerCategory テーブルのParent_Name。 |
Parent_Type | String | False |
PartnerCategory テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のPaycheckJournal テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
PaycheckJournal テーブルのInternalId。 |
Account_ExternalId | String | False |
PaycheckJournal テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
PaycheckJournal テーブルのAccount_InternalId。 |
Account_Name | String | False |
PaycheckJournal テーブルのAccount_Name。 |
Account_Type | String | False |
PaycheckJournal テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Class_ExternalId | String | False |
PaycheckJournal テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
PaycheckJournal テーブルのClass_InternalId。 |
Class_Name | String | False |
PaycheckJournal テーブルのClass_Name。 |
Class_Type | String | False |
PaycheckJournal テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CompanyContributionList_ReplaceAll | Boolean | False |
PaycheckJournal テーブルのCompanyContributionList_ReplaceAll。 |
CompanyTaxList_ReplaceAll | Boolean | False |
PaycheckJournal テーブルのCompanyTaxList_ReplaceAll。 |
CreatedDate | Datetime | False |
PaycheckJournal テーブルのCreatedDate。 |
Currency_ExternalId | String | False |
PaycheckJournal テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
PaycheckJournal テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
PaycheckJournal テーブルのCurrency_Name。 |
Currency_Type | String | False |
PaycheckJournal テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
PaycheckJournal テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
PaycheckJournal テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
PaycheckJournal テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
PaycheckJournal テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DeductionList_ReplaceAll | Boolean | False |
PaycheckJournal テーブルのDeductionList_ReplaceAll。 |
Department_ExternalId | String | False |
PaycheckJournal テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
PaycheckJournal テーブルのDepartment_InternalId。 |
Department_Name | String | False |
PaycheckJournal テーブルのDepartment_Name。 |
Department_Type | String | False |
PaycheckJournal テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EarningList_ReplaceAll | Boolean | False |
PaycheckJournal テーブルのEarningList_ReplaceAll。 |
Employee_ExternalId | String | False |
PaycheckJournal テーブルのEmployee_ExternalId。 |
Employee_InternalId | String | False |
PaycheckJournal テーブルのEmployee_InternalId。 |
Employee_Name | String | False |
PaycheckJournal テーブルのEmployee_Name。 |
Employee_Type | String | False |
PaycheckJournal テーブルのEmployee_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EmployeeTaxList_ReplaceAll | Boolean | False |
PaycheckJournal テーブルのEmployeeTaxList_ReplaceAll。 |
ExchangeRate | Double | False |
PaycheckJournal テーブルのExchangeRate。 |
ExternalId | String | False |
PaycheckJournal テーブルのExternalId。 |
LastModifiedDate | Datetime | False |
PaycheckJournal テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
PaycheckJournal テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
PaycheckJournal テーブルのLocation_InternalId。 |
Location_Name | String | False |
PaycheckJournal テーブルのLocation_Name。 |
Location_Type | String | False |
PaycheckJournal テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PostingPeriod_ExternalId | String | False |
PaycheckJournal テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
PaycheckJournal テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
PaycheckJournal テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
PaycheckJournal テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Subsidiary_ExternalId | String | False |
PaycheckJournal テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
PaycheckJournal テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
PaycheckJournal テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
PaycheckJournal テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranDate | Datetime | False |
PaycheckJournal テーブルのTranDate。 |
NetSuite のPaymentMethod テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
PaymentMethod テーブルのInternalId。 |
Account_ExternalId | String | False |
PaymentMethod テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
PaymentMethod テーブルのAccount_InternalId。 |
Account_Name | String | False |
PaymentMethod テーブルのAccount_Name。 |
Account_Type | String | False |
PaymentMethod テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditCard | Boolean | False |
PaymentMethod テーブルのCreditCard。 |
ExpressCheckoutArrangement | String | False |
PaymentMethod テーブルのExpressCheckoutArrangement。 |
ExternalId | String | False |
PaymentMethod テーブルのExternalId。 |
IsDebitCard | Boolean | False |
PaymentMethod テーブルのIsDebitCard。 |
IsInactive | Boolean | False |
PaymentMethod テーブルのIsInactive。 |
IsOnline | Boolean | False |
PaymentMethod テーブルのIsOnline。 |
Name | String | False |
PaymentMethod テーブルのName。 |
PayPalEmailAddress | String | False |
PaymentMethod テーブルのPayPalEmailAddress。 |
UndepFunds | Boolean | False |
PaymentMethod テーブルのUndepFunds。 |
UseExpressCheckout | Boolean | False |
PaymentMethod テーブルのUseExpressCheckout。 |
NetSuite のPhoneCall テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
PhoneCall テーブルのInternalId。 |
AccessLevel | Boolean | False |
PhoneCall テーブルのAccessLevel。 |
Assigned_ExternalId | String | False |
PhoneCall テーブルのAssigned_ExternalId。 |
Assigned_InternalId | String | False |
PhoneCall テーブルのAssigned_InternalId。 |
Assigned_Name | String | False |
PhoneCall テーブルのAssigned_Name。 |
Assigned_Type | String | False |
PhoneCall テーブルのAssigned_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Company_ExternalId | String | False |
PhoneCall テーブルのCompany_ExternalId。 |
Company_InternalId | String | False |
PhoneCall テーブルのCompany_InternalId。 |
Company_Name | String | False |
PhoneCall テーブルのCompany_Name。 |
Company_Type | String | False |
PhoneCall テーブルのCompany_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CompletedDate | Datetime | False |
PhoneCall テーブルのCompletedDate。 |
Contact_ExternalId | String | False |
PhoneCall テーブルのContact_ExternalId。 |
Contact_InternalId | String | False |
PhoneCall テーブルのContact_InternalId。 |
Contact_Name | String | False |
PhoneCall テーブルのContact_Name。 |
Contact_Type | String | False |
PhoneCall テーブルのContact_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ContactList_ReplaceAll | Boolean | False |
PhoneCall テーブルのContactList_ReplaceAll。 |
CreatedDate | Datetime | False |
PhoneCall テーブルのCreatedDate。 |
CustomForm_ExternalId | String | False |
PhoneCall テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
PhoneCall テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
PhoneCall テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
PhoneCall テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EndDate | Datetime | False |
PhoneCall テーブルのEndDate。 |
ExternalId | String | False |
PhoneCall テーブルのExternalId。 |
LastModifiedDate | Datetime | False |
PhoneCall テーブルのLastModifiedDate。 |
Message | String | False |
PhoneCall テーブルのMessage。 |
Milestone_ExternalId | String | False |
PhoneCall テーブルのMilestone_ExternalId。 |
Milestone_InternalId | String | False |
PhoneCall テーブルのMilestone_InternalId。 |
Milestone_Name | String | False |
PhoneCall テーブルのMilestone_Name。 |
Milestone_Type | String | False |
PhoneCall テーブルのMilestone_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Owner_ExternalId | String | False |
PhoneCall テーブルのOwner_ExternalId。 |
Owner_InternalId | String | False |
PhoneCall テーブルのOwner_InternalId。 |
Owner_Name | String | False |
PhoneCall テーブルのOwner_Name。 |
Owner_Type | String | False |
PhoneCall テーブルのOwner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Phone | String | False |
PhoneCall テーブルのPhone。 |
Priority | String | False |
PhoneCall テーブルのPriority。 The allowed values are _high, _low, _medium. |
ReminderMinutes | String | False |
PhoneCall テーブルのReminderMinutes。 The allowed values are _0minutes, _10minutes, _12hours, _15minutes, _1day, _1hour, _1week, _2days, _2hours, _30minutes, _3days, _3hours, _4hours, _5hours, _5minutes, _8hours. |
ReminderType | String | False |
PhoneCall テーブルのReminderType。 The allowed values are _eMail, _popupWindow. |
SendEmail | Boolean | False |
PhoneCall テーブルのSendEmail。 |
StartDate | Datetime | False |
PhoneCall テーブルのStartDate。 |
Status | String | False |
PhoneCall テーブルのStatus。 The allowed values are _completed, _scheduled. |
SupportCase_ExternalId | String | False |
PhoneCall テーブルのSupportCase_ExternalId。 |
SupportCase_InternalId | String | False |
PhoneCall テーブルのSupportCase_InternalId。 |
SupportCase_Name | String | False |
PhoneCall テーブルのSupportCase_Name。 |
SupportCase_Type | String | False |
PhoneCall テーブルのSupportCase_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TimedEvent | Boolean | False |
PhoneCall テーブルのTimedEvent。 |
TimeItemList_ReplaceAll | Boolean | False |
PhoneCall テーブルのTimeItemList_ReplaceAll。 |
Title | String | False |
PhoneCall テーブルのTitle。 |
Transaction_ExternalId | String | False |
PhoneCall テーブルのTransaction_ExternalId。 |
Transaction_InternalId | String | False |
PhoneCall テーブルのTransaction_InternalId。 |
Transaction_Name | String | False |
PhoneCall テーブルのTransaction_Name。 |
Transaction_Type | String | False |
PhoneCall テーブルのTransaction_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のPriceLevel テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
PriceLevel テーブルのInternalId。 |
Discountpct | Double | False |
PriceLevel テーブルのDiscountpct。 |
ExternalId | String | False |
PriceLevel テーブルのExternalId。 |
IsInactive | Boolean | False |
PriceLevel テーブルのIsInactive。 |
IsOnline | Boolean | False |
PriceLevel テーブルのIsOnline。 |
Name | String | False |
PriceLevel テーブルのName。 |
UpdateExistingPrices | Boolean | False |
PriceLevel テーブルのUpdateExistingPrices。 |
NetSuite のPricingGroup テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
PricingGroup テーブルのInternalId。 |
ExternalId | String | False |
PricingGroup テーブルのExternalId。 |
IsInactive | Boolean | False |
PricingGroup テーブルのIsInactive。 |
Name | String | False |
PricingGroup テーブルのName。 |
NetSuite のProjectTask テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
ProjectTask テーブルのInternalId。 |
ActualWork | Double | False |
ProjectTask テーブルのActualWork。 |
AssigneeList_ReplaceAll | Boolean | False |
ProjectTask テーブルのAssigneeList_ReplaceAll。 |
Company_ExternalId | String | False |
ProjectTask テーブルのCompany_ExternalId。 |
Company_InternalId | String | False |
ProjectTask テーブルのCompany_InternalId。 |
Company_Name | String | False |
ProjectTask テーブルのCompany_Name。 |
Company_Type | String | False |
ProjectTask テーブルのCompany_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ConstraintType | String | False |
ProjectTask テーブルのConstraintType。 The allowed values are _asSoonAsPossible, _fixedStart. |
Contact_ExternalId | String | False |
ProjectTask テーブルのContact_ExternalId。 |
Contact_InternalId | String | False |
ProjectTask テーブルのContact_InternalId。 |
Contact_Name | String | False |
ProjectTask テーブルのContact_Name。 |
Contact_Type | String | False |
ProjectTask テーブルのContact_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
ProjectTask テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
ProjectTask テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
ProjectTask テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
ProjectTask テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EndDate | Datetime | False |
ProjectTask テーブルのEndDate。 |
EndDateBaseline | Datetime | False |
ProjectTask テーブルのEndDateBaseline。 |
EstimatedWork | Double | False |
ProjectTask テーブルのEstimatedWork。 |
EstimatedWorkBaseline | Double | False |
ProjectTask テーブルのEstimatedWorkBaseline。 |
EventId_ExternalId | String | False |
ProjectTask テーブルのEventId_ExternalId。 |
EventId_InternalId | String | False |
ProjectTask テーブルのEventId_InternalId。 |
EventId_Name | String | False |
ProjectTask テーブルのEventId_Name。 |
EventId_Type | String | False |
ProjectTask テーブルのEventId_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
ProjectTask テーブルのExternalId。 |
Message | String | False |
ProjectTask テーブルのMessage。 |
Order_ExternalId | String | False |
ProjectTask テーブルのOrder_ExternalId。 |
Order_InternalId | String | False |
ProjectTask テーブルのOrder_InternalId。 |
Order_Name | String | False |
ProjectTask テーブルのOrder_Name。 |
Order_Type | String | False |
ProjectTask テーブルのOrder_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Owner_ExternalId | String | False |
ProjectTask テーブルのOwner_ExternalId。 |
Owner_InternalId | String | False |
ProjectTask テーブルのOwner_InternalId。 |
Owner_Name | String | False |
ProjectTask テーブルのOwner_Name。 |
Owner_Type | String | False |
ProjectTask テーブルのOwner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Parent_ExternalId | String | False |
ProjectTask テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
ProjectTask テーブルのParent_InternalId。 |
Parent_Name | String | False |
ProjectTask テーブルのParent_Name。 |
Parent_Type | String | False |
ProjectTask テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PercentTimeComplete | Double | False |
ProjectTask テーブルのPercentTimeComplete。 |
PredecessorList_ReplaceAll | Boolean | False |
ProjectTask テーブルのPredecessorList_ReplaceAll。 |
Priority_ExternalId | String | False |
ProjectTask テーブルのPriority_ExternalId。 |
Priority_InternalId | String | False |
ProjectTask テーブルのPriority_InternalId。 |
Priority_Name | String | False |
ProjectTask テーブルのPriority_Name。 |
Priority_Type | String | False |
ProjectTask テーブルのPriority_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RemainingWork | Double | False |
ProjectTask テーブルのRemainingWork。 |
StartDate | Datetime | False |
ProjectTask テーブルのStartDate。 |
StartDateBaseline | Datetime | False |
ProjectTask テーブルのStartDateBaseline。 |
Status | String | False |
ProjectTask テーブルのStatus。 The allowed values are _completed, _inProgress, _notStarted. |
TimeItemList_ReplaceAll | Boolean | False |
ProjectTask テーブルのTimeItemList_ReplaceAll。 |
Title | String | False |
ProjectTask テーブルのTitle。 |
NetSuite のPromotionCode テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
PromotionCode テーブルのInternalId。 |
ApplyDiscountTo | String | False |
PromotionCode テーブルのApplyDiscountTo。 The allowed values are _allSales, _firstSaleOnly. |
Code | String | False |
PromotionCode テーブルのCode。 |
CodePattern | String | False |
PromotionCode テーブルのCodePattern。 |
CurrencyList_ReplaceAll | Boolean | False |
PromotionCode テーブルのCurrencyList_ReplaceAll。 |
CustomForm_ExternalId | String | False |
PromotionCode テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
PromotionCode テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
PromotionCode テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
PromotionCode テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Description | String | False |
PromotionCode テーブルのDescription。 |
Discount_ExternalId | String | False |
PromotionCode テーブルのDiscount_ExternalId。 |
Discount_InternalId | String | False |
PromotionCode テーブルのDiscount_InternalId。 |
Discount_Name | String | False |
PromotionCode テーブルのDiscount_Name。 |
Discount_Type | String | False |
PromotionCode テーブルのDiscount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountType | Boolean | False |
PromotionCode テーブルのDiscountType。 |
DisplayLineDiscounts | Boolean | False |
PromotionCode テーブルのDisplayLineDiscounts。 |
EndDate | Datetime | False |
PromotionCode テーブルのEndDate。 |
ExcludeItems | Boolean | False |
PromotionCode テーブルのExcludeItems。 |
ExternalId | String | False |
PromotionCode テーブルのExternalId。 |
FreeShipMethod_ExternalId | String | False |
PromotionCode テーブルのFreeShipMethod_ExternalId。 |
FreeShipMethod_InternalId | String | False |
PromotionCode テーブルのFreeShipMethod_InternalId。 |
FreeShipMethod_Name | String | False |
PromotionCode テーブルのFreeShipMethod_Name。 |
FreeShipMethod_Type | String | False |
PromotionCode テーブルのFreeShipMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Implementation_ExternalId | String | False |
PromotionCode テーブルのImplementation_ExternalId。 |
Implementation_InternalId | String | False |
PromotionCode テーブルのImplementation_InternalId。 |
Implementation_Name | String | False |
PromotionCode テーブルのImplementation_Name。 |
Implementation_Type | String | False |
PromotionCode テーブルのImplementation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsInactive | Boolean | False |
PromotionCode テーブルのIsInactive。 |
IsPublic | Boolean | False |
PromotionCode テーブルのIsPublic。 |
ItemsList_ReplaceAll | Boolean | False |
PromotionCode テーブルのItemsList_ReplaceAll。 |
MinimumOrderAmount | Double | False |
PromotionCode テーブルのMinimumOrderAmount。 |
Name | String | False |
PromotionCode テーブルのName。 |
NumberToGenerate | Long | False |
PromotionCode テーブルのNumberToGenerate。 |
PartnersList_ReplaceAll | Boolean | False |
PromotionCode テーブルのPartnersList_ReplaceAll。 |
Rate | String | False |
PromotionCode テーブルのRate。 |
StartDate | Datetime | False |
PromotionCode テーブルのStartDate。 |
UseType | String | False |
PromotionCode テーブルのUseType。 The allowed values are _multipleUses, _singleUse. |
NetSuite のPurchaseOrder テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
PurchaseOrder テーブルのInternalId。 |
ApprovalStatus_ExternalId | String | False |
PurchaseOrder テーブルのApprovalStatus_ExternalId。 |
ApprovalStatus_InternalId | String | False |
PurchaseOrder テーブルのApprovalStatus_InternalId。 |
ApprovalStatus_Name | String | False |
PurchaseOrder テーブルのApprovalStatus_Name。 |
ApprovalStatus_Type | String | False |
PurchaseOrder テーブルのApprovalStatus_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BillAddress | String | False |
PurchaseOrder テーブルのBillAddress。 |
BillAddressList_ExternalId | String | False |
PurchaseOrder テーブルのBillAddressList_ExternalId。 |
BillAddressList_InternalId | String | False |
PurchaseOrder テーブルのBillAddressList_InternalId。 |
BillAddressList_Name | String | False |
PurchaseOrder テーブルのBillAddressList_Name。 |
BillAddressList_Type | String | False |
PurchaseOrder テーブルのBillAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Class_ExternalId | String | False |
PurchaseOrder テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
PurchaseOrder テーブルのClass_InternalId。 |
Class_Name | String | False |
PurchaseOrder テーブルのClass_Name。 |
Class_Type | String | False |
PurchaseOrder テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
PurchaseOrder テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
PurchaseOrder テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
PurchaseOrder テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
PurchaseOrder テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
PurchaseOrder テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
PurchaseOrder テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
PurchaseOrder テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
PurchaseOrder テーブルのCurrency_Name。 |
Currency_Type | String | False |
PurchaseOrder テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
PurchaseOrder テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
PurchaseOrder テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
PurchaseOrder テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
PurchaseOrder テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
PurchaseOrder テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
PurchaseOrder テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
PurchaseOrder テーブルのDepartment_InternalId。 |
Department_Name | String | False |
PurchaseOrder テーブルのDepartment_Name。 |
Department_Type | String | False |
PurchaseOrder テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DueDate | Datetime | False |
PurchaseOrder テーブルのDueDate。 |
String | False |
PurchaseOrder テーブルのEmail。 | |
Employee_ExternalId | String | False |
PurchaseOrder テーブルのEmployee_ExternalId。 |
Employee_InternalId | String | False |
PurchaseOrder テーブルのEmployee_InternalId。 |
Employee_Name | String | False |
PurchaseOrder テーブルのEmployee_Name。 |
Employee_Type | String | False |
PurchaseOrder テーブルのEmployee_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Entity_ExternalId | String | False |
PurchaseOrder テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
PurchaseOrder テーブルのEntity_InternalId。 |
Entity_Name | String | False |
PurchaseOrder テーブルのEntity_Name。 |
Entity_Type | String | False |
PurchaseOrder テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExchangeRate | Double | False |
PurchaseOrder テーブルのExchangeRate。 |
ExpenseList_ReplaceAll | Boolean | False |
PurchaseOrder テーブルのExpenseList_ReplaceAll。 |
ExternalId | String | False |
PurchaseOrder テーブルのExternalId。 |
Fax | String | False |
PurchaseOrder テーブルのFax。 |
Fob | String | False |
PurchaseOrder テーブルのFob。 |
IntercoStatus | String | False |
PurchaseOrder テーブルのIntercoStatus。 The allowed values are _paired, _pending, _rejected. |
IntercoTransaction_ExternalId | String | False |
PurchaseOrder テーブルのIntercoTransaction_ExternalId。 |
IntercoTransaction_InternalId | String | False |
PurchaseOrder テーブルのIntercoTransaction_InternalId。 |
IntercoTransaction_Name | String | False |
PurchaseOrder テーブルのIntercoTransaction_Name。 |
IntercoTransaction_Type | String | False |
PurchaseOrder テーブルのIntercoTransaction_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ItemList_ReplaceAll | Boolean | False |
PurchaseOrder テーブルのItemList_ReplaceAll。 |
LastModifiedDate | Datetime | False |
PurchaseOrder テーブルのLastModifiedDate。 |
LinkedTrackingNumbers | String | False |
PurchaseOrder テーブルのLinkedTrackingNumbers。 |
Location_ExternalId | String | False |
PurchaseOrder テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
PurchaseOrder テーブルのLocation_InternalId。 |
Location_Name | String | False |
PurchaseOrder テーブルのLocation_Name。 |
Location_Type | String | False |
PurchaseOrder テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
PurchaseOrder テーブルのMemo。 |
Message | String | False |
PurchaseOrder テーブルのMessage。 |
NextApprover_ExternalId | String | False |
PurchaseOrder テーブルのNextApprover_ExternalId。 |
NextApprover_InternalId | String | False |
PurchaseOrder テーブルのNextApprover_InternalId。 |
NextApprover_Name | String | False |
PurchaseOrder テーブルのNextApprover_Name。 |
NextApprover_Type | String | False |
PurchaseOrder テーブルのNextApprover_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OrderStatus | String | False |
PurchaseOrder テーブルのOrderStatus。 The allowed values are _closed, _fullyBilled, _partiallyReceived, _pendingBillingPartiallyReceived, _pendingBilling, _pendingReceipt, _pendingSupervisorApproval, _rejectedBySupervisor. |
OtherRefNum | String | False |
RefNum of the PurchaseOrder テーブルのOtherRefNum。 |
ShipAddress | String | False |
PurchaseOrder テーブルのShipAddress。 |
ShipAddressList_ExternalId | String | False |
PurchaseOrder テーブルのShipAddressList_ExternalId。 |
ShipAddressList_InternalId | String | False |
PurchaseOrder テーブルのShipAddressList_InternalId。 |
ShipAddressList_Name | String | False |
PurchaseOrder テーブルのShipAddressList_Name。 |
ShipAddressList_Type | String | False |
PurchaseOrder テーブルのShipAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShipDate | Datetime | False |
PurchaseOrder テーブルのShipDate。 |
ShipMethod_ExternalId | String | False |
PurchaseOrder テーブルのShipMethod_ExternalId。 |
ShipMethod_InternalId | String | False |
PurchaseOrder テーブルのShipMethod_InternalId。 |
ShipMethod_Name | String | False |
PurchaseOrder テーブルのShipMethod_Name。 |
ShipMethod_Type | String | False |
PurchaseOrder テーブルのShipMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShipTo_ExternalId | String | False |
PurchaseOrder テーブルのShipTo_ExternalId。 |
ShipTo_InternalId | String | False |
PurchaseOrder テーブルのShipTo_InternalId。 |
ShipTo_Name | String | False |
PurchaseOrder テーブルのShipTo_Name。 |
ShipTo_Type | String | False |
PurchaseOrder テーブルのShipTo_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Source | String | False |
PurchaseOrder テーブルのSource。 |
Status | String | False |
PurchaseOrder テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
PurchaseOrder テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
PurchaseOrder テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
PurchaseOrder テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
PurchaseOrder テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SubTotal | Double | False |
PurchaseOrder テーブルのSubTotal。 |
SupervisorApproval | Boolean | False |
PurchaseOrder テーブルのSupervisorApproval。 |
Tax2Total | Double | False |
PurchaseOrder テーブルのTax2Total。 |
TaxTotal | Double | False |
PurchaseOrder テーブルのTaxTotal。 |
Terms_ExternalId | String | False |
PurchaseOrder テーブルのTerms_ExternalId。 |
Terms_InternalId | String | False |
PurchaseOrder テーブルのTerms_InternalId。 |
Terms_Name | String | False |
PurchaseOrder テーブルのTerms_Name。 |
Terms_Type | String | False |
PurchaseOrder テーブルのTerms_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ToBeEmailed | Boolean | False |
PurchaseOrder テーブルのToBeEmailed。 |
ToBeFaxed | Boolean | False |
PurchaseOrder テーブルのToBeFaxed。 |
ToBePrinted | Boolean | False |
PurchaseOrder テーブルのToBePrinted。 |
Total | Double | False |
PurchaseOrder テーブルのTotal。 |
TrackingNumbers | String | False |
PurchaseOrder テーブルのTrackingNumbers。 |
TranDate | Datetime | False |
PurchaseOrder テーブルのTranDate。 |
TranId | String | False |
PurchaseOrder テーブルのTranId。 |
TransactionBillAddress_BillAddr1 | String | False |
PurchaseOrder テーブルのTransactionBillAddress_BillAddr1。 |
TransactionBillAddress_BillAddr2 | String | False |
PurchaseOrder テーブルのTransactionBillAddress_BillAddr2。 |
TransactionBillAddress_BillAddr3 | String | False |
PurchaseOrder テーブルのTransactionBillAddress_BillAddr3。 |
TransactionBillAddress_BillAddressee | String | False |
PurchaseOrder テーブルのTransactionBillAddress_BillAddressee。 |
TransactionBillAddress_BillAttention | String | False |
PurchaseOrder テーブルのTransactionBillAddress_BillAttention。 |
TransactionBillAddress_BillCity | String | False |
PurchaseOrder テーブルのTransactionBillAddress_BillCity。 |
TransactionBillAddress_BillCountry | String | False |
PurchaseOrder テーブルのTransactionBillAddress_BillCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionBillAddress_BillPhone | String | False |
PurchaseOrder テーブルのTransactionBillAddress_BillPhone。 |
TransactionBillAddress_BillState | String | False |
PurchaseOrder テーブルのTransactionBillAddress_BillState。 |
TransactionBillAddress_BillZip | String | False |
PurchaseOrder テーブルのTransactionBillAddress_BillZip。 |
TransactionShipAddress_ShipAddr1 | String | False |
PurchaseOrder テーブルのTransactionShipAddress_ShipAddr1。 |
TransactionShipAddress_ShipAddr2 | String | False |
PurchaseOrder テーブルのTransactionShipAddress_ShipAddr2。 |
TransactionShipAddress_ShipAddr3 | String | False |
PurchaseOrder テーブルのTransactionShipAddress_ShipAddr3。 |
TransactionShipAddress_ShipAddressee | String | False |
PurchaseOrder テーブルのTransactionShipAddress_ShipAddressee。 |
TransactionShipAddress_ShipAttention | String | False |
PurchaseOrder テーブルのTransactionShipAddress_ShipAttention。 |
TransactionShipAddress_ShipCity | String | False |
PurchaseOrder テーブルのTransactionShipAddress_ShipCity。 |
TransactionShipAddress_ShipCountry | String | False |
PurchaseOrder テーブルのTransactionShipAddress_ShipCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionShipAddress_ShipIsResidential | Boolean | False |
PurchaseOrder テーブルのTransactionShipAddress_ShipIsResidential。 |
TransactionShipAddress_ShipPhone | String | False |
PurchaseOrder テーブルのTransactionShipAddress_ShipPhone。 |
TransactionShipAddress_ShipState | String | False |
PurchaseOrder テーブルのTransactionShipAddress_ShipState。 |
TransactionShipAddress_ShipZip | String | False |
PurchaseOrder テーブルのTransactionShipAddress_ShipZip。 |
VatRegNum | String | False |
PurchaseOrder テーブルのVatRegNum。 |
NetSuite のReturnAuthorization テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
ReturnAuthorization テーブルのInternalId。 |
AltSalesTotal | Double | False |
ReturnAuthorization テーブルのAltSalesTotal。 |
BillAddress | String | False |
ReturnAuthorization テーブルのBillAddress。 |
BillAddressList_ExternalId | String | False |
ReturnAuthorization テーブルのBillAddressList_ExternalId。 |
BillAddressList_InternalId | String | False |
ReturnAuthorization テーブルのBillAddressList_InternalId。 |
BillAddressList_Name | String | False |
ReturnAuthorization テーブルのBillAddressList_Name。 |
BillAddressList_Type | String | False |
ReturnAuthorization テーブルのBillAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CcApproved | Boolean | False |
ReturnAuthorization テーブルのCcApproved。 |
CcExpireDate | Datetime | False |
ReturnAuthorization テーブルのCcExpireDate。 |
CcName | String | False |
ReturnAuthorization テーブルのCcName。 |
CcNumber | String | False |
ReturnAuthorization テーブルのCcNumber。 |
CcStreet | String | False |
ReturnAuthorization テーブルのCcStreet。 |
CcZipCode | String | False |
ReturnAuthorization テーブルのCcZipCode。 |
Class_ExternalId | String | False |
ReturnAuthorization テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
ReturnAuthorization テーブルのClass_InternalId。 |
Class_Name | String | False |
ReturnAuthorization テーブルのClass_Name。 |
Class_Type | String | False |
ReturnAuthorization テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ContribPct | String | False |
ReturnAuthorization テーブルのContribPct。 |
CreatedDate | Datetime | False |
ReturnAuthorization テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
ReturnAuthorization テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
ReturnAuthorization テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
ReturnAuthorization テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
ReturnAuthorization テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditCard_ExternalId | String | False |
ReturnAuthorization テーブルのCreditCard_ExternalId。 |
CreditCard_InternalId | String | False |
ReturnAuthorization テーブルのCreditCard_InternalId。 |
CreditCard_Name | String | False |
ReturnAuthorization テーブルのCreditCard_Name。 |
CreditCard_Type | String | False |
ReturnAuthorization テーブルのCreditCard_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditCardProcessor_ExternalId | String | False |
ReturnAuthorization テーブルのCreditCardProcessor_ExternalId。 |
CreditCardProcessor_InternalId | String | False |
ReturnAuthorization テーブルのCreditCardProcessor_InternalId。 |
CreditCardProcessor_Name | String | False |
ReturnAuthorization テーブルのCreditCardProcessor_Name。 |
CreditCardProcessor_Type | String | False |
ReturnAuthorization テーブルのCreditCardProcessor_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
ReturnAuthorization テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
ReturnAuthorization テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
ReturnAuthorization テーブルのCurrency_Name。 |
Currency_Type | String | False |
ReturnAuthorization テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
ReturnAuthorization テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
ReturnAuthorization テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
ReturnAuthorization テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
ReturnAuthorization テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
ReturnAuthorization テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DebitCardIssueNo | String | False |
ReturnAuthorization テーブルのDebitCardIssueNo。 |
DeferredRevenue | Double | False |
ReturnAuthorization テーブルのDeferredRevenue。 |
Department_ExternalId | String | False |
ReturnAuthorization テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
ReturnAuthorization テーブルのDepartment_InternalId。 |
Department_Name | String | False |
ReturnAuthorization テーブルのDepartment_Name。 |
Department_Type | String | False |
ReturnAuthorization テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountItem_ExternalId | String | False |
ReturnAuthorization テーブルのDiscountItem_ExternalId。 |
DiscountItem_InternalId | String | False |
ReturnAuthorization テーブルのDiscountItem_InternalId。 |
DiscountItem_Name | String | False |
ReturnAuthorization テーブルのDiscountItem_Name。 |
DiscountItem_Type | String | False |
ReturnAuthorization テーブルのDiscountItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountRate | String | False |
ReturnAuthorization テーブルのDiscountRate。 |
DiscountTotal | Double | False |
ReturnAuthorization テーブルのDiscountTotal。 |
DrAccount_ExternalId | String | False |
ReturnAuthorization テーブルのDrAccount_ExternalId。 |
DrAccount_InternalId | String | False |
ReturnAuthorization テーブルのDrAccount_InternalId。 |
DrAccount_Name | String | False |
ReturnAuthorization テーブルのDrAccount_Name。 |
DrAccount_Type | String | False |
ReturnAuthorization テーブルのDrAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
String | False |
ReturnAuthorization テーブルのEmail。 | |
Entity_ExternalId | String | False |
ReturnAuthorization テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
ReturnAuthorization テーブルのEntity_InternalId。 |
Entity_Name | String | False |
ReturnAuthorization テーブルのEntity_Name。 |
Entity_Type | String | False |
ReturnAuthorization テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EstGrossProfit | Double | False |
ReturnAuthorization テーブルのEstGrossProfit。 |
EstGrossProfitPercent | Double | False |
ReturnAuthorization テーブルのEstGrossProfitPercent。 |
ExchangeRate | Double | False |
ReturnAuthorization テーブルのExchangeRate。 |
ExcludeCommission | Boolean | False |
ReturnAuthorization テーブルのExcludeCommission。 |
ExternalId | String | False |
ReturnAuthorization テーブルのExternalId。 |
Fax | String | False |
ReturnAuthorization テーブルのFax。 |
FxAccount_ExternalId | String | False |
ReturnAuthorization テーブルのFxAccount_ExternalId。 |
FxAccount_InternalId | String | False |
ReturnAuthorization テーブルのFxAccount_InternalId。 |
FxAccount_Name | String | False |
ReturnAuthorization テーブルのFxAccount_Name。 |
FxAccount_Type | String | False |
ReturnAuthorization テーブルのFxAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
GiftCert_ExternalId | String | False |
ReturnAuthorization テーブルのGiftCert_ExternalId。 |
GiftCert_InternalId | String | False |
ReturnAuthorization テーブルのGiftCert_InternalId。 |
GiftCert_Name | String | False |
ReturnAuthorization テーブルのGiftCert_Name。 |
GiftCert_Type | String | False |
ReturnAuthorization テーブルのGiftCert_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
GiftCertApplied | Double | False |
ReturnAuthorization テーブルのGiftCertApplied。 |
GiftCertAvailable | Double | False |
ReturnAuthorization テーブルのGiftCertAvailable。 |
GiftCertTotal | Double | False |
ReturnAuthorization テーブルのGiftCertTotal。 |
IntercoStatus | String | False |
ReturnAuthorization テーブルのIntercoStatus。 The allowed values are _paired, _pending, _rejected. |
IntercoTransaction_ExternalId | String | False |
ReturnAuthorization テーブルのIntercoTransaction_ExternalId。 |
IntercoTransaction_InternalId | String | False |
ReturnAuthorization テーブルのIntercoTransaction_InternalId。 |
IntercoTransaction_Name | String | False |
ReturnAuthorization テーブルのIntercoTransaction_Name。 |
IntercoTransaction_Type | String | False |
ReturnAuthorization テーブルのIntercoTransaction_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsTaxable | Boolean | False |
ReturnAuthorization テーブルのIsTaxable。 |
ItemList_ReplaceAll | Boolean | False |
ReturnAuthorization テーブルのItemList_ReplaceAll。 |
Job_ExternalId | String | False |
ReturnAuthorization テーブルのJob_ExternalId。 |
Job_InternalId | String | False |
ReturnAuthorization テーブルのJob_InternalId。 |
Job_Name | String | False |
ReturnAuthorization テーブルのJob_Name。 |
Job_Type | String | False |
ReturnAuthorization テーブルのJob_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
ReturnAuthorization テーブルのLastModifiedDate。 |
LeadSource_ExternalId | String | False |
ReturnAuthorization テーブルのLeadSource_ExternalId。 |
LeadSource_InternalId | String | False |
ReturnAuthorization テーブルのLeadSource_InternalId。 |
LeadSource_Name | String | False |
ReturnAuthorization テーブルのLeadSource_Name。 |
LeadSource_Type | String | False |
ReturnAuthorization テーブルのLeadSource_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Location_ExternalId | String | False |
ReturnAuthorization テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
ReturnAuthorization テーブルのLocation_InternalId。 |
Location_Name | String | False |
ReturnAuthorization テーブルのLocation_Name。 |
Location_Type | String | False |
ReturnAuthorization テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
ReturnAuthorization テーブルのMemo。 |
Message | String | False |
ReturnAuthorization テーブルのMessage。 |
MessageSel_ExternalId | String | False |
ReturnAuthorization テーブルのMessageSel_ExternalId。 |
MessageSel_InternalId | String | False |
ReturnAuthorization テーブルのMessageSel_InternalId。 |
MessageSel_Name | String | False |
ReturnAuthorization テーブルのMessageSel_Name。 |
MessageSel_Type | String | False |
ReturnAuthorization テーブルのMessageSel_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OrderStatus | String | False |
ReturnAuthorization テーブルのOrderStatus。 The allowed values are _pendingApproval, _pendingReceipt. |
OtherRefNum | String | False |
RefNum of the ReturnAuthorization テーブルのOtherRefNum。 |
Partner_ExternalId | String | False |
ReturnAuthorization テーブルのPartner_ExternalId。 |
Partner_InternalId | String | False |
ReturnAuthorization テーブルのPartner_InternalId。 |
Partner_Name | String | False |
ReturnAuthorization テーブルのPartner_Name。 |
Partner_Type | String | False |
ReturnAuthorization テーブルのPartner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PartnersList_ReplaceAll | Boolean | False |
ReturnAuthorization テーブルのPartnersList_ReplaceAll。 |
PaymentMethod_ExternalId | String | False |
ReturnAuthorization テーブルのPaymentMethod_ExternalId。 |
PaymentMethod_InternalId | String | False |
ReturnAuthorization テーブルのPaymentMethod_InternalId。 |
PaymentMethod_Name | String | False |
ReturnAuthorization テーブルのPaymentMethod_Name。 |
PaymentMethod_Type | String | False |
ReturnAuthorization テーブルのPaymentMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PayPalAuthId | String | False |
ReturnAuthorization テーブルのPayPalAuthId。 |
PayPalProcess | Boolean | False |
ReturnAuthorization テーブルのPayPalProcess。 |
PnRefNum | String | False |
ReturnAuthorization テーブルのPnRefNum。 |
PromoCode_ExternalId | String | False |
ReturnAuthorization テーブルのPromoCode_ExternalId。 |
PromoCode_InternalId | String | False |
ReturnAuthorization テーブルのPromoCode_InternalId。 |
PromoCode_Name | String | False |
ReturnAuthorization テーブルのPromoCode_Name。 |
PromoCode_Type | String | False |
ReturnAuthorization テーブルのPromoCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RecognizedRevenue | Double | False |
ReturnAuthorization テーブルのRecognizedRevenue。 |
RevCommitStatus | String | False |
ReturnAuthorization テーブルのRevCommitStatus。 The allowed values are _committed, _partiallyCommitted, _pendingCommitment. |
RevenueStatus | String | False |
ReturnAuthorization テーブルのRevenueStatus。 The allowed values are _pending, _inProgress, _completed, _onRevCommitment. |
RevRecEndDate | Datetime | False |
ReturnAuthorization テーブルのRevRecEndDate。 |
RevRecOnRevCommitment | Boolean | False |
ReturnAuthorization テーブルのRevRecOnRevCommitment。 |
RevRecSchedule_ExternalId | String | False |
ReturnAuthorization テーブルのRevRecSchedule_ExternalId。 |
RevRecSchedule_InternalId | String | False |
ReturnAuthorization テーブルのRevRecSchedule_InternalId。 |
RevRecSchedule_Name | String | False |
ReturnAuthorization テーブルのRevRecSchedule_Name。 |
RevRecSchedule_Type | String | False |
ReturnAuthorization テーブルのRevRecSchedule_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RevRecStartDate | Datetime | False |
ReturnAuthorization テーブルのRevRecStartDate。 |
SalesEffectiveDate | Datetime | False |
ReturnAuthorization テーブルのSalesEffectiveDate。 |
SalesGroup_ExternalId | String | False |
ReturnAuthorization テーブルのSalesGroup_ExternalId。 |
SalesGroup_InternalId | String | False |
ReturnAuthorization テーブルのSalesGroup_InternalId。 |
SalesGroup_Name | String | False |
ReturnAuthorization テーブルのSalesGroup_Name。 |
SalesGroup_Type | String | False |
ReturnAuthorization テーブルのSalesGroup_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesRep_ExternalId | String | False |
ReturnAuthorization テーブルのSalesRep_ExternalId。 |
SalesRep_InternalId | String | False |
ReturnAuthorization テーブルのSalesRep_InternalId。 |
SalesRep_Name | String | False |
ReturnAuthorization テーブルのSalesRep_Name。 |
SalesRep_Type | String | False |
ReturnAuthorization テーブルのSalesRep_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesTeamList_ReplaceAll | Boolean | False |
ReturnAuthorization テーブルのSalesTeamList_ReplaceAll。 |
ShipAddress | String | False |
ReturnAuthorization テーブルのShipAddress。 |
ShipAddressList_ExternalId | String | False |
ReturnAuthorization テーブルのShipAddressList_ExternalId。 |
ShipAddressList_InternalId | String | False |
ReturnAuthorization テーブルのShipAddressList_InternalId。 |
ShipAddressList_Name | String | False |
ReturnAuthorization テーブルのShipAddressList_Name。 |
ShipAddressList_Type | String | False |
ReturnAuthorization テーブルのShipAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Source | String | False |
ReturnAuthorization テーブルのSource。 |
Status | String | False |
ReturnAuthorization テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
ReturnAuthorization テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
ReturnAuthorization テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
ReturnAuthorization テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
ReturnAuthorization テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SubTotal | Double | False |
ReturnAuthorization テーブルのSubTotal。 |
SyncPartnerTeams | Boolean | False |
ReturnAuthorization テーブルのSyncPartnerTeams。 |
SyncSalesTeams | Boolean | False |
ReturnAuthorization テーブルのSyncSalesTeams。 |
Tax2Total | Double | False |
ReturnAuthorization テーブルのTax2Total。 |
TaxItem_ExternalId | String | False |
ReturnAuthorization テーブルのTaxItem_ExternalId。 |
TaxItem_InternalId | String | False |
ReturnAuthorization テーブルのTaxItem_InternalId。 |
TaxItem_Name | String | False |
ReturnAuthorization テーブルのTaxItem_Name。 |
TaxItem_Type | String | False |
ReturnAuthorization テーブルのTaxItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxRate | Double | False |
ReturnAuthorization テーブルのTaxRate。 |
TaxTotal | Double | False |
ReturnAuthorization テーブルのTaxTotal。 |
ToBeEmailed | Boolean | False |
ReturnAuthorization テーブルのToBeEmailed。 |
ToBeFaxed | Boolean | False |
ReturnAuthorization テーブルのToBeFaxed。 |
ToBePrinted | Boolean | False |
ReturnAuthorization テーブルのToBePrinted。 |
Total | Double | False |
ReturnAuthorization テーブルのTotal。 |
TotalCostEstimate | Double | False |
ReturnAuthorization テーブルのTotalCostEstimate。 |
TranDate | Datetime | False |
ReturnAuthorization テーブルのTranDate。 |
TranId | String | False |
ReturnAuthorization テーブルのTranId。 |
TranIsVsoeBundle | Boolean | False |
ReturnAuthorization テーブルのTranIsVsoeBundle。 |
TransactionBillAddress_BillAddr1 | String | False |
ReturnAuthorization テーブルのTransactionBillAddress_BillAddr1。 |
TransactionBillAddress_BillAddr2 | String | False |
ReturnAuthorization テーブルのTransactionBillAddress_BillAddr2。 |
TransactionBillAddress_BillAddr3 | String | False |
ReturnAuthorization テーブルのTransactionBillAddress_BillAddr3。 |
TransactionBillAddress_BillAddressee | String | False |
ReturnAuthorization テーブルのTransactionBillAddress_BillAddressee。 |
TransactionBillAddress_BillAttention | String | False |
ReturnAuthorization テーブルのTransactionBillAddress_BillAttention。 |
TransactionBillAddress_BillCity | String | False |
ReturnAuthorization テーブルのTransactionBillAddress_BillCity。 |
TransactionBillAddress_BillCountry | String | False |
ReturnAuthorization テーブルのTransactionBillAddress_BillCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionBillAddress_BillPhone | String | False |
ReturnAuthorization テーブルのTransactionBillAddress_BillPhone。 |
TransactionBillAddress_BillState | String | False |
ReturnAuthorization テーブルのTransactionBillAddress_BillState。 |
TransactionBillAddress_BillZip | String | False |
ReturnAuthorization テーブルのTransactionBillAddress_BillZip。 |
ValidFrom | Datetime | False |
ReturnAuthorization テーブルのValidFrom。 |
VatRegNum | String | False |
ReturnAuthorization テーブルのVatRegNum。 |
VsoeAutoCalc | Boolean | False |
ReturnAuthorization テーブルのVsoeAutoCalc。 |
NetSuite のRevRecSchedule テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
RevRecSchedule テーブルのInternalId。 |
AmortizationPeriod | Long | False |
RevRecSchedule テーブルのAmortizationPeriod。 |
AmortizationType | String | False |
RevRecSchedule テーブルのAmortizationType。 The allowed values are _standard, _variable. |
ExternalId | String | False |
RevRecSchedule テーブルのExternalId。 |
InitialAmount | Double | False |
RevRecSchedule テーブルのInitialAmount。 |
IsInactive | Boolean | False |
RevRecSchedule テーブルのIsInactive。 |
Name | String | False |
RevRecSchedule テーブルのName。 |
PeriodOffset | Long | False |
RevRecSchedule テーブルのPeriodOffset。 |
RecogIntervalSrc | String | False |
RevRecSchedule テーブルのRecogIntervalSrc。 The allowed values are _revRecDatesSpecifiedOnTransaction, _billingScheduleTranDateOnSalesOrder, _billingScheduleRevRecDateOnSalesOrder, _revRecDatesSpecifiedOnSalesOrder. |
RecurrenceList_ReplaceAll | Boolean | False |
RevRecSchedule テーブルのRecurrenceList_ReplaceAll。 |
RecurrenceType | String | False |
RevRecSchedule テーブルのRecurrenceType。 The allowed values are _custom, _straightLineByEvenPeriods, _straightLineProrateFirstAndLastPeriod, _straightLineProrateFirstAndLastPeriodPeriodRate, _straightLineUsingExactDays. |
RevRecOffset | Long | False |
RevRecSchedule テーブルのRevRecOffset。 |
NetSuite のRevRecTemplate テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
RevRecTemplate テーブルのInternalId。 |
AmortizationPeriod | Long | False |
RevRecTemplate テーブルのAmortizationPeriod。 |
AmortizationType | String | False |
RevRecTemplate テーブルのAmortizationType。 The allowed values are _standard, _variable. |
ExternalId | String | False |
RevRecTemplate テーブルのExternalId。 |
InitialAmount | Double | False |
RevRecTemplate テーブルのInitialAmount。 |
IsInactive | Boolean | False |
RevRecTemplate テーブルのIsInactive。 |
Name | String | False |
RevRecTemplate テーブルのName。 |
PeriodOffset | Long | False |
RevRecTemplate テーブルのPeriodOffset。 |
RecogIntervalSrc | String | False |
RevRecTemplate テーブルのRecogIntervalSrc。 The allowed values are _revRecDatesSpecifiedOnTransaction, _billingScheduleTranDateOnSalesOrder, _billingScheduleRevRecDateOnSalesOrder, _revRecDatesSpecifiedOnSalesOrder. |
RecurrenceList_ReplaceAll | Boolean | False |
RevRecTemplate テーブルのRecurrenceList_ReplaceAll。 |
RecurrenceType | String | False |
RevRecTemplate テーブルのRecurrenceType。 The allowed values are _custom, _straightLineByEvenPeriods, _straightLineProrateFirstAndLastPeriod, _straightLineProrateFirstAndLastPeriodPeriodRate, _straightLineUsingExactDays. |
RevRecOffset | Long | False |
RevRecTemplate テーブルのRevRecOffset。 |
NetSuite のSalesOrder テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
SalesOrder テーブルのInternalId。 |
ActualShipDate | Datetime | False |
SalesOrder テーブルのActualShipDate。 |
AltHandlingCost | Double | False |
SalesOrder テーブルのAltHandlingCost。 |
AltSalesTotal | Double | False |
SalesOrder テーブルのAltSalesTotal。 |
AltShippingCost | Double | False |
SalesOrder テーブルのAltShippingCost。 |
AuthCode | String | False |
SalesOrder テーブルのAuthCode。 |
Balance | Double | False |
SalesOrder テーブルのBalance。 |
BillAddress | String | False |
SalesOrder テーブルのBillAddress。 |
BillAddressList_ExternalId | String | False |
SalesOrder テーブルのBillAddressList_ExternalId。 |
BillAddressList_InternalId | String | False |
SalesOrder テーブルのBillAddressList_InternalId。 |
BillAddressList_Name | String | False |
SalesOrder テーブルのBillAddressList_Name。 |
BillAddressList_Type | String | False |
SalesOrder テーブルのBillAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
BillingSchedule_ExternalId | String | False |
SalesOrder テーブルのBillingSchedule_ExternalId。 |
BillingSchedule_InternalId | String | False |
SalesOrder テーブルのBillingSchedule_InternalId。 |
BillingSchedule_Name | String | False |
SalesOrder テーブルのBillingSchedule_Name。 |
BillingSchedule_Type | String | False |
SalesOrder テーブルのBillingSchedule_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CcApproved | Boolean | False |
SalesOrder テーブルのCcApproved。 |
CcAvsStreetMatch | String | False |
SalesOrder テーブルのCcAvsStreetMatch。 The allowed values are _n, _x, _y. |
CcAvsZipMatch | String | False |
SalesOrder テーブルのCcAvsZipMatch。 The allowed values are _n, _x, _y. |
CcExpireDate | Datetime | False |
SalesOrder テーブルのCcExpireDate。 |
CcName | String | False |
SalesOrder テーブルのCcName。 |
CcNumber | String | False |
SalesOrder テーブルのCcNumber。 |
CcSecurityCode | String | False |
SalesOrder テーブルのCcSecurityCode。 |
CcSecurityCodeMatch | String | False |
SalesOrder テーブルのCcSecurityCodeMatch。 The allowed values are _n, _x, _y. |
CcStreet | String | False |
SalesOrder テーブルのCcStreet。 |
CcZipCode | String | False |
SalesOrder テーブルのCcZipCode。 |
Class_ExternalId | String | False |
SalesOrder テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
SalesOrder テーブルのClass_InternalId。 |
Class_Name | String | False |
SalesOrder テーブルのClass_Name。 |
Class_Type | String | False |
SalesOrder テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ContribPct | String | False |
SalesOrder テーブルのContribPct。 |
CreatedDate | Datetime | False |
SalesOrder テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
SalesOrder テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
SalesOrder テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
SalesOrder テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
SalesOrder テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditCard_ExternalId | String | False |
SalesOrder テーブルのCreditCard_ExternalId。 |
CreditCard_InternalId | String | False |
SalesOrder テーブルのCreditCard_InternalId。 |
CreditCard_Name | String | False |
SalesOrder テーブルのCreditCard_Name。 |
CreditCard_Type | String | False |
SalesOrder テーブルのCreditCard_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreditCardProcessor_ExternalId | String | False |
SalesOrder テーブルのCreditCardProcessor_ExternalId。 |
CreditCardProcessor_InternalId | String | False |
SalesOrder テーブルのCreditCardProcessor_InternalId。 |
CreditCardProcessor_Name | String | False |
SalesOrder テーブルのCreditCardProcessor_Name。 |
CreditCardProcessor_Type | String | False |
SalesOrder テーブルのCreditCardProcessor_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
SalesOrder テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
SalesOrder テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
SalesOrder テーブルのCurrency_Name。 |
Currency_Type | String | False |
SalesOrder テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
SalesOrder テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
SalesOrder テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
SalesOrder テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
SalesOrder テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
SalesOrder テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DebitCardIssueNo | String | False |
SalesOrder テーブルのDebitCardIssueNo。 |
DeferredRevenue | Double | False |
SalesOrder テーブルのDeferredRevenue。 |
Department_ExternalId | String | False |
SalesOrder テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
SalesOrder テーブルのDepartment_InternalId。 |
Department_Name | String | False |
SalesOrder テーブルのDepartment_Name。 |
Department_Type | String | False |
SalesOrder テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountItem_ExternalId | String | False |
SalesOrder テーブルのDiscountItem_ExternalId。 |
DiscountItem_InternalId | String | False |
SalesOrder テーブルのDiscountItem_InternalId。 |
DiscountItem_Name | String | False |
SalesOrder テーブルのDiscountItem_Name。 |
DiscountItem_Type | String | False |
SalesOrder テーブルのDiscountItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountRate | String | False |
SalesOrder テーブルのDiscountRate。 |
DiscountTotal | Double | False |
SalesOrder テーブルのDiscountTotal。 |
DrAccount_ExternalId | String | False |
SalesOrder テーブルのDrAccount_ExternalId。 |
DrAccount_InternalId | String | False |
SalesOrder テーブルのDrAccount_InternalId。 |
DrAccount_Name | String | False |
SalesOrder テーブルのDrAccount_Name。 |
DrAccount_Type | String | False |
SalesOrder テーブルのDrAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
String | False |
SalesOrder テーブルのEmail。 | |
EndDate | Datetime | False |
SalesOrder テーブルのEndDate。 |
Entity_ExternalId | String | False |
SalesOrder テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
SalesOrder テーブルのEntity_InternalId。 |
Entity_Name | String | False |
SalesOrder テーブルのEntity_Name。 |
Entity_Type | String | False |
SalesOrder テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EstGrossProfit | Double | False |
SalesOrder テーブルのEstGrossProfit。 |
EstGrossProfitPercent | Double | False |
SalesOrder テーブルのEstGrossProfitPercent。 |
ExchangeRate | Double | False |
SalesOrder テーブルのExchangeRate。 |
ExcludeCommission | Boolean | False |
SalesOrder テーブルのExcludeCommission。 |
ExternalId | String | False |
SalesOrder テーブルのExternalId。 |
Fax | String | False |
SalesOrder テーブルのFax。 |
Fob | String | False |
SalesOrder テーブルのFob。 |
FxAccount_ExternalId | String | False |
SalesOrder テーブルのFxAccount_ExternalId。 |
FxAccount_InternalId | String | False |
SalesOrder テーブルのFxAccount_InternalId。 |
FxAccount_Name | String | False |
SalesOrder テーブルのFxAccount_Name。 |
FxAccount_Type | String | False |
SalesOrder テーブルのFxAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
GetAuth | Boolean | False |
SalesOrder テーブルのGetAuth。 |
GiftCertApplied | Double | False |
SalesOrder テーブルのGiftCertApplied。 |
GiftCertRedemptionList_ReplaceAll | Boolean | False |
SalesOrder テーブルのGiftCertRedemptionList_ReplaceAll。 |
HandlingCost | Double | False |
SalesOrder テーブルのHandlingCost。 |
HandlingTax1Rate | Double | False |
SalesOrder テーブルのHandlingTax1Rate。 |
HandlingTax2Rate | String | False |
SalesOrder テーブルのHandlingTax2Rate。 |
HandlingTaxCode_ExternalId | String | False |
SalesOrder テーブルのHandlingTaxCode_ExternalId。 |
HandlingTaxCode_InternalId | String | False |
SalesOrder テーブルのHandlingTaxCode_InternalId。 |
HandlingTaxCode_Name | String | False |
SalesOrder テーブルのHandlingTaxCode_Name。 |
HandlingTaxCode_Type | String | False |
SalesOrder テーブルのHandlingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IgnoreAvs | Boolean | False |
SalesOrder テーブルのIgnoreAvs。 |
IntercoStatus | String | False |
SalesOrder テーブルのIntercoStatus。 The allowed values are _paired, _pending, _rejected. |
IntercoTransaction_ExternalId | String | False |
SalesOrder テーブルのIntercoTransaction_ExternalId。 |
IntercoTransaction_InternalId | String | False |
SalesOrder テーブルのIntercoTransaction_InternalId。 |
IntercoTransaction_Name | String | False |
SalesOrder テーブルのIntercoTransaction_Name。 |
IntercoTransaction_Type | String | False |
SalesOrder テーブルのIntercoTransaction_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsMultiShipTo | Boolean | False |
SalesOrder テーブルのIsMultiShipTo。 |
IsTaxable | Boolean | False |
SalesOrder テーブルのIsTaxable。 |
ItemList_ReplaceAll | Boolean | False |
SalesOrder テーブルのItemList_ReplaceAll。 |
Job_ExternalId | String | False |
SalesOrder テーブルのJob_ExternalId。 |
Job_InternalId | String | False |
SalesOrder テーブルのJob_InternalId。 |
Job_Name | String | False |
SalesOrder テーブルのJob_Name。 |
Job_Type | String | False |
SalesOrder テーブルのJob_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
SalesOrder テーブルのLastModifiedDate。 |
LeadSource_ExternalId | String | False |
SalesOrder テーブルのLeadSource_ExternalId。 |
LeadSource_InternalId | String | False |
SalesOrder テーブルのLeadSource_InternalId。 |
LeadSource_Name | String | False |
SalesOrder テーブルのLeadSource_Name。 |
LeadSource_Type | String | False |
SalesOrder テーブルのLeadSource_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LinkedTrackingNumbers | String | False |
SalesOrder テーブルのLinkedTrackingNumbers。 |
Location_ExternalId | String | False |
SalesOrder テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
SalesOrder テーブルのLocation_InternalId。 |
Location_Name | String | False |
SalesOrder テーブルのLocation_Name。 |
Location_Type | String | False |
SalesOrder テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
SalesOrder テーブルのMemo。 |
Message | String | False |
SalesOrder テーブルのMessage。 |
MessageSel_ExternalId | String | False |
SalesOrder テーブルのMessageSel_ExternalId。 |
MessageSel_InternalId | String | False |
SalesOrder テーブルのMessageSel_InternalId。 |
MessageSel_Name | String | False |
SalesOrder テーブルのMessageSel_Name。 |
MessageSel_Type | String | False |
SalesOrder テーブルのMessageSel_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Opportunity_ExternalId | String | False |
SalesOrder テーブルのOpportunity_ExternalId。 |
Opportunity_InternalId | String | False |
SalesOrder テーブルのOpportunity_InternalId。 |
Opportunity_Name | String | False |
SalesOrder テーブルのOpportunity_Name。 |
Opportunity_Type | String | False |
SalesOrder テーブルのOpportunity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OrderStatus | String | False |
SalesOrder テーブルのOrderStatus。 The allowed values are _pendingApproval, _pendingFulfillment, _cancelled, _partiallyFulfilled, _pendingBillingPartFulfilled, _pendingBilling, _fullyBilled, _closed, _undefined. |
OtherRefNum | String | False |
RefNum of the SalesOrder テーブルのOtherRefNum。 |
Partner_ExternalId | String | False |
SalesOrder テーブルのPartner_ExternalId。 |
Partner_InternalId | String | False |
SalesOrder テーブルのPartner_InternalId。 |
Partner_Name | String | False |
SalesOrder テーブルのPartner_Name。 |
Partner_Type | String | False |
SalesOrder テーブルのPartner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PartnersList_ReplaceAll | Boolean | False |
SalesOrder テーブルのPartnersList_ReplaceAll。 |
PaymentEventDate | Datetime | False |
SalesOrder テーブルのPaymentEventDate。 |
PaymentEventHoldReason | String | False |
SalesOrder テーブルのPaymentEventHoldReason。 The allowed values are _authorizationDecline, _externalFraudRejection, _externalFraudReview, _gatewayError, _overridenBy, _systemError, _verbalAuthorizationRequested, _verificationRejection, _verificationRequired. |
PaymentEventResult | String | False |
SalesOrder テーブルのPaymentEventResult。 The allowed values are _accept, _holdOverride, _paymentHold, _reject. |
PaymentEventType | String | False |
SalesOrder テーブルのPaymentEventType。 The allowed values are _authorizationRequest, _captureRequest, _creditRequest, _overrideHold, _refundRequest, _saleRequest. |
PaymentEventUpdatedBy | String | False |
SalesOrder テーブルのPaymentEventUpdatedBy。 |
PaymentMethod_ExternalId | String | False |
SalesOrder テーブルのPaymentMethod_ExternalId。 |
PaymentMethod_InternalId | String | False |
SalesOrder テーブルのPaymentMethod_InternalId。 |
PaymentMethod_Name | String | False |
SalesOrder テーブルのPaymentMethod_Name。 |
PaymentMethod_Type | String | False |
SalesOrder テーブルのPaymentMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PaypalAuthId | String | False |
SalesOrder テーブルのPaypalAuthId。 |
PaypalProcess | Boolean | False |
SalesOrder テーブルのPaypalProcess。 |
PayPalStatus | String | False |
SalesOrder テーブルのPayPalStatus。 |
PayPalTranId | String | False |
SalesOrder テーブルのPayPalTranId。 |
PnRefNum | String | False |
SalesOrder テーブルのPnRefNum。 |
PromoCode_ExternalId | String | False |
SalesOrder テーブルのPromoCode_ExternalId。 |
PromoCode_InternalId | String | False |
SalesOrder テーブルのPromoCode_InternalId。 |
PromoCode_Name | String | False |
SalesOrder テーブルのPromoCode_Name。 |
PromoCode_Type | String | False |
SalesOrder テーブルのPromoCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RecognizedRevenue | Double | False |
SalesOrder テーブルのRecognizedRevenue。 |
RevCommitStatus | String | False |
SalesOrder テーブルのRevCommitStatus。 The allowed values are _committed, _partiallyCommitted, _pendingCommitment. |
RevenueStatus | String | False |
SalesOrder テーブルのRevenueStatus。 The allowed values are _pending, _inProgress, _completed, _onRevCommitment. |
RevRecEndDate | Datetime | False |
SalesOrder テーブルのRevRecEndDate。 |
RevRecOnRevCommitment | Boolean | False |
SalesOrder テーブルのRevRecOnRevCommitment。 |
RevRecSchedule_ExternalId | String | False |
SalesOrder テーブルのRevRecSchedule_ExternalId。 |
RevRecSchedule_InternalId | String | False |
SalesOrder テーブルのRevRecSchedule_InternalId。 |
RevRecSchedule_Name | String | False |
SalesOrder テーブルのRevRecSchedule_Name。 |
RevRecSchedule_Type | String | False |
SalesOrder テーブルのRevRecSchedule_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RevRecStartDate | Datetime | False |
SalesOrder テーブルのRevRecStartDate。 |
SalesEffectiveDate | Datetime | False |
SalesOrder テーブルのSalesEffectiveDate。 |
SalesGroup_ExternalId | String | False |
SalesOrder テーブルのSalesGroup_ExternalId。 |
SalesGroup_InternalId | String | False |
SalesOrder テーブルのSalesGroup_InternalId。 |
SalesGroup_Name | String | False |
SalesOrder テーブルのSalesGroup_Name。 |
SalesGroup_Type | String | False |
SalesOrder テーブルのSalesGroup_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesRep_ExternalId | String | False |
SalesOrder テーブルのSalesRep_ExternalId。 |
SalesRep_InternalId | String | False |
SalesOrder テーブルのSalesRep_InternalId。 |
SalesRep_Name | String | False |
SalesOrder テーブルのSalesRep_Name。 |
SalesRep_Type | String | False |
SalesOrder テーブルのSalesRep_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesTeamList_ReplaceAll | Boolean | False |
SalesOrder テーブルのSalesTeamList_ReplaceAll。 |
SaveOnAuthDecline | Boolean | False |
SalesOrder テーブルのSaveOnAuthDecline。 |
ShipAddress | String | False |
SalesOrder テーブルのShipAddress。 |
ShipAddressList_ExternalId | String | False |
SalesOrder テーブルのShipAddressList_ExternalId。 |
ShipAddressList_InternalId | String | False |
SalesOrder テーブルのShipAddressList_InternalId。 |
ShipAddressList_Name | String | False |
SalesOrder テーブルのShipAddressList_Name。 |
ShipAddressList_Type | String | False |
SalesOrder テーブルのShipAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShipComplete | Boolean | False |
SalesOrder テーブルのShipComplete。 |
ShipDate | Datetime | False |
SalesOrder テーブルのShipDate。 |
ShipGroupList_ReplaceAll | Boolean | False |
SalesOrder テーブルのShipGroupList_ReplaceAll。 |
ShipMethod_ExternalId | String | False |
SalesOrder テーブルのShipMethod_ExternalId。 |
ShipMethod_InternalId | String | False |
SalesOrder テーブルのShipMethod_InternalId。 |
ShipMethod_Name | String | False |
SalesOrder テーブルのShipMethod_Name。 |
ShipMethod_Type | String | False |
SalesOrder テーブルのShipMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShippingCost | Double | False |
SalesOrder テーブルのShippingCost。 |
ShippingTax1Rate | Double | False |
SalesOrder テーブルのShippingTax1Rate。 |
ShippingTax2Rate | String | False |
SalesOrder テーブルのShippingTax2Rate。 |
ShippingTaxCode_ExternalId | String | False |
SalesOrder テーブルのShippingTaxCode_ExternalId。 |
ShippingTaxCode_InternalId | String | False |
SalesOrder テーブルのShippingTaxCode_InternalId。 |
ShippingTaxCode_Name | String | False |
SalesOrder テーブルのShippingTaxCode_Name。 |
ShippingTaxCode_Type | String | False |
SalesOrder テーブルのShippingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShopperIpAddress | String | False |
SalesOrder テーブルのShopperIpAddress。 |
Source | String | False |
SalesOrder テーブルのSource。 |
StartDate | Datetime | False |
SalesOrder テーブルのStartDate。 |
Status | String | False |
SalesOrder テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
SalesOrder テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
SalesOrder テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
SalesOrder テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
SalesOrder テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SubTotal | Double | False |
SalesOrder テーブルのSubTotal。 |
SyncPartnerTeams | Boolean | False |
SalesOrder テーブルのSyncPartnerTeams。 |
SyncSalesTeams | Boolean | False |
SalesOrder テーブルのSyncSalesTeams。 |
Tax2Total | Double | False |
SalesOrder テーブルのTax2Total。 |
TaxItem_ExternalId | String | False |
SalesOrder テーブルのTaxItem_ExternalId。 |
TaxItem_InternalId | String | False |
SalesOrder テーブルのTaxItem_InternalId。 |
TaxItem_Name | String | False |
SalesOrder テーブルのTaxItem_Name。 |
TaxItem_Type | String | False |
SalesOrder テーブルのTaxItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxRate | Double | False |
SalesOrder テーブルのTaxRate。 |
TaxTotal | Double | False |
SalesOrder テーブルのTaxTotal。 |
Terms_ExternalId | String | False |
SalesOrder テーブルのTerms_ExternalId。 |
Terms_InternalId | String | False |
SalesOrder テーブルのTerms_InternalId。 |
Terms_Name | String | False |
SalesOrder テーブルのTerms_Name。 |
Terms_Type | String | False |
SalesOrder テーブルのTerms_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ThreeDStatusCode | String | False |
SalesOrder テーブルのThreeDStatusCode。 |
ToBeEmailed | Boolean | False |
SalesOrder テーブルのToBeEmailed。 |
ToBeFaxed | Boolean | False |
SalesOrder テーブルのToBeFaxed。 |
ToBePrinted | Boolean | False |
SalesOrder テーブルのToBePrinted。 |
Total | Double | False |
SalesOrder テーブルのTotal。 |
TotalCostEstimate | Double | False |
SalesOrder テーブルのTotalCostEstimate。 |
TrackingNumbers | String | False |
SalesOrder テーブルのTrackingNumbers。 |
TranDate | Datetime | False |
SalesOrder テーブルのTranDate。 |
TranId | String | False |
SalesOrder テーブルのTranId。 |
TranIsVsoeBundle | Boolean | False |
SalesOrder テーブルのTranIsVsoeBundle。 |
TransactionBillAddress_BillAddr1 | String | False |
SalesOrder テーブルのTransactionBillAddress_BillAddr1。 |
TransactionBillAddress_BillAddr2 | String | False |
SalesOrder テーブルのTransactionBillAddress_BillAddr2。 |
TransactionBillAddress_BillAddr3 | String | False |
SalesOrder テーブルのTransactionBillAddress_BillAddr3。 |
TransactionBillAddress_BillAddressee | String | False |
SalesOrder テーブルのTransactionBillAddress_BillAddressee。 |
TransactionBillAddress_BillAttention | String | False |
SalesOrder テーブルのTransactionBillAddress_BillAttention。 |
TransactionBillAddress_BillCity | String | False |
SalesOrder テーブルのTransactionBillAddress_BillCity。 |
TransactionBillAddress_BillCountry | String | False |
SalesOrder テーブルのTransactionBillAddress_BillCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionBillAddress_BillPhone | String | False |
SalesOrder テーブルのTransactionBillAddress_BillPhone。 |
TransactionBillAddress_BillState | String | False |
SalesOrder テーブルのTransactionBillAddress_BillState。 |
TransactionBillAddress_BillZip | String | False |
SalesOrder テーブルのTransactionBillAddress_BillZip。 |
TransactionShipAddress_ShipAddr1 | String | False |
SalesOrder テーブルのTransactionShipAddress_ShipAddr1。 |
TransactionShipAddress_ShipAddr2 | String | False |
SalesOrder テーブルのTransactionShipAddress_ShipAddr2。 |
TransactionShipAddress_ShipAddr3 | String | False |
SalesOrder テーブルのTransactionShipAddress_ShipAddr3。 |
TransactionShipAddress_ShipAddressee | String | False |
SalesOrder テーブルのTransactionShipAddress_ShipAddressee。 |
TransactionShipAddress_ShipAttention | String | False |
SalesOrder テーブルのTransactionShipAddress_ShipAttention。 |
TransactionShipAddress_ShipCity | String | False |
SalesOrder テーブルのTransactionShipAddress_ShipCity。 |
TransactionShipAddress_ShipCountry | String | False |
SalesOrder テーブルのTransactionShipAddress_ShipCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionShipAddress_ShipIsResidential | Boolean | False |
SalesOrder テーブルのTransactionShipAddress_ShipIsResidential。 |
TransactionShipAddress_ShipPhone | String | False |
SalesOrder テーブルのTransactionShipAddress_ShipPhone。 |
TransactionShipAddress_ShipState | String | False |
SalesOrder テーブルのTransactionShipAddress_ShipState。 |
TransactionShipAddress_ShipZip | String | False |
SalesOrder テーブルのTransactionShipAddress_ShipZip。 |
ValidFrom | Datetime | False |
SalesOrder テーブルのValidFrom。 |
VatRegNum | String | False |
SalesOrder テーブルのVatRegNum。 |
VsoeAutoCalc | Boolean | False |
SalesOrder テーブルのVsoeAutoCalc。 |
NetSuite のSalesRole テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
SalesRole テーブルのInternalId。 |
Description | String | False |
SalesRole テーブルのDescription。 |
ExternalId | String | False |
SalesRole テーブルのExternalId。 |
IsInactive | Boolean | False |
SalesRole テーブルのIsInactive。 |
IsSalesRep | Boolean | False |
SalesRole テーブルのIsSalesRep。 |
Name | String | False |
SalesRole テーブルのName。 |
NetSuite のSalesTaxItem テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
SalesTaxItem テーブルのInternalId。 |
Available | String | False |
SalesTaxItem テーブルのAvailable。 The allowed values are _both, _purchase, _sale. |
City | String | False |
SalesTaxItem テーブルのCity。 |
County | String | False |
SalesTaxItem テーブルのCounty。 |
Description | String | False |
SalesTaxItem テーブルのDescription。 |
DisplayName | String | False |
SalesTaxItem テーブルのDisplayName。 |
Eccode | Boolean | False |
SalesTaxItem テーブルのEccode。 |
EffectiveFrom | Datetime | False |
SalesTaxItem テーブルのEffectiveFrom。 |
ExcludeFromTaxReports | Boolean | False |
SalesTaxItem テーブルのExcludeFromTaxReports。 |
Exempt | Boolean | False |
SalesTaxItem テーブルのExempt。 |
Export | Boolean | False |
SalesTaxItem テーブルのExport。 |
ExternalId | String | False |
SalesTaxItem テーブルのExternalId。 |
IsDefault | Boolean | False |
SalesTaxItem テーブルのIsDefault。 |
IsInactive | Boolean | False |
SalesTaxItem テーブルのIsInactive。 |
ItemId | String | False |
SalesTaxItem テーブルのItemId。 |
NexusCountry_ExternalId | String | False |
SalesTaxItem テーブルのNexusCountry_ExternalId。 |
NexusCountry_InternalId | String | False |
SalesTaxItem テーブルのNexusCountry_InternalId。 |
NexusCountry_Name | String | False |
SalesTaxItem テーブルのNexusCountry_Name。 |
NexusCountry_Type | String | False |
SalesTaxItem テーブルのNexusCountry_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Parent_ExternalId | String | False |
SalesTaxItem テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
SalesTaxItem テーブルのParent_InternalId。 |
Parent_Name | String | False |
SalesTaxItem テーブルのParent_Name。 |
Parent_Type | String | False |
SalesTaxItem テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PurchaseAccount_ExternalId | String | False |
SalesTaxItem テーブルのPurchaseAccount_ExternalId。 |
PurchaseAccount_InternalId | String | False |
SalesTaxItem テーブルのPurchaseAccount_InternalId。 |
PurchaseAccount_Name | String | False |
SalesTaxItem テーブルのPurchaseAccount_Name。 |
PurchaseAccount_Type | String | False |
SalesTaxItem テーブルのPurchaseAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Rate | String | False |
SalesTaxItem テーブルのRate。 |
ReverseCharge | Boolean | False |
SalesTaxItem テーブルのReverseCharge。 |
SaleAccount_ExternalId | String | False |
SalesTaxItem テーブルのSaleAccount_ExternalId。 |
SaleAccount_InternalId | String | False |
SalesTaxItem テーブルのSaleAccount_InternalId。 |
SaleAccount_Name | String | False |
SalesTaxItem テーブルのSaleAccount_Name。 |
SaleAccount_Type | String | False |
SalesTaxItem テーブルのSaleAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
State | String | False |
SalesTaxItem テーブルのState。 |
TaxAccount_ExternalId | String | False |
SalesTaxItem テーブルのTaxAccount_ExternalId。 |
TaxAccount_InternalId | String | False |
SalesTaxItem テーブルのTaxAccount_InternalId。 |
TaxAccount_Name | String | False |
SalesTaxItem テーブルのTaxAccount_Name。 |
TaxAccount_Type | String | False |
SalesTaxItem テーブルのTaxAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxAgency_ExternalId | String | False |
SalesTaxItem テーブルのTaxAgency_ExternalId。 |
TaxAgency_InternalId | String | False |
SalesTaxItem テーブルのTaxAgency_InternalId。 |
TaxAgency_Name | String | False |
SalesTaxItem テーブルのTaxAgency_Name。 |
TaxAgency_Type | String | False |
SalesTaxItem テーブルのTaxAgency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxType_ExternalId | String | False |
SalesTaxItem テーブルのTaxType_ExternalId。 |
TaxType_InternalId | String | False |
SalesTaxItem テーブルのTaxType_InternalId。 |
TaxType_Name | String | False |
SalesTaxItem テーブルのTaxType_Name。 |
TaxType_Type | String | False |
SalesTaxItem テーブルのTaxType_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ValidUntil | Datetime | False |
SalesTaxItem テーブルのValidUntil。 |
Zip | String | False |
SalesTaxItem テーブルのZip。 |
NetSuite のSiteCategory テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
SiteCategory テーブルのInternalId。 |
CategoryListLayout_ExternalId | String | False |
SiteCategory テーブルのCategoryListLayout_ExternalId。 |
CategoryListLayout_InternalId | String | False |
SiteCategory テーブルのCategoryListLayout_InternalId。 |
CategoryListLayout_Name | String | False |
SiteCategory テーブルのCategoryListLayout_Name。 |
CategoryListLayout_Type | String | False |
SiteCategory テーブルのCategoryListLayout_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CorrelatedItemsListLayout_ExternalId | String | False |
SiteCategory テーブルのCorrelatedItemsListLayout_ExternalId。 |
CorrelatedItemsListLayout_InternalId | String | False |
SiteCategory テーブルのCorrelatedItemsListLayout_InternalId。 |
CorrelatedItemsListLayout_Name | String | False |
SiteCategory テーブルのCorrelatedItemsListLayout_Name。 |
CorrelatedItemsListLayout_Type | String | False |
SiteCategory テーブルのCorrelatedItemsListLayout_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Description | String | False |
SiteCategory テーブルのDescription。 |
ExcludeFromSitemap | Boolean | False |
SiteCategory テーブルのExcludeFromSitemap。 |
ExternalId | String | False |
SiteCategory テーブルのExternalId。 |
IsInactive | Boolean | False |
SiteCategory テーブルのIsInactive。 |
IsOnline | Boolean | False |
SiteCategory テーブルのIsOnline。 |
ItemId | String | False |
SiteCategory テーブルのItemId。 |
ItemListLayout_ExternalId | String | False |
SiteCategory テーブルのItemListLayout_ExternalId。 |
ItemListLayout_InternalId | String | False |
SiteCategory テーブルのItemListLayout_InternalId。 |
ItemListLayout_Name | String | False |
SiteCategory テーブルのItemListLayout_Name。 |
ItemListLayout_Type | String | False |
SiteCategory テーブルのItemListLayout_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
MetaTagHtml | String | False |
SiteCategory テーブルのMetaTagHtml。 |
PageTitle | String | False |
SiteCategory テーブルのPageTitle。 |
ParentCategory_ExternalId | String | False |
SiteCategory テーブルのParentCategory_ExternalId。 |
ParentCategory_InternalId | String | False |
SiteCategory テーブルのParentCategory_InternalId。 |
ParentCategory_Name | String | False |
SiteCategory テーブルのParentCategory_Name。 |
ParentCategory_Type | String | False |
SiteCategory テーブルのParentCategory_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PresentationItemList_ReplaceAll | Boolean | False |
SiteCategory テーブルのPresentationItemList_ReplaceAll。 |
RelatedItemsListLayout_ExternalId | String | False |
SiteCategory テーブルのRelatedItemsListLayout_ExternalId。 |
RelatedItemsListLayout_InternalId | String | False |
SiteCategory テーブルのRelatedItemsListLayout_InternalId。 |
RelatedItemsListLayout_Name | String | False |
SiteCategory テーブルのRelatedItemsListLayout_Name。 |
RelatedItemsListLayout_Type | String | False |
SiteCategory テーブルのRelatedItemsListLayout_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SearchKeywords | String | False |
SiteCategory テーブルのSearchKeywords。 |
SitemapPriority | String | False |
SiteCategory テーブルのSitemapPriority。 The allowed values are _00, _01, _02, _03, _04, _05, _06, _07, _08, _09, _10, _auto. |
StoreDetailedDescription | String | False |
SiteCategory テーブルのStoreDetailedDescription。 |
StoreDisplayImage_ExternalId | String | False |
SiteCategory テーブルのStoreDisplayImage_ExternalId。 |
StoreDisplayImage_InternalId | String | False |
SiteCategory テーブルのStoreDisplayImage_InternalId。 |
StoreDisplayImage_Name | String | False |
SiteCategory テーブルのStoreDisplayImage_Name。 |
StoreDisplayImage_Type | String | False |
SiteCategory テーブルのStoreDisplayImage_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
StoreDisplayThumbnail_ExternalId | String | False |
SiteCategory テーブルのStoreDisplayThumbnail_ExternalId。 |
StoreDisplayThumbnail_InternalId | String | False |
SiteCategory テーブルのStoreDisplayThumbnail_InternalId。 |
StoreDisplayThumbnail_Name | String | False |
SiteCategory テーブルのStoreDisplayThumbnail_Name。 |
StoreDisplayThumbnail_Type | String | False |
SiteCategory テーブルのStoreDisplayThumbnail_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranslationsList_ReplaceAll | Boolean | False |
SiteCategory テーブルのTranslationsList_ReplaceAll。 |
UrlComponent | String | False |
SiteCategory テーブルのUrlComponent。 |
Website_ExternalId | String | False |
SiteCategory テーブルのWebsite_ExternalId。 |
Website_InternalId | String | False |
SiteCategory テーブルのWebsite_InternalId。 |
Website_Name | String | False |
SiteCategory テーブルのWebsite_Name。 |
Website_Type | String | False |
SiteCategory テーブルのWebsite_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のSolution テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Solution テーブルのInternalId。 |
Assigned_ExternalId | String | False |
Solution テーブルのAssigned_ExternalId。 |
Assigned_InternalId | String | False |
Solution テーブルのAssigned_InternalId。 |
Assigned_Name | String | False |
Solution テーブルのAssigned_Name。 |
Assigned_Type | String | False |
Solution テーブルのAssigned_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
Solution テーブルのCreatedDate。 |
CustomForm_ExternalId | String | False |
Solution テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Solution テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Solution テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Solution テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DisplayOnline | Boolean | False |
Solution テーブルのDisplayOnline。 |
ExternalId | String | False |
Solution テーブルのExternalId。 |
IsInactive | Boolean | False |
Solution テーブルのIsInactive。 |
LastModifiedDate | Datetime | False |
Solution テーブルのLastModifiedDate。 |
LongDescription | String | False |
Solution テーブルのLongDescription。 |
Message | String | False |
Solution テーブルのMessage。 |
SolutionCode | String | False |
Solution テーブルのSolutionCode。 |
SolutionsList_ReplaceAll | Boolean | False |
Solution テーブルのSolutionsList_ReplaceAll。 |
Status | String | False |
Solution テーブルのStatus。 The allowed values are _approved, _unapproved. |
Title | String | False |
Solution テーブルのTitle。 |
TopicsList_ReplaceAll | Boolean | False |
Solution テーブルのTopicsList_ReplaceAll。 |
NetSuite のState テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
State テーブルのInternalId。 |
Country | String | False |
State テーブルのCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
FullName | String | False |
State テーブルのFullName。 |
Shortname | String | False |
State テーブルのShortname。 |
NetSuite のSubsidiary テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Subsidiary テーブルのInternalId。 |
Addr1 | String | False |
Subsidiary テーブルのAddr1。 |
Addr2 | String | False |
Subsidiary テーブルのAddr2。 |
Addr3 | String | False |
Subsidiary テーブルのAddr3。 |
Addressee | String | False |
Subsidiary テーブルのAddressee。 |
AddrLanguage | String | False |
Subsidiary テーブルのAddrLanguage。 |
AddrPhone | String | False |
Subsidiary テーブルのAddrPhone。 |
AddrText | String | False |
Subsidiary テーブルのAddrText。 |
AllowPayroll | Boolean | False |
Subsidiary テーブルのAllowPayroll。 |
AnonymousCustomerInboundEmail_ExternalId | String | False |
Subsidiary テーブルのAnonymousCustomerInboundEmail_ExternalId。 |
AnonymousCustomerInboundEmail_InternalId | String | False |
Subsidiary テーブルのAnonymousCustomerInboundEmail_InternalId。 |
AnonymousCustomerInboundEmail_Name | String | False |
Subsidiary テーブルのAnonymousCustomerInboundEmail_Name。 |
AnonymousCustomerInboundEmail_Type | String | False |
Subsidiary テーブルのAnonymousCustomerInboundEmail_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
AnonymousCustomerOnlineForms_ExternalId | String | False |
Subsidiary テーブルのAnonymousCustomerOnlineForms_ExternalId。 |
AnonymousCustomerOnlineForms_InternalId | String | False |
Subsidiary テーブルのAnonymousCustomerOnlineForms_InternalId。 |
AnonymousCustomerOnlineForms_Name | String | False |
Subsidiary テーブルのAnonymousCustomerOnlineForms_Name。 |
AnonymousCustomerOnlineForms_Type | String | False |
Subsidiary テーブルのAnonymousCustomerOnlineForms_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Attention | String | False |
Subsidiary テーブルのAttention。 |
CaseAssignmentTemplate_ExternalId | String | False |
Subsidiary テーブルのCaseAssignmentTemplate_ExternalId。 |
CaseAssignmentTemplate_InternalId | String | False |
Subsidiary テーブルのCaseAssignmentTemplate_InternalId。 |
CaseAssignmentTemplate_Name | String | False |
Subsidiary テーブルのCaseAssignmentTemplate_Name。 |
CaseAssignmentTemplate_Type | String | False |
Subsidiary テーブルのCaseAssignmentTemplate_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CaseAutomaticClosureTemplate_ExternalId | String | False |
Subsidiary テーブルのCaseAutomaticClosureTemplate_ExternalId。 |
CaseAutomaticClosureTemplate_InternalId | String | False |
Subsidiary テーブルのCaseAutomaticClosureTemplate_InternalId。 |
CaseAutomaticClosureTemplate_Name | String | False |
Subsidiary テーブルのCaseAutomaticClosureTemplate_Name。 |
CaseAutomaticClosureTemplate_Type | String | False |
Subsidiary テーブルのCaseAutomaticClosureTemplate_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CaseCopyEmployeeTemplate_ExternalId | String | False |
Subsidiary テーブルのCaseCopyEmployeeTemplate_ExternalId。 |
CaseCopyEmployeeTemplate_InternalId | String | False |
Subsidiary テーブルのCaseCopyEmployeeTemplate_InternalId。 |
CaseCopyEmployeeTemplate_Name | String | False |
Subsidiary テーブルのCaseCopyEmployeeTemplate_Name。 |
CaseCopyEmployeeTemplate_Type | String | False |
Subsidiary テーブルのCaseCopyEmployeeTemplate_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CaseCreationTemplate_ExternalId | String | False |
Subsidiary テーブルのCaseCreationTemplate_ExternalId。 |
CaseCreationTemplate_InternalId | String | False |
Subsidiary テーブルのCaseCreationTemplate_InternalId。 |
CaseCreationTemplate_Name | String | False |
Subsidiary テーブルのCaseCreationTemplate_Name。 |
CaseCreationTemplate_Type | String | False |
Subsidiary テーブルのCaseCreationTemplate_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CaseEscalationTemplate_ExternalId | String | False |
Subsidiary テーブルのCaseEscalationTemplate_ExternalId。 |
CaseEscalationTemplate_InternalId | String | False |
Subsidiary テーブルのCaseEscalationTemplate_InternalId。 |
CaseEscalationTemplate_Name | String | False |
Subsidiary テーブルのCaseEscalationTemplate_Name。 |
CaseEscalationTemplate_Type | String | False |
Subsidiary テーブルのCaseEscalationTemplate_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CaseUpdateTemplate_ExternalId | String | False |
Subsidiary テーブルのCaseUpdateTemplate_ExternalId。 |
CaseUpdateTemplate_InternalId | String | False |
Subsidiary テーブルのCaseUpdateTemplate_InternalId。 |
CaseUpdateTemplate_Name | String | False |
Subsidiary テーブルのCaseUpdateTemplate_Name。 |
CaseUpdateTemplate_Type | String | False |
Subsidiary テーブルのCaseUpdateTemplate_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CheckLayout_ExternalId | String | False |
Subsidiary テーブルのCheckLayout_ExternalId。 |
CheckLayout_InternalId | String | False |
Subsidiary テーブルのCheckLayout_InternalId。 |
CheckLayout_Name | String | False |
Subsidiary テーブルのCheckLayout_Name。 |
CheckLayout_Type | String | False |
Subsidiary テーブルのCheckLayout_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
City | String | False |
Subsidiary テーブルのCity。 |
ClassTranslationList_ReplaceAll | Boolean | False |
Subsidiary テーブルのClassTranslationList_ReplaceAll。 |
CompanyNameForSupportMessages | String | False |
Subsidiary テーブルのCompanyNameForSupportMessages。 |
Consol | String | False |
Subsidiary テーブルのConsol。 |
Country | String | False |
Subsidiary テーブルのCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
Currency_ExternalId | String | False |
Subsidiary テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
Subsidiary テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
Subsidiary テーブルのCurrency_Name。 |
Currency_Type | String | False |
Subsidiary テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Edition | String | False |
Subsidiary テーブルのEdition。 |
String | False |
Subsidiary テーブルのEmail。 | |
EmployeeCaseUpdateTemplate_ExternalId | String | False |
Subsidiary テーブルのEmployeeCaseUpdateTemplate_ExternalId。 |
EmployeeCaseUpdateTemplate_InternalId | String | False |
Subsidiary テーブルのEmployeeCaseUpdateTemplate_InternalId。 |
EmployeeCaseUpdateTemplate_Name | String | False |
Subsidiary テーブルのEmployeeCaseUpdateTemplate_Name。 |
EmployeeCaseUpdateTemplate_Type | String | False |
Subsidiary テーブルのEmployeeCaseUpdateTemplate_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
Subsidiary テーブルのExternalId。 |
Fax | String | False |
Subsidiary テーブルのFax。 |
FederalIdNumber | String | False |
Subsidiary テーブルのFederalIdNumber。 |
FiscalCalendar_ExternalId | String | False |
Subsidiary テーブルのFiscalCalendar_ExternalId。 |
FiscalCalendar_InternalId | String | False |
Subsidiary テーブルのFiscalCalendar_InternalId。 |
FiscalCalendar_Name | String | False |
Subsidiary テーブルのFiscalCalendar_Name。 |
FiscalCalendar_Type | String | False |
Subsidiary テーブルのFiscalCalendar_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
InboundEmail | String | False |
Subsidiary テーブルのInboundEmail。 |
InterCoAccount_ExternalId | String | False |
Subsidiary テーブルのInterCoAccount_ExternalId。 |
InterCoAccount_InternalId | String | False |
Subsidiary テーブルのInterCoAccount_InternalId。 |
InterCoAccount_Name | String | False |
Subsidiary テーブルのInterCoAccount_Name。 |
InterCoAccount_Type | String | False |
Subsidiary テーブルのInterCoAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsElimination | Boolean | False |
Subsidiary テーブルのIsElimination。 |
IsInactive | Boolean | False |
Subsidiary テーブルのIsInactive。 |
LegalName | String | False |
Subsidiary テーブルのLegalName。 |
Logo_ExternalId | String | False |
Subsidiary テーブルのLogo_ExternalId。 |
Logo_InternalId | String | False |
Subsidiary テーブルのLogo_InternalId。 |
Logo_Name | String | False |
Subsidiary テーブルのLogo_Name。 |
Logo_Type | String | False |
Subsidiary テーブルのLogo_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
MainSupportEmailAddress | String | False |
Subsidiary テーブルのMainSupportEmailAddress。 |
Name | String | False |
Subsidiary テーブルのName。 |
NexusList_ReplaceAll | Boolean | False |
Subsidiary テーブルのNexusList_ReplaceAll。 |
NonConsol | String | False |
Subsidiary テーブルのNonConsol。 |
Override | Boolean | False |
Subsidiary テーブルのOverride。 |
PageLogo_ExternalId | String | False |
Subsidiary テーブルのPageLogo_ExternalId。 |
PageLogo_InternalId | String | False |
Subsidiary テーブルのPageLogo_InternalId。 |
PageLogo_Name | String | False |
Subsidiary テーブルのPageLogo_Name。 |
PageLogo_Type | String | False |
Subsidiary テーブルのPageLogo_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Parent_ExternalId | String | False |
Subsidiary テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
Subsidiary テーブルのParent_InternalId。 |
Parent_Name | String | False |
Subsidiary テーブルのParent_Name。 |
Parent_Type | String | False |
Subsidiary テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ReturnAddr | String | False |
Subsidiary テーブルのReturnAddr。 |
ReturnAddress1 | String | False |
Subsidiary テーブルのReturnAddress1。 |
ReturnAddress2 | String | False |
Subsidiary テーブルのReturnAddress2。 |
ReturnCity | String | False |
Subsidiary テーブルのReturnCity。 |
ReturnCountry | String | False |
Subsidiary テーブルのReturnCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
ReturnState | String | False |
Subsidiary テーブルのReturnState。 |
ReturnZip | String | False |
Subsidiary テーブルのReturnZip。 |
ShipAddr | String | False |
Subsidiary テーブルのShipAddr。 |
ShipAddress1 | String | False |
Subsidiary テーブルのShipAddress1。 |
ShipAddress2 | String | False |
Subsidiary テーブルのShipAddress2。 |
ShipCity | String | False |
Subsidiary テーブルのShipCity。 |
ShipCountry | String | False |
Subsidiary テーブルのShipCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
ShipState | String | False |
Subsidiary テーブルのShipState。 |
ShipZip | String | False |
Subsidiary テーブルのShipZip。 |
ShowSubsidiaryName | Boolean | False |
Subsidiary テーブルのShowSubsidiaryName。 |
SsnOrTin | String | False |
Subsidiary テーブルのSsnOrTin。 |
State | String | False |
Subsidiary テーブルのState。 |
State1TaxNumber | String | False |
Subsidiary テーブルのState1TaxNumber。 |
TaxFiscalCalendar_ExternalId | String | False |
Subsidiary テーブルのTaxFiscalCalendar_ExternalId。 |
TaxFiscalCalendar_InternalId | String | False |
Subsidiary テーブルのTaxFiscalCalendar_InternalId。 |
TaxFiscalCalendar_Name | String | False |
Subsidiary テーブルのTaxFiscalCalendar_Name。 |
TaxFiscalCalendar_Type | String | False |
Subsidiary テーブルのTaxFiscalCalendar_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranPrefix | String | False |
Subsidiary テーブルのTranPrefix。 |
Url | String | False |
Subsidiary テーブルのUrl。 |
Zip | String | False |
Subsidiary テーブルのZip。 |
NetSuite のSupportCase テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
SupportCase テーブルのInternalId。 |
Assigned_ExternalId | String | False |
SupportCase テーブルのAssigned_ExternalId。 |
Assigned_InternalId | String | False |
SupportCase テーブルのAssigned_InternalId。 |
Assigned_Name | String | False |
SupportCase テーブルのAssigned_Name。 |
Assigned_Type | String | False |
SupportCase テーブルのAssigned_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CaseNumber | String | False |
SupportCase テーブルのCaseNumber。 |
Category_ExternalId | String | False |
SupportCase テーブルのCategory_ExternalId。 |
Category_InternalId | String | False |
SupportCase テーブルのCategory_InternalId。 |
Category_Name | String | False |
SupportCase テーブルのCategory_Name。 |
Category_Type | String | False |
SupportCase テーブルのCategory_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Company_ExternalId | String | False |
SupportCase テーブルのCompany_ExternalId。 |
Company_InternalId | String | False |
SupportCase テーブルのCompany_InternalId。 |
Company_Name | String | False |
SupportCase テーブルのCompany_Name。 |
Company_Type | String | False |
SupportCase テーブルのCompany_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Contact_ExternalId | String | False |
SupportCase テーブルのContact_ExternalId。 |
Contact_InternalId | String | False |
SupportCase テーブルのContact_InternalId。 |
Contact_Name | String | False |
SupportCase テーブルのContact_Name。 |
Contact_Type | String | False |
SupportCase テーブルのContact_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
SupportCase テーブルのCreatedDate。 |
CustomForm_ExternalId | String | False |
SupportCase テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
SupportCase テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
SupportCase テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
SupportCase テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
String | False |
SupportCase テーブルのEmail。 | |
EmailForm | Boolean | False |
SupportCase テーブルのEmailForm。 |
EndDate | Datetime | False |
SupportCase テーブルのEndDate。 |
EscalateToList_ReplaceAll | Boolean | False |
SupportCase テーブルのEscalateToList_ReplaceAll。 |
EscalationMessage | String | False |
SupportCase テーブルのEscalationMessage。 |
ExternalId | String | False |
SupportCase テーブルのExternalId。 |
HelpDesk | Boolean | False |
SupportCase テーブルのHelpDesk。 |
InboundEmail | String | False |
SupportCase テーブルのInboundEmail。 |
IncomingMessage | String | False |
SupportCase テーブルのIncomingMessage。 |
InsertSolution_ExternalId | String | False |
SupportCase テーブルのInsertSolution_ExternalId。 |
InsertSolution_InternalId | String | False |
SupportCase テーブルのInsertSolution_InternalId。 |
InsertSolution_Name | String | False |
SupportCase テーブルのInsertSolution_Name。 |
InsertSolution_Type | String | False |
SupportCase テーブルのInsertSolution_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
InternalOnly | Boolean | False |
SupportCase テーブルのInternalOnly。 |
IsInactive | Boolean | False |
SupportCase テーブルのIsInactive。 |
Issue_ExternalId | String | False |
SupportCase テーブルのIssue_ExternalId。 |
Issue_InternalId | String | False |
SupportCase テーブルのIssue_InternalId。 |
Issue_Name | String | False |
SupportCase テーブルのIssue_Name。 |
Issue_Type | String | False |
SupportCase テーブルのIssue_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Item_ExternalId | String | False |
SupportCase テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
SupportCase テーブルのItem_InternalId。 |
Item_Name | String | False |
SupportCase テーブルのItem_Name。 |
Item_Type | String | False |
SupportCase テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastMessageDate | Datetime | False |
SupportCase テーブルのLastMessageDate。 |
LastModifiedDate | Datetime | False |
SupportCase テーブルのLastModifiedDate。 |
LastReopenedDate | Datetime | False |
SupportCase テーブルのLastReopenedDate。 |
Module_ExternalId | String | False |
SupportCase テーブルのModule_ExternalId。 |
Module_InternalId | String | False |
SupportCase テーブルのModule_InternalId。 |
Module_Name | String | False |
SupportCase テーブルのModule_Name。 |
Module_Type | String | False |
SupportCase テーブルのModule_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NewSolutionFromMsg | String | False |
SupportCase テーブルのNewSolutionFromMsg。 |
Origin_ExternalId | String | False |
SupportCase テーブルのOrigin_ExternalId。 |
Origin_InternalId | String | False |
SupportCase テーブルのOrigin_InternalId。 |
Origin_Name | String | False |
SupportCase テーブルのOrigin_Name。 |
Origin_Type | String | False |
SupportCase テーブルのOrigin_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OutgoingMessage | String | False |
SupportCase テーブルのOutgoingMessage。 |
Phone | String | False |
SupportCase テーブルのPhone。 |
Priority_ExternalId | String | False |
SupportCase テーブルのPriority_ExternalId。 |
Priority_InternalId | String | False |
SupportCase テーブルのPriority_InternalId。 |
Priority_Name | String | False |
SupportCase テーブルのPriority_Name。 |
Priority_Type | String | False |
SupportCase テーブルのPriority_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Product_ExternalId | String | False |
SupportCase テーブルのProduct_ExternalId。 |
Product_InternalId | String | False |
SupportCase テーブルのProduct_InternalId。 |
Product_Name | String | False |
SupportCase テーブルのProduct_Name。 |
Product_Type | String | False |
SupportCase テーブルのProduct_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SearchSolution | String | False |
SupportCase テーブルのSearchSolution。 |
SerialNumber_ExternalId | String | False |
SupportCase テーブルのSerialNumber_ExternalId。 |
SerialNumber_InternalId | String | False |
SupportCase テーブルのSerialNumber_InternalId。 |
SerialNumber_Name | String | False |
SupportCase テーブルのSerialNumber_Name。 |
SerialNumber_Type | String | False |
SupportCase テーブルのSerialNumber_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SolutionsList_ReplaceAll | Boolean | False |
SupportCase テーブルのSolutionsList_ReplaceAll。 |
StartDate | Datetime | False |
SupportCase テーブルのStartDate。 |
Status_ExternalId | String | False |
SupportCase テーブルのStatus_ExternalId。 |
Status_InternalId | String | False |
SupportCase テーブルのStatus_InternalId。 |
Status_Name | String | False |
SupportCase テーブルのStatus_Name。 |
Status_Type | String | False |
SupportCase テーブルのStatus_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Subsidiary_ExternalId | String | False |
SupportCase テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
SupportCase テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
SupportCase テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
SupportCase テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TimeItemList_ReplaceAll | Boolean | False |
SupportCase テーブルのTimeItemList_ReplaceAll。 |
Title | String | False |
SupportCase テーブルのTitle。 |
NetSuite のSupportCaseIssue テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
SupportCaseIssue テーブルのInternalId。 |
Description | String | False |
SupportCaseIssue テーブルのDescription。 |
ExternalId | String | False |
SupportCaseIssue テーブルのExternalId。 |
InsertBefore_ExternalId | String | False |
SupportCaseIssue テーブルのInsertBefore_ExternalId。 |
InsertBefore_InternalId | String | False |
SupportCaseIssue テーブルのInsertBefore_InternalId。 |
InsertBefore_Name | String | False |
SupportCaseIssue テーブルのInsertBefore_Name。 |
InsertBefore_Type | String | False |
SupportCaseIssue テーブルのInsertBefore_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsInactive | Boolean | False |
SupportCaseIssue テーブルのIsInactive。 |
Name | String | False |
SupportCaseIssue テーブルのName。 |
NetSuite のSupportCaseOrigin テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
SupportCaseOrigin テーブルのInternalId。 |
Description | String | False |
SupportCaseOrigin テーブルのDescription。 |
ExternalId | String | False |
SupportCaseOrigin テーブルのExternalId。 |
InsertBefore_ExternalId | String | False |
SupportCaseOrigin テーブルのInsertBefore_ExternalId。 |
InsertBefore_InternalId | String | False |
SupportCaseOrigin テーブルのInsertBefore_InternalId。 |
InsertBefore_Name | String | False |
SupportCaseOrigin テーブルのInsertBefore_Name。 |
InsertBefore_Type | String | False |
SupportCaseOrigin テーブルのInsertBefore_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsInactive | Boolean | False |
SupportCaseOrigin テーブルのIsInactive。 |
Name | String | False |
SupportCaseOrigin テーブルのName。 |
NetSuite のSupportCasePriority テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
SupportCasePriority テーブルのInternalId。 |
Description | String | False |
SupportCasePriority テーブルのDescription。 |
ExternalId | String | False |
SupportCasePriority テーブルのExternalId。 |
InsertBefore_ExternalId | String | False |
SupportCasePriority テーブルのInsertBefore_ExternalId。 |
InsertBefore_InternalId | String | False |
SupportCasePriority テーブルのInsertBefore_InternalId。 |
InsertBefore_Name | String | False |
SupportCasePriority テーブルのInsertBefore_Name。 |
InsertBefore_Type | String | False |
SupportCasePriority テーブルのInsertBefore_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsInactive | Boolean | False |
SupportCasePriority テーブルのIsInactive。 |
Name | String | False |
SupportCasePriority テーブルのName。 |
NetSuite のSupportCaseStatus テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
SupportCaseStatus テーブルのInternalId。 |
AutoCloseCase | Boolean | False |
SupportCaseStatus テーブルのAutoCloseCase。 |
CaseOnHold | Boolean | False |
SupportCaseStatus テーブルのCaseOnHold。 |
Description | String | False |
SupportCaseStatus テーブルのDescription。 |
ExternalId | String | False |
SupportCaseStatus テーブルのExternalId。 |
InsertBefore_ExternalId | String | False |
SupportCaseStatus テーブルのInsertBefore_ExternalId。 |
InsertBefore_InternalId | String | False |
SupportCaseStatus テーブルのInsertBefore_InternalId。 |
InsertBefore_Name | String | False |
SupportCaseStatus テーブルのInsertBefore_Name。 |
InsertBefore_Type | String | False |
SupportCaseStatus テーブルのInsertBefore_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsInactive | Boolean | False |
SupportCaseStatus テーブルのIsInactive。 |
Name | String | False |
SupportCaseStatus テーブルのName。 |
Stage | String | False |
SupportCaseStatus テーブルのStage。 The allowed values are _closed, _escalated, _open. |
NetSuite のSupportCaseType テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
SupportCaseType テーブルのInternalId。 |
Description | String | False |
SupportCaseType テーブルのDescription。 |
ExternalId | String | False |
SupportCaseType テーブルのExternalId。 |
InsertBefore_ExternalId | String | False |
SupportCaseType テーブルのInsertBefore_ExternalId。 |
InsertBefore_InternalId | String | False |
SupportCaseType テーブルのInsertBefore_InternalId。 |
InsertBefore_Name | String | False |
SupportCaseType テーブルのInsertBefore_Name。 |
InsertBefore_Type | String | False |
SupportCaseType テーブルのInsertBefore_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
IsInactive | Boolean | False |
SupportCaseType テーブルのIsInactive。 |
Name | String | False |
SupportCaseType テーブルのName。 |
NetSuite のTask テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Task テーブルのInternalId。 |
AccessLevel | Boolean | False |
Task テーブルのAccessLevel。 |
ActualTime_TimeSpan | Double | False |
Task テーブルのActualTime_TimeSpan。 |
ActualTime_Unit | String | False |
Task テーブルのActualTime_Unit。 The allowed values are hour. |
Assigned_ExternalId | String | False |
Task テーブルのAssigned_ExternalId。 |
Assigned_InternalId | String | False |
Task テーブルのAssigned_InternalId。 |
Assigned_Name | String | False |
Task テーブルのAssigned_Name。 |
Assigned_Type | String | False |
Task テーブルのAssigned_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Company_ExternalId | String | False |
Task テーブルのCompany_ExternalId。 |
Company_InternalId | String | False |
Task テーブルのCompany_InternalId。 |
Company_Name | String | False |
Task テーブルのCompany_Name。 |
Company_Type | String | False |
Task テーブルのCompany_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CompletedDate | Datetime | False |
Task テーブルのCompletedDate。 |
Contact_ExternalId | String | False |
Task テーブルのContact_ExternalId。 |
Contact_InternalId | String | False |
Task テーブルのContact_InternalId。 |
Contact_Name | String | False |
Task テーブルのContact_Name。 |
Contact_Type | String | False |
Task テーブルのContact_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ContactList_ReplaceAll | Boolean | False |
Task テーブルのContactList_ReplaceAll。 |
CreatedDate | Datetime | False |
Task テーブルのCreatedDate。 |
CustomForm_ExternalId | String | False |
Task テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Task テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Task テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Task テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DueDate | Datetime | False |
Task テーブルのDueDate。 |
EndDate | Datetime | False |
Task テーブルのEndDate。 |
EstimatedTime_TimeSpan | Double | False |
Task テーブルのEstimatedTime_TimeSpan。 |
EstimatedTime_Unit | String | False |
Task テーブルのEstimatedTime_Unit。 The allowed values are hour. |
EstimatedTimeOverride_TimeSpan | Double | False |
Task テーブルのEstimatedTimeOverride_TimeSpan。 |
EstimatedTimeOverride_Unit | String | False |
Task テーブルのEstimatedTimeOverride_Unit。 The allowed values are hour. |
ExternalId | String | False |
Task テーブルのExternalId。 |
LastModifiedDate | Datetime | False |
Task テーブルのLastModifiedDate。 |
Message | String | False |
Task テーブルのMessage。 |
Milestone_ExternalId | String | False |
Task テーブルのMilestone_ExternalId。 |
Milestone_InternalId | String | False |
Task テーブルのMilestone_InternalId。 |
Milestone_Name | String | False |
Task テーブルのMilestone_Name。 |
Milestone_Type | String | False |
Task テーブルのMilestone_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Owner_ExternalId | String | False |
Task テーブルのOwner_ExternalId。 |
Owner_InternalId | String | False |
Task テーブルのOwner_InternalId。 |
Owner_Name | String | False |
Task テーブルのOwner_Name。 |
Owner_Type | String | False |
Task テーブルのOwner_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Parent_ExternalId | String | False |
Task テーブルのParent_ExternalId。 |
Parent_InternalId | String | False |
Task テーブルのParent_InternalId。 |
Parent_Name | String | False |
Task テーブルのParent_Name。 |
Parent_Type | String | False |
Task テーブルのParent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PercentComplete | Double | False |
Task テーブルのPercentComplete。 |
PercentTimeComplete | Double | False |
Task テーブルのPercentTimeComplete。 |
Priority | String | False |
Task テーブルのPriority。 The allowed values are _high, _low, _medium. |
ReminderMinutes | String | False |
Task テーブルのReminderMinutes。 The allowed values are _0minutes, _10minutes, _12hours, _15minutes, _1day, _1hour, _1week, _2days, _2hours, _30minutes, _3days, _3hours, _4hours, _5hours, _5minutes, _8hours. |
ReminderType | String | False |
Task テーブルのReminderType。 The allowed values are _eMail, _popupWindow. |
SendEmail | Boolean | False |
Task テーブルのSendEmail。 |
StartDate | Datetime | False |
Task テーブルのStartDate。 |
Status | String | False |
Task テーブルのStatus。 The allowed values are _completed, _inProgress, _notStarted. |
SupportCase_ExternalId | String | False |
Task テーブルのSupportCase_ExternalId。 |
SupportCase_InternalId | String | False |
Task テーブルのSupportCase_InternalId。 |
SupportCase_Name | String | False |
Task テーブルのSupportCase_Name。 |
SupportCase_Type | String | False |
Task テーブルのSupportCase_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TimedEvent | Boolean | False |
Task テーブルのTimedEvent。 |
TimeItemList_ReplaceAll | Boolean | False |
Task テーブルのTimeItemList_ReplaceAll。 |
TimeRemaining_TimeSpan | Double | False |
Task テーブルのTimeRemaining_TimeSpan。 |
TimeRemaining_Unit | String | False |
Task テーブルのTimeRemaining_Unit。 The allowed values are hour. |
Title | String | False |
Task テーブルのTitle。 |
Transaction_ExternalId | String | False |
Task テーブルのTransaction_ExternalId。 |
Transaction_InternalId | String | False |
Task テーブルのTransaction_InternalId。 |
Transaction_Name | String | False |
Task テーブルのTransaction_Name。 |
Transaction_Type | String | False |
Task テーブルのTransaction_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のTaxGroup テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
TaxGroup テーブルのInternalId。 |
City | String | False |
TaxGroup テーブルのCity。 |
County | String | False |
TaxGroup テーブルのCounty。 |
Description | String | False |
TaxGroup テーブルのDescription。 |
ExternalId | String | False |
TaxGroup テーブルのExternalId。 |
IncludeChildren | Boolean | False |
TaxGroup テーブルのIncludeChildren。 |
IsDefault | Boolean | False |
TaxGroup テーブルのIsDefault。 |
IsInactive | Boolean | False |
TaxGroup テーブルのIsInactive。 |
ItemId | String | False |
TaxGroup テーブルのItemId。 |
NexusCountry_ExternalId | String | False |
TaxGroup テーブルのNexusCountry_ExternalId。 |
NexusCountry_InternalId | String | False |
TaxGroup テーブルのNexusCountry_InternalId。 |
NexusCountry_Name | String | False |
TaxGroup テーブルのNexusCountry_Name。 |
NexusCountry_Type | String | False |
TaxGroup テーブルのNexusCountry_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Piggyback | Boolean | False |
TaxGroup テーブルのPiggyback。 |
Rate | Double | False |
TaxGroup テーブルのRate。 |
State | String | False |
TaxGroup テーブルのState。 |
Taxitem1_ExternalId | String | False |
TaxGroup テーブルのTaxitem1_ExternalId。 |
Taxitem1_InternalId | String | False |
TaxGroup テーブルのTaxitem1_InternalId。 |
Taxitem1_Name | String | False |
TaxGroup テーブルのTaxitem1_Name。 |
Taxitem1_Type | String | False |
TaxGroup テーブルのTaxitem1_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Taxitem2_ExternalId | String | False |
TaxGroup テーブルのTaxitem2_ExternalId。 |
Taxitem2_InternalId | String | False |
TaxGroup テーブルのTaxitem2_InternalId。 |
Taxitem2_Name | String | False |
TaxGroup テーブルのTaxitem2_Name。 |
Taxitem2_Type | String | False |
TaxGroup テーブルのTaxitem2_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxItemList_ReplaceAll | Boolean | False |
TaxGroup テーブルのTaxItemList_ReplaceAll。 |
TaxType_ExternalId | String | False |
TaxGroup テーブルのTaxType_ExternalId。 |
TaxType_InternalId | String | False |
TaxGroup テーブルのTaxType_InternalId。 |
TaxType_Name | String | False |
TaxGroup テーブルのTaxType_Name。 |
TaxType_Type | String | False |
TaxGroup テーブルのTaxType_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Unitprice1 | String | False |
TaxGroup テーブルのUnitprice1。 |
Unitprice2 | String | False |
TaxGroup テーブルのUnitprice2。 |
Zip | String | False |
TaxGroup テーブルのZip。 |
NetSuite のTaxType テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
TaxType テーブルのInternalId。 |
Description | String | False |
TaxType テーブルのDescription。 |
ExternalId | String | False |
TaxType テーブルのExternalId。 |
Name | String | False |
TaxType テーブルのName。 |
NexusesTaxList_ReplaceAll | Boolean | False |
TaxType テーブルのNexusesTaxList_ReplaceAll。 |
NetSuite のTerm テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Term テーブルのInternalId。 |
DateDriven | Boolean | False |
Term テーブルのDateDriven。 |
DayDiscountExpires | Long | False |
Term テーブルのDayDiscountExpires。 |
DayOfMonthNetDue | Long | False |
Term テーブルのDayOfMonthNetDue。 |
DaysUntilExpiry | Long | False |
Term テーブルのDaysUntilExpiry。 |
DaysUntilNetDue | Long | False |
Term テーブルのDaysUntilNetDue。 |
DiscountPercent | Double | False |
Term テーブルのDiscountPercent。 |
DiscountPercentDateDriven | Double | False |
Term テーブルのDiscountPercentDateDriven。 |
DueNextMonthIfWithinDays | Long | False |
Term テーブルのDueNextMonthIfWithinDays。 |
ExternalId | String | False |
Term テーブルのExternalId。 |
IsInactive | Boolean | False |
Term テーブルのIsInactive。 |
Name | String | False |
Term テーブルのName。 |
Preferred | Boolean | False |
Term テーブルのPreferred。 |
NetSuite のTimeBill テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
TimeBill テーブルのInternalId。 |
CaseTaskEvent_ExternalId | String | False |
TimeBill テーブルのCaseTaskEvent_ExternalId。 |
CaseTaskEvent_InternalId | String | False |
TimeBill テーブルのCaseTaskEvent_InternalId。 |
CaseTaskEvent_Name | String | False |
TimeBill テーブルのCaseTaskEvent_Name。 |
CaseTaskEvent_Type | String | False |
TimeBill テーブルのCaseTaskEvent_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Class_ExternalId | String | False |
TimeBill テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
TimeBill テーブルのClass_InternalId。 |
Class_Name | String | False |
TimeBill テーブルのClass_Name。 |
Class_Type | String | False |
TimeBill テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
TimeBill テーブルのCreatedDate。 |
Customer_ExternalId | String | False |
TimeBill テーブルのCustomer_ExternalId。 |
Customer_InternalId | String | False |
TimeBill テーブルのCustomer_InternalId。 |
Customer_Name | String | False |
TimeBill テーブルのCustomer_Name。 |
Customer_Type | String | False |
TimeBill テーブルのCustomer_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
TimeBill テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
TimeBill テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
TimeBill テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
TimeBill テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
TimeBill テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
TimeBill テーブルのDepartment_InternalId。 |
Department_Name | String | False |
TimeBill テーブルのDepartment_Name。 |
Department_Type | String | False |
TimeBill テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Employee_ExternalId | String | False |
TimeBill テーブルのEmployee_ExternalId。 |
Employee_InternalId | String | False |
TimeBill テーブルのEmployee_InternalId。 |
Employee_Name | String | False |
TimeBill テーブルのEmployee_Name。 |
Employee_Type | String | False |
TimeBill テーブルのEmployee_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
TimeBill テーブルのExternalId。 |
Hours_TimeSpan | Double | False |
TimeBill テーブルのHours_TimeSpan。 |
Hours_Unit | String | False |
TimeBill テーブルのHours_Unit。 The allowed values are hour. |
IsBillable | Boolean | False |
TimeBill テーブルのIsBillable。 |
Item_ExternalId | String | False |
TimeBill テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
TimeBill テーブルのItem_InternalId。 |
Item_Name | String | False |
TimeBill テーブルのItem_Name。 |
Item_Type | String | False |
TimeBill テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
TimeBill テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
TimeBill テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
TimeBill テーブルのLocation_InternalId。 |
Location_Name | String | False |
TimeBill テーブルのLocation_Name。 |
Location_Type | String | False |
TimeBill テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
TimeBill テーブルのMemo。 |
OverrideRate | Boolean | False |
TimeBill テーブルのOverrideRate。 |
PaidExternally | Boolean | False |
TimeBill テーブルのPaidExternally。 |
PayrollItem_ExternalId | String | False |
TimeBill テーブルのPayrollItem_ExternalId。 |
PayrollItem_InternalId | String | False |
TimeBill テーブルのPayrollItem_InternalId。 |
PayrollItem_Name | String | False |
TimeBill テーブルのPayrollItem_Name。 |
PayrollItem_Type | String | False |
TimeBill テーブルのPayrollItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Price_ExternalId | String | False |
TimeBill テーブルのPrice_ExternalId。 |
Price_InternalId | String | False |
TimeBill テーブルのPrice_InternalId。 |
Price_Name | String | False |
TimeBill テーブルのPrice_Name。 |
Price_Type | String | False |
TimeBill テーブルのPrice_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Rate | Double | False |
TimeBill テーブルのRate。 |
Status | String | False |
TimeBill テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
TimeBill テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
TimeBill テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
TimeBill テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
TimeBill テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SupervisorApproval | Boolean | False |
TimeBill テーブルのSupervisorApproval。 |
TemporaryLocalJurisdiction_ExternalId | String | False |
TimeBill テーブルのTemporaryLocalJurisdiction_ExternalId。 |
TemporaryLocalJurisdiction_InternalId | String | False |
TimeBill テーブルのTemporaryLocalJurisdiction_InternalId。 |
TemporaryLocalJurisdiction_Name | String | False |
TimeBill テーブルのTemporaryLocalJurisdiction_Name。 |
TemporaryLocalJurisdiction_Type | String | False |
TimeBill テーブルのTemporaryLocalJurisdiction_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TemporaryStateJurisdiction_ExternalId | String | False |
TimeBill テーブルのTemporaryStateJurisdiction_ExternalId。 |
TemporaryStateJurisdiction_InternalId | String | False |
TimeBill テーブルのTemporaryStateJurisdiction_InternalId。 |
TemporaryStateJurisdiction_Name | String | False |
TimeBill テーブルのTemporaryStateJurisdiction_Name。 |
TemporaryStateJurisdiction_Type | String | False |
TimeBill テーブルのTemporaryStateJurisdiction_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TimeType | String | False |
TimeBill テーブルのTimeType。 The allowed values are _actualTime, _plannedTime. |
TranDate | Datetime | False |
TimeBill テーブルのTranDate。 |
Workplace_ExternalId | String | False |
TimeBill テーブルのWorkplace_ExternalId。 |
Workplace_InternalId | String | False |
TimeBill テーブルのWorkplace_InternalId。 |
Workplace_Name | String | False |
TimeBill テーブルのWorkplace_Name。 |
Workplace_Type | String | False |
TimeBill テーブルのWorkplace_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のTopic テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Topic テーブルのInternalId。 |
Description | String | False |
Topic テーブルのDescription。 |
ExternalId | String | False |
Topic テーブルのExternalId。 |
IsInactive | Boolean | False |
Topic テーブルのIsInactive。 |
LongDescription | String | False |
Topic テーブルのLongDescription。 |
ParentTopic_ExternalId | String | False |
Topic テーブルのParentTopic_ExternalId。 |
ParentTopic_InternalId | String | False |
Topic テーブルのParentTopic_InternalId。 |
ParentTopic_Name | String | False |
Topic テーブルのParentTopic_Name。 |
ParentTopic_Type | String | False |
Topic テーブルのParentTopic_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SolutionList_ReplaceAll | Boolean | False |
Topic テーブルのSolutionList_ReplaceAll。 |
Title | String | False |
Topic テーブルのTitle。 |
NetSuite のTransferOrder テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
TransferOrder テーブルのInternalId。 |
AltShippingCost | Double | False |
TransferOrder テーブルのAltShippingCost。 |
Class_ExternalId | String | False |
TransferOrder テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
TransferOrder テーブルのClass_InternalId。 |
Class_Name | String | False |
TransferOrder テーブルのClass_Name。 |
Class_Type | String | False |
TransferOrder テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
TransferOrder テーブルのCreatedDate。 |
CustomForm_ExternalId | String | False |
TransferOrder テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
TransferOrder テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
TransferOrder テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
TransferOrder テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
TransferOrder テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
TransferOrder テーブルのDepartment_InternalId。 |
Department_Name | String | False |
TransferOrder テーブルのDepartment_Name。 |
Department_Type | String | False |
TransferOrder テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Employee_ExternalId | String | False |
TransferOrder テーブルのEmployee_ExternalId。 |
Employee_InternalId | String | False |
TransferOrder テーブルのEmployee_InternalId。 |
Employee_Name | String | False |
TransferOrder テーブルのEmployee_Name。 |
Employee_Type | String | False |
TransferOrder テーブルのEmployee_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
TransferOrder テーブルのExternalId。 |
Fob | String | False |
TransferOrder テーブルのFob。 |
HandlingTax1Rate | Double | False |
TransferOrder テーブルのHandlingTax1Rate。 |
HandlingTax2Rate | Double | False |
TransferOrder テーブルのHandlingTax2Rate。 |
HandlingTaxCode_ExternalId | String | False |
TransferOrder テーブルのHandlingTaxCode_ExternalId。 |
HandlingTaxCode_InternalId | String | False |
TransferOrder テーブルのHandlingTaxCode_InternalId。 |
HandlingTaxCode_Name | String | False |
TransferOrder テーブルのHandlingTaxCode_Name。 |
HandlingTaxCode_Type | String | False |
TransferOrder テーブルのHandlingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ItemList_ReplaceAll | Boolean | False |
TransferOrder テーブルのItemList_ReplaceAll。 |
LastModifiedDate | Datetime | False |
TransferOrder テーブルのLastModifiedDate。 |
LinkedTrackingNumbers | String | False |
TransferOrder テーブルのLinkedTrackingNumbers。 |
Location_ExternalId | String | False |
TransferOrder テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
TransferOrder テーブルのLocation_InternalId。 |
Location_Name | String | False |
TransferOrder テーブルのLocation_Name。 |
Location_Type | String | False |
TransferOrder テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
TransferOrder テーブルのMemo。 |
OrderStatus | String | False |
TransferOrder テーブルのOrderStatus。 The allowed values are _pendingApproval, _pendingFulfillment, _rejected, _partiallyFulfilled, _pendingReceiptPartFulfilled, _pendingReceipt, _received, _closed, _undefined. |
ShipAddress | String | False |
TransferOrder テーブルのShipAddress。 |
ShipAddressList_ExternalId | String | False |
TransferOrder テーブルのShipAddressList_ExternalId。 |
ShipAddressList_InternalId | String | False |
TransferOrder テーブルのShipAddressList_InternalId。 |
ShipAddressList_Name | String | False |
TransferOrder テーブルのShipAddressList_Name。 |
ShipAddressList_Type | String | False |
TransferOrder テーブルのShipAddressList_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShipComplete | Boolean | False |
TransferOrder テーブルのShipComplete。 |
ShipDate | Datetime | False |
TransferOrder テーブルのShipDate。 |
ShipMethod_ExternalId | String | False |
TransferOrder テーブルのShipMethod_ExternalId。 |
ShipMethod_InternalId | String | False |
TransferOrder テーブルのShipMethod_InternalId。 |
ShipMethod_Name | String | False |
TransferOrder テーブルのShipMethod_Name。 |
ShipMethod_Type | String | False |
TransferOrder テーブルのShipMethod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ShippingCost | Double | False |
TransferOrder テーブルのShippingCost。 |
ShippingTax1Rate | Double | False |
TransferOrder テーブルのShippingTax1Rate。 |
ShippingTax2Rate | Double | False |
TransferOrder テーブルのShippingTax2Rate。 |
ShippingTaxCode_ExternalId | String | False |
TransferOrder テーブルのShippingTaxCode_ExternalId。 |
ShippingTaxCode_InternalId | String | False |
TransferOrder テーブルのShippingTaxCode_InternalId。 |
ShippingTaxCode_Name | String | False |
TransferOrder テーブルのShippingTaxCode_Name。 |
ShippingTaxCode_Type | String | False |
TransferOrder テーブルのShippingTaxCode_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Source | String | False |
TransferOrder テーブルのSource。 |
Status | String | False |
TransferOrder テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
TransferOrder テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
TransferOrder テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
TransferOrder テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
TransferOrder テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SubTotal | Double | False |
TransferOrder テーブルのSubTotal。 |
Total | Double | False |
TransferOrder テーブルのTotal。 |
TrackingNumbers | String | False |
TransferOrder テーブルのTrackingNumbers。 |
TranDate | Datetime | False |
TransferOrder テーブルのTranDate。 |
TranId | String | False |
TransferOrder テーブルのTranId。 |
TransactionShipAddress_ShipAddr1 | String | False |
TransferOrder テーブルのTransactionShipAddress_ShipAddr1。 |
TransactionShipAddress_ShipAddr2 | String | False |
TransferOrder テーブルのTransactionShipAddress_ShipAddr2。 |
TransactionShipAddress_ShipAddr3 | String | False |
TransferOrder テーブルのTransactionShipAddress_ShipAddr3。 |
TransactionShipAddress_ShipAddressee | String | False |
TransferOrder テーブルのTransactionShipAddress_ShipAddressee。 |
TransactionShipAddress_ShipAttention | String | False |
TransferOrder テーブルのTransactionShipAddress_ShipAttention。 |
TransactionShipAddress_ShipCity | String | False |
TransferOrder テーブルのTransactionShipAddress_ShipCity。 |
TransactionShipAddress_ShipCountry | String | False |
TransferOrder テーブルのTransactionShipAddress_ShipCountry。 The allowed values are _afghanistan, _alandIslands, _albania, _algeria, _americanSamoa, _andorra, _angola, _anguilla, _antarctica, _antiguaAndBarbuda, _argentina, _armenia, _aruba, _australia, _austria, _azerbaijan, _bahamas, _bahrain, _bangladesh, _barbados, _belarus, _belgium, _belize, _benin, _bermuda, _bhutan, _bolivia, _bonaireSaintEustatiusAndSaba, _bosniaAndHerzegovina, _botswana, _bouvetIsland, _brazil, _britishIndianOceanTerritory, _bruneiDarussalam, _bulgaria, _burkinaFaso, _burundi, _cambodia, _cameroon, _canada, _canaryIslands, _capeVerde, _caymanIslands, _centralAfricanRepublic, _ceutaAndMelilla, _chad, _chile, _china, _christmasIsland, _cocosKeelingIslands, _colombia, _comoros, _congoDemocraticPeoplesRepublic, _congoRepublicOf, _cookIslands, _costaRica, _coteDIvoire, _croatiaHrvatska, _cuba, _curacao, _cyprus, _czechRepublic, _denmark, _djibouti, _dominica, _dominicanRepublic, _eastTimor, _ecuador, _egypt, _elSalvador, _equatorialGuinea, _eritrea, _estonia, _ethiopia, _falklandIslands, _faroeIslands, _fiji, _finland, _france, _frenchGuiana, _frenchPolynesia, _frenchSouthernTerritories, _gabon, _gambia, _georgia, _germany, _ghana, _gibraltar, _greece, _greenland, _grenada, _guadeloupe, _guam, _guatemala, _guernsey, _guinea, _guineaBissau, _guyana, _haiti, _heardAndMcDonaldIslands, _holySeeCityVaticanState, _honduras, _hongKong, _hungary, _iceland, _india, _indonesia, _iranIslamicRepublicOf, _iraq, _ireland, _isleOfMan, _israel, _italy, _jamaica, _japan, _jersey, _jordan, _kazakhstan, _kenya, _kiribati, _koreaDemocraticPeoplesRepublic, _koreaRepublicOf, _kosovo, _kuwait, _kyrgyzstan, _laoPeoplesDemocraticRepublic, _latvia, _lebanon, _lesotho, _liberia, _libyanArabJamahiriya, _liechtenstein, _lithuania, _luxembourg, _macau, _macedonia, _madagascar, _malawi, _malaysia, _maldives, _mali, _malta, _marshallIslands, _martinique, _mauritania, _mauritius, _mayotte, _mexico, _micronesiaFederalStateOf, _moldovaRepublicOf, _monaco, _mongolia, _montenegro, _montserrat, _morocco, _mozambique, _myanmar, _namibia, _nauru, _nepal, _netherlands, _newCaledonia, _newZealand, _nicaragua, _niger, _nigeria, _niue, _norfolkIsland, _northernMarianaIslands, _norway, _oman, _pakistan, _palau, _palestinianTerritories, _panama, _papuaNewGuinea, _paraguay, _peru, _philippines, _pitcairnIsland, _poland, _portugal, _puertoRico, _qatar, _reunionIsland, _romania, _russianFederation, _rwanda, _saintBarthelemy, _saintHelena, _saintKittsAndNevis, _saintLucia, _saintMartin, _saintVincentAndTheGrenadines, _samoa, _sanMarino, _saoTomeAndPrincipe, _saudiArabia, _senegal, _serbia, _seychelles, _sierraLeone, _singapore, _sintMaarten, _slovakRepublic, _slovenia, _solomonIslands, _somalia, _southAfrica, _southGeorgia, _southSudan, _spain, _sriLanka, _stPierreAndMiquelon, _sudan, _suriname, _svalbardAndJanMayenIslands, _swaziland, _sweden, _switzerland, _syrianArabRepublic, _taiwan, _tajikistan, _tanzania, _thailand, _togo, _tokelau, _tonga, _trinidadAndTobago, _tunisia, _turkey, _turkmenistan, _turksAndCaicosIslands, _tuvalu, _uganda, _ukraine, _unitedArabEmirates, _unitedKingdomGB, _unitedStates, _uruguay, _uSMinorOutlyingIslands, _uzbekistan, _vanuatu, _venezuela, _vietnam, _virginIslandsBritish, _virginIslandsUSA, _wallisAndFutunaIslands, _westernSahara, _yemen, _zambia, _zimbabwe. |
TransactionShipAddress_ShipIsResidential | Boolean | False |
TransferOrder テーブルのTransactionShipAddress_ShipIsResidential。 |
TransactionShipAddress_ShipPhone | String | False |
TransferOrder テーブルのTransactionShipAddress_ShipPhone。 |
TransactionShipAddress_ShipState | String | False |
TransferOrder テーブルのTransactionShipAddress_ShipState。 |
TransactionShipAddress_ShipZip | String | False |
TransferOrder テーブルのTransactionShipAddress_ShipZip。 |
TransferLocation_ExternalId | String | False |
TransferOrder テーブルのTransferLocation_ExternalId。 |
TransferLocation_InternalId | String | False |
TransferOrder テーブルのTransferLocation_InternalId。 |
TransferLocation_Name | String | False |
TransferOrder テーブルのTransferLocation_Name。 |
TransferLocation_Type | String | False |
TransferOrder テーブルのTransferLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のUnitsType テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
UnitsType テーブルのInternalId。 |
ExternalId | String | False |
UnitsType テーブルのExternalId。 |
IsInactive | Boolean | False |
UnitsType テーブルのIsInactive。 |
Name | String | False |
UnitsType テーブルのName。 |
UomList_ReplaceAll | Boolean | False |
UnitsType テーブルのUomList_ReplaceAll。 |
NetSuite のVendor テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
Vendor テーブルのInternalId。 |
AccountNumber | String | False |
Vendor テーブルのAccountNumber。 |
AddressbookList_ReplaceAll | Boolean | False |
Vendor テーブルのAddressbookList_ReplaceAll。 |
AltEmail | String | False |
Vendor テーブルのAltEmail。 |
AltName | String | False |
Vendor テーブルのAltName。 |
AltPhone | String | False |
Vendor テーブルのAltPhone。 |
Balance | Double | False |
Vendor テーブルのBalance。 |
BalancePrimary | Double | False |
Vendor テーブルのBalancePrimary。 |
Bcn | String | False |
Vendor テーブルのBcn。 |
BillPay | Boolean | False |
Vendor テーブルのBillPay。 |
Category_ExternalId | String | False |
Vendor テーブルのCategory_ExternalId。 |
Category_InternalId | String | False |
Vendor テーブルのCategory_InternalId。 |
Category_Name | String | False |
Vendor テーブルのCategory_Name。 |
Category_Type | String | False |
Vendor テーブルのCategory_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Comments | String | False |
Vendor テーブルのComments。 |
CompanyName | String | False |
Vendor テーブルのCompanyName。 |
CreditLimit | Double | False |
Vendor テーブルのCreditLimit。 |
Currency_ExternalId | String | False |
Vendor テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
Vendor テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
Vendor テーブルのCurrency_Name。 |
Currency_Type | String | False |
Vendor テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyList_ReplaceAll | Boolean | False |
Vendor テーブルのCurrencyList_ReplaceAll。 |
CustomForm_ExternalId | String | False |
Vendor テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
Vendor テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
Vendor テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
Vendor テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DateCreated | Datetime | False |
Vendor テーブルのDateCreated。 |
DefaultAddress | String | False |
Vendor テーブルのDefaultAddress。 |
EligibleForCommission | Boolean | False |
Vendor テーブルのEligibleForCommission。 |
String | False |
Vendor テーブルのEmail。 | |
EmailPreference | String | False |
Vendor テーブルのEmailPreference。 The allowed values are _default, _hTML, _pDF. |
EmailTransactions | Boolean | False |
Vendor テーブルのEmailTransactions。 |
EntityId | String | False |
Vendor テーブルのEntityId。 |
ExpenseAccount_ExternalId | String | False |
Vendor テーブルのExpenseAccount_ExternalId。 |
ExpenseAccount_InternalId | String | False |
Vendor テーブルのExpenseAccount_InternalId。 |
ExpenseAccount_Name | String | False |
Vendor テーブルのExpenseAccount_Name。 |
ExpenseAccount_Type | String | False |
Vendor テーブルのExpenseAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
Vendor テーブルのExternalId。 |
Fax | String | False |
Vendor テーブルのFax。 |
FaxTransactions | Boolean | False |
Vendor テーブルのFaxTransactions。 |
FirstName | String | False |
Vendor テーブルのFirstName。 |
GiveAccess | Boolean | False |
Vendor テーブルのGiveAccess。 |
GlobalSubscriptionStatus | String | False |
Vendor テーブルのGlobalSubscriptionStatus。 The allowed values are _confirmedOptIn, _confirmedOptOut, _softOptIn, _softOptOut. |
HomePhone | String | False |
Vendor テーブルのHomePhone。 |
Image_ExternalId | String | False |
Vendor テーブルのImage_ExternalId。 |
Image_InternalId | String | False |
Vendor テーブルのImage_InternalId。 |
Image_Name | String | False |
Vendor テーブルのImage_Name。 |
Image_Type | String | False |
Vendor テーブルのImage_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Is1099Eligible | Boolean | False |
Vendor テーブルのIs1099Eligible。 |
IsAccountant | Boolean | False |
Vendor テーブルのIsAccountant。 |
IsInactive | Boolean | False |
Vendor テーブルのIsInactive。 |
IsJobResourceVend | Boolean | False |
Vendor テーブルのIsJobResourceVend。 |
IsPerson | Boolean | False |
Vendor テーブルのIsPerson。 |
LaborCost | Double | False |
Vendor テーブルのLaborCost。 |
LastModifiedDate | Datetime | False |
Vendor テーブルのLastModifiedDate。 |
LastName | String | False |
Vendor テーブルのLastName。 |
LegalName | String | False |
Vendor テーブルのLegalName。 |
MiddleName | String | False |
Vendor テーブルのMiddleName。 |
MobilePhone | String | False |
Vendor テーブルのMobilePhone。 |
OpeningBalance | Double | False |
Vendor テーブルのOpeningBalance。 |
OpeningBalanceAccount_ExternalId | String | False |
Vendor テーブルのOpeningBalanceAccount_ExternalId。 |
OpeningBalanceAccount_InternalId | String | False |
Vendor テーブルのOpeningBalanceAccount_InternalId。 |
OpeningBalanceAccount_Name | String | False |
Vendor テーブルのOpeningBalanceAccount_Name。 |
OpeningBalanceAccount_Type | String | False |
Vendor テーブルのOpeningBalanceAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
OpeningBalanceDate | Datetime | False |
Vendor テーブルのOpeningBalanceDate。 |
Password | String | False |
Vendor テーブルのPassword。 |
Password2 | String | False |
Vendor テーブルのPassword2。 |
PayablesAccount_ExternalId | String | False |
Vendor テーブルのPayablesAccount_ExternalId。 |
PayablesAccount_InternalId | String | False |
Vendor テーブルのPayablesAccount_InternalId。 |
PayablesAccount_Name | String | False |
Vendor テーブルのPayablesAccount_Name。 |
PayablesAccount_Type | String | False |
Vendor テーブルのPayablesAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Phone | String | False |
Vendor テーブルのPhone。 |
PhoneticName | String | False |
Vendor テーブルのPhoneticName。 |
PricingScheduleList_ReplaceAll | Boolean | False |
Vendor テーブルのPricingScheduleList_ReplaceAll。 |
PrintOnCheckAs | String | False |
Vendor テーブルのPrintOnCheckAs。 |
PrintTransactions | Boolean | False |
Vendor テーブルのPrintTransactions。 |
RepresentingSubsidiary_ExternalId | String | False |
Vendor テーブルのRepresentingSubsidiary_ExternalId。 |
RepresentingSubsidiary_InternalId | String | False |
Vendor テーブルのRepresentingSubsidiary_InternalId。 |
RepresentingSubsidiary_Name | String | False |
Vendor テーブルのRepresentingSubsidiary_Name。 |
RepresentingSubsidiary_Type | String | False |
Vendor テーブルのRepresentingSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
RequirePwdChange | Boolean | False |
Vendor テーブルのRequirePwdChange。 |
RolesList_ReplaceAll | Boolean | False |
Vendor テーブルのRolesList_ReplaceAll。 |
Salutation | String | False |
Vendor テーブルのSalutation。 |
SendEmail | Boolean | False |
Vendor テーブルのSendEmail。 |
SubscriptionsList_ReplaceAll | Boolean | False |
Vendor テーブルのSubscriptionsList_ReplaceAll。 |
Subsidiary_ExternalId | String | False |
Vendor テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
Vendor テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
Vendor テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
Vendor テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TaxIdNum | String | False |
Vendor テーブルのTaxIdNum。 |
TaxItem_ExternalId | String | False |
Vendor テーブルのTaxItem_ExternalId。 |
TaxItem_InternalId | String | False |
Vendor テーブルのTaxItem_InternalId。 |
TaxItem_Name | String | False |
Vendor テーブルのTaxItem_Name。 |
TaxItem_Type | String | False |
Vendor テーブルのTaxItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Terms_ExternalId | String | False |
Vendor テーブルのTerms_ExternalId。 |
Terms_InternalId | String | False |
Vendor テーブルのTerms_InternalId。 |
Terms_Name | String | False |
Vendor テーブルのTerms_Name。 |
Terms_Type | String | False |
Vendor テーブルのTerms_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Title | String | False |
Vendor テーブルのTitle。 |
UnbilledOrders | Double | False |
Vendor テーブルのUnbilledOrders。 |
UnbilledOrdersPrimary | Double | False |
Vendor テーブルのUnbilledOrdersPrimary。 |
Url | String | False |
Vendor テーブルのUrl。 |
VatRegNumber | String | False |
Vendor テーブルのVatRegNumber。 |
WorkCalendar_ExternalId | String | False |
Vendor テーブルのWorkCalendar_ExternalId。 |
WorkCalendar_InternalId | String | False |
Vendor テーブルのWorkCalendar_InternalId。 |
WorkCalendar_Name | String | False |
Vendor テーブルのWorkCalendar_Name。 |
WorkCalendar_Type | String | False |
Vendor テーブルのWorkCalendar_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のVendorBill テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
VendorBill テーブルのInternalId。 |
Account_ExternalId | String | False |
VendorBill テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
VendorBill テーブルのAccount_InternalId。 |
Account_Name | String | False |
VendorBill テーブルのAccount_Name。 |
Account_Type | String | False |
VendorBill テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ApprovalStatus_ExternalId | String | False |
VendorBill テーブルのApprovalStatus_ExternalId。 |
ApprovalStatus_InternalId | String | False |
VendorBill テーブルのApprovalStatus_InternalId。 |
ApprovalStatus_Name | String | False |
VendorBill テーブルのApprovalStatus_Name。 |
ApprovalStatus_Type | String | False |
VendorBill テーブルのApprovalStatus_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Class_ExternalId | String | False |
VendorBill テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
VendorBill テーブルのClass_InternalId。 |
Class_Name | String | False |
VendorBill テーブルのClass_Name。 |
Class_Type | String | False |
VendorBill テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
VendorBill テーブルのCreatedDate。 |
CreditLimit | Double | False |
VendorBill テーブルのCreditLimit。 |
Currency_ExternalId | String | False |
VendorBill テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
VendorBill テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
VendorBill テーブルのCurrency_Name。 |
Currency_Type | String | False |
VendorBill テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
VendorBill テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
VendorBill テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
VendorBill テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
VendorBill テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
VendorBill テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
VendorBill テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
VendorBill テーブルのDepartment_InternalId。 |
Department_Name | String | False |
VendorBill テーブルのDepartment_Name。 |
Department_Type | String | False |
VendorBill テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
DiscountAmount | Double | False |
VendorBill テーブルのDiscountAmount。 |
DiscountDate | Datetime | False |
VendorBill テーブルのDiscountDate。 |
DueDate | Datetime | False |
VendorBill テーブルのDueDate。 |
Entity_ExternalId | String | False |
VendorBill テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
VendorBill テーブルのEntity_InternalId。 |
Entity_Name | String | False |
VendorBill テーブルのEntity_Name。 |
Entity_Type | String | False |
VendorBill テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExchangeRate | Double | False |
VendorBill テーブルのExchangeRate。 |
ExpenseList_ReplaceAll | Boolean | False |
VendorBill テーブルのExpenseList_ReplaceAll。 |
ExternalId | String | False |
VendorBill テーブルのExternalId。 |
ItemList_ReplaceAll | Boolean | False |
VendorBill テーブルのItemList_ReplaceAll。 |
LandedCostMethod | String | False |
VendorBill テーブルのLandedCostMethod。 The allowed values are _quantity, _value, _weight. |
LandedCostsList_ReplaceAll | Boolean | False |
VendorBill テーブルのLandedCostsList_ReplaceAll。 |
LastModifiedDate | Datetime | False |
VendorBill テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
VendorBill テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
VendorBill テーブルのLocation_InternalId。 |
Location_Name | String | False |
VendorBill テーブルのLocation_Name。 |
Location_Type | String | False |
VendorBill テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
VendorBill テーブルのMemo。 |
NextApprover_ExternalId | String | False |
VendorBill テーブルのNextApprover_ExternalId。 |
NextApprover_InternalId | String | False |
VendorBill テーブルのNextApprover_InternalId。 |
NextApprover_Name | String | False |
VendorBill テーブルのNextApprover_Name。 |
NextApprover_Type | String | False |
VendorBill テーブルのNextApprover_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PostingPeriod_ExternalId | String | False |
VendorBill テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
VendorBill テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
VendorBill テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
VendorBill テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Status | String | False |
VendorBill テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
VendorBill テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
VendorBill テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
VendorBill テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
VendorBill テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Tax2Total | Double | False |
VendorBill テーブルのTax2Total。 |
TaxTotal | Double | False |
VendorBill テーブルのTaxTotal。 |
Terms_ExternalId | String | False |
VendorBill テーブルのTerms_ExternalId。 |
Terms_InternalId | String | False |
VendorBill テーブルのTerms_InternalId。 |
Terms_Name | String | False |
VendorBill テーブルのTerms_Name。 |
Terms_Type | String | False |
VendorBill テーブルのTerms_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranDate | Datetime | False |
VendorBill テーブルのTranDate。 |
TranId | String | False |
ベンダーの請求書番号など、このトランザクションを識別するための番号。 |
UserTotal | Double | False |
VendorBill テーブルのUserTotal。 |
VatRegNum | String | False |
VendorBill テーブルのVatRegNum。 |
NetSuite のVendorCategory テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
VendorCategory テーブルのInternalId。 |
ExternalId | String | False |
VendorCategory テーブルのExternalId。 |
IsInactive | Boolean | False |
VendorCategory テーブルのIsInactive。 |
IsTaxAgency | Boolean | False |
VendorCategory テーブルのIsTaxAgency。 |
Name | String | False |
VendorCategory テーブルのName。 |
NetSuite のVendorCredit テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
VendorCredit テーブルのInternalId。 |
Account_ExternalId | String | False |
VendorCredit テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
VendorCredit テーブルのAccount_InternalId。 |
Account_Name | String | False |
VendorCredit テーブルのAccount_Name。 |
Account_Type | String | False |
VendorCredit テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Applied | Double | False |
VendorCredit テーブルのApplied。 |
ApplyList_ReplaceAll | Boolean | False |
VendorCredit テーブルのApplyList_ReplaceAll。 |
AutoApply | Boolean | False |
VendorCredit テーブルのAutoApply。 |
Class_ExternalId | String | False |
VendorCredit テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
VendorCredit テーブルのClass_InternalId。 |
Class_Name | String | False |
VendorCredit テーブルのClass_Name。 |
Class_Type | String | False |
VendorCredit テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
VendorCredit テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
VendorCredit テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
VendorCredit テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
VendorCredit テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
VendorCredit テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
VendorCredit テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
VendorCredit テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
VendorCredit テーブルのCurrency_Name。 |
Currency_Type | String | False |
VendorCredit テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
VendorCredit テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
VendorCredit テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
VendorCredit テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
VendorCredit テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
VendorCredit テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
VendorCredit テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
VendorCredit テーブルのDepartment_InternalId。 |
Department_Name | String | False |
VendorCredit テーブルのDepartment_Name。 |
Department_Type | String | False |
VendorCredit テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Entity_ExternalId | String | False |
VendorCredit テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
VendorCredit テーブルのEntity_InternalId。 |
Entity_Name | String | False |
VendorCredit テーブルのEntity_Name。 |
Entity_Type | String | False |
VendorCredit テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExchangeRate | Double | False |
VendorCredit テーブルのExchangeRate。 |
ExpenseList_ReplaceAll | Boolean | False |
VendorCredit テーブルのExpenseList_ReplaceAll。 |
ExternalId | String | False |
VendorCredit テーブルのExternalId。 |
ItemList_ReplaceAll | Boolean | False |
VendorCredit テーブルのItemList_ReplaceAll。 |
LastModifiedDate | Datetime | False |
VendorCredit テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
VendorCredit テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
VendorCredit テーブルのLocation_InternalId。 |
Location_Name | String | False |
VendorCredit テーブルのLocation_Name。 |
Location_Type | String | False |
VendorCredit テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
VendorCredit テーブルのMemo。 |
PostingPeriod_ExternalId | String | False |
VendorCredit テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
VendorCredit テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
VendorCredit テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
VendorCredit テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Subsidiary_ExternalId | String | False |
VendorCredit テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
VendorCredit テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
VendorCredit テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
VendorCredit テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Total | Double | False |
VendorCredit テーブルのTotal。 |
TranDate | Datetime | False |
VendorCredit テーブルのTranDate。 |
TranId | String | False |
VendorCredit テーブルのTranId。 |
UnApplied | Double | False |
VendorCredit テーブルのUnApplied。 |
UserTotal | Double | False |
VendorCredit テーブルのUserTotal。 |
NetSuite のVendorPayment テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
VendorPayment テーブルのInternalId。 |
Account_ExternalId | String | False |
VendorPayment テーブルのAccount_ExternalId。 |
Account_InternalId | String | False |
VendorPayment テーブルのAccount_InternalId。 |
Account_Name | String | False |
VendorPayment テーブルのAccount_Name。 |
Account_Type | String | False |
VendorPayment テーブルのAccount_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Address | String | False |
VendorPayment テーブルのAddress。 |
ApAcct_ExternalId | String | False |
VendorPayment テーブルのApAcct_ExternalId。 |
ApAcct_InternalId | String | False |
VendorPayment テーブルのApAcct_InternalId。 |
ApAcct_Name | String | False |
VendorPayment テーブルのApAcct_Name。 |
ApAcct_Type | String | False |
VendorPayment テーブルのApAcct_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ApplyList_ReplaceAll | Boolean | False |
VendorPayment テーブルのApplyList_ReplaceAll。 |
Balance | Double | False |
VendorPayment テーブルのBalance。 |
BillPay | Boolean | False |
VendorPayment テーブルのBillPay。 |
Class_ExternalId | String | False |
VendorPayment テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
VendorPayment テーブルのClass_InternalId。 |
Class_Name | String | False |
VendorPayment テーブルのClass_Name。 |
Class_Type | String | False |
VendorPayment テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
VendorPayment テーブルのCreatedDate。 |
CreditList_ReplaceAll | Boolean | False |
VendorPayment テーブルのCreditList_ReplaceAll。 |
Currency_ExternalId | String | False |
VendorPayment テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
VendorPayment テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
VendorPayment テーブルのCurrency_Name。 |
Currency_Type | String | False |
VendorPayment テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
VendorPayment テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
VendorPayment テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
VendorPayment テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
VendorPayment テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
VendorPayment テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
VendorPayment テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
VendorPayment テーブルのDepartment_InternalId。 |
Department_Name | String | False |
VendorPayment テーブルのDepartment_Name。 |
Department_Type | String | False |
VendorPayment テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Entity_ExternalId | String | False |
VendorPayment テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
VendorPayment テーブルのEntity_InternalId。 |
Entity_Name | String | False |
VendorPayment テーブルのEntity_Name。 |
Entity_Type | String | False |
VendorPayment テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExchangeRate | Double | False |
VendorPayment テーブルのExchangeRate。 |
ExternalId | String | False |
VendorPayment テーブルのExternalId。 |
LastModifiedDate | Datetime | False |
VendorPayment テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
VendorPayment テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
VendorPayment テーブルのLocation_InternalId。 |
Location_Name | String | False |
VendorPayment テーブルのLocation_Name。 |
Location_Type | String | False |
VendorPayment テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
VendorPayment テーブルのMemo。 |
PostingPeriod_ExternalId | String | False |
VendorPayment テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
VendorPayment テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
VendorPayment テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
VendorPayment テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
PrintVoucher | Boolean | False |
VendorPayment テーブルのPrintVoucher。 |
Status | String | False |
VendorPayment テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
VendorPayment テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
VendorPayment テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
VendorPayment テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
VendorPayment テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ToAch | Boolean | False |
VendorPayment テーブルのToAch。 |
ToBePrinted | Boolean | False |
VendorPayment テーブルのToBePrinted。 |
Total | Double | False |
VendorPayment テーブルのTotal。 |
TranDate | Datetime | False |
VendorPayment テーブルのTranDate。 |
TranId | String | False |
To Be Printed=true の場合、印刷時に小切手の番号付けを開始します。小切手を送信してただちに印刷すると、NetSuite は最大の小切手番号を1増やします。この小切手には別の番号を指定することができますが、その次の小切手番号は前の小切手番号の増分に戻ります。 |
VoidJournal_ExternalId | String | False |
VendorPayment テーブルのVoidJournal_ExternalId。 |
VoidJournal_InternalId | String | False |
VendorPayment テーブルのVoidJournal_InternalId。 |
VoidJournal_Name | String | False |
VendorPayment テーブルのVoidJournal_Name。 |
VoidJournal_Type | String | False |
VendorPayment テーブルのVoidJournal_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のVendorReturnAuthorization テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
VendorReturnAuthorization テーブルのInternalId。 |
Class_ExternalId | String | False |
VendorReturnAuthorization テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
VendorReturnAuthorization テーブルのClass_InternalId。 |
Class_Name | String | False |
VendorReturnAuthorization テーブルのClass_Name。 |
Class_Type | String | False |
VendorReturnAuthorization テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
VendorReturnAuthorization テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
VendorReturnAuthorization テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
VendorReturnAuthorization テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
VendorReturnAuthorization テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
VendorReturnAuthorization テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Currency_ExternalId | String | False |
VendorReturnAuthorization テーブルのCurrency_ExternalId。 |
Currency_InternalId | String | False |
VendorReturnAuthorization テーブルのCurrency_InternalId。 |
Currency_Name | String | False |
VendorReturnAuthorization テーブルのCurrency_Name。 |
Currency_Type | String | False |
VendorReturnAuthorization テーブルのCurrency_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CurrencyName | String | False |
VendorReturnAuthorization テーブルのCurrencyName。 |
CustomForm_ExternalId | String | False |
VendorReturnAuthorization テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
VendorReturnAuthorization テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
VendorReturnAuthorization テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
VendorReturnAuthorization テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
VendorReturnAuthorization テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
VendorReturnAuthorization テーブルのDepartment_InternalId。 |
Department_Name | String | False |
VendorReturnAuthorization テーブルのDepartment_Name。 |
Department_Type | String | False |
VendorReturnAuthorization テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Entity_ExternalId | String | False |
VendorReturnAuthorization テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
VendorReturnAuthorization テーブルのEntity_InternalId。 |
Entity_Name | String | False |
VendorReturnAuthorization テーブルのEntity_Name。 |
Entity_Type | String | False |
VendorReturnAuthorization テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExchangeRate | Double | False |
VendorReturnAuthorization テーブルのExchangeRate。 |
ExpenseList_ReplaceAll | Boolean | False |
VendorReturnAuthorization テーブルのExpenseList_ReplaceAll。 |
ExternalId | String | False |
VendorReturnAuthorization テーブルのExternalId。 |
IntercoStatus | String | False |
VendorReturnAuthorization テーブルのIntercoStatus。 The allowed values are _paired, _pending, _rejected. |
IntercoTransaction_ExternalId | String | False |
VendorReturnAuthorization テーブルのIntercoTransaction_ExternalId。 |
IntercoTransaction_InternalId | String | False |
VendorReturnAuthorization テーブルのIntercoTransaction_InternalId。 |
IntercoTransaction_Name | String | False |
VendorReturnAuthorization テーブルのIntercoTransaction_Name。 |
IntercoTransaction_Type | String | False |
VendorReturnAuthorization テーブルのIntercoTransaction_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ItemList_ReplaceAll | Boolean | False |
VendorReturnAuthorization テーブルのItemList_ReplaceAll。 |
LastModifiedDate | Datetime | False |
VendorReturnAuthorization テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
VendorReturnAuthorization テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
VendorReturnAuthorization テーブルのLocation_InternalId。 |
Location_Name | String | False |
VendorReturnAuthorization テーブルのLocation_Name。 |
Location_Type | String | False |
VendorReturnAuthorization テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
VendorReturnAuthorization テーブルのMemo。 |
OrderStatus | String | False |
VendorReturnAuthorization テーブルのOrderStatus。 The allowed values are _cancelled, _closed, _credited, _partiallyReturned, _pendingApproval, _pendingCredit, _pendingCreditPartiallyReturned, _pendingReturn, _undefined. |
Subsidiary_ExternalId | String | False |
VendorReturnAuthorization テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
VendorReturnAuthorization テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
VendorReturnAuthorization テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
VendorReturnAuthorization テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranDate | Datetime | False |
VendorReturnAuthorization テーブルのTranDate。 |
TranId | String | False |
VendorReturnAuthorization テーブルのTranId。 |
UserTotal | Double | False |
VendorReturnAuthorization テーブルのUserTotal。 |
NetSuite のWinLossReason テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
WinLossReason テーブルのInternalId。 |
ExternalId | String | False |
WinLossReason テーブルのExternalId。 |
IsInactive | Boolean | False |
WinLossReason テーブルのIsInactive。 |
Name | String | False |
WinLossReason テーブルのName。 |
NetSuite のWorkOrder テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
WorkOrder テーブルのInternalId。 |
AssemblyItem_ExternalId | String | False |
WorkOrder テーブルのAssemblyItem_ExternalId。 |
AssemblyItem_InternalId | String | False |
WorkOrder テーブルのAssemblyItem_InternalId。 |
AssemblyItem_Name | String | False |
WorkOrder テーブルのAssemblyItem_Name。 |
AssemblyItem_Type | String | False |
WorkOrder テーブルのAssemblyItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Buildable | Double | False |
WorkOrder テーブルのBuildable。 |
Built | Double | False |
WorkOrder テーブルのBuilt。 |
Class_ExternalId | String | False |
WorkOrder テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
WorkOrder テーブルのClass_InternalId。 |
Class_Name | String | False |
WorkOrder テーブルのClass_Name。 |
Class_Type | String | False |
WorkOrder テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
WorkOrder テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
WorkOrder テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
WorkOrder テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
WorkOrder テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
WorkOrder テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
WorkOrder テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
WorkOrder テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
WorkOrder テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
WorkOrder テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
WorkOrder テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
WorkOrder テーブルのDepartment_InternalId。 |
Department_Name | String | False |
WorkOrder テーブルのDepartment_Name。 |
Department_Type | String | False |
WorkOrder テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EndDate | Datetime | False |
WorkOrder テーブルのEndDate。 |
Entity_ExternalId | String | False |
WorkOrder テーブルのEntity_ExternalId。 |
Entity_InternalId | String | False |
WorkOrder テーブルのEntity_InternalId。 |
Entity_Name | String | False |
WorkOrder テーブルのEntity_Name。 |
Entity_Type | String | False |
WorkOrder テーブルのEntity_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExpandAssembly | Boolean | False |
WorkOrder テーブルのExpandAssembly。 |
ExternalId | String | False |
WorkOrder テーブルのExternalId。 |
IsWip | Boolean | False |
WorkOrder テーブルのIsWip。 |
ItemList_ReplaceAll | Boolean | False |
WorkOrder テーブルのItemList_ReplaceAll。 |
Job_ExternalId | String | False |
WorkOrder テーブルのJob_ExternalId。 |
Job_InternalId | String | False |
WorkOrder テーブルのJob_InternalId。 |
Job_Name | String | False |
WorkOrder テーブルのJob_Name。 |
Job_Type | String | False |
WorkOrder テーブルのJob_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
WorkOrder テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
WorkOrder テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
WorkOrder テーブルのLocation_InternalId。 |
Location_Name | String | False |
WorkOrder テーブルのLocation_Name。 |
Location_Type | String | False |
WorkOrder テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ManufacturingRouting_ExternalId | String | False |
WorkOrder テーブルのManufacturingRouting_ExternalId。 |
ManufacturingRouting_InternalId | String | False |
WorkOrder テーブルのManufacturingRouting_InternalId。 |
ManufacturingRouting_Name | String | False |
WorkOrder テーブルのManufacturingRouting_Name。 |
ManufacturingRouting_Type | String | False |
WorkOrder テーブルのManufacturingRouting_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
WorkOrder テーブルのMemo。 |
PartnersList_ReplaceAll | Boolean | False |
WorkOrder テーブルのPartnersList_ReplaceAll。 |
Quantity | Double | False |
WorkOrder テーブルのQuantity。 |
Revision_ExternalId | String | False |
WorkOrder テーブルのRevision_ExternalId。 |
Revision_InternalId | String | False |
WorkOrder テーブルのRevision_InternalId。 |
Revision_Name | String | False |
WorkOrder テーブルのRevision_Name。 |
Revision_Type | String | False |
WorkOrder テーブルのRevision_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
SalesTeamList_ReplaceAll | Boolean | False |
WorkOrder テーブルのSalesTeamList_ReplaceAll。 |
StartDate | Datetime | False |
WorkOrder テーブルのStartDate。 |
Status | String | False |
WorkOrder テーブルのStatus。 |
Subsidiary_ExternalId | String | False |
WorkOrder テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
WorkOrder テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
WorkOrder テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
WorkOrder テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranDate | Datetime | False |
WorkOrder テーブルのTranDate。 |
TranId | String | False |
WorkOrder テーブルのTranId。 |
Units_ExternalId | String | False |
WorkOrder テーブルのUnits_ExternalId。 |
Units_InternalId | String | False |
WorkOrder テーブルのUnits_InternalId。 |
Units_Name | String | False |
WorkOrder テーブルのUnits_Name。 |
Units_Type | String | False |
WorkOrder テーブルのUnits_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のWorkOrderClose テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
WorkOrderClose テーブルのInternalId。 |
Class_ExternalId | String | False |
WorkOrderClose テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
WorkOrderClose テーブルのClass_InternalId。 |
Class_Name | String | False |
WorkOrderClose テーブルのClass_Name。 |
Class_Type | String | False |
WorkOrderClose テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CreatedDate | Datetime | False |
WorkOrderClose テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
WorkOrderClose テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
WorkOrderClose テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
WorkOrderClose テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
WorkOrderClose テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
WorkOrderClose テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
WorkOrderClose テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
WorkOrderClose テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
WorkOrderClose テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
WorkOrderClose テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
WorkOrderClose テーブルのDepartment_InternalId。 |
Department_Name | String | False |
WorkOrderClose テーブルのDepartment_Name。 |
Department_Type | String | False |
WorkOrderClose テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
WorkOrderClose テーブルのExternalId。 |
Item_ExternalId | String | False |
WorkOrderClose テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
WorkOrderClose テーブルのItem_InternalId。 |
Item_Name | String | False |
WorkOrderClose テーブルのItem_Name。 |
Item_Type | String | False |
WorkOrderClose テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
WorkOrderClose テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
WorkOrderClose テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
WorkOrderClose テーブルのLocation_InternalId。 |
Location_Name | String | False |
WorkOrderClose テーブルのLocation_Name。 |
Location_Type | String | False |
WorkOrderClose テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
WorkOrderClose テーブルのMemo。 |
OrderQuantity | Double | False |
WorkOrderClose テーブルのOrderQuantity。 |
PostingPeriod_ExternalId | String | False |
WorkOrderClose テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
WorkOrderClose テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
WorkOrderClose テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
WorkOrderCloseテーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Quantity | Double | False |
WorkOrderClose テーブルのQuantity。 |
Revision_ExternalId | String | False |
WorkOrderClose テーブルのRevision_ExternalId。 |
Revision_InternalId | String | False |
WorkOrderClose テーブルのRevision_InternalId。 |
Revision_Name | String | False |
WorkOrderClose テーブルのRevision_Name。 |
Revision_Type | String | False |
WorkOrderClose テーブルのRevision_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ScrapQuantity | Double | False |
WorkOrderClose テーブルのScrapQuantity。 |
Subsidiary_ExternalId | String | False |
WorkOrderClose テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
WorkOrderClose テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
WorkOrderClose テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
WorkOrderClose テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranDate | Datetime | False |
WorkOrderClose テーブルのTranDate。 |
TranId | String | False |
WorkOrderClose テーブルのTranId。 |
NetSuite のWorkOrderCompletion テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
WorkOrderCompletion テーブルのInternalId。 |
Class_ExternalId | String | False |
WorkOrderCompletion テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
WorkOrderCompletion テーブルのClass_InternalId。 |
Class_Name | String | False |
WorkOrderCompletion テーブルのClass_Name。 |
Class_Type | String | False |
WorkOrderCompletion テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CompletedQuantity | Double | False |
WorkOrderCompletion テーブルのCompletedQuantity。 |
ComponentList_ReplaceAll | Boolean | False |
WorkOrderCompletion テーブルのComponentList_ReplaceAll。 |
CreatedDate | Datetime | False |
WorkOrderCompletion テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
WorkOrderCompletion テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
WorkOrderCompletion テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
WorkOrderCompletion テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
WorkOrderCompletion テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
WorkOrderCompletion テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
WorkOrderCompletion テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
WorkOrderCompletion テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
WorkOrderCompletion テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
WorkOrderCompletion テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
WorkOrderCompletion テーブルのDepartment_InternalId。 |
Department_Name | String | False |
WorkOrderCompletion テーブルのDepartment_Name。 |
Department_Type | String | False |
WorkOrderCompletion テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
EndOperation_ExternalId | String | False |
WorkOrderCompletion テーブルのEndOperation_ExternalId。 |
EndOperation_InternalId | String | False |
WorkOrderCompletion テーブルのEndOperation_InternalId。 |
EndOperation_Name | String | False |
WorkOrderCompletion テーブルのEndOperation_Name。 |
EndOperation_Type | String | False |
WorkOrderCompletion テーブルのEndOperation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
WorkOrderCompletion テーブルのExternalId。 |
InventoryDetail_CustomForm_ExternalId | String | False |
WorkOrderCompletion テーブルのInventoryDetail_CustomForm_ExternalId。 |
InventoryDetail_CustomForm_InternalId | String | False |
WorkOrderCompletion テーブルのInventoryDetail_CustomForm_InternalId。 |
InventoryDetail_CustomForm_Name | String | False |
WorkOrderCompletion テーブルのInventoryDetail_CustomForm_Name。 |
InventoryDetail_CustomForm_Type | String | False |
WorkOrderCompletion テーブルのInventoryDetail_CustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
InventoryDetail_InventoryAssignmentList_ReplaceAll | Boolean | False |
WorkOrderCompletion テーブルのInventoryDetail_InventoryAssignmentList_ReplaceAll。 |
IsBackflush | Boolean | False |
WorkOrderCompletion テーブルのIsBackflush。 |
Item_ExternalId | String | False |
WorkOrderCompletion テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
WorkOrderCompletion テーブルのItem_InternalId。 |
Item_Name | String | False |
WorkOrderCompletion テーブルのItem_Name。 |
Item_Type | String | False |
WorkOrderCompletion テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
WorkOrderCompletion テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
WorkOrderCompletion テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
WorkOrderCompletion テーブルのLocation_InternalId。 |
Location_Name | String | False |
WorkOrderCompletion テーブルのLocation_Name。 |
Location_Type | String | False |
WorkOrderCompletion テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ManufacturingRouting_ExternalId | String | False |
WorkOrderCompletion テーブルのManufacturingRouting_ExternalId。 |
ManufacturingRouting_InternalId | String | False |
WorkOrderCompletion テーブルのManufacturingRouting_InternalId。 |
ManufacturingRouting_Name | String | False |
WorkOrderCompletion テーブルのManufacturingRouting_Name。 |
ManufacturingRouting_Type | String | False |
WorkOrderCompletion テーブルのManufacturingRouting_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
WorkOrderCompletion テーブルのMemo。 |
OperationList_ReplaceAll | Boolean | False |
WorkOrderCompletion テーブルのOperationList_ReplaceAll。 |
OrderQuantity | Double | False |
WorkOrderCompletion テーブルのOrderQuantity。 |
PostingPeriod_ExternalId | String | False |
WorkOrderCompletion テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
WorkOrderCompletion テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
WorkOrderCompletion テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
WorkOrderCompletion テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Quantity | Double | False |
WorkOrderCompletion テーブルのQuantity。 |
Revision_ExternalId | String | False |
WorkOrderCompletion テーブルのRevision_ExternalId。 |
Revision_InternalId | String | False |
WorkOrderCompletion テーブルのRevision_InternalId。 |
Revision_Name | String | False |
WorkOrderCompletion テーブルのRevision_Name。 |
Revision_Type | String | False |
WorkOrderCompletion テーブルのRevision_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ScrapQuantity | Double | False |
WorkOrderCompletion テーブルのScrapQuantity。 |
StartOperation_ExternalId | String | False |
WorkOrderCompletion テーブルのStartOperation_ExternalId。 |
StartOperation_InternalId | String | False |
WorkOrderCompletion テーブルのStartOperation_InternalId。 |
StartOperation_Name | String | False |
WorkOrderCompletion テーブルのStartOperation_Name。 |
StartOperation_Type | String | False |
WorkOrderCompletion テーブルのStartOperation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Subsidiary_ExternalId | String | False |
WorkOrderCompletion テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
WorkOrderCompletion テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
WorkOrderCompletion テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
WorkOrderCompletion テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Total | Double | False |
WorkOrderCompletion テーブルのTotal。 |
TranDate | Datetime | False |
WorkOrderCompletion テーブルのTranDate。 |
TranId | String | False |
WorkOrderCompletion テーブルのTranId。 |
Units_ExternalId | String | False |
WorkOrderCompletion テーブルのUnits_ExternalId。 |
Units_InternalId | String | False |
WorkOrderCompletion テーブルのUnits_InternalId。 |
Units_Name | String | False |
WorkOrderCompletion テーブルのUnits_Name。 |
Units_Type | String | False |
WorkOrderCompletion テーブルのUnits_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
NetSuite のWorkOrderIssue テーブルです。
Name | Type | ReadOnly | Description |
InternalId [KEY] | String | True |
WorkOrderIssue テーブルのInternalId。 |
Class_ExternalId | String | False |
WorkOrderIssue テーブルのClass_ExternalId。 |
Class_InternalId | String | False |
WorkOrderIssue テーブルのClass_InternalId。 |
Class_Name | String | False |
WorkOrderIssue テーブルのClass_Name。 |
Class_Type | String | False |
WorkOrderIssue テーブルのClass_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ComponentList_ReplaceAll | Boolean | False |
WorkOrderIssue テーブルのComponentList_ReplaceAll。 |
CreatedDate | Datetime | False |
WorkOrderIssue テーブルのCreatedDate。 |
CreatedFrom_ExternalId | String | False |
WorkOrderIssue テーブルのCreatedFrom_ExternalId。 |
CreatedFrom_InternalId | String | False |
WorkOrderIssue テーブルのCreatedFrom_InternalId。 |
CreatedFrom_Name | String | False |
WorkOrderIssue テーブルのCreatedFrom_Name。 |
CreatedFrom_Type | String | False |
WorkOrderIssue テーブルのCreatedFrom_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
CustomForm_ExternalId | String | False |
WorkOrderIssue テーブルのCustomForm_ExternalId。 |
CustomForm_InternalId | String | False |
WorkOrderIssue テーブルのCustomForm_InternalId。 |
CustomForm_Name | String | False |
WorkOrderIssue テーブルのCustomForm_Name。 |
CustomForm_Type | String | False |
WorkOrderIssue テーブルのCustomForm_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Department_ExternalId | String | False |
WorkOrderIssue テーブルのDepartment_ExternalId。 |
Department_InternalId | String | False |
WorkOrderIssue テーブルのDepartment_InternalId。 |
Department_Name | String | False |
WorkOrderIssue テーブルのDepartment_Name。 |
Department_Type | String | False |
WorkOrderIssue テーブルのDepartment_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExternalId | String | False |
WorkOrderIssue テーブルのExternalId。 |
Item_ExternalId | String | False |
WorkOrderIssue テーブルのItem_ExternalId。 |
Item_InternalId | String | False |
WorkOrderIssue テーブルのItem_InternalId。 |
Item_Name | String | False |
WorkOrderIssue テーブルのItem_Name。 |
Item_Type | String | False |
WorkOrderIssue テーブルのItem_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
LastModifiedDate | Datetime | False |
WorkOrderIssue テーブルのLastModifiedDate。 |
Location_ExternalId | String | False |
WorkOrderIssue テーブルのLocation_ExternalId。 |
Location_InternalId | String | False |
WorkOrderIssue テーブルのLocation_InternalId。 |
Location_Name | String | False |
WorkOrderIssue テーブルのLocation_Name。 |
Location_Type | String | False |
WorkOrderIssue テーブルのLocation_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Memo | String | False |
WorkOrderIssue テーブルのMemo。 |
PostingPeriod_ExternalId | String | False |
WorkOrderIssue テーブルのPostingPeriod_ExternalId。 |
PostingPeriod_InternalId | String | False |
WorkOrderIssue テーブルのPostingPeriod_InternalId。 |
PostingPeriod_Name | String | False |
WorkOrderIssue テーブルのPostingPeriod_Name。 |
PostingPeriod_Type | String | False |
WorkOrderIssue テーブルのPostingPeriod_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Revision_ExternalId | String | False |
WorkOrderIssue テーブルのRevision_ExternalId。 |
Revision_InternalId | String | False |
WorkOrderIssue テーブルのRevision_InternalId。 |
Revision_Name | String | False |
WorkOrderIssue テーブルのRevision_Name。 |
Revision_Type | String | False |
WorkOrderIssue テーブルのRevision_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Subsidiary_ExternalId | String | False |
WorkOrderIssue テーブルのSubsidiary_ExternalId。 |
Subsidiary_InternalId | String | False |
WorkOrderIssue テーブルのSubsidiary_InternalId。 |
Subsidiary_Name | String | False |
WorkOrderIssue テーブルのSubsidiary_Name。 |
Subsidiary_Type | String | False |
WorkOrderIssue テーブルのSubsidiary_Type。 The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxGroup, taxType, term, timeBill, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
TranDate | Datetime | False |
WorkOrderIssue テーブルのTranDate。 |
TranId | String | False |
WorkOrderIssue テーブルのTranId。 |
ビューは、カラムと疑似カラムで構成されます。ビューは、データを示すという点でテーブルに似ていますが、ビューでは更新はサポートされません。通常、ビューとして表されるエンティティは、読み取り専用のエンティティです。多くの場合、これらのデータはストアドプロシージャを使用することで更新できます(その機能がデータソースに適用できる場合)。
ビューに対しては、通常のテーブルと同じようにクエリを実行でき、このときに返されるデータも同様です。
ビューとして公開されるクエリなどの動的ビューや、project_team ワークアイテムの特定の組み合わせを検索するためのビューがサポートされています。
Name | Description |
BudgetExchangeRate | Retrieves the budget expense rate from NetSuite. |
ConsolidatedExchangeRate | Gets the consolidated exchange rate, by default for each month of the actual year .You can also filter the result by PeriodName (ex.WHERE PeriodName = 'Q2 2008') or by Period_InternalId (ex.WHERE Period_InternalId = '166') . |
CustomFields | NetSuite のカスタムフィールドに関する情報を返します。CustomFields は、CustomFieldType、またはCustomFieldTypeとInternalId の組み合わせで取得できます。CustomFieldType を指定しないと、すべてのカスタムフィールドが返されます。 |
CustomRecords | NetSuite のカスタムレコードに関する情報を返します。 |
EnumerationValues | 指定されたテーブルの列挙値を取得します。TableName が指定されている場合にのみ値を返します。カスタムテーブルではなく、NetSuite 内のネイティブテーブルでのみ使用可能です。 |
MyRoles | 認証されたユーザーに使用可能なロールを返します。これには、ユーザーがアクセスを許可されている追加アカウントの情報が含まれている場合があります。 |
PostingTransactionSummary | Retrieves a posting transaction summary from NetSuite からの投稿トランザクションサマリを返します。これは、NetSuite から利用可能なレポートメカニズムです。すべてのレコード参照カラムは、 = または IN 演算子を使ってフィルタ内で使用できます。その他の種類の演算子は使用できません。NetSuite のOneWorld 顧客に対して、ConvertToSubsidiary をすべてのレスポンス値が変換される子会社として指定することもできます。 |
SavedSearches | NetSuite で保存された検索結果を返します。保存検索を取得するには、SearchType を指定する必要があります。 |
SavedSearchRawXML | 保存検索からraw XML を返します。 |
Transactions | NetSuite のトランザクションのビュー。 |
Retrieves the budget expense rate from NetSuite.
Name | Type | Description |
Period_InternalId | String | |
FromSubsidiary_InternalId | String | |
ToSubsidiary_InternalId | String | |
CurrentRate | Double | |
AverageRate | Double | |
HistoricalRate | Double |
Gets the consolidated exchange rate, by default for each month of the actual year .You can also filter the result by PeriodName (ex.WHERE PeriodName = 'Q2 2008') or by Period_InternalId (ex.WHERE Period_InternalId = '166') .
Name | Type | Description |
Period_InternalId | String | |
FromSubsidiary_InternalId | String | |
ToSubsidiary_InternalId | String | |
CurrentRate | Double | 現在の実際の為替レート。 |
AverageRate | Double | 平均為替レート。 |
HistoricalRate | Double | 過去の為替レート。 |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Parent_InternalId | String | |
PeriodName | String |
NetSuite のカスタムフィールドに関する情報を返します。CustomFields は、CustomFieldType、またはCustomFieldTypeとInternalId の組み合わせで取得できます。CustomFieldType を指定しないと、すべてのカスタムフィールドが返されます。
Name | Type | Description |
InternalId | String | カスタムフィールドのInternalId。 |
ScriptId | String | カスタムフィールドのScriptId。 |
Label | String | カスタムフィールドの名前。 |
CustomFieldType | String | リクエストされているカスタムフィールドのタイプ。 |
AccessLevel | String | このカスタムフィールドとのやりとりに許可されたアクセスのレベル。 |
AvailableExternally | Boolean | このカスタムフィールドが外部で使用可能かどうかを示すboolean。 |
CheckSpelling | Boolean | このカスタムフィールドに対してスペルチェックが有効かどうかを示すboolean。 |
DefaultChecked | Boolean | このフィールドがデフォルトでチェックされているかどうかを示すboolean。 |
DefaultSelection_InternalId | String | このカスタムフィールドのデフォルトレコードのInternalId。 |
DefaultSelection_Name | String | このカスタムフィールドのデフォルトレコードの名前。 |
DefaultValue | String | このカスタムフィールドのデフォルト値。 |
Description | String | カスタムフィールドの説明。 |
DynamicDefault | String | エンティティの作成時に決定される動的なデフォルト値。 |
DisplayType | String | NetSuite 上のユーザーにカラムが表示される方法。 |
FieldType | String | カスタムフィールドに格納されているデータのタイプを示すboolean。 |
Help | String | NetSuite のカスタムフィールドにマウスを移動したときに表示されるヘルプ情報。 |
IsFormula | Boolean | カスタムフィールドが数式かどうかを示すboolean。 |
IsMandatory | Boolean | カスタムフィールドが必須かどうかを示すboolean。 |
IsParent | Boolean | カスタムフィールドが親かどうかを示すboolean。 |
ItemSubType | String | このカスタムフィールドが使用可能なアイテムのタイプ(購入、販売、または両方)。 |
MaxLength | Long | カスタムフィールドの最大長(integer またはlong の場合)。 |
MaxValue | Double | カスタムフィールドの最大値(doubleの場合)。 |
MinValue | Double | カスタムフィールドの最小値(doubleの場合)。 |
Owner_Name | String | カスタムフィールドの所有者名。 |
Owner_InternalId | String | カスタムフィールドの所有者のInternalId。 |
SelectRecordType_InternalId | String | このカスタムフィールドで選択できるレコードタイプのInternalId。 |
SelectRecordType_Name | String | このカスタムフィールドで選択できるレコードタイプの名前。 |
ShowInList | Boolean | このフィールドをリストに表示するかどうかを示すboolean。 |
ShowIssuesChanges | Boolean | NetSuite がこのフィールドへの変更をIssue レコードに表示するかどうかを示すboolean。 |
StoreValue | Boolean | このフィールドに値が格納されているかどうかを示すboolean。 |
Subtab_Name | String | このカスタムフィールドのサブタブ名。 |
Subtab_InternalId | String | このカスタムフィールドのサブタブのInternalId。 |
RecType_Name | String | このカスタムフィールドが適用可能なレコードタイプの名前。OtherCustomFields にのみ有効です。 |
RecType_InternalId | String | このカスタムフィールドが適用可能なレコードタイプのInternalId。OtherCustomFields にのみ有効です。 |
AppliesToAllItems | Boolean | このカスタムフィールドをすべてのアイテムに適用するかどうかを示すboolean。 |
AppliesToCase | Boolean | このカスタムフィールドをサポートケースレコードに適用するかどうかを示すboolean。 |
AppliesToCampaign | Boolean | このカスタムフィールドをキャンペーンレコードに適用するかどうかを示すboolean。 |
AppliesToContact | Boolean | このカスタムフィールドを連絡先レコードに適用するかどうかを示すboolean。 |
AppliesToCustomer | Boolean | このカスタムフィールドを顧客レコードに適用するかどうかを示すboolean。 |
AppliesToEmployee | Boolean | このカスタムフィールドを従業員レコードに適用するかどうかを示すboolean。 |
AppliesToEvent | Boolean | このカスタムフィールドをイベントレコードに適用するかどうかを示すboolean。 |
AppliesToGiftCerts | Boolean | このカスタムフィールドを商品券に適用するかどうかを示すboolean。 |
AppliesToGroup | Boolean | このカスタムフィールドをグループに適用するかどうかを示すboolean。 |
AppliesToInventory | Boolean | このカスタムフィールドを在庫アイテムに適用するかどうかを示すboolean。 |
AppliesToIssue | Boolean | このカスタムフィールドをIssueレコードに適用するかどうかを示すboolean。 |
AppliesToItemAssembly | Boolean | このカスタムフィールドをアイテムアセンブリに適用するかどうかを示すboolean。 |
AppliesPerKeyword | Boolean | このカスタムフィールドをキーワードごとに適用するかどうかを示すboolean。 |
AppliesToKit | Boolean | このカスタムフィールドをキットアイテムに適用するかどうかを示すboolean。 |
AppliesToLots | Boolean | このカスタムフィールドをすべてのアイテムロットに適用するかどうかを示すboolean。 |
AppliesToMfgProjectTask | Boolean | このカスタムフィールドを製造操作タスクに適用するかどうかを示すboolean。 |
AppliesToNonInventory | Boolean | このカスタムフィールドを非在庫アイテムに適用するかどうかを示すboolean。 |
AppliesToProject | Boolean | このカスタムフィールドをジョブレコードに適用するかどうかを示すboolean。 |
AppliesToOtherCharge | Boolean | このカスタムフィールドを他の請求に適用するかどうかを示すboolean。 |
AppliesToOtherName | Boolean | このカスタムフィールドを他の名前レコードに適用するかどうかを示すboolean。 |
AppliesToPartner | Boolean | このカスタムフィールドをパートナーレコードに適用するかどうかを示すboolean。 |
AppliesToPhoneCall | Boolean | このカスタムフィールドを通話レコードに適用するかどうかを示すboolean。 |
AppliesToProjectTask | Boolean | このカスタムフィールドをプロジェクトタスクレコードに適用するかどうかを示すboolean。 |
AppliesToPriceList | Boolean | このカスタムフィールドを価格リストに適用するかどうかを示すboolean。 |
AppliesToSerialized | Boolean | このカスタムフィールドをすべてのシリアル化されたアイテムに適用するかどうかを示すboolean。 |
AppliesToService | Boolean | このカスタムフィールドをサービスアイテムに適用するかどうかを示すboolean。 |
AppliesToSolution | Boolean | このカスタムフィールドをソリューションレコードに適用するかどうかを示すboolean。 |
AppliesToStatement | Boolean | このカスタムフィールドをステートメントレコードに適用するかどうかを示すboolean。 |
AppliesToTask | Boolean | このカスタムフィールドをタスクレコードに適用するかどうかを示すboolean。 |
AppliesToWebSite | Boolean | このカスタムフィールドをWeb サイトレコードに適用するかどうかを示すboolean。 |
AppliesToVendor | Boolean | このカスタムフィールドをベンダーレコードに適用するかどうかを示すboolean。 |
BodyAssemblyBuild | Boolean | このカスタムフィールドをアセンブリビルドトランザクションに表示するかどうかを示すboolean。 |
BodyBom | Boolean | このカスタムフィールドをBOMに印刷するかどうかを示すboolean。 |
BodyCustomerPayment | Boolean | このカスタムフィールドを顧客支払トランザクションに表示するかどうかを示すboolean。 |
BodyDeposit | Boolean | このカスタムフィールドを預金トランザクションに表示するかどうかを示すboolean。 |
BodyExpenseReport | Boolean | このカスタムフィールドを経費報告トランザクションに表示するかどうかを示すboolean。 |
BodyInventoryAdjustment | Boolean | このカスタムフィールドを在庫調整トランザクションに表示するかどうかを示すboolean。 |
BodyItemFulfillment | Boolean | このカスタムフィールドをアイテムフルフィルメントトランザクションに表示するかどうかを示すboolean。 |
BodyItemFulfillmentOrder | Boolean | このカスタムフィールドをアイテムフルフィルメント注文トランザクションに表示するかどうかを示すboolean。 |
BodyItemReceipt | Boolean | このカスタムフィールドをアイテム受領書トランザクションに表示するかどうかを示すboolean。 |
BodyItemReceiptOrder | Boolean | このカスタムフィールドをアイテム受領書注文トランザクションに表示するかどうかを示すboolean。 |
BodyJournal | Boolean | このカスタムフィールドをジャーナルトランザクションに表示するかどうかを示すboolean。 |
BodyOpportunity | Boolean | このカスタムフィールドを商談トランザクションに表示するかどうかを示すboolean。 |
BodyPickingTicket | Boolean | このカスタムフィールドをピッキングチケットに印刷するかどうかを示すboolean。 |
BodyPrintFlag | Boolean | このカスタムフィールドを標準フォームに印刷するかどうかを示すboolean。 |
BodyPrintPackingSlip | Boolean | このカスタムフィールドを梱包伝票に印刷するかどうかを示すboolean。 |
BodyPrintStatement | Boolean | このカスタムフィールドをステートメントに出力するかどうかを示すboolean。 |
BodyPurchase | Boolean | このカスタムフィールドを購買取引に表示されるかどうかを示すboolean。 |
BodySale | Boolean | このカスタムフィールドを販売取引の本体に表示されるかどうかを示すboolean。 |
BodyStore | Boolean | このカスタムフィールドをストアトランザクションの本体に表示されるかどうかを示すboolean。 |
BodyTransferOrder | Boolean | このカスタムフィールドを転送指図トランザクションに表示されるかどうかを示すboolean。 |
BodyVendorPayment | Boolean | このカスタムフィールドを仕入先支払トランザクションに表示されるかどうかを示すboolean。 |
ColAllItems | Boolean | このカスタムフィールドをすべてのアイテムのアイテムリストに表示されるかどうかを示すboolean。 |
ColBuild | Boolean | このカスタムフィールドを作業指示トランザクションのアイテムリストに表示されるかどうかを示すboolean。 |
ColExpense | Boolean | このカスタムフィールドを経費トランザクションのアイテムリストに表示されるかどうかを示すboolean。 |
ColExpenseReport | Boolean | このカスタムフィールドを経費報告トランザクションの明細リストに表示されるかどうかを示すboolean。 |
ColGroupOnInvoices | Boolean | このカスタムフィールドが請求書にグループ化されているかどうかを示すboolean。 |
ColItemFulfillment | Boolean | このカスタムフィールドをアイテムフルフィルメントトランザクションのアイテムリストに表示されるかどうかを示すboolean。 |
ColItemFulfillmentOrder | Boolean | このカスタムフィールドをアイテムフルフィルメント注文トランザクションのアイテムリストに表示されるかどうかを示すboolean。 |
ColItemReceipt | Boolean | アイテム受領トランザクションのアイテムリストにこのカスタムフィールドを表示されるかどうかを示すboolean。 |
ColItemReceiptOrder | Boolean | アイテム受領書注文トランザクションのアイテムリストにこのカスタムフィールドが表示されるかどうかを示すboolean。 |
ColJournal | Boolean | このカスタムフィールドをジャーナルトランザクションのアイテムリストに表示されるかどうかを示すboolean。 |
ColKitItem | Boolean | このカスタムフィールドをキット/アセンブリコンポーネントのアイテムリストに表示されるかどうかを示すboolean。 |
ColOpportunity | Boolean | このカスタムフィールドを案件取引のアイテムリストに表示されるかどうかを示すboolean。 |
ColPackingSlip | Boolean | このカスタムフィールドを明細書に印刷して伝票を梱包するかどうかを示すboolean。 |
ColPickingTicket | Boolean | このカスタムフィールドをチケットを選択するためのアイテムリストに印刷するかどうかを示すboolean。 |
ColPrintFlag | Boolean | このカスタムフィールドを標準フォームのアイテムリストに印刷するかどうかを示すboolean。 |
ColPurchase | Boolean | このカスタムフィールドを購入トランザクションのアイテムリストに表示されるかどうかを示すboolean。 |
ColReturnForm | Boolean | 返品フォームのアイテムリストにこのカスタムアイテムを印刷するかどうかを示すboolean。 |
ColSale | Boolean | このカスタムフィールドを販売トランザクションのアイテムリストに表示するかどうかを示すboolean。 |
ColStore | Boolean | このカスタムフィールドをWeb ストアアイテムに適用するかどうかを示すboolean。 |
ColStoreHidden | Boolean | このカスタムフィールドをWeb ストアトランザクションで非表示にするかどうかを示すboolean。 |
ColStoreWithGroups | Boolean | このカスタムフィールドをアイテムグループに適用するかどうかを示すboolean。 |
ColTime | Boolean | このカスタムフィールドを時間トランザクションのアイテムリストに表示するかどうかを示すboolean。 |
ColTimeGroup | Boolean | このカスタムフィールドを時間適用グループに表示するかどうかを示すboolean。 |
ColTransferOrder | Boolean | このカスタムフィールドを転送指図トランザクションの明細一覧に表示するかどうかを示すboolean。 |
ItemsListAggregate | String | このカスタムフィールドが適用される個々のアイテムの集計。 |
DeptAccessListAggregate | String | カスタムフィールドにアクセスできる部門の集計。 |
RoleAccessListAggregate | String | このカスタムフィールドにアクセスできるロールの集計。 |
SubAccessListAggregate | String | このカスタムフィールドにアクセスできる子会社の集計。 |
TranslationsListAggregate | String | カスタムフィールドラベルとヘルプの変換の集計。 |
NetSuite のカスタムレコードに関する情報を返します。
Name | Type | Description |
InternalId | String | カスタムレコードのInternalId。 |
ScriptId | String | カスタムレコードのScriptId。 |
Name | String | カスタムレコードの名前。 |
AccessType | String | カスタムレコードのアクセスタイプ。 |
AllowAttachments | Boolean | カスタムレコードが添付ファイルを許可するかどうかを示すboolean。 |
AllowNumberingOverride | Boolean | カスタムレコードに対してoverride プロパティ を許可するboolean。 |
AllowQuickSearch | Boolean | クイック検索がカスタムレコードに対して有効になっているかどうかを示すboolean。 |
Description | String | カスタムレコードの説明。 |
Disclaimer | String | カスタムレコードの免責事項。 |
EnableInlineEditing | Boolean | インライン編集が有効かどうかを示すboolean。 |
EnableMailMerge | Boolean | 差し込み印刷が有効かどうかを示すboolean。 |
EnableNameTranslation | Boolean | 名前の変換が有効かどうかを示すboolean。 |
EnableNumbering | Boolean | ナンバリングが有効かどうかを示すboolean。 |
IncludeName | Boolean | name フィールドが含まれているかどうかを示すboolean。 |
IsAvailableOffline | Boolean | カスタムレコードがオフラインで使用できるかどうかを示すboolean。 |
IsInactive | Boolean | レコードが非アクティブかどうかを示すboolean。 |
IsNumberingUpdateable | Boolean | ナンバリング番号が更新可能かどうかを示すboolean。 |
IsOrdered | Boolean | レコードが順序付けされているかどうかを示すboolean。 |
NumberingCurrentNumber | Long | 現在の番号付け番号。 |
NumberingInit | Long | 最初の番号付け番号。 |
NumberingMinDigits | Long | 番号付け番号の最小桁数。 |
NumberingPrefix | String | 番号付け番号の接頭辞。 |
NumberingSuffix | String | 番号付け番号に追加されたサフィックス。 |
Owner_internalid | String | カスタムレコードの所有者のInternalId。 |
Owner_name | String | カスタムレコードの所有者名。 |
ShowCreationDate | Boolean | カスタムレコードが作成日を表示するかどうかを示すboolean。 |
ShowCreationDateOnList | Boolean | カスタムレコードがリストされたときに作成日を表示するかどうかを示すboolean。 |
ShowId | Boolean | カスタムレコードがId を表示するかどうかを示すboolean。 |
ShowLastModified | Boolean | カスタムレコードが最終更新日を表示するかどうかを示すboolean。 |
ShowLastModifiedOnList | Boolean | カスタムレコードがリストされたときに最終更新日を表示するかどうかを示すboolean。 |
ShowNotes | Boolean | カスタムレコードがノートを表示するかどうかを示すboolean。 |
ShowOwner | Boolean | カスタムレコードが所有者を表示するかどうかを示すboolean。 |
ShowOwnerAllowChange | Boolean | カスタムレコードが所有者が変更を許可するかどうかを示すboolean。 |
ChildrenListAggregate | String | カスタムレコードの子コレクションの集計。 |
FormsListAggregate | String | カスタムレコードのフォームコレクションの集計。 |
LinksListAggregate | String | カスタムレコードのリンクコレクションの集計。 |
ManagersListAggregate | String | カスタムレコードのマネージャコレクションの集計。 |
OnlineFormsListAggregate | String | カスタムレコードのオンラインフォームコレクションの集計。 |
ParentsListAggregate | String | カスタムレコードの親コレクションの集計。 |
PermissionsListAggregate | String | カスタムレコードのアクセス許可コレクションの集計。 |
SublistsListAggregate | String | カスタムレコードのサブリストコレクションの集計。 |
TabsListAggregate | String | カスタムレコードのタブコレクションの集計。 |
TranslationsListAggregate | String | カスタムレコードの変換コレクションの集計。 |
指定されたテーブルの列挙値を取得します。TableName が指定されている場合にのみ値を返します。カスタムテーブルではなく、NetSuite 内のネイティブテーブルでのみ使用可能です。
Name | Type | Description |
ColumnName | String | ロールのInternalId。 |
TableName | String | 列挙値情報を取得するテーブルの名前。 |
Values | String | 列挙型カラムに使用可能な値。 |
認証されたユーザーに使用可能なロールを返します。これには、ユーザーがアクセスを許可されている追加アカウントの情報が含まれている場合があります。
Name | Type | Description |
AccountId | String | ロールが関連付けられているアカウント。 |
RoleId | String | ロールのInternalId。 |
AccountName | String | アカウント名。 |
RoleName | String | ロール名。 |
Retrieves a posting transaction summary from NetSuite からの投稿トランザクションサマリを返します。これは、NetSuite から利用可能なレポートメカニズムです。すべてのレコード参照カラムは、 = または IN 演算子を使ってフィルタ内で使用できます。その他の種類の演算子は使用できません。NetSuite のOneWorld 顧客に対して、ConvertToSubsidiary をすべてのレスポンス値が変換される子会社として指定することもできます。
Name | Type | Description |
Period_InternalId | String | |
Account_InternalId | String | |
ParentItem_InternalId | String | |
Item_InternalId | String | |
Entity_InternalId | String | |
Department_InternalId | String | |
Class_InternalId | String | |
Location_InternalId | String | |
Subsidiary_InternalId | String | |
Book_InternalId | String | |
OriginalAmount | Double | 子会社の通貨でNetSuite から返された元の金額。 |
OriginalCurrency | String | 元の通貨の名前。ConvertToSubsidiary が指定されている場合にのみ値を持ちます。 |
ConvertedAmount | Double | ConvertToSubsidiary で指定された子会社の通貨に変換された金額。 |
ConvertedCurrency | String | 変換された通貨の名前。ConvertToSubsidiary が指定されている場合にのみ値を持ちます。 |
ConvertToSubsidiary | String | 変換する子会社。 |
NetSuite で保存された検索結果を返します。保存検索を取得するには、SearchType を指定する必要があります。
Name | Type | Description |
InternalId | String | 保存検索のInternalId。 |
Name | String | 保存検索の名前。 |
SearchType | String | 検索のタイプ。データを取得するには、これを指定する必要があります。
The allowed values are Account, AccountingPeriod, AccountingTransaction, BillingAccount, BillingSchedule, Bin, Bom, BomRevision, Budget, CalendarEvent, Campaign, Charge, Classification, Contact, ContactCategory, ContactRole, CostCategory, ConsolidatedExchangeRate, CouponCode, CurrencyRate, Customer, CustomerCategory, CustomerMessage, CustomerStatus, CustomerSubsidiaryRelationship, CustomList, CustomRecord, Department, Employee, EntityGroup, ExpenseCategory, FairValuePrice, File, Folder, GiftCertificate, GlobalAccountMapping, HcmJob, InboundShipment, InventoryNumber, Item, ItemAccountMapping, ItemDemandPlan, ItemRevision, ItemSupplyPlan, Issue, Job, JobStatus, JobType, Location, ManufacturingCostTemplate, ManufacturingOperationTask, ManufacturingRouting, MerchandiseHierarchyNode, Message, Nexus, Note, NoteType, Opportunity, OtherNameCategory, Partner, PartnerCategory, Paycheck, PaymentMethod, PayrollItem, PhoneCall, PriceLevel, PricingGroup, ProjectTask, PromotionCode, ResourceAllocation, RevRecSchedule, RevRecTemplate, SalesRole, SalesTaxItem, Solution, SiteCategory, Subsidiary, SupportCase, Task, TaxGroup, TaxType, Term, TimeBill, TimeSheet, Topic, Transaction, UnitsType, Usage, Vendor, VendorCategory, VendorSubsidiaryRelationship, WinLossReason. |
保存検索からraw XML を返します。
Name | Type | Description |
SavedSearchId | String | 保存検索のInternalId。 |
SearchType | String | 使用されている検索のタイプ。
The allowed values are Account, AccountingPeriod, AccountingTransaction, BillingAccount, BillingSchedule, Bin, Bom, BomRevision, Budget, CalendarEvent, Campaign, Charge, Classification, Contact, ContactCategory, ContactRole, CostCategory, ConsolidatedExchangeRate, CouponCode, CurrencyRate, Customer, CustomerCategory, CustomerMessage, CustomerStatus, CustomerSubsidiaryRelationship, CustomList, CustomRecord, Department, Employee, EntityGroup, ExpenseCategory, FairValuePrice, File, Folder, GiftCertificate, GlobalAccountMapping, HcmJob, InboundShipment, InventoryNumber, Item, ItemAccountMapping, ItemDemandPlan, ItemRevision, ItemSupplyPlan, Issue, Job, JobStatus, JobType, Location, ManufacturingCostTemplate, ManufacturingOperationTask, ManufacturingRouting, MerchandiseHierarchyNode, Message, Nexus, Note, NoteType, Opportunity, OtherNameCategory, Partner, PartnerCategory, Paycheck, PaymentMethod, PayrollItem, PhoneCall, PriceLevel, PricingGroup, ProjectTask, PromotionCode, ResourceAllocation, RevRecSchedule, RevRecTemplate, SalesRole, SalesTaxItem, Solution, SiteCategory, Subsidiary, SupportCase, Task, TaxGroup, TaxType, Term, TimeBill, TimeSheet, Topic, Transaction, UnitsType, Usage, Vendor, VendorCategory, VendorSubsidiaryRelationship, WinLossReason. |
ResponseXML | String | カスタムフィールドのScriptId。 |
NetSuite のトランザクションのビュー。
Name | Type | Description |
InternalId [KEY] | String | トランザクションのInternalId。 |
Type | String | トランザクションのタイプ。
The allowed values are _assemblyBuild, _assemblyUnbuild, _binTransfer, _binWorksheet, _cashRefund, _cashSale, _check, _creditMemo, _custom, _customerDeposit, _customerPayment, _customerRefund, _deposit, _depositApplication, _estimate, _expenseReport, _inventoryAdjustment, _inventoryCostRevaluation, _inventoryTransfer, _invoice, _itemFulfillment, _itemReceipt, _journal, _opportunity, _paycheckJournal, _purchaseOrder, _requisition, _returnAuthorization, _salesOrder, _transferOrder, _vendorBill, _vendorCredit, _vendorPayment, _vendorReturnAuthorization, _workOrder, _workOrderClose, _workOrderCompletion, _workOrderIssue. |
Account_InternalId | String | アカウントのInternalId。 |
Account_Name | String | アカウント名。 |
Amount | Double | トランザクションの金額。 |
BillingAddress | String | 請求先の住所。 |
BillingAccount_InternalId | String | 請求先アカウントのInternalId。 |
BillingAccount_Name | String | 請求先アカウント名。 |
CloseDate | Datetime | クローズされた日付。 |
CreatedDate | Datetime | 作成された日付。 |
CreatedFrom_InternalId | String | Id から作成。 |
Currency_InternalId | String | 通貨Id。 |
Currency_Name | String | 通貨名。 |
CustomForm_InternalId | String | カスタムフォームId。 |
CustomForm_Name | String | カスタムフォーム名。 |
DueDate | Datetime | 支払期日。 |
String | E メールアドレス。 | |
EndDate | Datetime | 終了日。 |
Entity_InternalId | String | エンティティId。 |
Entity_Name | String | エンティティ名。 |
Entity_Type | String | エンティティのタイプ。
The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, billingAccount, billingSchedule, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, charge, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customTransaction, customTransactionType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, deposit, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, globalAccountMapping, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryCostRevaluation, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemAccountMapping, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, purchaseRequisition, resourceAllocation, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, statisticalJournalEntry, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxAcct, taxGroup, taxType, term, timeBill, timeSheet, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
ExchangeRate | Double | 為替レート。 |
ExpectedCloseDate | Datetime | 予定終了日。 |
ExternalId | String | トランザクションのExternalId。 |
Fob | String | E メールアドレス。 |
IntercoTransaction_InternalId | String | 会社間トランザクションId。 |
Job_InternalId | Job | ジョブId。 |
Job_Name | Job | ジョブ名。 |
LastModifiedDate | Datetime | 最終更新日。 |
LeadSource_InternalId | String | リードのソースId。 |
LeadSource_Name | String | リードのソース名。 |
LeadSource_Type | String | リードのソースタイプ。
The allowed values are account, accountingPeriod, appDefinition, appPackage, assemblyBuild, assemblyUnbuild, assemblyItem, billingAccount, billingSchedule, bin, binTransfer, binWorksheet, budget, budgetCategory, calendarEvent, campaign, campaignAudience, campaignCategory, campaignChannel, campaignFamily, campaignOffer, campaignResponse, campaignSearchEngine, campaignSubscription, campaignVertical, cashRefund, cashSale, check, charge, classification, contact, contactCategory, contactRole, costCategory, couponCode, creditMemo, crmCustomField, currency, currencyRate, customList, customRecord, customRecordCustomField, customRecordType, customTransaction, customTransactionType, customer, customerCategory, customerDeposit, customerMessage, customerPayment, customerRefund, customerStatus, deposit, depositApplication, department, descriptionItem, discountItem, downloadItem, employee, entityCustomField, entityGroup, estimate, expenseCategory, expenseReport, file, folder, giftCertificate, giftCertificateItem, globalAccountMapping, interCompanyJournalEntry, interCompanyTransferOrder, inventoryAdjustment, inventoryCostRevaluation, inventoryItem, inventoryNumber, inventoryTransfer, invoice, itemAccountMapping, itemCustomField, itemDemandPlan, itemFulfillment, itemGroup, itemNumberCustomField, itemOptionCustomField, itemSupplyPlan, itemRevision, issue, job, jobStatus, jobType, itemReceipt, journalEntry, kitItem, leadSource, location, lotNumberedInventoryItem, lotNumberedAssemblyItem, markupItem, message, manufacturingCostTemplate, manufacturingOperationTask, manufacturingRouting, nexus, nonInventoryPurchaseItem, nonInventoryResaleItem, nonInventorySaleItem, note, noteType, opportunity, otherChargePurchaseItem, otherChargeResaleItem, otherChargeSaleItem, otherCustomField, otherNameCategory, partner, partnerCategory, paycheckJournal, paymentItem, paymentMethod, payrollItem, phoneCall, priceLevel, pricingGroup, projectTask, promotionCode, purchaseOrder, purchaseRequisition, resourceAllocation, returnAuthorization, revRecSchedule, revRecTemplate, salesOrder, salesRole, salesTaxItem, serializedInventoryItem, serializedAssemblyItem, servicePurchaseItem, serviceResaleItem, serviceSaleItem, solution, siteCategory, state, statisticalJournalEntry, subsidiary, subtotalItem, supportCase, supportCaseIssue, supportCaseOrigin, supportCasePriority, supportCaseStatus, supportCaseType, task, taxAcct, taxGroup, taxType, term, timeBill, timeSheet, topic, transferOrder, transactionBodyCustomField, transactionColumnCustomField, unitsType, vendor, vendorCategory, vendorBill, vendorCredit, vendorPayment, vendorReturnAuthorization, winLossReason, workOrder, workOrderIssue, workOrderCompletion, workOrderClose. |
Location_InternalId | String | ロケーションId。 |
Location_Name | String | ロケーション名。 |
Memo | String | メモ。 |
Message | String | メッセージ。 |
Partner_InternalId | String | パートナーId。 |
Partner_Name | String | パートナー名。 |
PnRefNum | String | P/N Ref。 |
Probability | Double | 取引の確率。 |
ProjectedAmount | Double | 見積金額. |
PromoCode_InternalId | String | クーポンコードId。 |
PromoCode_Name | String | クーポンコード名。 |
SalesEffectiveDate | Datetime | セールス有効日。 |
SalesRep_InternalId | String | セールスレップId。 |
SalesRep_Name | String | セールスレップ名。 |
Source | String | ソース。 |
StartDate | Datetime | 開始日。 |
Status | String | ステータス。
The allowed values are _adp, _automatedMemorizedTransaction, _csv, _customerCenter, _ebay, _mobile, _offlineClient, _perquest, _qif, _quickbooks, _smbxml, _sync, _web, _webServices, _yahoo. |
Terms_InternalId | String | タームId。 |
Terms_Name | String | ターム名。 |
Title | String | タイトル。 |
TranDate | Datetime | 取引日。 |
TranId | String | ドキュメント番号/Id。 |
TransactionNumber | String | トランザクション番号。 |
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
SavedSearchId | String | 保存検索のInternalId を指定します。これは、資格情報を直接クエリに提供する代わりに行う処理です。検索結果はNetSuite 側に格納され、Web API で利用可能な処理に比べてより複雑な処理を行うことができます。 |
このセクションでは、以下のSuiteQL Schema で利用可能なビュー を示します。
CData Sync App は、NetSuite エンティティをリレーショナルテーブル、ビュー、およびストアドプロシージャにモデル化します。テーブル定義は、NetSuite アカウントに基づいて動的に取得されます。
テーブル定義は動的に取得されます。このセクションでは、NetSuite 開発環境に含まれるサンプルテーブル定義を示します。
ビューは変更ができないテーブルです。一般的には、Read-only で更新が不可能なデータはビューとして表されます。
ストアドプロシージャはデータソースのファンクションライクなインターフェースです。これらを使用して、データソース内の情報を検索、更新、および変更できます。
Sync App は、NetSuite API にできるだけ多くのSELECT 構文処理をオフロードし、残りのクエリをSync App 内で処理します。次のセクションでは、API の制限と要件を説明します。 Sync App がクライアントサイドのインメモリ処理でAPI 制限を回避する方法の詳細については、SupportEnhancedSQL を参照してください。
ビューは、カラムと疑似カラムで構成されます。ビューは、データを示すという点でテーブルに似ていますが、ビューでは更新はサポートされません。通常、ビューとして表されるエンティティは、読み取り専用のエンティティです。多くの場合、これらのデータはストアドプロシージャを使用することで更新できます(その機能がデータソースに適用できる場合)。
ビューに対しては、通常のテーブルと同じようにクエリを実行でき、このときに返されるデータも同様です。
ビューとして公開されるクエリなどの動的ビューや、project_team ワークアイテムの特定の組み合わせを検索するためのビューがサポートされています。
Name | Description |
account | The account table. |
AccountContextSearch | The AccountContextSearch table. |
accountingperiodfiscalcalendars | The accountingperiodfiscalcalendars table. |
accountLocalization | The accountLocalization table. |
AccountSubsidiaryMap | The AccountSubsidiaryMap table. |
accountType | The accountType table. |
addressType | The addressType table. |
AdmissibilityPackageType | The AdmissibilityPackageType table. |
aggregateItemLocation | The aggregateItemLocation table. |
alignOrHide | The alignOrHide table. |
allocationDetail | The allocationDetail table. |
allocationDetailJournalMap | The allocationDetailJournalMap table. |
AllocationMethod | The AllocationMethod table. |
allocationScheduleAllocationDetail | The allocationScheduleAllocationDetail table. |
allocationScheduleAllocationDetailGeneralDetailDestination | The allocationScheduleAllocationDetailGeneralDetailDestination table. |
allocationScheduleAllocationDetailGeneralDetailSource | The allocationScheduleAllocationDetailGeneralDetailSource table. |
allocationScheduleAllocationDetailJournalMap | The allocationScheduleAllocationDetailJournalMap table. |
AllocationScheduleDestination | The AllocationScheduleDestination table. |
AllocationScheduleSource | The AllocationScheduleSource table. |
AmortizationType | The AmortizationType table. |
ApplicabilityModeType | The ApplicabilityModeType table. |
ApplicabilityReasonType | The ApplicabilityReasonType table. |
ApplicabilityStatusType | The ApplicabilityStatusType table. |
applyDiscountTo | The applyDiscountTo table. |
ApprovalStatus | The ApprovalStatus table. |
assemblyItemCorrelateditem | The assemblyItemCorrelateditem table. |
assemblyItemItemAccountingBookDetail | The assemblyItemItemAccountingBookDetail table. |
assemblyItemItemQuantityPricingDiscount | The assemblyItemItemQuantityPricingDiscount table. |
assemblyItemItemQuantityPricingLevel | The assemblyItemItemQuantityPricingLevel table. |
assemblyItemItemVendor | The assemblyItemItemVendor table. |
assemblyItemLocations | The assemblyItemLocations table. |
assemblyItemMember | The assemblyItemMember table. |
assemblyItemPresentationItem | The assemblyItemPresentationItem table. |
assemblyItemPrice | The assemblyItemPrice table. |
assemblyItemQuantity | The assemblyItemQuantity table. |
assemblyItemSiteCategory | The assemblyItemSiteCategory table. |
assemblyItemSubsidiaryMap | The assemblyItemSubsidiaryMap table. |
assemblyItemTranslation | The assemblyItemTranslation table. |
ATPMethodType | The ATPMethodType table. |
Attendee | The Attendee table. |
audienceDepartmentMap | The audienceDepartmentMap table. |
audienceDepartmentMapClient | The audienceDepartmentMapClient table. |
audienceDepartmentMapMassUpdate | The audienceDepartmentMapMassUpdate table. |
audienceDepartmentMapPortlet | The audienceDepartmentMapPortlet table. |
audienceDepartmentMapRestlet | The audienceDepartmentMapRestlet table. |
audienceDepartmentMapSuitelet | The audienceDepartmentMapSuitelet table. |
audienceDepartmentMapUserEvent | The audienceDepartmentMapUserEvent table. |
audienceDepartmentMapWorkflow | The audienceDepartmentMapWorkflow table. |
audienceEmployeeMap | The audienceEmployeeMap table. |
audienceEmployeeMapClient | The audienceEmployeeMapClient table. |
audienceEmployeeMapMassUpdate | The audienceEmployeeMapMassUpdate table. |
audienceEmployeeMapPortlet | The audienceEmployeeMapPortlet table. |
audienceEmployeeMapRestlet | The audienceEmployeeMapRestlet table. |
audienceEmployeeMapSuitelet | The audienceEmployeeMapSuitelet table. |
audienceEmployeeMapUserEvent | The audienceEmployeeMapUserEvent table. |
audienceEmployeeMapWorkflow | The audienceEmployeeMapWorkflow table. |
audienceGroupMap | The audienceGroupMap table. |
audienceGroupMapClient | The audienceGroupMapClient table. |
audienceGroupMapMassUpdate | The audienceGroupMapMassUpdate table. |
audienceGroupMapPortlet | The audienceGroupMapPortlet table. |
audienceGroupMapRestlet | The audienceGroupMapRestlet table. |
audienceGroupMapSuitelet | The audienceGroupMapSuitelet table. |
audienceGroupMapUserEvent | The audienceGroupMapUserEvent table. |
audienceGroupMapWorkflow | The audienceGroupMapWorkflow table. |
audiencePartnerMap | The audiencePartnerMap table. |
audiencePartnerMapClient | The audiencePartnerMapClient table. |
audiencePartnerMapMassUpdate | The audiencePartnerMapMassUpdate table. |
audiencePartnerMapPortlet | The audiencePartnerMapPortlet table. |
audiencePartnerMapRestlet | The audiencePartnerMapRestlet table. |
audiencePartnerMapSuitelet | The audiencePartnerMapSuitelet table. |
audiencePartnerMapUserEvent | The audiencePartnerMapUserEvent table. |
audiencePartnerMapWorkflow | The audiencePartnerMapWorkflow table. |
audienceRoleMap | The audienceRoleMap table. |
audienceRoleMapClient | The audienceRoleMapClient table. |
audienceRoleMapMassUpdate | The audienceRoleMapMassUpdate table. |
audienceRoleMapPortlet | The audienceRoleMapPortlet table. |
audienceRoleMapRestlet | The audienceRoleMapRestlet table. |
audienceRoleMapSuitelet | The audienceRoleMapSuitelet table. |
audienceRoleMapUserEvent | The audienceRoleMapUserEvent table. |
audienceRoleMapWorkflow | The audienceRoleMapWorkflow table. |
audienceSubsidiaryMap | The audienceSubsidiaryMap table. |
audienceSubsidiaryMapClient | The audienceSubsidiaryMapClient table. |
audienceSubsidiaryMapMassUpdate | The audienceSubsidiaryMapMassUpdate table. |
audienceSubsidiaryMapPortlet | The audienceSubsidiaryMapPortlet table. |
audienceSubsidiaryMapRestlet | The audienceSubsidiaryMapRestlet table. |
audienceSubsidiaryMapSuitelet | The audienceSubsidiaryMapSuitelet table. |
audienceSubsidiaryMapUserEvent | The audienceSubsidiaryMapUserEvent table. |
audienceSubsidiaryMapWorkflow | The audienceSubsidiaryMapWorkflow table. |
AuthenticateDeviceInput | The AuthenticateDeviceInput table. |
AuthenticateDeviceResult | The AuthenticateDeviceResult table. |
AuthenticationField | The AuthenticationField table. |
billingClassPriceCost | The billingClassPriceCost table. |
BillingMilestone | The BillingMilestone table. |
BillingRateCardPriceMultiForSearch | The BillingRateCardPriceMultiForSearch table. |
BillingRateCardVersion | The BillingRateCardVersion table. |
billingschedule | The billingschedule table. |
billingScheduleMilestone | The billingScheduleMilestone table. |
billingScheduleRecurrence | The billingScheduleRecurrence table. |
billingScheduleRecurrencePattern | The billingScheduleRecurrencePattern table. |
BillingScheduleType | The BillingScheduleType table. |
billOfDistribution | The billOfDistribution table. |
billOfDistributionDistributionSource | The billOfDistributionDistributionSource table. |
BillVarianceStatus | The BillVarianceStatus table. |
bin | The bin table. |
blanketPurchaseOrderExpenseMachine | The blanketPurchaseOrderExpenseMachine table. |
bom | The bom table. |
bomAssembly | The bomAssembly table. |
bomrevision | The bomrevision table. |
bomrevisioncomponent | The bomrevisioncomponent table. |
budgetcategory | The budgetcategory table. |
budgets | The budgets table. |
budgetsMachine | The budgetsMachine table. |
BusinessEventHandler | The BusinessEventHandler table. |
BusinessEventHandlerFeedDetailType | The BusinessEventHandlerFeedDetailType table. |
BusinessEventHandlerFeedStatus | The BusinessEventHandlerFeedStatus table. |
BusinessEventType | The BusinessEventType table. |
button | The button table. |
CalculateDiscountType | The CalculateDiscountType table. |
calendarevent | The calendarevent table. |
campaignevent | The campaignevent table. |
campaignEventResponse | The campaignEventResponse table. |
campaignresponse | The campaignresponse table. |
campaignResponseHistoryEntry | The campaignResponseHistoryEntry table. |
campaigntemplate | The campaigntemplate table. |
CardholderAuthBillAddress | The CardholderAuthBillAddress table. |
cardholderauthentication | The cardholderauthentication table. |
CardholderAuthenticationEvent | The CardholderAuthenticationEvent table. |
CardholderAuthenticationEventList | The CardholderAuthenticationEventList table. |
CardholderAuthenticationStatus | The CardholderAuthenticationStatus table. |
CardholderAuthShipAddress | The CardholderAuthShipAddress table. |
CartSortOrder | The CartSortOrder table. |
cashRefundBillingAddress | The cashRefundBillingAddress table. |
cashRefundPartner | The cashRefundPartner table. |
cashRefundSalesTeam | The cashRefundSalesTeam table. |
cashRefundShippingAddress | The cashRefundShippingAddress table. |
cashRefundTranPromotion | The cashRefundTranPromotion table. |
cashSaleBillingAddress | The cashSaleBillingAddress table. |
cashSaleGiftCertRedemption | The cashSaleGiftCertRedemption table. |
cashSaleItemShippingAddress | The cashSaleItemShippingAddress table. |
cashSalePartner | The cashSalePartner table. |
cashSaleSalesTeam | The cashSaleSalesTeam table. |
cashSaleShippingAddress | The cashSaleShippingAddress table. |
cashSaleTrackingNumberMap | The cashSaleTrackingNumberMap table. |
cashSaleTranPromotion | The cashSaleTranPromotion table. |
category1099misc | The category1099misc table. |
CcBccRecipient | The CcBccRecipient table. |
CenterType | The CenterType table. |
ChallengeShopperInput | The ChallengeShopperInput table. |
ChallengeShopperResult | The ChallengeShopperResult table. |
ChallengeWindowSize | The ChallengeWindowSize table. |
charge | The charge table. |
Chargebillingmodetype | The Chargebillingmodetype table. |
chargerule | The chargerule table. |
ChargeRun | The ChargeRun table. |
Chargestagetype | The Chargestagetype table. |
chargeType | The chargeType table. |
chargeTypeTranslations | The chargeTypeTranslations table. |
Chargeuse | The Chargeuse table. |
CheckExpenseMachine | The CheckExpenseMachine table. |
checkPayeeAddress | The checkPayeeAddress table. |
classification | The classification table. |
CommissionPaymentType | The CommissionPaymentType table. |
CompanyAddressbook | The CompanyAddressbook table. |
CompanyAddressbookEntityAddress | The CompanyAddressbookEntityAddress table. |
CompanyBulkMerge | The CompanyBulkMerge table. |
CompanyCampaigns | The CompanyCampaigns table. |
CompanyCompanyContact | The CompanyCompanyContact table. |
competitor | The competitor table. |
CompetitorOpportunity | The CompetitorOpportunity table. |
consolidatedexchangerate | The consolidatedexchangerate table. |
ConsolidatedRateType | The ConsolidatedRateType table. |
contact | The contact table. |
ContactAddressbook | The ContactAddressbook table. |
ContactAddressbookEntityAddress | The ContactAddressbookEntityAddress table. |
ContactBulkMerge | The ContactBulkMerge table. |
contactcategory | The contactcategory table. |
ContactContactCampaigns | The ContactContactCampaigns table. |
ContactContactTypeMap | The ContactContactTypeMap table. |
contactrole | The contactrole table. |
ContactSubscriptionMessageHistory | The ContactSubscriptionMessageHistory table. |
ContactSubscriptions | The ContactSubscriptions table. |
ContactSubsidiaryRelationship | The ContactSubsidiaryRelationship table. |
controlTowerSourceType | The controlTowerSourceType table. |
CostCategoryType | The CostCategoryType table. |
CostEstimateType | The CostEstimateType table. |
CostingMethodType | The CostingMethodType table. |
couponcode | The couponcode table. |
CreditCardChargeExpenseMachine | The CreditCardChargeExpenseMachine table. |
CreditCardRefundExpenseMachine | The CreditCardRefundExpenseMachine table. |
Creditholdoverridetype | The Creditholdoverridetype table. |
creditMemoBillingAddress | The creditMemoBillingAddress table. |
creditMemoItemShippingAddress | The creditMemoItemShippingAddress table. |
creditMemoPartner | The creditMemoPartner table. |
creditMemoSalesTeam | The creditMemoSalesTeam table. |
creditMemoShipGroup | The creditMemoShipGroup table. |
creditMemoShippingAddress | The creditMemoShippingAddress table. |
creditMemoTranPromotion | The creditMemoTranPromotion table. |
CrmTemplateType | The CrmTemplateType table. |
currency | The currency table. |
currencyrate | The currencyrate table. |
CurrencyRateType | The CurrencyRateType table. |
CurrencySymbolPlacement | The CurrencySymbolPlacement table. |
customer | The customer table. |
customerAddressbook | The customerAddressbook table. |
customerAddressbookEntityAddress | The customerAddressbookEntityAddress table. |
customerBulkMerge | The customerBulkMerge table. |
customerCampaigns | The customerCampaigns table. |
customercategory | The customercategory table. |
customerCompanyContact | The customerCompanyContact table. |
customerContactRole | The customerContactRole table. |
customerCurrencyBalance | The customerCurrencyBalance table. |
customerEftAcct | The customerEftAcct table. |
CustomerGroupPricing | The CustomerGroupPricing table. |
customerItemPricing | The customerItemPricing table. |
customermessage | The customermessage table. |
CustomerPartner | The CustomerPartner table. |
customerRefundPayeeAddress | The customerRefundPayeeAddress table. |
customerSalesTeam | The customerSalesTeam table. |
CustomerSegmentCustomer | The CustomerSegmentCustomer table. |
customerSubscriptionMessageHistory | The customerSubscriptionMessageHistory table. |
customerSubscriptions | The customerSubscriptions table. |
customersubsidiaryrelationship | The customersubsidiaryrelationship table. |
CustomField | The CustomField table. |
CustomField2 | The CustomField2 table. |
customInstallmentPercent | The customInstallmentPercent table. |
customlist | The customlist table. |
customPluginTypesAction | The customPluginTypesAction table. |
customPluginTypesBundleInstallation | The customPluginTypesBundleInstallation table. |
customPluginTypesMapReduce | The customPluginTypesMapReduce table. |
customPluginTypesPortlet | The customPluginTypesPortlet table. |
customPluginTypesRestlet | The customPluginTypesRestlet table. |
customPluginTypesScheduled | The customPluginTypesScheduled table. |
customPluginTypesSuitelet | The customPluginTypesSuitelet table. |
customPluginTypesUserEvent | The customPluginTypesUserEvent table. |
customrecordtype | The customrecordtype table. |
customsegment | The customsegment table. |
CustomTransactionType | The CustomTransactionType table. |
DayOfWeek | The DayOfWeek table. |
deletedrecord | The deletedrecord table. |
department | The department table. |
departmentSubsidiaryMap | The departmentSubsidiaryMap table. |
deploymentsAction | The deploymentsAction table. |
deploymentsBundleInstallation | The deploymentsBundleInstallation table. |
deploymentsClient | The deploymentsClient table. |
deploymentsMapReduce | The deploymentsMapReduce table. |
deploymentsMassUpdate | The deploymentsMassUpdate table. |
deploymentsPortlet | The deploymentsPortlet table. |
deploymentsRestlet | The deploymentsRestlet table. |
deploymentsScheduled | The deploymentsScheduled table. |
deploymentsScript | The deploymentsScript table. |
deploymentsSuitelet | The deploymentsSuitelet table. |
deploymentsUserEvent | The deploymentsUserEvent table. |
descriptionItemSubsidiaryMap | The descriptionItemSubsidiaryMap table. |
descriptionItemTranslation | The descriptionItemTranslation table. |
discountItemSubsidiaryMap | The discountItemSubsidiaryMap table. |
discountItemTranslation | The discountItemTranslation table. |
distributionCategory | The distributionCategory table. |
distributionNetwork | The distributionNetwork table. |
distributionNetworkDistributionCategory | The distributionNetworkDistributionCategory table. |
distributionnetworksubsidiary | The distributionnetworksubsidiary table. |
downloadItemCorrelateditem | The downloadItemCorrelateditem table. |
downloadItemItemAccountingBookDetail | The downloadItemItemAccountingBookDetail table. |
downloadItemItemQuantityPricingDiscount | The downloadItemItemQuantityPricingDiscount table. |
downloadItemItemQuantityPricingLevel | The downloadItemItemQuantityPricingLevel table. |
downloadItemPresentationItem | The downloadItemPresentationItem table. |
downloadItemPrice | The downloadItemPrice table. |
downloadItemQuantity | The downloadItemQuantity table. |
downloadItemSiteCategory | The downloadItemSiteCategory table. |
downloadItemSubsidiaryMap | The downloadItemSubsidiaryMap table. |
downloadItemTranslation | The downloadItemTranslation table. |
EffectivityBasedOnType | The EffectivityBasedOnType table. |
EmailPreferenceType | The EmailPreferenceType table. |
emailtemplate | The emailtemplate table. |
employee | The employee table. |
employeeAccruedTime | The employeeAccruedTime table. |
employeeAddressbook | The employeeAddressbook table. |
employeeAddressbookEntityAddress | The employeeAddressbookEntityAddress table. |
employeeBulkMerge | The employeeBulkMerge table. |
employeeCampaigns | The employeeCampaigns table. |
employeeCompanyContribution | The employeeCompanyContribution table. |
employeeDeduction | The employeeDeduction table. |
employeeEarning | The employeeEarning table. |
employeeEmergencyContact | The employeeEmergencyContact table. |
employeeEmpPerms | The employeeEmpPerms table. |
EmployeeExpenseReportCurrencies | The EmployeeExpenseReportCurrencies table. |
EmployeeFilingStatus | The EmployeeFilingStatus table. |
employeeHCMPosition | The employeeHCMPosition table. |
employeeHrEducation | The employeeHrEducation table. |
employeeListPresItemPresCategory | The employeeListPresItemPresCategory table. |
employeeListSiteCategoryTagSubstitution | The employeeListSiteCategoryTagSubstitution table. |
employeeListSiteCategoryTranslationEmployeeList | The employeeListSiteCategoryTranslationEmployeeList table. |
employeeroles | The employeeroles table. |
employeerolesforsearch | The employeerolesforsearch table. |
employeestatus | The employeestatus table. |
employeeSubscriptionMessageHistory | The employeeSubscriptionMessageHistory table. |
employeeSubscriptions | The employeeSubscriptions table. |
EmployeeSubsidiaryRelationship | The EmployeeSubsidiaryRelationship table. |
employeeTaxOptions | The employeeTaxOptions table. |
employeetype | The employeetype table. |
entity | The entity table. |
EntityAddress | The EntityAddress table. |
entityAddressbook | The entityAddressbook table. |
entityBulkMerge | The entityBulkMerge table. |
entitygroup | The entitygroup table. |
entityGroupBulkMerge | The entityGroupBulkMerge table. |
entityGroupCampaigns | The entityGroupCampaigns table. |
entityGroupMember | The entityGroupMember table. |
entityGroupType | The entityGroupType table. |
entityListType | The entityListType table. |
entityRate | The entityRate table. |
EntityStage | The EntityStage table. |
EntityStatus | The EntityStatus table. |
EntitySubsidiaryRelationship | The EntitySubsidiaryRelationship table. |
estimateBillingAddress | The estimateBillingAddress table. |
estimateItemShippingAddress | The estimateItemShippingAddress table. |
estimatePartner | The estimatePartner table. |
estimateSalesTeam | The estimateSalesTeam table. |
estimateShipGroup | The estimateShipGroup table. |
estimateShippingAddress | The estimateShippingAddress table. |
estimateTranPromotion | The estimateTranPromotion table. |
EventDowim | The EventDowim table. |
EventFrequency | The EventFrequency table. |
EventPriority | The EventPriority table. |
EventType | The EventType table. |
excludeLocationRegionItem | The excludeLocationRegionItem table. |
executionContext | The executionContext table. |
expensecategory | The expensecategory table. |
ExpenseCategoryRate | The ExpenseCategoryRate table. |
ExpenseCategoryTranslation | The ExpenseCategoryTranslation table. |
expenseItemSubsidiaryMap | The expenseItemSubsidiaryMap table. |
expenseItemTranslation | The expenseItemTranslation table. |
expenseMachine | The expenseMachine table. |
FairValueRangePolicy | The FairValueRangePolicy table. |
FaxTemplate | The FaxTemplate table. |
file | The file table. |
FileHits | The FileHits table. |
FirstRunTimeSelect | The FirstRunTimeSelect table. |
FolderType | The FolderType table. |
Forecast | The Forecast table. |
ForecastType | The ForecastType table. |
FrequencyType | The FrequencyType table. |
FulfillmentChoice | The FulfillmentChoice table. |
FulfillmentExceptionType | The FulfillmentExceptionType table. |
FulfillmentRequestType | The FulfillmentRequestType table. |
FXRATEUPDATEZONE | The FXRATEUPDATEZONE table. |
gatewayNotification | The gatewayNotification table. |
gatewayTokenFamily | The gatewayTokenFamily table. |
generalAllocationSchedule | The generalAllocationSchedule table. |
generalAllocationScheduleJournalCreatedByAllocation | The generalAllocationScheduleJournalCreatedByAllocation table. |
GeneralDetailDestination | The GeneralDetailDestination table. |
GeneralDetailSource | The GeneralDetailSource table. |
generalizedItem | The generalizedItem table. |
GeneralScheduleDestination | The GeneralScheduleDestination table. |
GeneralScheduleSource | The GeneralScheduleSource table. |
generalTokenPaymentOperationMap | The generalTokenPaymentOperationMap table. |
genericCampaignEventResponse | The genericCampaignEventResponse table. |
genericCampaignItem | The genericCampaignItem table. |
genericresource | The genericresource table. |
GenericResourceSubsidiaryRelationship | The GenericResourceSubsidiaryRelationship table. |
giftcertificate | The giftcertificate table. |
GiftCertificateItemAuthorizationCodes | The GiftCertificateItemAuthorizationCodes table. |
giftCertificateItemCorrelateditem | The giftCertificateItemCorrelateditem table. |
giftCertificateItemPresentationItem | The giftCertificateItemPresentationItem table. |
giftCertificateItemPrice | The giftCertificateItemPrice table. |
giftCertificateItemQuantity | The giftCertificateItemQuantity table. |
giftCertificateItemSiteCategory | The giftCertificateItemSiteCategory table. |
giftCertificateItemSubsidiaryMap | The giftCertificateItemSubsidiaryMap table. |
giftCertificateItemTranslation | The giftCertificateItemTranslation table. |
globalinventoryrelationship | The globalinventoryrelationship table. |
Hcmterminationcategory | The Hcmterminationcategory table. |
inboundshipment | The inboundshipment table. |
InboundShipmentItem | The InboundShipmentItem table. |
InboundShipmentLandedCost | The InboundShipmentLandedCost table. |
IncoTerm | The IncoTerm table. |
IncoTermType | The IncoTermType table. |
IntercompanyAllocationScheduleAllocationDetail | The IntercompanyAllocationScheduleAllocationDetail table. |
IntercompanyAllocationScheduleAllocationDetailGeneralDetailDestination | The IntercompanyAllocationScheduleAllocationDetailGeneralDetailDestination table. |
IntercompanyAllocationScheduleAllocationDetailGeneralDetailSource | The IntercompanyAllocationScheduleAllocationDetailGeneralDetailSource table. |
IntercompanyDestination | The IntercompanyDestination table. |
IntercompanySource | The IntercompanySource table. |
intercompanyTransferOrderLinkedTrackingNumberMap | The intercompanyTransferOrderLinkedTrackingNumberMap table. |
intercompanyTransferOrderShippingAddress | The intercompanyTransferOrderShippingAddress table. |
intercompanyTransferOrderTrackingNumberMap | The intercompanyTransferOrderTrackingNumberMap table. |
inventoryAssignment | The inventoryAssignment table. |
InventoryBalance | The InventoryBalance table. |
InventoryCostTemplate | The InventoryCostTemplate table. |
InventoryCostTemplateCostDetail | The InventoryCostTemplateCostDetail table. |
inventoryItemCorrelateditem | The inventoryItemCorrelateditem table. |
inventoryItemItemAccountingBookDetail | The inventoryItemItemAccountingBookDetail table. |
inventoryItemItemQuantityPricingDiscount | The inventoryItemItemQuantityPricingDiscount table. |
inventoryItemItemQuantityPricingLevel | The inventoryItemItemQuantityPricingLevel table. |
inventoryItemItemVendor | The inventoryItemItemVendor table. |
inventoryItemLocations | The inventoryItemLocations table. |
inventoryItemPresentationItem | The inventoryItemPresentationItem table. |
inventoryItemPrice | The inventoryItemPrice table. |
inventoryItemQuantity | The inventoryItemQuantity table. |
inventoryItemSiteCategory | The inventoryItemSiteCategory table. |
inventoryItemSubsidiaryMap | The inventoryItemSubsidiaryMap table. |
inventoryItemTranslation | The inventoryItemTranslation table. |
inventorynumber | The inventorynumber table. |
InventoryNumberLocation | The InventoryNumberLocation table. |
inventorystatus | The inventorystatus table. |
invoiceBillingAddress | The invoiceBillingAddress table. |
invoiceGiftCertRedemption | The invoiceGiftCertRedemption table. |
InvoiceItemShippingAddress | The InvoiceItemShippingAddress table. |
invoiceLinkedTrackingNumberMap | The invoiceLinkedTrackingNumberMap table. |
invoicePartner | The invoicePartner table. |
invoiceSalesTeam | The invoiceSalesTeam table. |
invoiceShipGroup | The invoiceShipGroup table. |
invoiceShippingAddress | The invoiceShippingAddress table. |
invoiceTrackingNumberMap | The invoiceTrackingNumberMap table. |
invoiceTranPromotion | The invoiceTranPromotion table. |
InvtCommit | The InvtCommit table. |
InvtItemPriceHistory | The InvtItemPriceHistory table. |
IPRestrictions | The IPRestrictions table. |
IssueVersionRelation | The IssueVersionRelation table. |
item | The item table. |
itemAccountingBookDetail | The itemAccountingBookDetail table. |
itemBaseSubsidiaryMap | The itemBaseSubsidiaryMap table. |
itemBinQuantity | The itemBinQuantity table. |
itemcollection | The itemcollection table. |
ItemCollectionCustomerSegmentMap | The ItemCollectionCustomerSegmentMap table. |
ItemCollectionItemSimpleMap | The ItemCollectionItemSimpleMap table. |
itemCorrelatedItem | The itemCorrelatedItem table. |
itemdemandplan | The itemdemandplan table. |
ItemDemandPlanDemandplandetail | The ItemDemandPlanDemandplandetail table. |
ItemDemandSource | The ItemDemandSource table. |
ItemFulfillmentPackage | The ItemFulfillmentPackage table. |
ItemFulfillmentPackageFedex | The ItemFulfillmentPackageFedex table. |
ItemFulfillmentPackageUps | The ItemFulfillmentPackageUps table. |
ItemFulfillmentPackageUsps | The ItemFulfillmentPackageUsps table. |
itemFulfillmentReturnAddress | The itemFulfillmentReturnAddress table. |
itemFulfillmentShippingAddress | The itemFulfillmentShippingAddress table. |
itemGroupMember | The itemGroupMember table. |
itemGroupSubsidiaryMap | The itemGroupSubsidiaryMap table. |
itemGroupTranslation | The itemGroupTranslation table. |
itemMember | The itemMember table. |
ItemPeriodicLotSizeType | The ItemPeriodicLotSizeType table. |
itemPresentationItem | The itemPresentationItem table. |
itemPrice | The itemPrice table. |
itempricing | The itempricing table. |
ItemPricingDiscount | The ItemPricingDiscount table. |
itemQuantity | The itemQuantity table. |
itemQuantityPricingDiscount | The itemQuantityPricingDiscount table. |
itemQuantityPricingLevel | The itemQuantityPricingLevel table. |
ItemSegmentIncludingSyntheticInclsynthitem | The ItemSegmentIncludingSyntheticInclsynthitem table. |
ItemSegmentItem | The ItemSegmentItem table. |
ItemSegmentType | The ItemSegmentType table. |
itemSiteCategory | The itemSiteCategory table. |
ItemSource | The ItemSource table. |
itemSubsidiaryMap | The itemSubsidiaryMap table. |
ItemSubtype | The ItemSubtype table. |
ItemSupplyLotSizingType | The ItemSupplyLotSizingType table. |
itemsupplyplan | The itemsupplyplan table. |
ItemSupplyPlanOrder | The ItemSupplyPlanOrder table. |
ItemSupplyPlanPlanningmessage | The ItemSupplyPlanPlanningmessage table. |
ItemSupplyType | The ItemSupplyType table. |
itemTranslation | The itemTranslation table. |
itemType | The itemType table. |
ItemUnit | The ItemUnit table. |
itemVendor | The itemVendor table. |
job | The job table. |
jobAddressbook | The jobAddressbook table. |
jobAddressbookEntityAddress | The jobAddressbookEntityAddress table. |
jobBulkMerge | The jobBulkMerge table. |
jobCompanyContact | The jobCompanyContact table. |
JobRequisitionPostingType | The JobRequisitionPostingType table. |
JobRequisitionStatus | The JobRequisitionStatus table. |
jobResourceJobResourceMap | The jobResourceJobResourceMap table. |
JobResourceRole | The JobResourceRole table. |
jobResources | The jobResources table. |
jobstatus | The jobstatus table. |
jobtype | The jobtype table. |
kitItemCorrelateditem | The kitItemCorrelateditem table. |
kitItemItemAccountingBookDetail | The kitItemItemAccountingBookDetail table. |
kitItemItemQuantityPricingDiscount | The kitItemItemQuantityPricingDiscount table. |
kitItemItemQuantityPricingLevel | The kitItemItemQuantityPricingLevel table. |
kitItemMember | The kitItemMember table. |
kitItemPresentationItem | The kitItemPresentationItem table. |
kitItemPrice | The kitItemPrice table. |
kitItemQuantity | The kitItemQuantity table. |
kitItemSiteCategory | The kitItemSiteCategory table. |
kitItemSubsidiaryMap | The kitItemSubsidiaryMap table. |
kitItemTranslation | The kitItemTranslation table. |
knowledgeBaseSiteCategoryTranslation | The knowledgeBaseSiteCategoryTranslation table. |
LagType | The LagType table. |
LandedCostShipmentItemMap | The LandedCostShipmentItemMap table. |
librariesAction | The librariesAction table. |
librariesAdvancedRevRec | The librariesAdvancedRevRec table. |
librariesBundleInstallation | The librariesBundleInstallation table. |
librariesClient | The librariesClient table. |
librariesConsolRateAdjustor | The librariesConsolRateAdjustor table. |
librariesCustomGlLines | The librariesCustomGlLines table. |
librariesEmailCapture | The librariesEmailCapture table. |
librariesMassUpdate | The librariesMassUpdate table. |
librariesPaymentGateway | The librariesPaymentGateway table. |
librariesPlugInType | The librariesPlugInType table. |
librariesPlugInTypeImpl | The librariesPlugInTypeImpl table. |
librariesPortlet | The librariesPortlet table. |
librariesPromotions | The librariesPromotions table. |
librariesRestlet | The librariesRestlet table. |
librariesScheduled | The librariesScheduled table. |
librariesShippingPartners | The librariesShippingPartners table. |
librariesSuitelet | The librariesSuitelet table. |
librariesTaxCalculation | The librariesTaxCalculation table. |
librariesTestPlugin | The librariesTestPlugin table. |
librariesUserEvent | The librariesUserEvent table. |
librariesWebApp | The librariesWebApp table. |
LinkedTrackingNumberMap | The LinkedTrackingNumberMap table. |
LocalizedTemplate | The LocalizedTemplate table. |
locAssignConfBackorderRulesItem | The locAssignConfBackorderRulesItem table. |
location | The location table. |
LocationMainAddress | The LocationMainAddress table. |
LocationReturnAddress | The LocationReturnAddress table. |
locationSubsidiaryMap | The locationSubsidiaryMap table. |
LocationType | The LocationType table. |
LoginAudit | The LoginAudit table. |
MailTemplate | The MailTemplate table. |
manufacturingComponent | The manufacturingComponent table. |
manufacturingcosttemplate | The manufacturingcosttemplate table. |
ManufacturingCostTemplateCostDetail | The ManufacturingCostTemplateCostDetail table. |
manufacturingoperationtask | The manufacturingoperationtask table. |
ManufacturingOperationTaskCostDetail | The ManufacturingOperationTaskCostDetail table. |
manufacturingOperationTaskPredecessor | The manufacturingOperationTaskPredecessor table. |
manufacturingrouting | The manufacturingrouting table. |
ManufacturingRoutingComponent | The ManufacturingRoutingComponent table. |
ManufacturingRoutingLocationMap | The ManufacturingRoutingLocationMap table. |
ManufacturingRoutingRoutingStep | The ManufacturingRoutingRoutingStep table. |
manufacturingTransaction | The manufacturingTransaction table. |
markupItemSubsidiaryMap | The markupItemSubsidiaryMap table. |
markupItemTranslation | The markupItemTranslation table. |
MediaItemFolder | The MediaItemFolder table. |
MediaType | The MediaType table. |
memdoc | The memdoc table. |
MemDocCustomRecurrence | The MemDocCustomRecurrence table. |
memDocTransactionTemplate | The memDocTransactionTemplate table. |
MemDocTransactionTemplateAccountingLine | The MemDocTransactionTemplateAccountingLine table. |
memDocTransactionTemplateLine | The memDocTransactionTemplateLine table. |
memDocTransactionTemplatePartner | The memDocTransactionTemplatePartner table. |
memDocTransactionTemplateSalesTeam | The memDocTransactionTemplateSalesTeam table. |
memDocTransactionTemplateTranPromotion | The memDocTransactionTemplateTranPromotion table. |
message | The message table. |
MessageFile | The MessageFile table. |
MessageType | The MessageType table. |
methods | The methods table. |
mfgplannedtime | The mfgplannedtime table. |
MfgProjectAddressbook | The MfgProjectAddressbook table. |
MfgProjectAddressbookEntityAddress | The MfgProjectAddressbookEntityAddress table. |
MfgProjectBulkMerge | The MfgProjectBulkMerge table. |
MfgProjectCompanyContact | The MfgProjectCompanyContact table. |
MfgProjectJobResources | The MfgProjectJobResources table. |
MfgProjectJobResourcesJobResourceJobResourceMap | The MfgProjectJobResourcesJobResourceJobResourceMap table. |
mitPurpose | The mitPurpose table. |
MonthsOfYear | The MonthsOfYear table. |
NegativeNumberFormat | The NegativeNumberFormat table. |
NextTransactionLineLink | The NextTransactionLineLink table. |
nexus | The nexus table. |
nonInventoryItemCorrelateditem | The nonInventoryItemCorrelateditem table. |
nonInventoryItemItemAccountingBookDetail | The nonInventoryItemItemAccountingBookDetail table. |
nonInventoryItemItemQuantityPricingDiscount | The nonInventoryItemItemQuantityPricingDiscount table. |
nonInventoryItemItemQuantityPricingLevel | The nonInventoryItemItemQuantityPricingLevel table. |
nonInventoryItemItemVendor | The nonInventoryItemItemVendor table. |
nonInventoryItemPresentationItem | The nonInventoryItemPresentationItem table. |
nonInventoryItemPrice | The nonInventoryItemPrice table. |
nonInventoryItemQuantity | The nonInventoryItemQuantity table. |
nonInventoryItemSiteCategory | The nonInventoryItemSiteCategory table. |
nonInventoryItemSubsidiaryMap | The nonInventoryItemSubsidiaryMap table. |
nonInventoryItemTranslation | The nonInventoryItemTranslation table. |
nonInventoryPurchaseItemItemAccountingBookDetail | The nonInventoryPurchaseItemItemAccountingBookDetail table. |
nonInventoryPurchaseItemItemVendor | The nonInventoryPurchaseItemItemVendor table. |
nonInventoryPurchaseItemSubsidiaryMap | The nonInventoryPurchaseItemSubsidiaryMap table. |
nonInventoryPurchaseItemTranslation | The nonInventoryPurchaseItemTranslation table. |
nonInventoryResaleItemCorrelateditem | The nonInventoryResaleItemCorrelateditem table. |
nonInventoryResaleItemItemAccountingBookDetail | The nonInventoryResaleItemItemAccountingBookDetail table. |
nonInventoryResaleItemItemQuantityPricingDiscount | The nonInventoryResaleItemItemQuantityPricingDiscount table. |
nonInventoryResaleItemItemQuantityPricingLevel | The nonInventoryResaleItemItemQuantityPricingLevel table. |
nonInventoryResaleItemItemVendor | The nonInventoryResaleItemItemVendor table. |
nonInventoryResaleItemPresentationItem | The nonInventoryResaleItemPresentationItem table. |
nonInventoryResaleItemPrice | The nonInventoryResaleItemPrice table. |
nonInventoryResaleItemQuantity | The nonInventoryResaleItemQuantity table. |
nonInventoryResaleItemSiteCategory | The nonInventoryResaleItemSiteCategory table. |
nonInventoryResaleItemSubsidiaryMap | The nonInventoryResaleItemSubsidiaryMap table. |
nonInventoryResaleItemTranslation | The nonInventoryResaleItemTranslation table. |
nonInventorySaleItemCorrelateditem | The nonInventorySaleItemCorrelateditem table. |
nonInventorySaleItemItemAccountingBookDetail | The nonInventorySaleItemItemAccountingBookDetail table. |
nonInventorySaleItemItemQuantityPricingDiscount | The nonInventorySaleItemItemQuantityPricingDiscount table. |
nonInventorySaleItemItemQuantityPricingLevel | The nonInventorySaleItemItemQuantityPricingLevel table. |
nonInventorySaleItemPresentationItem | The nonInventorySaleItemPresentationItem table. |
nonInventorySaleItemPrice | The nonInventorySaleItemPrice table. |
nonInventorySaleItemQuantity | The nonInventorySaleItemQuantity table. |
nonInventorySaleItemSiteCategory | The nonInventorySaleItemSiteCategory table. |
nonInventorySaleItemSubsidiaryMap | The nonInventorySaleItemSubsidiaryMap table. |
nonInventorySaleItemTranslation | The nonInventorySaleItemTranslation table. |
note | The note table. |
NoteDirectionType | The NoteDirectionType table. |
NumberFormat | The NumberFormat table. |
NumberingSequenceSubsidMap | The NumberingSequenceSubsidMap table. |
OAuthToken | The OAuthToken table. |
onlineFormTemplate | The onlineFormTemplate table. |
onlineLeadFormEvent | The onlineLeadFormEvent table. |
onlineLeadFormField | The onlineLeadFormField table. |
opportunityBillingAddress | The opportunityBillingAddress table. |
OpportunityCompetitor | The OpportunityCompetitor table. |
opportunityPartner | The opportunityPartner table. |
opportunitySalesTeam | The opportunitySalesTeam table. |
opportunityShippingAddress | The opportunityShippingAddress table. |
orderFrequencyType | The orderFrequencyType table. |
otherChargeItemItemAccountingBookDetail | The otherChargeItemItemAccountingBookDetail table. |
otherChargeItemItemQuantityPricingDiscount | The otherChargeItemItemQuantityPricingDiscount table. |
otherChargeItemItemQuantityPricingLevel | The otherChargeItemItemQuantityPricingLevel table. |
otherChargeItemItemVendor | The otherChargeItemItemVendor table. |
otherChargeItemPrice | The otherChargeItemPrice table. |
otherChargeItemQuantity | The otherChargeItemQuantity table. |
otherChargeItemSubsidiaryMap | The otherChargeItemSubsidiaryMap table. |
otherChargeItemTranslation | The otherChargeItemTranslation table. |
otherChargePurchaseItemItemAccountingBookDetail | The otherChargePurchaseItemItemAccountingBookDetail table. |
otherChargePurchaseItemItemVendor | The otherChargePurchaseItemItemVendor table. |
otherChargePurchaseItemSubsidiaryMap | The otherChargePurchaseItemSubsidiaryMap table. |
otherChargePurchaseItemTranslation | The otherChargePurchaseItemTranslation table. |
otherChargeResaleItemItemAccountingBookDetail | The otherChargeResaleItemItemAccountingBookDetail table. |
otherChargeResaleItemItemQuantityPricingDiscount | The otherChargeResaleItemItemQuantityPricingDiscount table. |
otherChargeResaleItemItemQuantityPricingLevel | The otherChargeResaleItemItemQuantityPricingLevel table. |
otherChargeResaleItemItemVendor | The otherChargeResaleItemItemVendor table. |
otherChargeResaleItemPrice | The otherChargeResaleItemPrice table. |
otherChargeResaleItemQuantity | The otherChargeResaleItemQuantity table. |
otherChargeResaleItemSubsidiaryMap | The otherChargeResaleItemSubsidiaryMap table. |
otherChargeResaleItemTranslation | The otherChargeResaleItemTranslation table. |
otherChargeSaleItemItemAccountingBookDetail | The otherChargeSaleItemItemAccountingBookDetail table. |
otherChargeSaleItemItemQuantityPricingDiscount | The otherChargeSaleItemItemQuantityPricingDiscount table. |
otherChargeSaleItemItemQuantityPricingLevel | The otherChargeSaleItemItemQuantityPricingLevel table. |
otherChargeSaleItemPrice | The otherChargeSaleItemPrice table. |
otherChargeSaleItemQuantity | The otherChargeSaleItemQuantity table. |
otherChargeSaleItemSubsidiaryMap | The otherChargeSaleItemSubsidiaryMap table. |
otherChargeSaleItemTranslation | The otherChargeSaleItemTranslation table. |
othername | The othername table. |
otherNameAddressbook | The otherNameAddressbook table. |
otherNameAddressbookEntityAddress | The otherNameAddressbookEntityAddress table. |
otherNameBulkMerge | The otherNameBulkMerge table. |
otherNameCampaigns | The otherNameCampaigns table. |
othernamecategory | The othernamecategory table. |
otherNameCompanyContact | The otherNameCompanyContact table. |
otherNameSubscriptionMessageHistory | The otherNameSubscriptionMessageHistory table. |
otherNameSubscriptions | The otherNameSubscriptions table. |
OtherNameSubsidiaryRelationship | The OtherNameSubsidiaryRelationship table. |
outboundRequest | The outboundRequest table. |
overallQuantityPricingType | The overallQuantityPricingType table. |
overheadType | The overheadType table. |
parametersAction | The parametersAction table. |
parametersBundleInstallation | The parametersBundleInstallation table. |
parametersClient | The parametersClient table. |
parametersMapReduce | The parametersMapReduce table. |
parametersMassUpdate | The parametersMassUpdate table. |
parametersPortlet | The parametersPortlet table. |
parametersRestlet | The parametersRestlet table. |
parametersScheduled | The parametersScheduled table. |
parametersScript | The parametersScript table. |
parametersSuitelet | The parametersSuitelet table. |
parametersUserEvent | The parametersUserEvent table. |
partner | The partner table. |
PartnerAddressbook | The PartnerAddressbook table. |
PartnerAddressbookEntityAddress | The PartnerAddressbookEntityAddress table. |
PartnerBulkMerge | The PartnerBulkMerge table. |
PartnerCampaigns | The PartnerCampaigns table. |
partnerCategoryMap | The partnerCategoryMap table. |
PartnerCompanyContact | The PartnerCompanyContact table. |
partnerContactRole | The partnerContactRole table. |
PartnerSubscriptionMessageHistory | The PartnerSubscriptionMessageHistory table. |
PartnerSubscriptions | The PartnerSubscriptions table. |
PartnerSubsidiaryRelationship | The PartnerSubsidiaryRelationship table. |
PartnerSystem | The PartnerSystem table. |
payItemType | The payItemType table. |
paymentCardBin | The paymentCardBin table. |
paymentCardBrand | The paymentCardBrand table. |
paymentCardPaymentOperationMap | The paymentCardPaymentOperationMap table. |
paymentCardTokenPaymentOperationMap | The paymentCardTokenPaymentOperationMap table. |
paymentevent | The paymentevent table. |
paymentHandlingMode | The paymentHandlingMode table. |
paymentInitiator | The paymentInitiator table. |
paymentInstrumentListPaymentOperationMap | The paymentInstrumentListPaymentOperationMap table. |
paymentInstrumentPaymentOperationMap | The paymentInstrumentPaymentOperationMap table. |
paymentInstrumentStateType | The paymentInstrumentStateType table. |
paymentInstrumentType | The paymentInstrumentType table. |
paymentItemSubsidiaryMap | The paymentItemSubsidiaryMap table. |
paymentItemTranslation | The paymentItemTranslation table. |
paymentmethod | The paymentmethod table. |
paymentMethodVisual | The paymentMethodVisual table. |
paymentOperation | The paymentOperation table. |
paymentResultPreview | The paymentResultPreview table. |
paymentStatus | The paymentStatus table. |
paymentStatusReason | The paymentStatusReason table. |
payrollitem | The payrollitem table. |
payrollItemEmployeeTaxOptions | The payrollItemEmployeeTaxOptions table. |
PdfTemplate | The PdfTemplate table. |
permissionLevel | The permissionLevel table. |
PermissionType | The PermissionType table. |
phonecall | The phonecall table. |
PickActionInventoryDetail | The PickActionInventoryDetail table. |
plannedRevenueType | The plannedRevenueType table. |
plannedStandardCost | The plannedStandardCost table. |
plannedStandardCostComponents | The plannedStandardCostComponents table. |
platformExtensionPluginLibrariesAdvancedRevRec | The platformExtensionPluginLibrariesAdvancedRevRec table. |
predictedRiskTrainEvalHistory | The predictedRiskTrainEvalHistory table. |
presentationItemType | The presentationItemType table. |
PreviousTransactionLineLink | The PreviousTransactionLineLink table. |
PreviousTransactionLink | The PreviousTransactionLink table. |
pricelevel | The pricelevel table. |
PriceModelType | The PriceModelType table. |
priceUsingType | The priceUsingType table. |
pricing | The pricing table. |
pricinggroup | The pricinggroup table. |
ProjectBudgetAmount | The ProjectBudgetAmount table. |
ProjectSubsidiaryRelationship | The ProjectSubsidiaryRelationship table. |
projecttask | The projecttask table. |
projectTaskAssignee | The projectTaskAssignee table. |
projectTaskConstraintType | The projectTaskConstraintType table. |
projectTaskPredecessor | The projectTaskPredecessor table. |
projecttemplate | The projecttemplate table. |
projectTemplateJobResource | The projectTemplateJobResource table. |
ProjectTemplateSubsidiaryRelationship | The ProjectTemplateSubsidiaryRelationship table. |
ProjectTimeApprovalType | The ProjectTimeApprovalType table. |
promocodediscounttype | The promocodediscounttype table. |
promotioncode | The promotioncode table. |
promotionCodeCampaigns | The promotionCodeCampaigns table. |
promotionCodeCouponInstances | The promotionCodeCouponInstances table. |
promotionCodeCurrency | The promotionCodeCurrency table. |
promotionCodeItems | The promotionCodeItems table. |
promotioncodelocationmap | The promotioncodelocationmap table. |
promotionCodePartnerMap | The promotionCodePartnerMap table. |
promotionCodeWebsiteMap | The promotionCodeWebsiteMap table. |
publishedSavedSearch | The publishedSavedSearch table. |
publishedSavedSearchPresItemPresCategory | The publishedSavedSearchPresItemPresCategory table. |
publishedSavedSearchSiteCategoryTagSubstitution | The publishedSavedSearchSiteCategoryTagSubstitution table. |
publishedSavedSearchSiteCategoryTranslationPublishedSavedSearch | The publishedSavedSearchSiteCategoryTranslationPublishedSavedSearch table. |
purchaseOrderBillingAddress | The purchaseOrderBillingAddress table. |
purchaseOrderExpenseMachine | The purchaseOrderExpenseMachine table. |
purchaseOrderShippingAddress | The purchaseOrderShippingAddress table. |
purchaseOrderTrackingNumberMap | The purchaseOrderTrackingNumberMap table. |
purchaseRequisitionTrackingNumberMap | The purchaseRequisitionTrackingNumberMap table. |
quantityPricingSchedule | The quantityPricingSchedule table. |
quantityPricingScheduleLevelEdit | The quantityPricingScheduleLevelEdit table. |
quantityPricingScheduleLevelSpreadsheet | The quantityPricingScheduleLevelSpreadsheet table. |
Quota | The Quota table. |
RecentRecord | The RecentRecord table. |
redeemedAtTransaction | The redeemedAtTransaction table. |
reforecastMethod | The reforecastMethod table. |
reportingSection | The reportingSection table. |
requestForQuoteItemItemPricing | The requestForQuoteItemItemPricing table. |
requestForQuoteItemItemPricingDiscount | The requestForQuoteItemItemPricingDiscount table. |
resourceAllocationType | The resourceAllocationType table. |
resourceGroup | The resourceGroup table. |
resourceGroupMembers | The resourceGroupMembers table. |
returnAuthorizationBillingAddress | The returnAuthorizationBillingAddress table. |
returnAuthorizationPartner | The returnAuthorizationPartner table. |
returnAuthorizationSalesTeam | The returnAuthorizationSalesTeam table. |
returnAuthorizationShippingAddress | The returnAuthorizationShippingAddress table. |
returnAuthorizationTranPromotion | The returnAuthorizationTranPromotion table. |
revenueCommitmentBillingAddress | The revenueCommitmentBillingAddress table. |
revenueCommitmentPartner | The revenueCommitmentPartner table. |
revenueCommitmentReversalBillingAddress | The revenueCommitmentReversalBillingAddress table. |
revenueCommitmentReversalPartner | The revenueCommitmentReversalPartner table. |
revenueCommitmentReversalSalesTeam | The revenueCommitmentReversalSalesTeam table. |
revenueCommitmentReversalShippingAddress | The revenueCommitmentReversalShippingAddress table. |
revenueCommitmentReversalTrackingNumberMap | The revenueCommitmentReversalTrackingNumberMap table. |
revenueCommitmentSalesTeam | The revenueCommitmentSalesTeam table. |
revenueCommitmentShippingAddress | The revenueCommitmentShippingAddress table. |
revenueCommitmentTrackingNumberMap | The revenueCommitmentTrackingNumberMap table. |
revenueContractSalesTeam | The revenueContractSalesTeam table. |
RevenueElement | The RevenueElement table. |
revenueElementSourceType | The revenueElementSourceType table. |
revenuePlanSource | The revenuePlanSource table. |
revenuePlanStatus | The revenuePlanStatus table. |
revenuePlanType | The revenuePlanType table. |
revRecAmountSourceType | The revRecAmountSourceType table. |
revRecChangeImpactType | The revRecChangeImpactType table. |
revRecDateSourceType | The revRecDateSourceType table. |
revRecEventPRevRule | The revRecEventPRevRule table. |
revRecEventTranLine | The revRecEventTranLine table. |
revRecRecurrenceType | The revRecRecurrenceType table. |
role | The role table. |
salesInvoiced | The salesInvoiced table. |
salesOrderBillingAddress | The salesOrderBillingAddress table. |
salesOrdered | The salesOrdered table. |
salesOrderGiftCertRedemption | The salesOrderGiftCertRedemption table. |
salesOrderItemShippingAddress | The salesOrderItemShippingAddress table. |
salesOrderLinkedTrackingNumberMap | The salesOrderLinkedTrackingNumberMap table. |
salesOrderPartner | The salesOrderPartner table. |
salesOrderSalesTeam | The salesOrderSalesTeam table. |
salesOrderShipGroup | The salesOrderShipGroup table. |
salesOrderShippingAddress | The salesOrderShippingAddress table. |
salesOrderTranPromotion | The salesOrderTranPromotion table. |
salestaxitem | The salestaxitem table. |
schedulingMethod | The schedulingMethod table. |
scriptButton | The scriptButton table. |
scriptEventType | The scriptEventType table. |
scriptExecutionContextMap | The scriptExecutionContextMap table. |
scriptExecutionContextMapClient | The scriptExecutionContextMapClient table. |
scriptExecutionContextMapUserEvent | The scriptExecutionContextMapUserEvent table. |
scriptFieldType | The scriptFieldType table. |
scriptLocalizationContextMap | The scriptLocalizationContextMap table. |
scriptLocalizationContextMapClient | The scriptLocalizationContextMapClient table. |
scriptMethods | The scriptMethods table. |
scriptNoteType | The scriptNoteType table. |
scriptPortletType | The scriptPortletType table. |
scriptStatus | The scriptStatus table. |
scriptType | The scriptType table. |
scriptVersion | The scriptVersion table. |
searchCampaign | The searchCampaign table. |
searchCampaignItem | The searchCampaignItem table. |
sentEmail | The sentEmail table. |
sentemailrecipient | The sentemailrecipient table. |
serviceItemBillingRate | The serviceItemBillingRate table. |
serviceItemCorrelateditem | The serviceItemCorrelateditem table. |
serviceItemItemAccountingBookDetail | The serviceItemItemAccountingBookDetail table. |
serviceItemItemQuantityPricingDiscount | The serviceItemItemQuantityPricingDiscount table. |
serviceItemItemQuantityPricingLevel | The serviceItemItemQuantityPricingLevel table. |
serviceItemItemVendor | The serviceItemItemVendor table. |
serviceItemPresentationItem | The serviceItemPresentationItem table. |
serviceItemPrice | The serviceItemPrice table. |
serviceItemQuantity | The serviceItemQuantity table. |
serviceItemSiteCategory | The serviceItemSiteCategory table. |
serviceItemSubsidiaryMap | The serviceItemSubsidiaryMap table. |
serviceItemTaskTemplate | The serviceItemTaskTemplate table. |
serviceItemTranslation | The serviceItemTranslation table. |
servicePurchaseItemItemAccountingBookDetail | The servicePurchaseItemItemAccountingBookDetail table. |
servicePurchaseItemItemVendor | The servicePurchaseItemItemVendor table. |
servicePurchaseItemSubsidiaryMap | The servicePurchaseItemSubsidiaryMap table. |
servicePurchaseItemTranslation | The servicePurchaseItemTranslation table. |
serviceResaleItemBillingRate | The serviceResaleItemBillingRate table. |
serviceResaleItemCorrelateditem | The serviceResaleItemCorrelateditem table. |
serviceResaleItemItemAccountingBookDetail | The serviceResaleItemItemAccountingBookDetail table. |
serviceResaleItemItemQuantityPricingDiscount | The serviceResaleItemItemQuantityPricingDiscount table. |
serviceResaleItemItemQuantityPricingLevel | The serviceResaleItemItemQuantityPricingLevel table. |
serviceResaleItemItemVendor | The serviceResaleItemItemVendor table. |
serviceResaleItemPresentationItem | The serviceResaleItemPresentationItem table. |
serviceResaleItemPrice | The serviceResaleItemPrice table. |
serviceResaleItemQuantity | The serviceResaleItemQuantity table. |
serviceResaleItemSiteCategory | The serviceResaleItemSiteCategory table. |
serviceResaleItemSubsidiaryMap | The serviceResaleItemSubsidiaryMap table. |
serviceResaleItemTaskTemplate | The serviceResaleItemTaskTemplate table. |
serviceResaleItemTranslation | The serviceResaleItemTranslation table. |
serviceSaleItemCorrelateditem | The serviceSaleItemCorrelateditem table. |
serviceSaleItemItemAccountingBookDetail | The serviceSaleItemItemAccountingBookDetail table. |
serviceSaleItemItemQuantityPricingDiscount | The serviceSaleItemItemQuantityPricingDiscount table. |
serviceSaleItemItemQuantityPricingLevel | The serviceSaleItemItemQuantityPricingLevel table. |
serviceSaleItemPresentationItem | The serviceSaleItemPresentationItem table. |
serviceSaleItemPrice | The serviceSaleItemPrice table. |
serviceSaleItemQuantity | The serviceSaleItemQuantity table. |
serviceSaleItemSiteCategory | The serviceSaleItemSiteCategory table. |
serviceSaleItemSubsidiaryMap | The serviceSaleItemSubsidiaryMap table. |
serviceSaleItemTaskTemplate | The serviceSaleItemTaskTemplate table. |
serviceSaleItemTranslation | The serviceSaleItemTranslation table. |
ShipGroup | The ShipGroup table. |
shipitem | The shipitem table. |
ShipItemFreeShippingItem | The ShipItemFreeShippingItem table. |
ShipItemHandlingRate | The ShipItemHandlingRate table. |
ShipItemShippingRate | The ShipItemShippingRate table. |
ShipItemTranslation | The ShipItemTranslation table. |
ShipmentPackage | The ShipmentPackage table. |
ShipperPackageTypeCode | The ShipperPackageTypeCode table. |
shippingMethodRuleRelation | The shippingMethodRuleRelation table. |
ShippingPackage | The ShippingPackage table. |
shoppingcart | The shoppingcart table. |
ShoppingCartLine | The ShoppingCartLine table. |
siteAudience | The siteAudience table. |
siteAudienceCustomer | The siteAudienceCustomer table. |
siteAudienceDepartment | The siteAudienceDepartment table. |
siteAudienceEmployee | The siteAudienceEmployee table. |
siteAudienceGroup | The siteAudienceGroup table. |
siteAudiencePartner | The siteAudiencePartner table. |
siteAudienceRole | The siteAudienceRole table. |
siteAudienceSubsidiary | The siteAudienceSubsidiary table. |
siteAudienceVendor | The siteAudienceVendor table. |
sitecategory | The sitecategory table. |
siteCategoryPresItemPresCategory | The siteCategoryPresItemPresCategory table. |
siteCategoryTagSubstitution | The siteCategoryTagSubstitution table. |
siteCategoryTranslation | The siteCategoryTranslation table. |
siteCategoryType | The siteCategoryType table. |
sitetheme | The sitetheme table. |
softDescriptor | The softDescriptor table. |
soldOnTransaction | The soldOnTransaction table. |
solution | The solution table. |
solutionSolutionMap | The solutionSolutionMap table. |
solutiontopicmap | The solutiontopicmap table. |
specialAccountType | The specialAccountType table. |
standardcostdefaulttype | The standardcostdefaulttype table. |
standardCostVersion | The standardCostVersion table. |
standardCostVersionLocationMap | The standardCostVersionLocationMap table. |
statisticalScheduleDetail | The statisticalScheduleDetail table. |
stockBehaviorType | The stockBehaviorType table. |
storeTab | The storeTab table. |
storeTabPresItem | The storeTabPresItem table. |
storeTabSiteCategoryTranslationStoreTab | The storeTabSiteCategoryTranslationStoreTab table. |
storeTabTagSubstitution | The storeTabTagSubstitution table. |
storeTabType | The storeTabType table. |
sublist | The sublist table. |
subscriptionChangeOrderNewLine | The subscriptionChangeOrderNewLine table. |
subscriptionLineStatus | The subscriptionLineStatus table. |
subscriptionMessageType | The subscriptionMessageType table. |
subscriptionPlanSubsidiaryMap | The subscriptionPlanSubsidiaryMap table. |
subscriptiontermunit | The subscriptiontermunit table. |
subsidiary | The subsidiary table. |
SubsidiaryMainAddress | The SubsidiaryMainAddress table. |
SubsidiaryReturnAddress | The SubsidiaryReturnAddress table. |
SubsidiaryShippingAddress | The SubsidiaryShippingAddress table. |
subsidiaryTaxRegistration | The subsidiaryTaxRegistration table. |
SUBSIDIARYTRANSLATION | The SUBSIDIARYTRANSLATION table. |
subtotalItemSubsidiaryMap | The subtotalItemSubsidiaryMap table. |
subtotalItemTranslation | The subtotalItemTranslation table. |
SuiteScriptDetail | The SuiteScriptDetail table. |
supplychainsnapshot | The supplychainsnapshot table. |
supplyChainSnapshotDetails | The supplyChainSnapshotDetails table. |
supplychainsnapshotsimulation | The supplychainsnapshotsimulation table. |
SupplyReplenishmentType | The SupplyReplenishmentType table. |
supportcase | The supportcase table. |
supportCaseEscalateHist | The supportCaseEscalateHist table. |
supportCaseEscalateToMap | The supportCaseEscalateToMap table. |
supportCaseMediaItemMap | The supportCaseMediaItemMap table. |
supportCaseSolutionMap | The supportCaseSolutionMap table. |
SystemEmailTemplate | The SystemEmailTemplate table. |
SystemNote | The SystemNote table. |
SystemNote2 | The SystemNote2 table. |
systemNoteContextType | The systemNoteContextType table. |
SystemNoteField | The SystemNoteField table. |
tag | The tag table. |
task | The task table. |
TaskCompanyMap | The TaskCompanyMap table. |
TaskContactMap | The TaskContactMap table. |
TaskEventFile | The TaskEventFile table. |
taxItemTaxGroup | The taxItemTaxGroup table. |
taxOverrideMethod | The taxOverrideMethod table. |
taxtype | The taxtype table. |
term | The term table. |
Terminationregretted | The Terminationregretted table. |
testCell | The testCell table. |
ThreeDSECommerceIndicator | The ThreeDSECommerceIndicator table. |
ThreeDSTranStatus | The ThreeDSTranStatus table. |
ThreeDSTranStatusReason | The ThreeDSTranStatusReason table. |
ThreeDSVersion | The ThreeDSVersion table. |
timebill | The timebill table. |
timeLineApprovalStatus | The timeLineApprovalStatus table. |
TimelineType | The TimelineType table. |
timeOffAccrualFrequency | The timeOffAccrualFrequency table. |
timeOffAccrualType | The timeOffAccrualType table. |
timeOffRequestDetailsMachine | The timeOffRequestDetailsMachine table. |
TimeZone | The TimeZone table. |
topic | The topic table. |
topicPublish | The topicPublish table. |
topicSolutionMap | The topicSolutionMap table. |
TrackingNumber | The TrackingNumber table. |
TrackingNumberMap | The TrackingNumberMap table. |
tranPromotion | The tranPromotion table. |
transaction | The transaction table. |
TransactionAccountingLine | The TransactionAccountingLine table. |
TransactionAccountingLineCostComponent | The TransactionAccountingLineCostComponent table. |
transactionAddressbook | The transactionAddressbook table. |
transactionAddressMapping | The transactionAddressMapping table. |
transactionAddressMappingAddress | The transactionAddressMappingAddress table. |
transactionBilling | The TransactionBilling table. |
transactionBillingAddress | The transactionBillingAddress table. |
transactionBillingAddressbook | The transactionBillingAddressbook table. |
transactionBillingAddressbookEntityAddress | The transactionBillingAddressbookEntityAddress table. |
transactionCompetitor | The transactionCompetitor table. |
transactionLine | The transactionLine table. |
transactionLineAddressMapping | The transactionLineAddressMapping table. |
transactionLineAddressMappingLineAddress | The transactionLineAddressMappingLineAddress table. |
TransactionNumberingAuditLog | The TransactionNumberingAuditLog table. |
transactionPartner | The transactionPartner table. |
transactionPayeeAddressbook | The transactionPayeeAddressbook table. |
transactionPayeeAddressbookEntityAddress | The transactionPayeeAddressbookEntityAddress table. |
transactionReturnAddressbook | The transactionReturnAddressbook table. |
transactionReturnAddressbookEntityAddress | The transactionReturnAddressbookEntityAddress table. |
transactionSalesTeam | The transactionSalesTeam table. |
TransactionShipment | The TransactionShipment table. |
transactionShippingAddress | The transactionShippingAddress table. |
transactionShippingAddressbook | The transactionShippingAddressbook table. |
transactionShippingAddressbookEntityAddress | The transactionShippingAddressbookEntityAddress table. |
transactionStatus | The TransactionStatus table. |
transferOrderLinkedTrackingNumberMap | The transferOrderLinkedTrackingNumberMap table. |
transferOrderShippingAddress | The transferOrderShippingAddress table. |
transferOrderTrackingNumberMap | The transferOrderTrackingNumberMap table. |
UnbilledReceivableGrouping | The UnbilledReceivableGrouping table. |
undeliveredEmail | The undeliveredEmail table. |
unitstype | The unitstype table. |
unitsTypeUom | The unitsTypeUom table. |
upsellItem | The upsellItem table. |
UserAuthorizationConsent | The UserAuthorizationConsent table. |
UserOAuthToken | The UserOAuthToken table. |
usrsavedsearch | The usrsavedsearch table. |
usrsavedsearchexec | The usrsavedsearchexec table. |
validatePostbackStatus | The validatePostbackStatus table. |
vendor | The vendor table. |
vendorAchAcct | The vendorAchAcct table. |
vendorAddressbook | The vendorAddressbook table. |
vendorAddressbookEntityAddress | The vendorAddressbookEntityAddress table. |
vendorBillBillingAddress | The vendorBillBillingAddress table. |
vendorBillExpenseMachine | The vendorBillExpenseMachine table. |
vendorBulkMerge | The vendorBulkMerge table. |
vendorCampaigns | The vendorCampaigns table. |
vendorcategory | The vendorcategory table. |
vendorCompanyContact | The vendorCompanyContact table. |
vendorCreditBillingAddress | The vendorCreditBillingAddress table. |
vendorCreditExpenseMachine | The vendorCreditExpenseMachine table. |
vendorCurrencyBalance | The vendorCurrencyBalance table. |
vendorPaymentPayeeAddress | The vendorPaymentPayeeAddress table. |
vendorRate | The vendorRate table. |
vendorRequestForQuoteItemItemPricing | The vendorRequestForQuoteItemItemPricing table. |
vendorRequestForQuoteItemItemPricingDiscount | The vendorRequestForQuoteItemItemPricingDiscount table. |
vendorReturnAuthorizationBillingAddress | The vendorReturnAuthorizationBillingAddress table. |
vendorReturnAuthorizationExpenseMachine | The vendorReturnAuthorizationExpenseMachine table. |
vendorRolesForSearch | The vendorRolesForSearch table. |
vendorSubscriptionMessageHistory | The vendorSubscriptionMessageHistory table. |
vendorSubscriptions | The vendorSubscriptions table. |
vendorsubsidiaryrelationship | The vendorsubsidiaryrelationship table. |
verificationMatchCode | The verificationMatchCode table. |
vsoeDeferralType | The vsoeDeferralType table. |
vsoeDiscountType | The vsoeDiscountType table. |
vsoeSopGroupType | The vsoeSopGroupType table. |
WbsAmount | The WbsAmount table. |
WbsLine | The WbsLine table. |
webSiteFieldsetRecordType | The webSiteFieldsetRecordType table. |
workCalendar | The workCalendar table. |
workCalendarHoliday | The workCalendarHoliday table. |
workOrderPartner | The workOrderPartner table. |
workOrderSalesTeam | The workOrderSalesTeam table. |
WorkplaceMainAddress | The WorkplaceMainAddress table. |
The account table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accountsearchdisplayname | String | Display Name | |
accountsearchdisplaynamecopy | String | Name | |
acctnumber | String | Number | |
accttype | String | Type | |
billableexpensesacct | String | Track Billable Expenses in | |
cashflowrate | String | Cash Flow Rate Type | |
category1099misc | String | 1099-MISC Category | |
class | String | Restrict to Class | |
currency | String | Currency | |
deferralacct | String | Deferral Account | |
department | String | Restrict to Department | |
description | String | Description | |
displaynamewithhierarchy | String | Display Name (with hierarchy) | |
eliminate | Boolean | Eliminate Intercompany Transactions | |
externalid | String | External ID | |
fullname | String | Full Name | |
generalrate | String | General Rate Type | |
includechildren | Boolean | Include Children | |
inventory | Boolean | Inventory | |
isinactive | Boolean | Inactive | |
issummary | Boolean | Summary | |
location | String | Restrict to Location | |
parent | String | Subaccount of | |
restricttoaccountingbook | String | Restrict to Accounting Book | |
revalue | Boolean | Revalue Open Balance for Foreign Currency Transactions | |
sbankcompanyid | String | Bank Account Number | |
sbankname | String | Bank Name | |
sbankroutingnumber | String | Bank Routing Number | |
sspecacct | String | Special Account Type | |
subsidiary | String | Subsidiaries |
The AccountContextSearch table.
Name | Type | References | Description |
account | String | Account | |
accountingcontext | String | Accounting Context | |
acctname | String | Name | |
locale | String | Language |
The accountingperiodfiscalcalendars table.
Name | Type | References | Description |
parent | String | Parent | |
fiscalcalendar | String | Fiscal Calendar | |
accountingperiod | String | Accounting Period |
The accountLocalization table.
Name | Type | References | Description |
account | String | Account | |
accountingcontext | String | Accounting Context | |
acctname | String | Name | |
legalname | String | Legal Name | |
locale | String | Language |
The AccountSubsidiaryMap table.
Name | Type | References | Description |
account | String | Account |
The accountType table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
balancesheet | Boolean | Balance Sheet | |
defaultcashflowratetype | String | Default Cast Flow Rate Type | |
defaultgeneralratetype | String | Default Gerenal Rate Type | |
eliminationalgo | String | Elimination Algorithm | |
id | String | ID | |
includeinrevaldefault | Boolean | Default Include in Revaluation | |
left | Boolean | Left | |
longname | String | Long Name | |
seqnum | Integer | Sequence Number |
The addressType table.
Name | Type | References | Description |
description | String | Description |
The AdmissibilityPackageType table.
Name | Type | References | Description |
code | String | Code | |
inactive | Boolean | Is Inactive | |
key | Integer | ID | |
name | String | Name | |
shipper | String | Carrier |
The aggregateItemLocation table.
Name | Type | References | Description |
atpleadtime | Integer | ATP Lead Time | |
averagecostmli | Decimal | Average Cost | |
backwardconsumptiondays | Integer | Backward Consumption Days | |
cost | Decimal | Standard Cost | |
costaccountingstatus | String | Cost Accounting Status | |
costinglotsize | Double | Costing Lot Size | |
currentstandardcost | Decimal | Current Standard Cost | |
currentstandardcosteffectivedate | Date | Current Standard Cost Effective Date | |
defaultreturncost | Decimal | Default Return Cost | |
demandsource | String | Demand Source | |
demandtimefence | Integer | Demand Time Fence | |
fixedlotsize | Double | Fixed Lot Size | |
forwardconsumptiondays | Integer | Forward Consumption Days | |
inventorycosttemplate | String | Inventory Cost Template | |
invtclassification | String | Classification | |
invtcountinterval | Integer | Count Interval | |
item | String | Item | |
lastinvtcountdate | Date | Last Count Date | |
lastpurchasepricemli | Decimal | Last Purchase Price | |
location | String | Location | |
nextinvtcountdate | Date | Next Count Date | |
periodiclotsizedays | Integer | Periods of Supply Increment | |
periodiclotsizetype | String | Periods of Supply Type | |
preferredstocklevel | Double | Preferred Stock Level | |
qtyintransitexternal | Double | Quantity In Transit (External) | |
quantityavailable | Double | Quantity Available | |
quantitybackordered | Double | Quantity Back Ordered | |
quantitycommitted | Double | Quantity Committed | |
quantityintransit | Double | Quantity In Transit | |
quantityonhand | Double | Quantity On Hand | |
quantityonorder | Double | Quantity On Order | |
reorderpoint | Double | Reorder Point | |
rescheduleindays | Integer | Reschedule In Days | |
rescheduleoutdays | Integer | Reschedule Out Days | |
supplylotsizingmethod | String | Lot Sizing Method | |
supplytimefence | Integer | Planning Time Fence | |
supplytype | String | Supply Type |
The alignOrHide table.
Name | Type | References | Description |
description | String | Description |
The allocationDetail table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
createdjournals | String | Journal Entry Created | |
externalid | String | External ID | |
parentschedule | String | Created from Schedule | |
trandate | Date | Date |
The allocationDetailJournalMap table.
Name | Type | References | Description |
journal | String | Journal |
The AllocationMethod table.
Name | Type | References | Description |
id | String | ID |
The allocationScheduleAllocationDetail table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
createdjournals | String | Journal Entry Created | |
externalid | String | External ID | |
parentschedule | String | Created from Schedule | |
trandate | Date | Date |
The allocationScheduleAllocationDetailGeneralDetailDestination table.
Name | Type | References | Description |
account | String | Account | |
class | String | Class | |
department | String | Department | |
entity | String | Name | |
intercompanyaccount | String | Intercompany Account | |
location | String | Location | |
parentschedule | String | Created from Schedule | |
subsidiary | String | Subsidiary |
The allocationScheduleAllocationDetailGeneralDetailSource table.
Name | Type | References | Description |
account | String | Account | |
class | String | Class | |
department | String | Department | |
location | String | Location | |
parentschedule | String | Created from Schedule |
The allocationScheduleAllocationDetailJournalMap table.
Name | Type | References | Description |
journal | String | Journal |
The AllocationScheduleDestination table.
Name | Type | References | Description |
account | String | Account | |
class | String | Class | |
department | String | Department | |
entity | String | Name | |
location | String | Location | |
parentschedule | String | Created from Schedule |
The AllocationScheduleSource table.
Name | Type | References | Description |
account | String | Account | |
class | String | Class | |
department | String | Department | |
location | String | Location | |
parentschedule | String | Created from Schedule |
The AmortizationType table.
Name | Type | References | Description |
key | String | key |
The ApplicabilityModeType table.
Name | Type | References | Description |
key | String | key |
The ApplicabilityReasonType table.
Name | Type | References | Description |
key | String | key |
The ApplicabilityStatusType table.
Name | Type | References | Description |
key | String | key |
The applyDiscountTo table.
Name | Type | References | Description |
name | String | Apply Discount To |
The ApprovalStatus table.
Name | Type | References | Description |
name | String | Name |
The assemblyItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The assemblyItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The assemblyItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The assemblyItemItemVendor table.
Name | Type | References | Description |
item | String | Item | |
preferredvendor | Boolean | Preferred | |
purchaseprice | String | Purchase Price | |
schedule | String | Schedule | |
subsidiary | String | Subsidiary | |
vendor | String | Vendor | |
vendorcode | String | Code | |
vendorcostentered | Decimal | Price (Entered) | |
vendorcurrencyid | String | Currency |
The assemblyItemLocations table.
Name | Type | References | Description |
atpleadtime | Integer | ATP Lead Time | |
averagecostmli | Decimal | Average Cost | |
backwardconsumptiondays | Integer | Backward Consumption Days | |
cost | Decimal | Standard Cost | |
costaccountingstatus | String | Cost Accounting Status | |
costinglotsize | Double | Costing Lot Size | |
currentstandardcost | Decimal | Current Standard Cost | |
currentstandardcosteffectivedate | Date | Current Standard Cost Effective Date | |
defaultreturncost | Decimal | Default Return Cost | |
demandsource | String | Demand Source | |
demandtimefence | Integer | Demand Time Fence | |
fixedlotsize | Double | Fixed Lot Size | |
forwardconsumptiondays | Integer | Forward Consumption Days | |
inventorycosttemplate | String | Inventory Cost Template | |
invtclassification | String | Classification | |
invtcountinterval | Integer | Count Interval | |
iswip | Boolean | WIP | |
item | String | Item | |
lastinvtcountdate | Date | Last Count Date | |
lastpurchasepricemli | Decimal | Last Purchase Price | |
location | String | Location | |
nextinvtcountdate | Date | Next Count Date | |
onhandvaluemli | Decimal | Value | |
periodiclotsizedays | Integer | Periods of Supply Increment | |
periodiclotsizetype | String | Periods of Supply Type | |
preferredstocklevel | Double | Preferred Stock Level | |
qtyintransitexternal | Double | Quantity In Transit (External) | |
quantityavailable | Double | Quantity Available | |
quantitybackordered | Double | Quantity Back Ordered | |
quantitycommitted | Double | Quantity Committed | |
quantityintransit | Double | Quantity In Transit | |
quantityonhand | Double | Quantity On Hand | |
quantityonorder | Double | Quantity On Order | |
reorderpoint | Double | Build Point | |
rescheduleindays | Integer | Reschedule In Days | |
rescheduleoutdays | Integer | Reschedule Out Days | |
supplylotsizingmethod | String | Lot Sizing Method | |
supplytimefence | Integer | Planning Time Fence | |
supplytype | String | Supply Type |
The assemblyItemMember table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
bomquantity | Decimal | BOM Quantity | |
componentyield | Double | Component Yield | |
effectivedate | Date | Effective Date | |
effectiverevision | String | Effective Revision | |
item | String | Item | |
itemsource | String | Item Source | |
linenumber | Integer | Line Id | |
obsoletedate | Date | Obsolete Date | |
obsoleterevision | String | Obsolete Revision | |
parentitem | String | Member of | |
quantity | Decimal | Quantity |
The assemblyItemPresentationItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
description | String | Item Description | |
onlineprice | Decimal | Online Price | |
presentationitem | String | Related Item | |
presitemid | Integer | Internal ID | |
superitem | String | -No label- |
The assemblyItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The assemblyItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The assemblyItemSiteCategory table.
Name | Type | References | Description |
categorydescription | String | Description | |
isdefault | Boolean | Preferred Category | |
item | String | -No label- | |
website | String | Site |
The assemblyItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The assemblyItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The ATPMethodType table.
Name | Type | References | Description |
key | String | Internal ID |
The Attendee table.
Name | Type | References | Description |
attendee [KEY] | Integer | Attendee | |
calendarevent [KEY] | Integer | Event | |
attendance | String | Attendance | |
response | String | Response |
The audienceDepartmentMap table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceDepartmentMapClient table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceDepartmentMapMassUpdate table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceDepartmentMapPortlet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceDepartmentMapRestlet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceDepartmentMapSuitelet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceDepartmentMapUserEvent table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceDepartmentMapWorkflow table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceEmployeeMap table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceEmployeeMapClient table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceEmployeeMapMassUpdate table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceEmployeeMapPortlet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceEmployeeMapRestlet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceEmployeeMapSuitelet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceEmployeeMapUserEvent table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceEmployeeMapWorkflow table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceGroupMap table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceGroupMapClient table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceGroupMapMassUpdate table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceGroupMapPortlet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceGroupMapRestlet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceGroupMapSuitelet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceGroupMapUserEvent table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceGroupMapWorkflow table.
Name | Type | References | Description |
audience | String | -No label- |
The audiencePartnerMap table.
Name | Type | References | Description |
audience | String | -No label- |
The audiencePartnerMapClient table.
Name | Type | References | Description |
audience | String | -No label- |
The audiencePartnerMapMassUpdate table.
Name | Type | References | Description |
audience | String | -No label- |
The audiencePartnerMapPortlet table.
Name | Type | References | Description |
audience | String | -No label- |
The audiencePartnerMapRestlet table.
Name | Type | References | Description |
audience | String | -No label- |
The audiencePartnerMapSuitelet table.
Name | Type | References | Description |
audience | String | -No label- |
The audiencePartnerMapUserEvent table.
Name | Type | References | Description |
audience | String | -No label- |
The audiencePartnerMapWorkflow table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceRoleMap table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceRoleMapClient table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceRoleMapMassUpdate table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceRoleMapPortlet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceRoleMapRestlet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceRoleMapSuitelet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceRoleMapUserEvent table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceRoleMapWorkflow table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceSubsidiaryMap table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceSubsidiaryMapClient table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceSubsidiaryMapMassUpdate table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceSubsidiaryMapPortlet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceSubsidiaryMapRestlet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceSubsidiaryMapSuitelet table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceSubsidiaryMapUserEvent table.
Name | Type | References | Description |
audience | String | -No label- |
The audienceSubsidiaryMapWorkflow table.
Name | Type | References | Description |
audience | String | -No label- |
The AuthenticateDeviceInput table.
Name | Type | References | Description |
cardholderauthentication | String | Cardholder Authentication | |
name | String | Name |
The AuthenticateDeviceResult table.
Name | Type | References | Description |
cardholderauthentication | String | Cardholder Authentication | |
name | String | Name |
The AuthenticationField table.
Name | Type | References | Description |
cardholderauthentication | String | Cardholder Authentication | |
name | String | Name |
The billingClassPriceCost table.
Name | Type | References | Description |
billingclass | String | Billing Class | |
currencyname | String | Currency |
The BillingMilestone table.
Name | Type | References | Description |
id | Integer | Internal ID |
The BillingRateCardPriceMultiForSearch table.
Name | Type | References | Description |
billingclass | String | Billing Class | |
billingratecard | String | Billing Rate Card | |
currency | String | Currency | |
price | Decimal | Price | |
saleunit | String | Sale Unit | |
version | String | Billing Rate Card Version |
The BillingRateCardVersion table.
Name | Type | References | Description |
billingratecard | String | Billing Rate Card | |
effectivedate | Date | Effective Date | |
enddate | Date | End Date |
The billingschedule table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
applytosubtotal | Boolean | Apply To Subtotal | |
billforactuals | Boolean | Invoice Actual Time Only | |
externalid | String | External ID | |
frequency | String | Recurrence Frequency | |
inarrears | Boolean | In Arrears | |
initialterms | String | Initial Payment Terms | |
isinactive | Boolean | Inactive | |
ispublic | Boolean | Public | |
job | String | Project | |
name | String | Name | |
numberremaining | Integer | Recurrence Count | |
recurrencepattern | String | Recurrence Pattern | |
recurrenceterms | String | Recurrence Payment Terms | |
repeatevery | String | Repeat Every | |
transaction | String | Transaction |
The billingScheduleMilestone table.
Name | Type | References | Description |
billingschedule | String | Billing Schedule | |
comments | String | Comment | |
milestoneactualcompletiondate | Date | Actual Completion Date | |
milestoneamount | Double | Amount | |
milestonecompleted | Boolean | Completed | |
milestonedate | Date | Estimated Completion Date | |
milestoneterms | String | Payment Terms |
The billingScheduleRecurrence table.
Name | Type | References | Description |
billingschedule | String | -No label- | |
count | Integer | Count | |
paymentterms | String | Payment Terms | |
recurrencedate | Date | Date | |
recurrenceid | Integer | -No label- | |
relativetoprevious | Boolean | Relative to Previous |
The billingScheduleRecurrencePattern table.
Name | Type | References | Description |
id | String | ID |
The BillingScheduleType table.
Name | Type | References | Description |
id | String | ID |
The billOfDistribution table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
distributioncategory | String | Distribution Category | |
distributionnetwork | String | Distribution Network | |
isinactive | Boolean | Inactive | |
location | String | Location |
The billOfDistributionDistributionSource table.
Name | Type | References | Description |
billofdistribution | String | Bill Of Distribution | |
effectivedate | Date | Effective Date | |
leadtime | Integer | Lead Time | |
safetytime | Integer | Safety Time | |
sourcelocation | String | Source Location | |
sourcesubsidiary | String | Source Subsidiary |
The BillVarianceStatus table.
Name | Type | References | Description |
key | String | Internal ID |
The bin table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
binnumber | String | Bin Number | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
location | String | Location | |
memo | String | Memo |
The blanketPurchaseOrderExpenseMachine table.
Name | Type | References | Description |
account | String | Account | |
blanketpurchaseorder | String | -No label- | |
category | String | Category | |
class | String | Class | |
department | String | Department | |
grossamt | Decimal | Gross Amount | |
line | Integer | Line | |
location | String | Location | |
memo | String | Memo | |
orderschedule | String | Schedule |
The bom table.
Name | Type | References | Description |
availableforallassemblies | Boolean | Available For All Assemblies | |
availableforalllocations | Boolean | Available For All Locations | |
createddate | Date | Date Created | |
externalid | String | ExternalId | |
includechildren | Boolean | Include Children | |
isinactive | Boolean | Inactive | |
memo | String | Memo | |
name | String | Name | |
restricttoassemblies | String | Assembly | |
restricttolocations | String | Locations | |
subsidiary | String | Subsidiaries | |
usecomponentyield | Boolean | Use Component Yield | |
usedonassembly | Boolean | Used On Assembly |
The bomAssembly table.
Name | Type | References | Description |
assembly | String | Assembly | |
billofmaterials | String | Bill of Materials | |
canbemaster | Boolean | Can be Master Default |
The bomrevision table.
Name | Type | References | Description |
billofmaterial | String | Bill of Materials | |
createddate | Date | Date Created | |
effectivedate | Date | Effective Start Date | |
externalid | String | ExternalId | |
isinactive | Boolean | Inactive | |
memo | String | Memo | |
name | String | Name | |
obsoletedate | Date | Effective End Date |
The bomrevisioncomponent table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
quantity | Float | quantity | |
item | Integer | Item | |
bomrevision | Integer | Bom Revision | |
componentyield | Double | Component Yield | |
bomquantity | Float | BOM Quantity | |
units | Integer | Units | |
itemsource | String | Item Source | |
description | String | Description |
The budgetcategory table.
Name | Type | References | Description |
id [KEY] | String | Internal ID | |
budgettype | Boolean | Global | |
isinactive | Boolean | Inactive |
The budgets table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
account | String | Account | |
accountingbook | String | Accounting Book | |
category | String | Budget Category | |
class | String | Class | |
currency | String | Currency | |
customer | String | Customer | |
department | String | Department | |
item | String | Item | |
location | String | Location | |
subsidiary | String | Subsidiary | |
total | Decimal | Amount (Total) | |
year | String | Year |
The budgetsMachine table.
Name | Type | References | Description |
amount | Decimal | Amount | |
period | String | Accounting Period |
The BusinessEventHandler table.
Name | Type | References | Description |
key | Integer | key |
The BusinessEventHandlerFeedDetailType table.
Name | Type | References | Description |
key | Integer | key |
The BusinessEventHandlerFeedStatus table.
Name | Type | References | Description |
key | Integer | key |
The BusinessEventType table.
Name | Type | References | Description |
key | Integer | key |
The button table.
Name | Type | References | Description |
buttonfunction | String | Function | |
buttonlabel | String | Label | |
owner | String | Owner |
The CalculateDiscountType table.
Name | Type | References | Description |
id | String | Internal ID |
The calendarevent table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accesslevel | String | Event Access | |
alldayevent | Boolean | All Day | |
bom | String | Bill of Materials | |
bomrevision | String | Bill of Materials Revision | |
company | String | Company | |
completeddate | Date | Completed Date | |
contact | String | Contact | |
createddate | Date | Date Created | |
externalid | String | External ID | |
lastmodifieddate | Date | Last Modified Date | |
location | String | Location | |
message | String | Message | |
mfgrouting | String | Manufacturing Routing | |
organizer | String | Organizer | |
owner | String | Owner | |
relateditem | String | Item | |
reminderminutes | String | Set up Reminder | |
remindertype | String | Reminder type | |
startdate | Date | Start Date | |
status | String | Status | |
supportcase | String | Support Case | |
timedevent | Boolean | Timed Event | |
title | String | Title |
The campaignevent table.
Name | Type | References | Description |
id [KEY] | Integer | ID | |
campaign | String | Campaign | |
campaigngroup | String | Target Group | |
channel | String | Channel | |
cost | Decimal | Cost | |
datesent | Date | Date Executed | |
dscheduled | Date | Date | |
promocode | String | Promotion | |
status | String | Status | |
subscription | String | Subscription | |
template | String | Template | |
type | String | Event Type |
The campaignEventResponse table.
Name | Type | References | Description |
bounced | Integer | # Bounced | |
bouncedratio | Double | % Bounced | |
clickedthru | Integer | # Clicked Thru | |
clickedthruratio | Double | % Clicked Thru | |
opened | Integer | # Opened | |
openedratio | Double | % Opened | |
responded | Integer | # Responded | |
respondedratio | Double | % Responded | |
sent | Integer | # Sent | |
unsubscribed | Integer | # Unsubscribed | |
unsubscribedratio | Double | % Unsubscribed |
The campaignresponse table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
campaignevent | String | Event | |
campaignresponsedate | Date | Date Created | |
channel | String | Channel | |
entity | String | Recipient | |
leadsource | String | Campaign |
The campaignResponseHistoryEntry table.
Name | Type | References | Description |
author | String | Author | |
campaignresponse | String | Campaign Response | |
note | String | Notes | |
responsedate | Date | Date/Time |
The campaigntemplate table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
content | String | Content | |
description | String | Description | |
emailassalesrep | Boolean | Email as Sales Rep | |
fromemail | String | From Email Address | |
fromname | String | From Name | |
isautoconverted | Boolean | Automatically Converted Template | |
isinactive | Boolean | Inactive | |
isprivate | Boolean | Private | |
mediaitem | String | Media Item | |
name | String | Name | |
recordtype | String | Record Type | |
replytoemail | String | Reply to Email Address | |
subject | String | Subject | |
subscription | String | Subscription |
The CardholderAuthBillAddress table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
addrphone | String | Phone | |
attention | String | Attention | |
cardholderauthentication | String | Cardholder Authentication | |
city | String | City | |
country | String | Country | |
state | String | State |
The cardholderauthentication table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
acceptheader | String | Accept Header | |
amount | Decimal | Amount | |
authenticatedeviceformaction | String | Form Action | |
authenticatedeviceformid | String | Form ID | |
billingaddress | String | Bill To | |
cavv | String | Cardholder Authetication Verification Value (CAVV) | |
challengeshopperformaction | String | Form Action | |
challengeshopperformid | String | Form ID | |
challengewindowsize | String | Challenge window size | |
currency | String | Currency | |
eci | String | E-Commerce Indicator (ECI) | |
entity | String | Cardholder | |
externalid | String | External ID | |
ipaddress | String | IP Address | |
notificationurl | String | Notification | |
paymentmethod | String | -No label- | |
paymentoption | String | Payment Option | |
paymentprocessingprofile | String | Payment processing profile | |
shippingaddress | String | Ship To | |
status | String | Status | |
subsidiary | String | Subsidiary | |
threedstransactionid | String | 3D Secure Transaction Id | |
threedstranstatusreason | String | 3D Secure Transaction Status Reason | |
threedsversion | String | 3D Secure Version |
The CardholderAuthenticationEvent table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
cardholderauthentication | String | Cardholder Authentication | |
eventdatetime | Date | Date/Time | |
externalid | String | External ID | |
paymentprocessingprofile | String | Payment processing profile | |
referencecode | String | Reference Code | |
request | String | Raw Request | |
response | String | Raw Response | |
status | String | Status | |
statusdetails | String | Status Details | |
statusreason | String | Status Reason | |
threedstranstatus | String | 3D Secure Transaction Status | |
threedstranstatusreason | String | 3D Secure Transaction Status Reason |
The CardholderAuthenticationEventList table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
cardholderauthentication | String | Cardholder Authentication | |
eventdatetime | Date | Date/Time | |
externalid | String | External ID | |
paymentprocessingprofile | String | Payment processing profile | |
referencecode | String | Reference Code | |
request | String | Raw Request | |
response | String | Raw Response | |
status | String | Status | |
statusdetails | String | Status Details | |
statusreason | String | Status Reason | |
threedstranstatus | String | 3D Secure Transaction Status | |
threedstranstatusreason | String | 3D Secure Transaction Status Reason |
The CardholderAuthenticationStatus table.
Name | Type | References | Description |
key | String | key |
The CardholderAuthShipAddress table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
addrphone | String | Phone | |
attention | String | Attention | |
cardholderauthentication | String | Cardholder Authentication | |
city | String | City | |
country | String | Country | |
state | String | State |
The CartSortOrder table.
Name | Type | References | Description |
sdescr | String | Description |
The cashRefundBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The cashRefundPartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The cashRefundSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The cashRefundShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The cashRefundTranPromotion table.
Name | Type | References | Description |
couponcode | String | Coupon Code | |
promocode | String | Promotion | |
promotiontype | String | Promotion Type |
The cashSaleBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The cashSaleGiftCertRedemption table.
Name | Type | References | Description |
authcode | String | Gift Certificate | |
authcodeapplied | Decimal | Amount Applied |
The cashSaleItemShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The cashSalePartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The cashSaleSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The cashSaleShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The cashSaleTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The cashSaleTranPromotion table.
Name | Type | References | Description |
couponcode | String | Coupon Code | |
promocode | String | Promotion | |
promotiontype | String | Promotion Type |
The category1099misc table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
descr | String | Description | |
isinactive | Boolean | Inactive | |
name | String | Name |
The CcBccRecipient table.
Name | Type | References | Description |
bcc | Boolean | Bcc | |
cc | Boolean | Cc | |
String | |||
message | String | Message | |
otherrecipient | String | Additional Recipients |
The CenterType table.
Name | Type | References | Description |
centertype | String | Center Type |
The ChallengeShopperInput table.
Name | Type | References | Description |
cardholderauthentication | String | Cardholder Authentication | |
name | String | Name |
The ChallengeShopperResult table.
Name | Type | References | Description |
cardholderauthentication | String | Cardholder Authentication | |
name | String | Name |
The ChallengeWindowSize table.
Name | Type | References | Description |
key | String | key |
The charge table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
amount | Decimal | Amount | |
billdate | Date | Bill Date | |
billingitem | String | Item | |
billingmode | String | Billing Mode | |
billingschedule | String | Billing Schedule | |
billto | String | Customer:Project | |
chargedate | Date | Date | |
chargetype | String | Charge Type | |
class | String | Class | |
createddate | Date | Date Created | |
creditmemo | String | Credit Memo | |
creditmemoline | String | Credit Memo Item Line | |
currency | String | Currency | |
department | String | Department | |
description | String | Description | |
externalid | String | External ID | |
grouporder | Integer | Group Order | |
invoice | String | Invoice | |
invoiceline | String | Invoice Item Line | |
invoiceln | String | Invoice Line | |
location | String | Location | |
memo | String | Memo | |
projecttask | String | Project Task | |
quantity | Double | Quantity | |
rate | String | Rate | |
rule | String | Charge Rule | |
runid | String | Charge Run ID | |
salesorder | String | Sales Order | |
salesorderline | String | Sales Order Line | |
serviceenddate | Date | Service End Date | |
servicestartdate | Date | Service Start Date | |
stage | String | Stage | |
subsidiary | String | Subsidiary | |
timerecord | String | Time Entry | |
transaction | String | Transaction | |
transactionline | String | Transaction Line | |
use | String | Charge Use |
The Chargebillingmodetype table.
Name | Type | References | Description |
key | String | key |
The chargerule table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
chargeruletype | String | Charge Type | |
description | String | Description | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
name | String | Name |
The ChargeRun table.
Name | Type | References | Description |
chargegenerated | Integer | Charges Generated | |
dateended | Date | Ended | |
datestarted | Date | Started | |
deletestatus | String | Delete Charges | |
message | String | Message | |
project | String | Project | |
relatedrunid | Integer | Related Run Id | |
runid | Integer | ID | |
runtype | String | Run Type |
The Chargestagetype table.
Name | Type | References | Description |
key | String | key |
The chargeType table.
Name | Type | References | Description |
applytocustomer | Boolean | Applied to Customer Charges | |
applytoproject | Boolean | Applied to Project Charges | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
name | String | Charge Type | |
scriptid | String | ID |
The chargeTypeTranslations table.
Name | Type | References | Description |
label | String | Label | |
language | String | Language | |
locale | String | Locale |
The Chargeuse table.
Name | Type | References | Description |
key | String | key |
The CheckExpenseMachine table.
Name | Type | References | Description |
account | String | Account | |
category | String | Category | |
check | String | -No label- | |
class | String | Class | |
customer | String | -No label- | |
department | String | Department | |
expenseitem | Integer | Expense Item | |
grossamt | Decimal | Gross Amount | |
isbillable | Boolean | Billable | |
line | Integer | Line | |
location | String | Location | |
memo | String | Memo |
The checkPayeeAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The classification table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
fullname | String | Full Name | |
includechildren | Boolean | Include Children | |
isinactive | Boolean | Class is Inactive | |
name | String | Name | |
parent | String | Subclass of |
The CommissionPaymentType table.
Name | Type | References | Description |
defaultname | String | Default Name | |
key | String | key | |
name | String | Name |
The CompanyAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Address | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
entity | String | Entity |
The CompanyAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The CompanyBulkMerge table.
Name | Type | References | Description |
entity | String | -No label- | |
mergedate | Date | Date/Time | |
mergetype | String | Type | |
status | String | Status | |
subject | String | Subject | |
template | String | Template | |
username | String | -No label- |
The CompanyCampaigns table.
Name | Type | References | Description |
campaign | String | Campaign | |
campaignevent | String | Event | |
category | String | Category | |
contact | String | Contact | |
datesent | Date | Date Sent | |
entity | String | -No label- | |
response | String | Response Detail | |
responsedate | Date | Response Date |
The CompanyCompanyContact table.
Name | Type | References | Description |
contact | String | Contact |
The competitor table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Description | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
name | String | Name | |
productservice | String | Products/Services | |
strategy | String | Strategy | |
strengths | String | Strengths | |
weaknesses | String | Weaknesses |
The CompetitorOpportunity table.
Name | Type | References | Description |
competitor | String | Competitor | |
notes | String | Opportunity Notes | |
opportunity | String | Opportunity |
The consolidatedexchangerate table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accountingbook | String | Accounting Book | |
averagerate | Decimal | Average Exchange Rate | |
currentrate | Decimal | Current Exchange Rate | |
externalid | String | External ID | |
fromcurrency | String | From Currency | |
fromsubsidiary | String | From Subsidiary | |
historicalrate | Decimal | Historical Exchange Rate | |
postingperiod | String | Posting Period | |
tocurrency | String | To Currency |
The ConsolidatedRateType table.
Name | Type | References | Description |
id [KEY] | String | ID | |
defaultname | String | -No label- | |
name | String | Name |
The contact table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
altemail | String | Alt. Email | |
assistant | String | Assistant | |
category | String | Category | |
comments | String | Comments | |
company | String | Company | |
contactcampaignevent | String | Campaign Event | |
contactsource | String | Lead Source | |
contactsourcecampaigncategory | String | Campaign Category | |
datecreated | Date | Date Created | |
defaultbillingaddress | String | Default Billing Address | |
defaultshippingaddress | String | Default Shipping Address | |
duplicate | Boolean | Duplicate | |
String | |||
entityid | String | Entity ID | |
entitytitle | String | Name/ID | |
externalid | String | External ID | |
firstname | String | First Name | |
globalsubscriptionstatus | String | Global Subscription Status | |
isinactive | Boolean | Contact is Inactive | |
isprivate | Boolean | Private | |
lastmodifieddate | Date | Last Modified Date | |
lastname | String | Last Name | |
middlename | String | Middle Name | |
phoneticname | String | Furigana | |
salutation | String | Mr./Ms... | |
title | String | Job Title |
The ContactAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Address | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
entity | String | Entity |
The ContactAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The ContactBulkMerge table.
Name | Type | References | Description |
entity | String | -No label- | |
mergedate | Date | Date/Time | |
mergetype | String | Type | |
status | String | Status | |
subject | String | Subject | |
template | String | Template | |
username | String | -No label- |
The contactcategory table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
name | String | Contact Category |
The ContactContactCampaigns table.
Name | Type | References | Description |
campaign | String | Campaign | |
campaignevent | String | Event | |
category | String | Category | |
contact | String | Contact | |
datesent | Date | Date Sent | |
entityorcontact | String | -No label- | |
response | String | Response Detail | |
responsedate | Date | Response Date |
The ContactContactTypeMap table.
Name | Type | References | Description |
category | String | -No label- |
The contactrole table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Description | |
externalid | String | External ID | |
isinactive | Boolean | Inactive |
The ContactSubscriptionMessageHistory table.
Name | Type | References | Description |
String | |||
memo | String | Memo | |
recipient | String | Recipient | |
senddate | Date | Date Sent | |
sender | String | Sender |
The ContactSubscriptions table.
Name | Type | References | Description |
entity | String | Entity | |
lastmodifieddate | Date | Last Modified | |
subscription | String | Campaign Subscription |
The ContactSubsidiaryRelationship table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
entity | String | Entity | |
externalid | String | External ID | |
isprimarysub | Boolean | Is Primary Subsidiary | |
name | String | -No label- |
The controlTowerSourceType table.
Name | Type | References | Description |
key | String | key |
The CostCategoryType table.
Name | Type | References | Description |
key | String | Internal ID |
The CostEstimateType table.
Name | Type | References | Description |
key | String | key |
The CostingMethodType table.
Name | Type | References | Description |
key | String | Internal ID |
The couponcode table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
code | String | Code | |
datesent | Date | Date Sent | |
externalid | String | External ID | |
promotion | String | Promotion |
The CreditCardChargeExpenseMachine table.
Name | Type | References | Description |
account | String | Account | |
category | String | Category | |
class | String | Class | |
creditcardcharge | String | -No label- | |
customer | String | -No label- | |
department | String | Department | |
expenseitem | Integer | Expense Item | |
grossamt | Decimal | Gross Amount | |
isbillable | Boolean | Billable | |
line | Integer | Line | |
location | String | Location | |
memo | String | Memo |
The CreditCardRefundExpenseMachine table.
Name | Type | References | Description |
account | String | Account | |
category | String | Category | |
class | String | Class | |
creditcardrefund | String | -No label- | |
customer | String | -No label- | |
department | String | Department | |
expenseitem | Integer | Expense Item | |
grossamt | Decimal | Gross Amount | |
isbillable | Boolean | Billable | |
line | Integer | Line | |
location | String | Location | |
memo | String | Memo |
The Creditholdoverridetype table.
Name | Type | References | Description |
isinactive | Boolean | Inactive | |
key | String | key |
The creditMemoBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The creditMemoItemShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The creditMemoPartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The creditMemoSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The creditMemoShipGroup table.
Name | Type | References | Description |
destinationaddress | String | Ship To | |
doc | String | -No label- | |
handlingrate | Decimal | Handling Rate | |
shippingmethod | String | Ship Via | |
shippingrate | Decimal | Shipping Rate | |
sourceaddress | String | Ship From | |
uniquekey | Integer | Unique Key |
The creditMemoShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The creditMemoTranPromotion table.
Name | Type | References | Description |
couponcode | String | Coupon Code | |
promocode | String | Promotion | |
promotiontype | String | Promotion Type |
The CrmTemplateType table.
Name | Type | References | Description |
defaultdescr | String | defaultdescr | |
defaultmergedescr | String | defaultmergedescr | |
defaultname | String | defaultname | |
descr | String | descr | |
key | String | key | |
mergedescr | String | mergedescr | |
name | String | name |
The currency table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
currencyprecision | Integer | Currency Precision | |
displaysymbol | String | Symbol | |
exchangerate | Decimal | Default Exchange Rate | |
externalid | String | External ID | |
includeinfxrateupdates | Boolean | Automatic Update | |
isbasecurrency | Boolean | Is Base Currency | |
isinactive | Boolean | Inactive | |
name | String | Name | |
overridecurrencyformat | Boolean | Override Currency Format | |
symbol | String | ISO Code | |
symbolplacement | String | Symbol Placement |
The currencyrate table.
Name | Type | References | Description |
basecurrency | String | Base Currency | |
effectivedate | Date | Effective Date | |
exchangerate | Decimal | Exchange Rate | |
transactioncurrency | String | Currency |
The CurrencyRateType table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Description | |
externalid | String | External ID | |
isdefault | Boolean | Default | |
isinactive | Boolean | Inactive |
The CurrencySymbolPlacement table.
Name | Type | References | Description |
defaultname | String | Default Name | |
key | Integer | key |
The customer table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accountnumber | String | Account | |
alcoholrecipienttype | String | Alcohol Recipient Type | |
altemail | String | Alt. Email | |
altname | String | Customer | |
assignedwebsite | String | Assigned Web Site | |
balancesearch | Decimal | Balance | |
billingratecard | String | Billing Rate Card | |
billingschedule | String | Billing Schedule | |
billingtransactiontype | String | Billing Transaction Type | |
billpay | Boolean | Enable Online Bill Pay | |
buyingreason | String | Buying Reason | |
buyingtimeframe | String | Buying Time Frame | |
campaignevent | String | Campaign Event | |
category | String | Category | |
clickstream | String | Click-Stream (1st Visit) | |
comments | String | Comments | |
companyname | String | Company Name | |
consolbalancesearch | Decimal | Consolidated Balance | |
consoldaysoverduesearch | Integer | Consolidated Days Overdue | |
consoloverduebalancesearch | Decimal | Consolidated Overdue Balance | |
consolunbilledorderssearch | Decimal | Consolidated Unbilled Orders | |
contact | String | Primary Contact | |
contactlist | String | Contacts | |
creditholdoverride | String | Credit Hold | |
creditlimit | Decimal | Credit Limit | |
currency | String | Currency | |
datecreated | Date | Date Created | |
defaultbankaccount | String | Default Bank Account | |
defaultbillingaddress | String | Default Billing Address | |
defaultorderpriority | Double | Default Order Priority | |
defaultshippingaddress | String | Default Shipping Address | |
duplicate | Boolean | Duplicate | |
String | |||
emailpreference | String | Email Preference | |
emailtransactions | Boolean | Email Transactions | |
enddate | Date | End Date | |
entityid | String | Entity ID | |
entitynumber | Integer | Number | |
entitystatus | String | Status | |
entitytitle | String | Customer ID | |
estimatedbudget | Decimal | Estimated Budget | |
externalid | String | External ID | |
faxtransactions | Boolean | Fax Transactions | |
firstname | String | First Name | |
firstorderdate | Date | First Sales Order Date | |
firstsaledate | Date | First Sale Date | |
firstvisit | Date | First Visit | |
giveaccess | Boolean | Login Access | |
globalsubscriptionstatus | String | Global Subscription Status | |
isbudgetapproved | Boolean | Budget Approved | |
isinactive | Boolean | Inactive | |
isperson | Boolean | Is Individual | |
keywords | String | Search Engine Keywords (1st Visit) | |
lastmodifieddate | Date | Last Modified Date | |
lastname | String | Last Name | |
lastorderdate | Date | Last Sales Order Date | |
lastpagevisited | String | Last Page Visited | |
lastsaledate | Date | Last Sales Date | |
lastvisit | Date | Last Visit | |
leadsource | String | Lead Source | |
middlename | String | Middle Name | |
negativenumberformat | String | Negative Number Format | |
numberformat | String | Number Format | |
oncredithold | Boolean | On Credit Hold | |
overduebalancesearch | Decimal | Overdue | |
parent | String | Parent | |
partner | String | Partner | |
phoneticname | String | Furigana | |
prefccprocessor | String | Preferred Payment Processing Profile | |
pricelevel | String | Price Level | |
printoncheckas | String | Print on Check As | |
printtransactions | Boolean | Print Transactions | |
probability | Double | Probability | |
receivablesaccount | String | Default Receivables Account | |
referrer | String | Referrer (1st Visit) | |
reminderdays | Integer | Reminder Days | |
resalenumber | String | Resale Number | |
salesreadiness | String | Sales Readiness | |
salesrep | String | Sales Rep | |
salutation | String | Mr./Ms... | |
searchstage | String | Stage | |
shipcomplete | Boolean | Ship Complete | |
shippingcarrier | String | Carrier | |
shippingitem | String | Shipping Item | |
sourcewebsite | String | Source Web Site | |
startdate | Date | Start Date | |
terms | String | Terms | |
territory | String | Territory | |
thirdpartyacct | String | 3rd Party Billing Account Number | |
thirdpartycarrier | String | 3rd Party Billing Carrier | |
thirdpartycountry | String | 3rd Party Billing Country | |
thirdpartyzipcode | String | 3rd Party Billing Zip | |
title | String | Job Title | |
unbilledorderssearch | Decimal | Unbilled Orders | |
visits | Integer | Number of Visits |
The customerAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Address | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
entity | String | Entity | |
label | String | Label |
The customerAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The customerBulkMerge table.
Name | Type | References | Description |
entity | String | -No label- | |
mergedate | Date | Date/Time | |
mergetype | String | Type | |
status | String | Status | |
subject | String | Subject | |
template | String | Template | |
username | String | -No label- |
The customerCampaigns table.
Name | Type | References | Description |
campaign | String | Campaign | |
campaignevent | String | Event | |
category | String | Category | |
contact | String | Contact | |
datesent | Date | Date Sent | |
entity | String | -No label- | |
response | String | Response Detail | |
responsedate | Date | Response Date |
The customercategory table.
Name | Type | References | Description |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
name | String | Customer |
The customerCompanyContact table.
Name | Type | References | Description |
contact | String | Contact |
The customerContactRole table.
Name | Type | References | Description |
contact | String | Contacts | |
String | |||
entity | String | -No label- | |
giveaccess | Boolean | Access |
The customerCurrencyBalance table.
Name | Type | References | Description |
balance | Decimal | Balance | |
consolbalance | Decimal | Consolidated Balance | |
consoldepositbalance | Decimal | Consolidated Deposit Balance | |
consoloverduebalance | Decimal | Consolidated Overdue Balance | |
consolunbilledorders | Decimal | Consolidated Unbilled Orders | |
currency | String | Currency | |
customer | String | Customer | |
depositbalance | Decimal | Deposit Balance | |
overduebalance | Decimal | Overdue Balance | |
overridecurrencyformat | Boolean | Override Currency Format |
The customerEftAcct table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accountnumber | String | Account Number | |
bankname | String | Bank Name | |
customer | String | Customer | |
idnumber | String | Bank Number | |
isinactive | Boolean | Inactive | |
issavings | Boolean | Savings Account | |
limit | Decimal | Limit | |
routingnumber | String | Routing Number |
The CustomerGroupPricing table.
Name | Type | References | Description |
customer | String | -No label- |
The customerItemPricing table.
Name | Type | References | Description |
currency | String | Currency | |
customer | String | -No label- | |
item | String | Item |
The customermessage table.
Name | Type | References | Description |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
name | String | Customer Message |
The CustomerPartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
customer | String | Customer:Job | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The customerRefundPayeeAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The customerSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
customer | String | Customer:Job | |
employee | String | Employee | |
isprimary | Boolean | Primary |
The CustomerSegmentCustomer table.
Name | Type | References | Description |
customer | String | -No label- |
The customerSubscriptionMessageHistory table.
Name | Type | References | Description |
String | |||
memo | String | Memo | |
recipient | String | Recipient | |
senddate | Date | Date Sent | |
sender | String | Sender |
The customerSubscriptions table.
Name | Type | References | Description |
entity | String | Entity | |
lastmodifieddate | Date | Last Modified | |
subscription | String | Campaign Subscription |
The customersubsidiaryrelationship table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
balance | Decimal | Balance | |
depositbalance | Decimal | Deposit Balance | |
entity | String | Customer | |
externalid | String | External ID | |
isprimarysub | Boolean | Is Primary Subsidiary | |
name | String | -No label- | |
primarycurrency | String | Primary Currency | |
subsidiary | String | Subsidiary |
The CustomField table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
description | String | Description | |
fieldtype | String | Field Type | |
fieldvaluetyperecord | String | List/Record | |
ismandatory | Boolean | Mandatory | |
isshowinlist | Boolean | Show In List | |
isstored | Boolean | Store Value | |
name | String | Label | |
owner | String | Owner | |
recordtype | String | Record Type | |
scriptid | String | Script ID |
The CustomField2 table.
Name | Type | References | Description |
descr | String | Description |
The customInstallmentPercent table.
Name | Type | References | Description |
installmentLineNum | Integer | InstallmentLineNum | |
percentage | Double | Percentage | |
term | Integer | Term |
The customlist table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
description | String | Description | |
isinactive | Boolean | Inactive | |
isordered | Boolean | Is Ordered | |
name | String | Name | |
owner | String | Owner |
The customPluginTypesAction table.
Name | Type | References | Description |
plugintype | String | Custom Plug-In Type |
The customPluginTypesBundleInstallation table.
Name | Type | References | Description |
plugintype | String | Custom Plug-In Type |
The customPluginTypesMapReduce table.
Name | Type | References | Description |
plugintype | String | Custom Plug-In Type |
The customPluginTypesPortlet table.
Name | Type | References | Description |
plugintype | String | Custom Plug-In Type |
The customPluginTypesRestlet table.
Name | Type | References | Description |
plugintype | String | Custom Plug-In Type |
The customPluginTypesScheduled table.
Name | Type | References | Description |
plugintype | String | Custom Plug-In Type |
The customPluginTypesSuitelet table.
Name | Type | References | Description |
plugintype | String | Custom Plug-In Type |
The customPluginTypesUserEvent table.
Name | Type | References | Description |
plugintype | String | Custom Plug-In Type |
The customrecordtype table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
allowattachments | Boolean | Allow Attachments | |
allowinlinedeleting | Boolean | Allow Inline Deleting | |
allowinlineediting | Boolean | Allow Inline Editing | |
allowquicksearch | Boolean | Allow Quick Search | |
description | String | Description | |
enablemailmerge | Boolean | Enable Mail Merge | |
includename | Boolean | Include Name Field | |
isinactive | Boolean | Inactive | |
isordered | Boolean | Is Ordered | |
name | String | Name | |
nopermissionrequired | Boolean | No Permission Required | |
owner | String | Owner | |
scriptid | String | Script ID | |
shownotes | Boolean | Show Notes |
The customsegment table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
balancing | Boolean | Balancing | |
displayorder | Integer | Display Order | |
glimpact | Boolean | GL Impact | |
isinactive | Boolean | Inactive | |
name | String | Name | |
scriptid | String | ID |
The CustomTransactionType table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
account | String | Account | |
defaultaccount | String | Default Account | |
filterbyaccounttype | String | Filter Account Type | |
filterbyaccounttypeall | Boolean | Allow All Account Types | |
isclassmandatory | Boolean | Is Class Mandatory | |
iscredit | Boolean | Credit | |
isdepartmentmandatory | Boolean | Is Department Mandatory | |
islocationmandatory | Boolean | Is Location Mandatory | |
isposting | Boolean | Posting | |
isvoidable | Boolean | Allow Void Transactions Using Reversing Journals | |
name | String | Name | |
scriptid | String | ID | |
showstatus | Boolean | Show Status Field | |
specifyaccountontransaction | Boolean | Specify account on transaction |
The DayOfWeek table.
Name | Type | References | Description |
id | Integer | Internal ID |
The deletedrecord table.
Name | Type | References | Description |
context | String | Context | |
deletedby | String | Deleted By | |
deleteddate | Date | Date Deleted | |
iscustomlist | Boolean | Is Custom List | |
iscustomrecord | Boolean | Is Custom Record | |
iscustomtransaction | Boolean | Is Custom Record | |
name | String | Name | |
recordtypeid | String | Record Type | |
scriptid | String | Script ID |
The department table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
fullname | String | Full Name | |
includechildren | Boolean | Include Children | |
isinactive | Boolean | Department is Inactive | |
name | String | Name | |
parent | String | Subdepartment of |
The departmentSubsidiaryMap table.
Name | Type | References | Description |
department | String | -No label- |
The deploymentsAction table.
Name | Type | References | Description |
id [KEY] | String | Deployment ID | |
isdeployed | Boolean | Deployed | |
istask | String | Task | |
loglevel | String | Log Level | |
oldrecordtype | String | Record Type | |
owner | String | Owner | |
primarykey | String | Primary Key | |
recordtype | String | Applies To | |
scriptid | String | ID | |
seqnum | Double | Sequence Number | |
status | String | Status |
The deploymentsBundleInstallation table.
Name | Type | References | Description |
id [KEY] | String | Deployment ID | |
isdeployed | Boolean | Deployed | |
loglevel | String | Log Level | |
oldrecordtype | String | Record Type | |
owner | String | Owner | |
primarykey | String | Primary Key | |
scriptid | String | ID | |
seqnum | Double | Sequence Number | |
status | String | Status | |
title | String | Title |
The deploymentsClient table.
Name | Type | References | Description |
id [KEY] | String | Deployment ID | |
eventtype | String | Event Type | |
isdeployed | Boolean | Deployed | |
istask | String | Task | |
loglevel | String | Log Level | |
oldrecordtype | String | Record Type | |
owner | String | Owner | |
primarykey | String | Primary Key | |
recordtype | String | Applies To | |
scriptid | String | ID | |
seqnum | Double | Sequence Number | |
status | String | Status |
The deploymentsMapReduce table.
Name | Type | References | Description |
id [KEY] | String | Deployment ID | |
concurrencylimit | String | Concurrency Limit | |
isdeployed | Boolean | Deployed | |
loglevel | String | Log Level | |
oldrecordtype | String | Record Type | |
owner | String | Owner | |
primarykey | String | Primary Key | |
processorpool | String | Processor Pool | |
scriptid | String | ID | |
seqnum | Double | Sequence Number | |
status | String | Status | |
title | String | Title |
The deploymentsMassUpdate table.
Name | Type | References | Description |
id [KEY] | String | Deployment ID | |
isdeployed | Boolean | Deployed | |
istask | String | Task | |
loglevel | String | Log Level | |
oldrecordtype | String | Record Type | |
owner | String | Owner | |
primarykey | String | Primary Key | |
recordtype | String | Applies To | |
scriptid | String | ID | |
seqnum | Double | Sequence Number | |
status | String | Status |
The deploymentsPortlet table.
Name | Type | References | Description |
id [KEY] | String | Deployment ID | |
dashboardapp | Boolean | Dashboard SuiteApp | |
isdeployed | Boolean | Deployed | |
loglevel | String | Log Level | |
oldrecordtype | String | Record Type | |
owner | String | Owner | |
primarykey | String | Primary Key | |
scriptid | String | ID | |
seqnum | Double | Sequence Number | |
status | String | Status | |
title | String | Title |
The deploymentsRestlet table.
Name | Type | References | Description |
id [KEY] | String | Deployment ID | |
isdeployed | Boolean | Deployed | |
loglevel | String | Log Level | |
oldrecordtype | String | Record Type | |
owner | String | Owner | |
primarykey | String | Primary Key | |
scriptid | String | ID | |
seqnum | Double | Sequence Number | |
status | String | Status | |
title | String | Title |
The deploymentsScheduled table.
Name | Type | References | Description |
id [KEY] | String | Deployment ID | |
isdeployed | Boolean | Deployed | |
loglevel | String | Log Level | |
oldrecordtype | String | Record Type | |
owner | String | Owner | |
primarykey | String | Primary Key | |
processorpool | String | Processor Pool | |
queueid | String | Queue (deprecated) | |
scriptid | String | ID | |
seqnum | Double | Sequence Number | |
status | String | Status | |
title | String | Title |
The deploymentsScript table.
Name | Type | References | Description |
id [KEY] | String | Deployment ID | |
concurrencylimit | String | Concurrency Limit | |
dashboardapp | Boolean | Dashboard SuiteApp | |
eventtype | String | Event Type | |
isdeployed | Boolean | Deployed | |
istask | String | Task | |
loglevel | String | Log Level | |
oldrecordtype | String | Record Type | |
owner | String | Owner | |
primarykey | String | Primary Key | |
processorpool | String | Processor Pool | |
queueid | String | Queue (deprecated) | |
recordtype | String | Applies To | |
scriptid | String | ID | |
seqnum | Double | Sequence Number | |
status | String | Status | |
title | String | Title |
The deploymentsSuitelet table.
Name | Type | References | Description |
id [KEY] | String | Deployment ID | |
eventtype | String | Event Type | |
isdeployed | Boolean | Deployed | |
loglevel | String | Log Level | |
oldrecordtype | String | Record Type | |
owner | String | Owner | |
primarykey | String | Primary Key | |
scriptid | String | ID | |
seqnum | Double | Sequence Number | |
status | String | Status | |
title | String | Title |
The deploymentsUserEvent table.
Name | Type | References | Description |
id [KEY] | String | Deployment ID | |
eventtype | String | Event Type | |
isdeployed | Boolean | Deployed | |
istask | String | Task | |
loglevel | String | Log Level | |
oldrecordtype | String | Record Type | |
owner | String | Owner | |
primarykey | String | Primary Key | |
recordtype | String | Applies To | |
scriptid | String | ID | |
seqnum | Double | Sequence Number | |
status | String | Status |
The descriptionItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The descriptionItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
featureddescription | String | Featured Description | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
specialsdescription | String | Special Description | |
storedescription | String | Store Description | |
storedetaileddescription | String | Detailed Description |
The discountItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The discountItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The distributionCategory table.
Name | Type | References | Description |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
name | String | Distribution Category |
The distributionNetwork table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
memo | String | Memo | |
name | String | Distribution Network |
The distributionNetworkDistributionCategory table.
Name | Type | References | Description |
category | String | Distribution Category |
The distributionnetworksubsidiary table.
Name | Type | References | Description |
distributionnetwork | String | -No label- |
The downloadItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The downloadItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The downloadItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The downloadItemPresentationItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
description | String | Item Description | |
onlineprice | Decimal | Online Price | |
presentationitem | String | Related Item | |
presitemid | Integer | Internal ID | |
superitem | String | -No label- |
The downloadItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The downloadItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The downloadItemSiteCategory table.
Name | Type | References | Description |
categorydescription | String | Description | |
isdefault | Boolean | Preferred Category | |
item | String | -No label- | |
website | String | Site |
The downloadItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The downloadItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The EffectivityBasedOnType table.
Name | Type | References | Description |
key | String | key |
The EmailPreferenceType table.
Name | Type | References | Description |
internalid | Integer | Internal ID | |
id | String | ID |
The emailtemplate table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
addcompanyaddress | Boolean | Add Company Address to Message Footer in Bulk Merges | |
addunsubscribelink | Boolean | Add Unsubscribe Link to Message Footer in Bulk Merges | |
content | String | Content | |
description | String | Description | |
isautoconverted | Boolean | Automatically Converted Template | |
isinactive | Boolean | Inactive | |
isprivate | Boolean | Private | |
mediaitem | String | Media Item | |
name | String | Name | |
recordtype | String | Record Type | |
scriptid | String | ID | |
subject | String | Subject |
The employee table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accountnumber | String | Account | |
aliennumber | String | Alien Number | |
approvallimit | Decimal | Expense Approval Limit | |
approver | String | Expense Approver | |
authworkdate | Date | Authorized to Work Until | |
billpay | Boolean | Enable Online Bill Pay | |
birthdate | Date | Birth Date | |
class | String | Class | |
comments | String | Notes | |
currency | String | Currency | |
datecreated | Date | Date Created | |
defaultacctcorpcardexp | String | Default Account for Corporate Card Expenses | |
defaultexpensereportcurrency | String | Default Currency For Expense Reports | |
defaultjobresourcerole | String | Default Job Resource Role | |
department | String | Department | |
eligibleforcommission | Boolean | Eligible for Commission | |
String | |||
employeestatus | String | Employee Status | |
employeetype | String | Type | |
entityid | String | Entity ID | |
ethnicity | String | Ethnicity | |
expenselimit | Decimal | Expense Limit | |
externalid | String | External ID | |
firstname | String | First Name | |
gender | String | Gender | |
giveaccess | Boolean | Login Access | |
globalsubscriptionstatus | String | Global Subscription Status | |
hiredate | Date | Hire Date | |
i9verified | Boolean | I-9 Verified | |
initials | String | Initials | |
isinactive | Boolean | Is Inactive | |
isjobmanager | Boolean | Job Manager | |
isjobresource | Boolean | Job Resource | |
issalesrep | Boolean | Sales Rep | |
issupportrep | Boolean | Support Rep | |
jobdescription | String | Job Description | |
laborcost | Decimal | Labor Cost | |
lastname | String | Last Name | |
lastreviewdate | Date | Last Review Date | |
location | String | Location | |
maritalstatus | String | Marital Status | |
middlename | String | Middle Name | |
nextreviewdate | Date | Next Review Date | |
purchaseorderapprovallimit | Decimal | Purchase Approval Limit | |
purchaseorderapprover | String | Purchase Approver | |
purchaseorderlimit | Decimal | Purchase Limit | |
releasedate | Date | Termination/Release Date | |
residentstatus | String | Resident Status | |
salesrole | String | Sales Role | |
salutation | String | Mr./Ms... | |
subsidiary | String | Subsidiary | |
supervisor | String | Supervisor | |
targetutilization | Double | Target Utilization | |
timeapprover | String | Time Approver | |
title | String | Job Title | |
visaexpdate | Date | Visa Expiration Date | |
visatype | String | Visa Type | |
workcalendar | String | Work Calendar |
The employeeAccruedTime table.
Name | Type | References | Description |
accrualmethod | String | Accrue As | |
accrualrate | Double | Accrual Rate | |
accruedhours | Double | Accrued Hours | |
effectivedate | Date | Effective Date | |
employee | String | Employee | |
expirationdate | Date | Expiration Date | |
inactive | Boolean | Inactive | |
maximumaccruedhours | Double | Maximum Hours | |
monetaryrate | Decimal | Monetary Rate | |
resetaccruedhoursatyearend | Boolean | Reset at Year End |
The employeeAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Address | |
defaultbilling | Boolean | Home | |
defaultshipping | Boolean | Default Shipping | |
entity | String | Entity |
The employeeAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The employeeBulkMerge table.
Name | Type | References | Description |
entity | String | -No label- | |
mergedate | Date | Date/Time | |
mergetype | String | Type | |
status | String | Status | |
subject | String | Subject | |
template | String | Template | |
username | String | -No label- |
The employeeCampaigns table.
Name | Type | References | Description |
campaign | String | Campaign | |
campaignevent | String | Event | |
category | String | Category | |
contact | String | Contact | |
datesent | Date | Date Sent | |
entity | String | -No label- | |
response | String | Response Detail | |
responsedate | Date | Response Date |
The employeeCompanyContribution table.
Name | Type | References | Description |
effectivedate | Date | Effective Date | |
employee | String | Employee | |
expirationdate | Date | Expiration Date | |
inactive | Boolean | Inactive | |
limit | Decimal | Limit | |
payrollitem | String | Company Contribution | |
rate | String | Rate |
The employeeDeduction table.
Name | Type | References | Description |
effectivedate | Date | Effective Date | |
employee | String | Employee | |
expirationdate | Date | Expiration Date | |
inactive | Boolean | Inactive | |
limit | Decimal | Limit | |
payrollitem | String | Deduction | |
rate | String | Rate |
The employeeEarning table.
Name | Type | References | Description |
defaultearning | Boolean | Default | |
defaulthours | Double | Default Hours | |
effectivedate | Date | Effective Date | |
employee | String | Employee | |
expirationdate | Date | Expiration Date | |
inactive | Boolean | Inactive | |
payrate | Double | Rate | |
payrollitem | String | Earning | |
paytype | String | Item Type | |
primaryearning | Boolean | Primary |
The employeeEmergencyContact table.
Name | Type | References | Description |
id [KEY] | Integer | ID | |
address | String | Emergency Address | |
contact | String | Name | |
employee | String | Employee |
The employeeEmpPerms table.
Name | Type | References | Description |
employee | String | Employee | |
name | String | Name | |
permlevel1 | String | Level |
The EmployeeExpenseReportCurrencies table.
Name | Type | References | Description |
currency | String | Currency |
The EmployeeFilingStatus table.
Name | Type | References | Description |
default | Boolean | Default | |
payrollitem | Integer | Payroll Item | |
validfilingstatus | String | key |
The employeeHCMPosition table.
Name | Type | References | Description |
employee | String | Employee | |
employmentcategory | String | Employment Category | |
fulltimeequivalent | Double | Full Time Equivalent | |
location | String | Location | |
position | String | Position | |
positionallocation | Double | Allocated Position FTE | |
positionid | String | Position ID | |
primaryposition | Boolean | Primary | |
reportsto | String | Reports To |
The employeeHrEducation table.
Name | Type | References | Description |
degree | String | Degree | |
degreedate | Date | Date Conferred | |
education | String | Level of Education | |
employee | String | Employee |
The employeeListPresItemPresCategory table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
category | String | -No label- | |
description | String | Item Description | |
filecabinet | String | File Cabinet | |
infoitem | String | Information Item | |
item | String | Item | |
name | String | Name | |
onlineprice | Decimal | Online Price |
The employeeListSiteCategoryTagSubstitution table.
Name | Type | References | Description |
section | String | Section | |
value | String | Substitution Value |
The employeeListSiteCategoryTranslationEmployeeList table.
Name | Type | References | Description |
description | String | Brief Description | |
displayname | String | Category | |
language | String | Language | |
pagetitle | String | Page Title | |
salesdescription | String | Detailed Description |
The employeeroles table.
Name | Type | References | Description |
entity | Integer | Entity | |
centertype | String | Centertype | |
wsonly | Boolean | Wsonly | |
deviceidonly | Boolean | Deviceidonly | |
selectedrole | Integer | Selectedrole | |
ssoonly | Boolean | Ssoonly |
The employeerolesforsearch table.
Name | Type | References | Description |
entity | Integer | Entity | |
role | Integer | Role |
The employeestatus table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
category | String | Category | |
externalid | String | External ID | |
isinactive | Boolean | Inactive |
The employeeSubscriptionMessageHistory table.
Name | Type | References | Description |
String | |||
memo | String | Memo | |
recipient | String | Recipient | |
senddate | Date | Date Sent | |
sender | String | Sender |
The employeeSubscriptions table.
Name | Type | References | Description |
entity | String | Entity | |
lastmodifieddate | Date | Last Modified | |
subscription | String | Campaign Subscription |
The EmployeeSubsidiaryRelationship table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
entity | String | Entity | |
externalid | String | External ID | |
isprimarysub | Boolean | Is Primary Subsidiary | |
name | String | -No label- |
The employeeTaxOptions table.
Name | Type | References | Description |
additionalallowances | Integer | Additional Exemption/Allowance Amount | |
addlallwncname | String | Additional Exemption/Allowance | |
employeeid | String | -No label- | |
excreditsname | String | Exemptions/Allowances | |
exempt | Boolean | Exempt | |
exemptioncredits | Integer | Exemption/Allowance Amount | |
overrideamount | Double | Override Amount | |
payrollitemid | String | Name | |
secndallwncname | String | Secondary Exemption/Allowance | |
secondaryallowances | Integer | Secondary Exemption/Allowance Amount | |
status | String | Filing Status |
The employeetype table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
category | String | Category | |
exempt | Boolean | Exempt | |
externalid | String | External ID | |
includeinkpi | Boolean | Include in KPI | |
isinactive | Boolean | Inactive |
The entity table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
altemail | String | Alt. Email | |
altname | String | Name | |
altphone | String | Alt. Phone | |
comments | String | Comments | |
contact | Integer | Contact | |
customer | Integer | Customer | |
datecreated | Date | Date Created | |
String | |||
employee | Integer | Employee | |
entityid | String | Entity ID | |
entitynumber | Integer | Number | |
entitytitle | String | Name/ID | |
externalid | String | External ID | |
fax | String | Fax | |
firstname | String | First Name | |
genericresource | Integer | Generic Resource | |
group | Integer | Group | |
homephone | String | Home Phone | |
isinactive | Boolean | Inactive | |
isperson | Boolean | Is Individual | |
laborcost | Decimal | Labor Cost | |
lastmodifieddate | Datetime | Last Modified Date | |
lastname | String | Last Name | |
middlename | String | Middle Name | |
mobilephone | String | Mobile Phone | |
othername | Integer | Other Name | |
parent | Integer | Parent | |
partner | Integer | Partner | |
phone | String | Phone | |
phoneticname | String | Furigana | |
project | Integer | Project | |
projecttemplate | Integer | Project Template | |
salutation | String | Mr./Ms... | |
title | String | Job Title | |
toplevelparent | Integer | Top Level Parent | |
vendor | Integer | Vendor | |
type | String | Type |
The EntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The entityAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Address | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
entity | String | Entity |
The entityBulkMerge table.
Name | Type | References | Description |
entity | String | -No label- | |
mergedate | Date | Date/Time | |
mergetype | String | Type | |
status | String | Status | |
subject | String | Subject | |
template | String | Template | |
username | String | -No label- |
The entitygroup table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
comments | String | Comments | |
String | |||
externalid | String | External ID | |
groupmembership | String | Membership | |
groupname | String | Name | |
groupowner | String | Owner | |
grouptypename | String | Type | |
isinactive | Boolean | Inactive | |
ismanufacturingworkcenter | Boolean | Manufacturing Work Center | |
isprivate | Boolean | Private | |
issalesrep | Boolean | Sales Group | |
issupportrep | Boolean | Support Group | |
laborresources | Double | Labor Resources | |
machineresources | Double | Machine Resources | |
restrictedtoowner | Boolean | Restrict Group Editing to Owner | |
restrictiongroup | String | Restrict To | |
savedsearch | String | Saved Search | |
size | Integer | Size | |
subsidiary | String | Subsidiary |
The entityGroupBulkMerge table.
Name | Type | References | Description |
group | String | -No label- | |
mergedate | Date | Date/Time | |
mergetype | String | Type | |
status | String | Status | |
subject | String | Subject | |
template | String | Template | |
username | String | -No label- |
The entityGroupCampaigns table.
Name | Type | References | Description |
campaign | String | Campaign | |
campaignevent | String | Event | |
category | String | Category | |
contact | String | Contact | |
datesent | Date | Date Sent | |
group | String | -No label- | |
response | String | Response Detail | |
responsedate | Date | Response Date |
The entityGroupMember table.
Name | Type | References | Description |
accesslevel | String | Access Level | |
bouncedaddress | Boolean | Bounced | |
company | String | Company | |
contactmember | String | Contact | |
contribution | Double | Contribution % | |
custjobmember | String | Customer | |
String | |||
employeemember | String | Employee | |
group | String | Group | |
isinactive | Boolean | Inactive | |
isprimary | Boolean | Primary | |
jobmember | String | Project | |
name | String | Name | |
partnermember | String | Partner | |
salesrep | String | Sales Rep | |
salesrole | String | Sales Role | |
subscriptionstatus | String | Global Subscription Status |
The entityGroupType table.
Name | Type | References | Description |
key | String | key |
The entityListType table.
Name | Type | References | Description |
defaultname | String | Default Name | |
entitytype | String | Entity Type | |
key | Integer | key |
The entityRate table.
Name | Type | References | Description |
employee | String | Entity | |
entitycurrency | String | Currency |
The EntityStage table.
Name | Type | References | Description |
id | String | ID |
The EntityStatus table.
Name | Type | References | Description |
descr | String | Description | |
entitytype | String | Stage | |
inactive | Boolean | Is Inactive | |
includeinleadreports | Boolean | Include In Lead Reports | |
key | Integer | -No label- | |
name | String | Status | |
readonly | Boolean | -No label- |
The EntitySubsidiaryRelationship table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
entity | String | Entity | |
externalid | String | External ID | |
isprimarysub | Boolean | Is Primary Subsidiary | |
name | String | -No label- |
The estimateBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The estimateItemShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The estimatePartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The estimateSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The estimateShipGroup table.
Name | Type | References | Description |
destinationaddress | String | Ship To | |
doc | String | -No label- | |
handlingrate | Decimal | Handling Rate | |
shippingmethod | String | Ship Via | |
shippingrate | Decimal | Shipping Rate | |
sourceaddress | String | Ship From | |
uniquekey | Integer | Unique Key |
The estimateShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The estimateTranPromotion table.
Name | Type | References | Description |
couponcode | String | Coupon Code | |
promocode | String | Promotion | |
promotiontype | String | Promotion Type |
The EventDowim table.
Name | Type | References | Description |
id | Integer | ID |
The EventFrequency table.
Name | Type | References | Description |
key | String | key |
The EventPriority table.
Name | Type | References | Description |
id | String | ID |
The EventType table.
Name | Type | References | Description |
key | String | key |
The excludeLocationRegionItem table.
Name | Type | References | Description |
location | String | Location | |
ranking | Integer | Ranking |
The executionContext table.
Name | Type | References | Description |
id | String | ID |
The expensecategory table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
defaultrate | Double | Default Rate | |
description | String | Description | |
expenseacct | String | Expense Account | |
expenseitem | String | Expense Item | |
externalid | String | ExternalId | |
isinactive | Boolean | Inactive | |
name | String | Name | |
personalcorporatecardexpense | Boolean | Personal Corporate Card Expense | |
raterequired | Boolean | Rate is Required |
The ExpenseCategoryRate table.
Name | Type | References | Description |
currency | String | Currency | |
defaultrate | Double | Default Rate | |
expensecategory | String | Expense Category |
The ExpenseCategoryTranslation table.
Name | Type | References | Description |
description | String | Description | |
expensecategory | String | Expense Category | |
language | String | Language | |
name | String | Display Name |
The expenseItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The expenseItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
featureddescription | String | Featured Description | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
specialsdescription | String | Special Description | |
storedescription | String | Store Description | |
storedetaileddescription | String | Detailed Description |
The expenseMachine table.
Name | Type | References | Description |
amount | Decimal | Amount | |
category | String | Category | |
class | String | Class | |
corporatecreditcard | Boolean | Corporate Card | |
currency | String | Currency | |
customer | String | -No label- | |
department | String | Department | |
exchangerate | Decimal | Exchange Rate | |
expenseaccount | String | Expense Account | |
expensedate | Date | Date | |
expenseitem | Integer | Expense Item | |
expensereport | String | -No label- | |
foreignamount | Decimal | Foreign Amount | |
grossamt | Decimal | Gross Amt | |
isbillable | Boolean | Billable | |
isnonreimbursable | Boolean | Non-reimbursable | |
line | String | -No label- | |
location | String | Location | |
memo | String | Memo | |
quantity | Double | Quantity | |
raterequired | Boolean | -No label- | |
receipt | Boolean | Receipt | |
refnumber | Integer | Ref No. | |
taxcode | String | Tax Code |
The FairValueRangePolicy table.
Name | Type | References | Description |
key | String | key |
The FaxTemplate table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
content | String | Content | |
description | String | Description | |
isautoconverted | Boolean | Automatically Converted Template | |
isinactive | Boolean | Inactive | |
isprivate | Boolean | Private | |
mediaitem | String | Media Item | |
name | String | Name | |
recordtype | String | Record Type | |
subject | String | Subject |
The file table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
addtimestamptourl | Boolean | Generate URL Time Stamp | |
bundleable | Boolean | Available for SuiteBundles | |
createddate | Date | Date Created | |
description | String | Description | |
externalid | String | External ID | |
filesize | Integer | File Size (bytes) | |
filetype | String | Document Type | |
folder | String | Folder | |
hideinbundle | Boolean | Hide in SuiteBundle | |
iscompanywidereadaccess | Boolean | Company-wide Usage | |
isinactive | Boolean | Inactive | |
islink | Boolean | Is Link | |
isonline | Boolean | Available Without Login | |
lastmodifieddate | Date | Last Modified Date | |
name | String | File Name |
The FileHits table.
Name | Type | References | Description |
fileid | String | ID | |
timesviewed | Integer | # Times Viewed |
The FirstRunTimeSelect table.
Name | Type | References | Description |
id | Integer | Internal ID |
The FolderType table.
Name | Type | References | Description |
defaultname | String | Default Name | |
key | String | key |
The Forecast table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
currencyname | String | Currency | |
enddate | Date | End Date | |
forecast | Decimal | Override: | |
forecasthigh | Decimal | ||
forecastlow | Decimal | ||
quota | Decimal | Quota | |
salesrep | String | Sales Rep | |
startdate | Date | Start Date | |
subsidiary | String | Subsidiary |
The ForecastType table.
Name | Type | References | Description |
sname | String | Name |
The FrequencyType table.
Name | Type | References | Description |
defaultlongname | String | Default Name |
The FulfillmentChoice table.
Name | Type | References | Description |
key | Integer | key |
The FulfillmentExceptionType table.
Name | Type | References | Description |
key | Integer | key |
The FulfillmentRequestType table.
Name | Type | References | Description |
key | Integer | key |
The FXRATEUPDATEZONE table.
Name | Type | References | Description |
id | Integer | ID |
The gatewayNotification table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
error | String | Error | |
externalid | String | External ID | |
isodate | String | ISO Date | |
notificationdate | Date | Date | |
paymentprocessingprofile | String | Payment processing profile | |
paymentrequestid | String | Payment Request ID | |
paymentstatus | String | Payment Status | |
request | String | Request | |
response | String | Response | |
transaction | String | Transaction | |
validatepostbackstatus | String | Validate postback status |
The gatewayTokenFamily table.
Name | Type | References | Description |
key | Integer | key |
The generalAllocationSchedule table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accountingbook | String | Accounting Book | |
accountsfromsource | Boolean | Use source/credit account(s) | |
creditaccount | String | Credit Account | |
creditclass | String | Credit Class | |
creditentity | String | Credit Name | |
creditlocation | String | Credit Location | |
externalid | String | External ID | |
frequency | String | Frequency | |
hasremainingremainders | Boolean | Has Remaining | |
inactive | Boolean | Inactive | |
isintercompany | Boolean | Intercompany | |
name | String | Name | |
nextdate | Date | Next Date | |
remainingreminders | String | Number Remaining | |
remindforever | Boolean | Remind Forever | |
sourceintercompanyaccount | String | Intercompany Account | |
subsequentdate | Date | Subsequent Date | |
subsidiary | String | Subsidiary | |
weightsinpercentage | Boolean | Values are percentages |
The generalAllocationScheduleJournalCreatedByAllocation table.
Name | Type | References | Description |
allocationdetailid | Integer | Allocation Detail ID | |
journal | String | Journal | |
journalbook | String | Accounting Book | |
parentschedule | String | Created from Schedule | |
postingperiod | String | Posting Period | |
trandate | Date | Date |
The GeneralDetailDestination table.
Name | Type | References | Description |
account | String | Account | |
class | String | Class | |
department | String | Department | |
entity | String | Name | |
intercompanyaccount | String | Intercompany Account | |
location | String | Location | |
parentschedule | String | Created from Schedule | |
subsidiary | String | Subsidiary |
The GeneralDetailSource table.
Name | Type | References | Description |
account | String | Account | |
class | String | Class | |
department | String | Department | |
location | String | Location | |
parentschedule | String | Created from Schedule |
The generalizedItem table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
itemtype | String | -No label- | |
name | String | -No label- |
The GeneralScheduleDestination table.
Name | Type | References | Description |
account | String | Account | |
class | String | Class | |
department | String | Department | |
entity | String | Name | |
intercompanyaccount | String | Intercompany Account | |
location | String | Location | |
parentschedule | String | Created from Schedule | |
subsidiary | String | Subsidiary |
The GeneralScheduleSource table.
Name | Type | References | Description |
account | String | Account | |
class | String | Class | |
department | String | Department | |
location | String | Location | |
parentschedule | String | Created from Schedule |
The generalTokenPaymentOperationMap table.
Name | Type | References | Description |
paymentinstrument | String | -No label- |
The genericCampaignEventResponse table.
Name | Type | References | Description |
bounced | Integer | # Bounced | |
bouncedratio | Double | % Bounced | |
clickedthru | Integer | # Clicked Thru | |
clickedthruratio | Double | % Clicked Thru | |
opened | Integer | # Opened | |
openedratio | Double | % Opened | |
responded | Integer | # Responded | |
respondedratio | Double | % Responded | |
sent | Integer | # Sent | |
unsubscribed | Integer | # Unsubscribed | |
unsubscribedratio | Double | % Unsubscribed |
The genericCampaignItem table.
Name | Type | References | Description |
campaign | String | -No label- |
The genericresource table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
entityid | String | Name | |
externalid | String | ExternalId | |
isinactive | Boolean | Inactive | |
laborcost | Decimal | Cost |
The GenericResourceSubsidiaryRelationship table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
entity | String | Entity | |
externalid | String | External ID | |
isprimarysub | Boolean | Is Primary Subsidiary | |
name | String | -No label- |
The giftcertificate table.
Name | Type | References | Description |
id [KEY] | String | Internal ID | |
amountremaining | Decimal | Amount Remaining | |
createddate | Date | Date Created | |
currency | String | Currency | |
String | Recipient Email | ||
expirationdate | Date | Expiration Date | |
giftcertcode | String | Code | |
giftcertitem | String | Gift Certificate Item | |
lastmodifieddate | Date | Last Modified Date | |
message | String | Gift Message | |
originalamount | Decimal | Original Amount | |
sender | String | From |
The GiftCertificateItemAuthorizationCodes table.
Name | Type | References | Description |
authcode | String | Auth. Code | |
giftcertificateitem | String | Gift Certificate Item |
The giftCertificateItemPresentationItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
description | String | Item Description | |
onlineprice | Decimal | Online Price | |
presentationitem | String | Related Item | |
presitemid | Integer | Internal ID | |
superitem | String | -No label- |
The giftCertificateItemPrice table.
Name | Type | References | Description |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The giftCertificateItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The giftCertificateItemSiteCategory table.
Name | Type | References | Description |
categorydescription | String | Description | |
isdefault | Boolean | Preferred Category | |
item | String | -No label- | |
website | String | Site |
The giftCertificateItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The giftCertificateItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The globalinventoryrelationship table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
alllocationscustomerreturn | Boolean | All Customer Return Locations | |
alllocationsfulfillment | Boolean | All Fulfillment Locations | |
allowcrosssubcustomerreturn | Boolean | Allow Cross-Subsidiary Customer Return | |
allowcrosssubfulfillment | Boolean | Allow Cross-Subsidiary Fulfillment | |
externalid | String | External ID | |
inventorysubsidiary | String | Inventory Subsidiary | |
isinactive | Boolean | Inactive |
The Hcmterminationcategory table.
Name | Type | References | Description |
name | String | name |
The inboundshipment table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
actualdeliverydate | Date | Actual Delivery Date | |
actualshippingdate | Date | Actual Shipping Date | |
billoflading | String | Bill Of Lading | |
expecteddeliverydate | Date | Expected Delivery Date | |
expectedshippingdate | Date | Expected Shipping Date | |
externaldocumentnumber | String | External Document Number | |
externalid | String | External ID | |
shipmentbasecurrency | String | Base Currency | |
shipmentcreateddate | Date | Date Created | |
shipmentmemo | String | Memo | |
shipmentnumber | String | Shipment Number | |
shipmentstatus | String | Status |
The InboundShipmentItem table.
Name | Type | References | Description |
id [KEY] | Integer | ID | |
expectedrate | Decimal | Expected Rate | |
inboundshipment | String | Inbound Shipment | |
incoterm | String | Incoterm | |
pocurrency | String | Currency | |
porate | Decimal | PO Rate | |
purchaseordertransaction | String | PO | |
quantitybilled | Double | Quantity Billed | |
quantityexpected | Double | Quantity Expected | |
quantityreceived | Double | Quantity Received | |
quantityremaining | Double | Quantity Remaining | |
receivinglocation | String | Receiving Location | |
shipmentitemamount | Decimal | Amount | |
shipmentitemdescription | String | Description | |
shipmentitemeffectivedate | Date | Effective Date | |
shipmentitemexchangerate | Decimal | Exchange Rate | |
shipmentitemtransaction | String | PO Transaction Line | |
totalunitcost | Decimal | Total Unit Cost | |
unit | String | Unit | |
unitlandedcost | Decimal | Unit Landed Cost |
The InboundShipmentLandedCost table.
Name | Type | References | Description |
landedcostallocationmethod | String | Allocation Method | |
landedcostamount | Decimal | Amount | |
landedcostcostcategory | String | Cost Category | |
landedcostcurrency | String | Currency | |
landedcosteffectivedate | Date | Effective Date | |
landedcostexchangerate | Decimal | Exchange Rate | |
landedcostid | Integer | ID | |
landedcostshipmentitemssearch | String | Associated Items |
The IncoTerm table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Description | |
isinactive | Boolean | Inactive | |
name | String | Name |
The IncoTermType table.
Name | Type | References | Description |
key | Integer | key |
The IntercompanyAllocationScheduleAllocationDetail table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
createdjournals | String | Journal Entry Created | |
externalid | String | External ID | |
parentschedule | String | Created from Schedule | |
trandate | Date | Date |
The IntercompanyAllocationScheduleAllocationDetailGeneralDetailDestination table.
Name | Type | References | Description |
account | String | Account | |
class | String | Class | |
department | String | Department | |
entity | String | Name | |
intercompanyaccount | String | Intercompany Account | |
location | String | Location | |
parentschedule | String | Created from Schedule | |
subsidiary | String | Subsidiary |
The IntercompanyAllocationScheduleAllocationDetailGeneralDetailSource table.
Name | Type | References | Description |
account | String | Account | |
class | String | Class | |
department | String | Department | |
location | String | Location | |
parentschedule | String | Created from Schedule |
The IntercompanyDestination table.
Name | Type | References | Description |
account | String | Account | |
class | String | Class | |
department | String | Department | |
entity | String | Name | |
intercompanyaccount | String | Intercompany Account | |
location | String | Location | |
parentschedule | String | Created from Schedule | |
subsidiary | String | Subsidiary |
The IntercompanySource table.
Name | Type | References | Description |
account | String | Account | |
class | String | Class | |
department | String | Department | |
location | String | Location | |
parentschedule | String | Created from Schedule |
The intercompanyTransferOrderLinkedTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The intercompanyTransferOrderShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The intercompanyTransferOrderTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The inventoryAssignment table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
bin | String | Bin Number | |
inventorynumber | String | Inventory Number | |
inventorystatus | String | Status | |
quantity | Decimal | Quantity | |
transaction | String | Transaction |
The InventoryBalance table.
Name | Type | References | Description |
item [KEY] | Integer | Item | |
quantityavailable | Float | Available Quantity | |
binnumber | Integer | Bin | |
committedqtyperlocation | Float | Committed Quantity (Per Location) | |
committedqtyperseriallotnumber | Float | Committed Quantity (Per Serial/Lot Number) | |
committedqtyperseriallotnumberlocation | Float | Committed Quantity (Per Serial/Lot Number & Location) | |
inventorystatus | Integer | Inventory Status | |
location | Integer | Location | |
quantityonhand | Float | On-Hand Quantity | |
quantitypicked | Float | Picked Quantity | |
inventorynumber | Integer | Serial/Lot Number |
The InventoryCostTemplate table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
isinactive | Boolean | Inactive | |
memo | String | Memo | |
name | String | Name |
The InventoryCostTemplateCostDetail table.
Name | Type | References | Description |
costcategory | String | Cost Category | |
inventorycosttemplate | String | Inventory Cost Template | |
item | String | Item | |
overheadamount | Decimal | Overhead Amount | |
overheadpercentage | Double | Overhead Percentage |
The inventoryItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The inventoryItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The inventoryItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The inventoryItemItemVendor table.
Name | Type | References | Description |
item | String | Item | |
preferredvendor | Boolean | Preferred | |
purchaseprice | String | Purchase Price | |
schedule | String | Schedule | |
subsidiary | String | Subsidiary | |
vendor | String | Vendor | |
vendorcode | String | Code | |
vendorcostentered | Decimal | Price (Entered) | |
vendorcurrencyid | String | Currency |
The inventoryItemLocations table.
Name | Type | References | Description |
atpleadtime | Integer | ATP Lead Time | |
averagecostmli | Decimal | Average Cost | |
backwardconsumptiondays | Integer | Backward Consumption Days | |
cost | Decimal | Standard Cost | |
costaccountingstatus | String | Cost Accounting Status | |
costinglotsize | Double | Costing Lot Size | |
currentstandardcost | Decimal | Current Standard Cost | |
currentstandardcosteffectivedate | Date | Current Standard Cost Effective Date | |
defaultreturncost | Decimal | Default Return Cost | |
demandsource | String | Demand Source | |
demandtimefence | Integer | Demand Time Fence | |
fixedlotsize | Double | Fixed Lot Size | |
forwardconsumptiondays | Integer | Forward Consumption Days | |
inventorycosttemplate | String | Inventory Cost Template | |
invtclassification | String | Classification | |
invtcountinterval | Integer | Count Interval | |
item | String | Item | |
lastinvtcountdate | Date | Last Count Date | |
lastpurchasepricemli | Decimal | Last Purchase Price | |
location | String | Location | |
nextinvtcountdate | Date | Next Count Date | |
periodiclotsizedays | Integer | Periods of Supply Increment | |
periodiclotsizetype | String | Periods of Supply Type | |
preferredstocklevel | Double | Preferred Stock Level | |
qtyintransitexternal | Double | Quantity In Transit (External) | |
quantityavailable | Double | Quantity Available | |
quantitybackordered | Double | Quantity Back Ordered | |
quantitycommitted | Double | Quantity Committed | |
quantityintransit | Double | Quantity In Transit | |
quantityonhand | Double | Quantity On Hand | |
quantityonorder | Double | Quantity On Order | |
reorderpoint | Double | Reorder Point | |
rescheduleindays | Integer | Reschedule In Days | |
rescheduleoutdays | Integer | Reschedule Out Days | |
supplylotsizingmethod | String | Lot Sizing Method | |
supplytimefence | Integer | Planning Time Fence | |
supplytype | String | Supply Type |
The inventoryItemPresentationItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
description | String | Item Description | |
onlineprice | Decimal | Online Price | |
presentationitem | String | Related Item | |
presitemid | Integer | Internal ID | |
superitem | String | -No label- |
The inventoryItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The inventoryItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The inventoryItemSiteCategory table.
Name | Type | References | Description |
categorydescription | String | Description | |
isdefault | Boolean | Preferred Category | |
item | String | -No label- | |
website | String | Site |
The inventoryItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The inventoryItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The inventorynumber table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
expirationdate | Date | Expiration Date | |
externalid | String | External ID | |
item | String | Item | |
memo | String | Memo |
The InventoryNumberLocation table.
Name | Type | References | Description |
inventorynumber | String | Inventory Number | |
location | String | Location | |
quantityavailable | Double | Available | |
quantityintransit | Double | In Transit | |
quantityonhand | Double | On Hand |
The inventorystatus table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Description | |
externalid | String | External ID | |
inventoryavailable | Boolean | Make Inventory Available For Commitment | |
isinactive | Boolean | Inactive | |
name | String | Name |
The invoiceBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The invoiceGiftCertRedemption table.
Name | Type | References | Description |
authcode | String | Gift Certificate | |
authcodeapplied | Decimal | Amount Applied |
The InvoiceItemShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The invoiceLinkedTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The invoicePartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The invoiceSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The invoiceShipGroup table.
Name | Type | References | Description |
destinationaddress | String | Ship To | |
doc | String | -No label- | |
handlingrate | Decimal | Handling Rate | |
shippingmethod | String | Ship Via | |
shippingrate | Decimal | Shipping Rate | |
sourceaddress | String | Ship From | |
uniquekey | Integer | Unique Key |
The invoiceShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The invoiceTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The invoiceTranPromotion table.
Name | Type | References | Description |
couponcode | String | Coupon Code | |
promocode | String | Promotion | |
promotiontype | String | Promotion Type |
The InvtCommit table.
Name | Type | References | Description |
key | Integer | Internal ID |
The InvtItemPriceHistory table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
currency | String | Currency | |
discount | Double | Discount | |
item | String | Item | |
price | Decimal | Price | |
pricetype | String | Price Level | |
quantity | Double | Minimum Quantity |
The IPRestrictions table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
role | String | Role | |
rules | String | Rules |
The IssueVersionRelation table.
Name | Type | References | Description |
name | String | Name |
The item table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
alternatedemandsourceitem | String | Alternate Source Item | |
amortizationperiod | Integer | Amortization Period | |
amortizationtemplate | String | Amortization Template | |
assetaccount | String | Asset Account | |
atpmethod | String | ATP Method | |
availabletopartners | Boolean | Available to Adv. Partners | |
averagecost | Decimal | Average Cost | |
backwardconsumptiondays | Integer | Backward Consumption Days | |
billexchratevarianceacct | String | Exchange Rate Variance Account | |
billingschedule | String | Billing Schedule | |
billpricevarianceacct | String | Price Variance Account | |
billqtyvarianceacct | String | Quantity Variance Account | |
buildentireassembly | Boolean | Mark Sub-assemblies Phantom | |
buildtime | Double | Work Order Lead Time | |
class | String | Class | |
consumptionunit | String | Consumption | |
copydescription | Boolean | Copy from Sales Order | |
cost | Decimal | Purchase Price | |
costcategory | String | Cost Category | |
costestimate | Decimal | Item Defined Cost | |
costestimatetype | String | Cost Estimate Type | |
costingmethod | String | Costing Method | |
countryofmanufacture | String | Manufacturer Country | |
createddate | Date | Date Created | |
createexpenseplanson | String | Create Expense Plans On | |
createjob | Boolean | Create Job | |
custreturnvarianceaccount | String | Customer Return Variance Account | |
deferralaccount | String | Deferred Expense | |
demandmodifier | Double | Estimated Demand Change | |
demandsource | String | Demand Source | |
demandtimefence | Integer | Demand Time Fence | |
department | String | Department | |
description | String | Description | |
displayname | String | Display Name/Code | |
distributioncategory | String | Distribution Category | |
distributionnetwork | String | Distribution Network | |
dontshowprice | Boolean | Don't Show Price | |
dropshipexpenseaccount | String | Dropship Expense Account | |
enforceminqtyinternally | Boolean | Enforce Minimum Internally | |
excludefromsitemap | Boolean | Exclude from Sitemap | |
expenseaccount | String | Expense/COGS Account | |
expenseamortizationrule | String | Expense Amortization Rule | |
externalid | String | External ID | |
featureddescription | String | Featured Description | |
fixedlotsize | Double | Fixed Lot Size | |
forwardconsumptiondays | Integer | Forward Consumption Days | |
froogleproductfeed | Boolean | Google Base Product Feed | |
fullname | String | Full Name | |
fxcost | Decimal | Purchase Price (Foreign Currency) | |
gainlossaccount | String | Gain/Loss Account | |
generateaccruals | Boolean | Generate Accruals | |
handlingcost | Decimal | Handling Cost | |
includechildren | Boolean | Include Children | |
incomeaccount | String | Income Account | |
isdonationitem | Boolean | Variable Amount | |
isdropshipitem | Boolean | Drop Ship Item | |
isfulfillable | Boolean | Can be Fulfilled | |
isinactive | Boolean | Inactive | |
islotitem | Boolean | Lot Numbered | |
isonline | Boolean | Display in Web Site | |
isphantom | Boolean | Phantom | |
isserialitem | Boolean | Serialized | |
isspecialorderitem | Boolean | Special Order Item | |
isspecialworkorderitem | Boolean | Special Work Order Item | |
itemid | String | Item Name/Number | |
itemtype | String | Type | |
lastmodifieddate | Date | Last Modified | |
lastpurchaseprice | Decimal | Last Purchase Price | |
leadtime | Integer | Lead Time | |
location | String | Location | |
manufacturer | String | Manufacturer | |
manufacturingchargeitem | Boolean | Manufacturing Charge Item | |
matchbilltoreceipt | Boolean | Match Bill To Receipt | |
matrixitemnametemplate | String | Matrix Item Name Template | |
matrixtype | String | Matrix Type | |
maxdonationamount | Decimal | Maximum Variable Amount | |
maximumquantity | Integer | Maximum Order Qty | |
metataghtml | String | Meta Tag HTML | |
minimumquantity | Integer | Minimum Order Qty | |
mpn | String | Manufacturer Part Number | |
nextagcategory | String | NexTag Category | |
nextagproductfeed | Boolean | NexTag Product Feed | |
nopricemessage | String | No Price Message | |
outofstockbehavior | String | Out Of Stock Behavior | |
outofstockmessage | String | Out Of Stock Message | |
overallquantitypricingtype | String | Calculate Quantity Discounts | |
overheadtype | String | Overhead Type | |
pagetitle | String | Page Title | |
parent | String | Subitem of | |
periodiclotsizedays | Integer | Periods of Supply Increment | |
periodiclotsizetype | String | Periods of Supply Type | |
preferredlocation | String | Preferred Location | |
pricinggroup | String | Pricing Group | |
printitems | Boolean | Print Items | |
prodpricevarianceacct | String | Production Price Variance Account | |
prodqtyvarianceacct | String | Production Quantity Variance Account | |
projecttemplate | String | Project Template | |
purchasedescription | String | Purchase Description | |
purchaseorderamount | Double | Vendor Bill - Purchase Order Amount Tolerance | |
purchaseorderquantity | Double | Vendor Bill - Purchase Order Quantity Tolerance | |
purchaseorderquantitydiff | Double | Vendor Bill - Purchase Order Quantity Difference | |
purchasepricevarianceacct | String | Purchase Price Variance Account | |
purchaseunit | String | Purchase Unit | |
quantitypricingschedule | String | Quantity Pricing Schedule | |
receiptamount | Double | Vendor Bill - Item Receipt Amount Tolerance | |
receiptquantity | Double | Vendor Bill - Item Receipt Quantity Tolerance | |
receiptquantitydiff | Double | Vendor Bill - Item Receipt Quantity Difference | |
relateditemsdescription | String | Related Items Description | |
rescheduleindays | Integer | Reschedule In Days | |
rescheduleoutdays | Integer | Reschedule Out Days | |
residual | String | Residual | |
roundupascomponent | Boolean | Round Up Quantity as Component | |
safetystocklevel | Double | Safety Stock Level | |
saleunit | String | Sale Unit | |
scrapacct | String | Scrap Account | |
searchkeywords | String | Search Keywords | |
seasonaldemand | Boolean | Seasonal Demand | |
shipindividually | Boolean | Ships Individually | |
shippackage | String | Package | |
shippingcost | Decimal | Shipping Cost | |
shoppingdotcomcategory | String | Shopping.com Category | |
shoppingproductfeed | Boolean | Shopping Product Feed | |
shopzillacategoryid | Integer | Shopzilla Category ID | |
shopzillaproductfeed | Boolean | Shopzilla Product Feed | |
showdefaultdonationamount | Boolean | Show Default Amount | |
sitemappriority | String | Sitemap Priority | |
stockdescription | String | Stock Description | |
stockunit | String | Stock Unit | |
storedescription | String | Store Description | |
storedetaileddescription | String | Detailed Description | |
storedisplayimage | String | Item Display Image | |
storedisplayname | String | Store Display Name | |
storedisplaythumbnail | String | Item Display Thumbnail | |
subsidiary | String | Subsidiary | |
subtype | String | Subtype | |
supplylotsizingmethod | String | Lot Sizing Method | |
supplyreplenishmentmethod | String | Replenishment Method | |
supplytimefence | Integer | Planning Time Fence | |
supplytype | String | Supply Type | |
totalquantityonhand | Double | Total Quantity On Hand | |
totalvalue | Decimal | Total Value | |
tracklandedcost | Boolean | Track Landed Cost | |
transferprice | Decimal | Transfer Price | |
unbuildvarianceaccount | String | Unbuild Variance Account | |
unitstype | String | Units Type | |
upccode | String | UPC Code | |
urlcomponent | String | URL Component | |
usemarginalrates | Boolean | Use Marginal Rates | |
vendorname | String | Vendor Name/Code | |
vendreturnvarianceaccount | String | Vendor Return Variance Account | |
weight | Double | Item Weight | |
weightunit | String | Weight Unit | |
weightunits | String | Weight Units | |
wipacct | String | WIP Account | |
wipvarianceacct | String | WIP Variance Account |
The itemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The itemBaseSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The itemBinQuantity table.
Name | Type | References | Description |
bin | String | Bin Number | |
item | String | Item | |
onhand | Double | On Hand | |
onhandavail | Double | Available |
The itemcollection table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Description | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
name | String | Name |
The ItemCollectionCustomerSegmentMap table.
Name | Type | References | Description |
customersegment | String | Customer Segment | |
itemsegment | String | Item Collection |
The ItemCollectionItemSimpleMap table.
Name | Type | References | Description |
item | String | Item |
The itemdemandplan table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
alternatesourceitem | String | Alternate Source Item | |
analysisduration | Integer | Historical Analysis Duration | |
demandplanid | String | Demand Plan Id | |
externalid | String | External ID | |
item | String | Item | |
location | String | Location | |
memo | String | Memo | |
projectionduration | Integer | Projection Duration | |
projectioninterval | String | Projection Interval | |
projectionmethod | String | Projection Method | |
projectionstartdate | Date | Projection Start Date | |
subsidiary | String | Subsidiary | |
units | String | Unit of Measure |
The ItemDemandPlanDemandplandetail table.
Name | Type | References | Description |
demandrownumber | Integer | Demand Row Number | |
enddate | Date | End Date | |
itemdemandplan | String | Item Demand Plan | |
quantity | Double | Quantity |
The ItemDemandSource table.
Name | Type | References | Description |
key | String | Internal ID |
The ItemFulfillmentPackage table.
Name | Type | References | Description |
itemfulfillment | String | Item Fulfillment | |
packagedescr | String | Package Contents Description | |
packagetrackingnumber | String | Package Tracking Number | |
packagetrackingnumberreturn | String | Return Tracking Number |
The ItemFulfillmentPackageFedex table.
Name | Type | References | Description |
admpackagetypefedex | String | Admissibility Package Type | |
alcoholrecipienttypefedex | String | Alcohol Recipient Type | |
authorizationnumberfedex | String | Authorization Number | |
codamountfedex | Decimal | C.O.D. Amount | |
codfreighttypefedex | String | Freight Charge Added to COD Amount | |
codmethodfedex | String | C.O.D. Method | |
codotherchargefedex | Decimal | C.O.D. Other Charge | |
deliveryconffedex | String | Delivery Confirmation | |
dryiceweightfedex | Double | Dry Ice Weight | |
insuredvaluefedex | Decimal | Declared Value | |
isalcoholfedex | Boolean | Alcohol | |
isnonstandardcontainerfedex | Boolean | Non Standard Container | |
itemfulfillment | String | Item Fulfillment | |
packageheightfedex | Integer | Height | |
packagelengthfedex | Integer | Length | |
packagetrackingnumberfedex | String | Package Tracking Number | |
packagetrackingnumberreturn | String | Return Tracking Number | |
packageweightfedex | Double | Weight in Pounds | |
packagewidthfedex | Integer | Width | |
packagingfedex | String | Carrier Packaging | |
priorityalertcontentfedex | String | Content Description | |
priorityalerttypefedex | String | Priority Alert | |
reference1fedex | String | Reference Information | |
signatureoptionsfedex | String | FedExツョ Delivery Signature Options | |
signaturereleasefedex | String | Signature Release |
The ItemFulfillmentPackageUps table.
Name | Type | References | Description |
additionalhandlingups | Boolean | Additional Handling | |
codamountups | Decimal | C.O.D. Amount | |
codmethodups | String | C.O.D. Method | |
deliveryconfups | String | Delivery Confirmation | |
insuredvalueups | Decimal | Insured Value | |
itemfulfillment | String | Item Fulfillment | |
packagedescrups | String | Package Contents Description | |
packageheightups | Integer | Height | |
packagelengthups | Integer | Length | |
packagetrackingnumberreturn | String | Return Tracking Number | |
packagetrackingnumberups | String | Package Tracking Number | |
packageweightups | Double | Weight in Pounds | |
packagewidthups | Integer | Width | |
packagingups | String | Carrier Packaging | |
reference1ups | String | Reference #1 | |
reference2ups | String | Reference #2 |
The ItemFulfillmentPackageUsps table.
Name | Type | References | Description |
deliveryconfusps | String | Package Confirmation | |
insuredvalueusps | Decimal | Declared Value | |
itemfulfillment | String | Item Fulfillment | |
packagedescrusps | String | Package Contents Description | |
packageheightusps | Integer | Height | |
packagelengthusps | Integer | Length | |
packagetrackingnumberusps | String | Package Tracking Number | |
packageweightusps | Double | Weight in Pounds | |
packagewidthusps | Integer | Width | |
packagingusps | String | Carrier Packaging | |
reference1usps | String | Reference #1 | |
reference2usps | String | Reference #2 |
The itemFulfillmentReturnAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The itemFulfillmentShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The itemGroupMember table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
item | String | Item | |
linenumber | Integer | Line Id | |
parentitem | String | Member of | |
quantity | Double | Quantity |
The itemGroupSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The itemGroupTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The itemMember table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
bomquantity | Decimal | BOM Quantity | |
componentyield | Double | Component Yield | |
effectivedate | Date | Effective Date | |
effectiverevision | String | Effective Revision | |
item | String | Item | |
itemsource | String | Item Source | |
linenumber | Integer | Line Id | |
obsoletedate | Date | Obsolete Date | |
obsoleterevision | String | Obsolete Revision | |
parentitem | String | Member of | |
quantity | Double | Quantity |
The ItemPeriodicLotSizeType table.
Name | Type | References | Description |
key | String | Internal ID |
The itemPresentationItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
description | String | Item Description | |
onlineprice | Decimal | Online Price | |
presentationitem | String | Related Item | |
presitemid | Integer | Internal ID | |
superitem | String | -No label- |
The itemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The itempricing table.
Name | Type | References | Description |
id [KEY] | String | Internal ID | |
calculatequantitydiscounts | String | Calculate Quantity Discounts | |
externalid | String | ExternalId | |
inputusing | String | Input Using | |
lineid | Integer | -No label- | |
transactionid | Integer | -No label- | |
vendor | Integer | -No label- |
The ItemPricingDiscount table.
Name | Type | References | Description |
id [KEY] | Integer | -No label- | |
fromquantity | Double | From Quantity | |
itempricing | Integer | -No label- | |
itempricingrecord | String | -No label- | |
memo | String | Memo | |
percent | Double | Percent Discount | |
quantityordered | Double | Quantity Ordered |
The itemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The itemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The itemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The ItemSegmentIncludingSyntheticInclsynthitem table.
Name | Type | References | Description |
item | String | -No label- |
The ItemSegmentItem table.
Name | Type | References | Description |
item | String | -No label- |
The ItemSegmentType table.
Name | Type | References | Description |
key | String | key |
The itemSiteCategory table.
Name | Type | References | Description |
categorydescription | String | Description | |
isdefault | Boolean | Preferred Category | |
item | String | -No label- | |
website | String | Site |
The ItemSource table.
Name | Type | References | Description |
key | String | key |
The itemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The ItemSubtype table.
Name | Type | References | Description |
key | String | key |
The ItemSupplyLotSizingType table.
Name | Type | References | Description |
key | String | Internal ID |
The itemsupplyplan table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
item | String | Item | |
location | String | Location | |
memo | String | Memo | |
subsidiary | String | Subsidiary |
The ItemSupplyPlanOrder table.
Name | Type | References | Description |
itemsupplyplan | String | Item Supply Plan | |
ordercreated | Boolean | Order Created | |
orderdate | Date | Order Date | |
ordernumber | String | Order | |
ordertype | String | Order Type | |
quantity | Double | Quantity | |
receiptdate | Date | Receipt Date |
The ItemSupplyPlanPlanningmessage table.
Name | Type | References | Description |
creationdate | Date | Date Created | |
itemsupplyplan | String | Item Supply Plan | |
message | String | Message | |
messagecode | Integer | Message Code | |
quantity | Double | Quantity | |
receiptdate | Date | Date | |
transactionid | String | Order |
The ItemSupplyType table.
Name | Type | References | Description |
key | String | Internal ID |
The itemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The itemType table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
id | String | ID | |
name | String | Name |
The ItemUnit table.
Name | Type | References | Description |
key | Integer | key |
The itemVendor table.
Name | Type | References | Description |
item | String | Item | |
preferredvendor | Boolean | Preferred | |
purchaseprice | String | Purchase Price | |
schedule | String | Schedule | |
subsidiary | String | Subsidiary | |
vendor | String | Vendor | |
vendorcode | String | Code | |
vendorcostentered | Decimal | Price (Entered) | |
vendorcurrencyid | String | Currency |
The job table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accountnumber | String | Account | |
actualtime | Double | Actual Work | |
allowallresourcesfortasks | Boolean | Display All Resources for Project Task Assignment | |
allowexpenses | Boolean | Allow Expenses | |
allowtime | Boolean | Allow Time Entry | |
alternatecontact | String | Alt. Contact | |
altname | String | Project | |
billingschedule | String | Billing Schedule | |
calculatedenddate | Date | Calculated End Date | |
calculatedenddatebaseline | Date | Calculated End Date Baseline | |
category | String | Category | |
comments | String | Comments | |
companyname | String | Job Name | |
contact | String | Primary Contact | |
contactlist | String | Contacts | |
currency | String | Currency | |
currencyprecision | Integer | Currency Precision | |
customer | String | Customer | |
datecreated | Date | Date Created | |
defaultbillingaddress | String | Default Billing Address | |
defaultshippingaddress | String | Default Shipping Address | |
enddate | Date | Actual End Date | |
entityid | String | Entity ID | |
entitynumber | Integer | Number | |
entitystatus | String | Status | |
entitytitle | String | Project ID | |
estimatedcost | Decimal | Estimated Cost | |
estimatedgrossprofit | Decimal | Estimated Gross Profit | |
estimatedgrossprofitpercent | Double | Estimated Gross Profit Percent | |
estimatedlaborcost | Decimal | Estimated Labor Cost | |
estimatedlaborcostbaseline | Decimal | Estimated Labor Cost Baseline | |
estimatedlaborrevenue | Decimal | Estimated Labor Revenue | |
estimatedrevenue | Decimal | Estimated Revenue | |
estimatedtime | Double | Initial Time Budget | |
estimatedtimeoverride | Double | Estimated Work | |
estimatedtimeoverridebaseline | Double | Estimated Work Baseline | |
externalid | String | External ID | |
forecastchargerunondemand | Boolean | Forecast Charge Run on Demand | |
fxrate | Decimal | Exchange Rate | |
includecrmtasksintotals | Boolean | Include CRM Task In Job Totals | |
isexempttime | Boolean | Classify Time as Exempt | |
isinactive | Boolean | Inactive | |
isproductivetime | Boolean | Classify Time as Productive | |
isutilizedtime | Boolean | Classify Time as Utilized | |
jobbillingtype | String | Billing Type | |
jobitem | String | Billing Item | |
jobprice | Decimal | Project Price | |
jobtype | String | Job Type | |
lastbaselinedate | Date | Last Baseline Date | |
lastmodifieddate | Date | Last Modified Date | |
limittimetoassignees | Boolean | Limit Time and Expenses To Resources | |
materializetime | Boolean | Create Planned Time Entries | |
parent | String | Parent Record | |
percentcomplete | Double | Rev Rec Override Percent Complete | |
percenttimecomplete | Double | Percent Work Complete | |
primarycontact | String | Primary Contact | |
projectedenddate | Date | Estimated End Date | |
projectedenddatebaseline | Date | Estimated End Date Baseline | |
projectmanager | String | Job Manager | |
startdate | Date | Start Date | |
startdatebaseline | Date | Start Date Baseline | |
timeapproval | String | Time Approval | |
timeremaining | Double | Remaining Work |
The jobAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Address | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
entity | String | Entity | |
label | String | Label |
The jobAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The jobBulkMerge table.
Name | Type | References | Description |
entity | String | -No label- | |
mergedate | Date | Date/Time | |
mergetype | String | Type | |
status | String | Status | |
subject | String | Subject | |
template | String | Template | |
username | String | -No label- |
The jobCompanyContact table.
Name | Type | References | Description |
contact | String | Contact |
The JobRequisitionPostingType table.
Name | Type | References | Description |
key | Integer | key |
The JobRequisitionStatus table.
Name | Type | References | Description |
key | Integer | key |
The jobResourceJobResourceMap table.
Name | Type | References | Description |
jobresource | String | -No label- |
The JobResourceRole table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Description | |
isinactive | Boolean | Inactive | |
name | String | Role | |
owntimeapproval | Boolean | Own Time Approval | |
projecttimeapprover | Boolean | Project Time Approver | |
reassignresources | Boolean | Allow Replacing Task Assignments in Bulk |
The jobResources table.
Name | Type | References | Description |
jobresource | String | Name | |
project | String | Job |
The jobstatus table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Description | |
externalid | String | External ID | |
isinactive | Boolean | Inactive |
The jobtype table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
name | String | Job Type |
The kitItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The kitItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The kitItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The kitItemMember table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
dropshipmember | Boolean | Drop Ship Item | |
item | String | Item | |
linenumber | Integer | Line Id | |
parentitem | String | Member of | |
quantity | Double | Quantity |
The kitItemPresentationItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
description | String | Item Description | |
onlineprice | Decimal | Online Price | |
presentationitem | String | Related Item | |
presitemid | Integer | Internal ID | |
superitem | String | -No label- |
The kitItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The kitItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The kitItemSiteCategory table.
Name | Type | References | Description |
categorydescription | String | Description | |
isdefault | Boolean | Preferred Category | |
item | String | -No label- | |
website | String | Site |
The kitItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The kitItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The knowledgeBaseSiteCategoryTranslation table.
Name | Type | References | Description |
description | String | Brief Description / Greeting | |
displayname | String | Name / Title / Category | |
language | String | Language | |
pagetitle | String | Page Title | |
salesdescription | String | Detailed Description / Message |
The LagType table.
Name | Type | References | Description |
inactive | Boolean | Inactive | |
key | String | key | |
name | String | Name | |
percent | Boolean | Percentage | |
seqnum | Integer | Sequence Num |
The LandedCostShipmentItemMap table.
Name | Type | References | Description |
record | String | Record |
The librariesAction table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesAdvancedRevRec table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesBundleInstallation table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesClient table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesConsolRateAdjustor table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesCustomGlLines table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesEmailCapture table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesMassUpdate table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesPaymentGateway table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesPlugInType table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesPlugInTypeImpl table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesPortlet table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesPromotions table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesRestlet table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesScheduled table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesShippingPartners table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesSuitelet table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesTaxCalculation table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesTestPlugin table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesUserEvent table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The librariesWebApp table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The LinkedTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The LocalizedTemplate table.
Name | Type | References | Description |
content | String | Content | |
locale | String | Locale | |
mediaitem | String | Media Item | |
template | String | -No label- |
The locAssignConfBackorderRulesItem table.
Name | Type | References | Description |
backorder | String | ||
lineitemsavedsearch | String | Line Item Saved Search | |
lineitemvalidsavedsearch | String | Line Item Valid Saved Search | |
locationassignmentconfiguration | String | -No label- | |
ranking | String | ||
ranking_display | String | Evaluation Order |
The location table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
fullname | String | Full Name | |
includeincontroltower | Boolean | Include In Control Tower | |
includeinsupplyplanning | Boolean | Include in Supply Planning | |
isinactive | Boolean | Location is Inactive | |
latitude | Double | Latitude | |
locationtype | String | Location Type | |
longitude | Double | Longitude | |
mainaddress | String | Address | |
makeinventoryavailable | Boolean | Make Inventory Available | |
makeinventoryavailablestore | Boolean | Make Inventory Available in Web Store | |
name | String | Name | |
parent | String | Sublocation of | |
returnaddress | String | Return Address | |
sopredconfidence | Double | Sales Order Predicted Risk Confidence | |
sopredicteddays | Integer | Sales Order Predicted Days Late/Early | |
subsidiary | String | Subsidiaries | |
topredconfidence | Double | Transfer Order Predicted Risk Confidence | |
topredicteddays | Integer | Transfer Order Predicted Days Late/Early | |
tranprefix | String | Document Number Prefix | |
usebins | Boolean | Use Bins |
The LocationMainAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The LocationReturnAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The locationSubsidiaryMap table.
Name | Type | References | Description |
location | String | -No label- |
The LocationType table.
Name | Type | References | Description |
id | Integer | ID |
The LoginAudit table.
Name | Type | References | Description |
date | Date | Date | |
detail | String | Detail | |
emailaddress | String | Email Address | |
ipaddress | String | IP Address | |
oauthaccesstokenname | String | Token-based Access Token Name | |
oauthappname | String | Token-based Application Name | |
requesturi | String | Request URI | |
role | String | Role | |
secchallenge | String | Security Challenge | |
status | String | Status |
The MailTemplate table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Description | |
isinactive | Boolean | Inactive | |
isprivate | Boolean | Private | |
mediaitem | String | Media Item | |
name | String | Name | |
recordtype | String | Record Type | |
subject | String | Subject |
The manufacturingComponent table.
Name | Type | References | Description |
available | Double | Quantity Available | |
backordered | Double | Quantity Back Ordered | |
buildvariance | Double | Build Variance | |
item | String | Item | |
onhand | Double | Quantity On Hand | |
quantity | Double | Quantity | |
sequencenumber | Integer | Line Number | |
transaction | String | Transaction ID | |
usedinbuild | Double | Quantity Used in Build |
The manufacturingcosttemplate table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
memo | String | Memo | |
name | String | Name |
The ManufacturingCostTemplateCostDetail table.
Name | Type | References | Description |
costcategory | String | Cost Category | |
fixedrate | Decimal | Fixed Rate | |
item | String | Item | |
manufacturingcosttemplate | String | Manufacturing Cost Template |
The manufacturingoperationtask table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
actualruntime | Double | Actual Run Time (Min) | |
actualsetuptime | Double | Actual Setup Time (Min) | |
actualwork | Double | Actual Work | |
autocalculatelag | Boolean | Auto-calculate Lag | |
completedquantity | Double | Completed Quantity | |
enddate | Date | End Date | |
estimatedwork | Double | Estimated Work | |
externalid | String | External ID | |
inputquantity | Double | Input Quantity | |
laborresources | Double | Labor Resources | |
machineresources | Double | Machine Resources | |
manufacturingcosttemplate | String | Manufacturing Cost Template | |
manufacturingworkcenter | String | Manufacturing Work Center | |
message | String | Comments | |
operationsequence | Integer | Operation Sequence | |
remainingwork | Double | Remaining Work | |
runrate | Double | Run Rate (Min/Unit) | |
setuptime | Double | Setup Time (Min) | |
startdatetime | Date | Start Date | |
status | String | Status | |
title | String | Name |
The ManufacturingOperationTaskCostDetail table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
account | Integer | Account | |
costcategory | String | Cost Category | |
fixedrate | Decimal | Fixed Rate | |
item | String | Item | |
manufacturingoperationtask | String | Manufacturing Operation Task |
The manufacturingOperationTaskPredecessor table.
Name | Type | References | Description |
enddate | Date | End Date | |
lagamount | Integer | Lag Amount | |
lagtype | String | Lag Type | |
lagunits | String | Lag Units | |
manufacturingoperationtask | String | Manufacturing Operation Task | |
startdate | Date | Start Date | |
task | String | Task |
The manufacturingrouting table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
autocalculatelag | Boolean | Auto-calculate Lag | |
billofmaterials | String | Bill of Materials | |
externalid | String | External ID | |
isdefault | Boolean | Default | |
isinactive | Boolean | Is Inactive | |
location | String | Locations | |
memo | String | Memo | |
name | String | Name |
The ManufacturingRoutingComponent table.
Name | Type | References | Description |
bomquantity | Double | BOM Quantity | |
description | String | Description | |
item | String | Component | |
itemname | String | Item Name | |
manufacturingrouting | String | -No label- | |
operationdisplaytext | String | Operation | |
operationsequencenumber | Integer | Operation Sequence | |
quantity | Double | Quantity | |
revision | String | Revision | |
units | String | Units |
The ManufacturingRoutingLocationMap table.
Name | Type | References | Description |
location | String | Locations |
The ManufacturingRoutingRoutingStep table.
Name | Type | References | Description |
lagamount | Integer | Lag Amount | |
lagtype | String | Lag Type | |
lagunits | String | Lag Units | |
manufacturingcosttemplate | String | Manufacturing Cost Template | |
manufacturingrouting | String | Manufacturing Routing | |
manufacturingworkcenter | String | Manufacturing Work Center | |
operationname | String | Operation Name | |
operationsequence | Integer | Operation Sequence | |
runrate | Double | Run Rate (Min/Unit) |
The manufacturingTransaction table.
Name | Type | References | Description |
assembly | String | Assembly | |
billofmaterials | String | Bill of Materials | |
billofmaterialsrevision | String | Bill of Materials Revision | |
built | Double | Built | |
class | String | Class | |
committed | Double | Buildable | |
date | Date | Date | |
department | String | Department | |
location | String | Location | |
memo | String | Memo | |
postingperiod | String | Posting Period | |
productionenddate | Date | End Date | |
productionstartdate | Date | Start Date | |
quantity | Double | Quantity | |
reference | String | Reference | |
routing | String | Routing | |
subsidiary | String | Subsidiary | |
transaction | String | Transaction | |
trantype | String | Transaction Type | |
units | String | Units |
The markupItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The markupItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
featureddescription | String | Featured Description | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
specialsdescription | String | Special Description | |
storedescription | String | Store Description | |
storedetaileddescription | String | Detailed Description |
The MediaItemFolder table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
appfolder | String | Application Folder | |
bundleable | Boolean | Available for SuiteBundles | |
chromasubsampling | Boolean | Chroma Subsampling | |
class | String | Restrict by Class | |
compressedimagequality | String | Compressed Image Quality | |
department | String | Restrict by Department | |
description | String | Description | |
enablecompression | Boolean | Compress website images | |
externalid | String | ExternalId | |
foldersize | Double | Folder Size (kB) | |
group | String | Restrict by Group | |
isinactive | Boolean | Inactive | |
isprivate | Boolean | Private | |
istoplevel | Boolean | Is Top Level | |
lastmodifieddate | Date | Last Modified Date | |
location | String | Restrict by Location | |
name | String | Folder Name | |
numfolderfiles | Integer | # of Files in Folder | |
owner | String | Owner | |
parent | String | Sub-Folder of | |
stripmetadata | Boolean | Strip metadata | |
subsidiary | String | Restrict by Subsidiary |
The MediaType table.
Name | Type | References | Description |
altcontenttype | String | Alternate Content Type | |
chardata | Boolean | Is Text File | |
contenttype | String | Content Type | |
extension | String | Extension | |
key | String | key | |
typedescr | String | Description |
The memdoc table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
action | String | Action | |
every | Integer | Every | |
externalid | String | External ID | |
hasremaining | Boolean | Has Remaining | |
indefinite | Boolean | Indefinite | |
inprogress | Boolean | Being Processed | |
isinactive | Boolean | Inactive | |
name | String | Name | |
nextdate | Date | Next Date | |
nexttrandate | Date | Next Transaction Date | |
numberremaining | Integer | Number Remaining | |
overridetransactiondate | Boolean | Override Transaction Date | |
repeatevery | Integer | Repeat Every | |
subsequent | Date | Subsequent Date | |
subsequentpostingdate | Date | Subsequent Posting Date | |
timeperiod | String | Time Period | |
transactiontemplate | String | Memorized Transaction Template | |
unit | String | Unit | |
updateaddresses | Boolean | Update Addresses |
The MemDocCustomRecurrence table.
Name | Type | References | Description |
memdoc | String | Memorized Transaction Definition | |
nextdate | Date | Next Date |
The memDocTransactionTemplate table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
abbrevtype | String | Abbrev. Type | |
approvalstatus | String | Approval Status | |
asofdate | Date | As of Date | |
class | String | Class | |
createdby | String | Created By | |
createddate | Date | Date Created | |
currency | String | Currency | |
department | String | Department | |
employee | String | Sales Rep | |
entity | String | Entity | |
exchangerate | Decimal | Exchange Rate | |
externalid | String | External ID | |
incoterm | String | Incoterm | |
isbookspecific | Boolean | Is Book Specific | |
lastmodifiedby | String | Last Modified By | |
lastmodifieddate | Date | Date Last Modified | |
leadsource | String | Lead Source | |
location | String | Location | |
memo | String | Memo | |
nextapprover | String | Next Approver | |
partner | String | Partner | |
paymentmethod | String | Payment Method | |
posting | Boolean | Posting | |
postingperiod | String | Posting Period | |
source | String | Source | |
subsidiary | String | Subsidiary | |
trandate | Date | Date | |
trandisplayname | String | Transaction | |
visibletocustomer | Boolean | Available In Customer Center |
The MemDocTransactionTemplateAccountingLine table.
Name | Type | References | Description |
account | String | Account | |
accountingbook | String | Accounting Book | |
amount | Decimal | Amount | |
amountpaid | Decimal | Amount Paid | |
amountunpaid | Decimal | Amount Unpaid | |
credit | Decimal | Amount (Credit) | |
debit | Decimal | Amount (Debit) | |
exchangerate | Decimal | Exchange Rate | |
memdoctransactiontemplate | String | Memorized Transaction Template | |
memdoctransactiontemplateline | String | Memorized Transaction Lines | |
netamount | Decimal | Amount (Net) | |
paymentamountunused | Decimal | Payment Amount Unused | |
paymentamountused | Decimal | Payment Amount Used |
The memDocTransactionTemplateLine table.
Name | Type | References | Description |
id [KEY] | Integer | ID | |
class | String | Class | |
createdfrom | String | Created From | |
department | String | Department | |
entity | String | Entity | |
expectedreceiptdate | Date | Expected Receipt Date | |
expectedshipdate | Date | Expected Ship Date | |
foreignamount | Decimal | Amount (Foreign Currency) | |
item | String | Item | |
itemtype | String | Item Type | |
linesequencenumber | Integer | Line Number | |
location | String | Location | |
mainline | Boolean | Main Line | |
memo | String | Memo | |
netamount | Decimal | Amount (Net) (Transaction Currency) | |
posting | Boolean | Posting | |
quantity | Double | Quantity | |
rate | Decimal | Rate | |
shipmethod | String | Ship Via | |
subsidiary | String | Subsidiary | |
transaction | String | Transaction | |
transactiondiscount | Boolean | Transaction Discount | |
transactionlinetype | String | Line Type |
The memDocTransactionTemplatePartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The memDocTransactionTemplateSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The memDocTransactionTemplateTranPromotion table.
Name | Type | References | Description |
couponcode | String | Coupon Code | |
promocode | String | Promotion | |
promotiontype | String | Promotion Type |
The message table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
activity | String | Activity | |
attachments | String | Attachments | |
author | String | From | |
authoremail | String | From Email Address | |
datetime | Date | Date Created | |
emailed | Boolean | Emailed | |
externalid | String | External ID | |
hasattachment | Boolean | Has Attachments | |
incoming | Boolean | Is Incoming | |
internalonly | Boolean | Internal Only | |
message | String | Message | |
primaryrecipient | String | Primary Recipient | |
subject | String | Subject | |
template | String | Template | |
to | String | To |
The MessageFile table.
Name | Type | References | Description |
file | String | File |
The MessageType table.
Name | Type | References | Description |
key | String | key | |
name | String | Name |
The methods table.
Name | Type | References | Description |
id [KEY] | String | ID | |
description | String | Description | |
method | String | Method | |
owner | String | Owner |
The mfgplannedtime table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
date | Date | Date | |
duration | Double | Duration | |
externalid | String | ExternalId | |
manufacturingoperationtask | String | Operation | |
manufacturingworkcenter | String | Manufacturing Work Center |
The MfgProjectAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Address | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
entity | String | Entity | |
label | String | Label |
The MfgProjectAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The MfgProjectBulkMerge table.
Name | Type | References | Description |
entity | String | -No label- | |
mergedate | Date | Date/Time | |
mergetype | String | Type | |
status | String | Status | |
subject | String | Subject | |
template | String | Template | |
username | String | -No label- |
The MfgProjectCompanyContact table.
Name | Type | References | Description |
contact | String | Contact |
The MfgProjectJobResources table.
Name | Type | References | Description |
jobresource | String | Name | |
project | String | Job |
The MfgProjectJobResourcesJobResourceJobResourceMap table.
Name | Type | References | Description |
jobresource | String | -No label- |
The mitPurpose table.
Name | Type | References | Description |
key | String | key |
The MonthsOfYear table.
Name | Type | References | Description |
key | Integer | key |
The NegativeNumberFormat table.
Name | Type | References | Description |
key | Integer | key | |
name | String | Name | |
prefix | String | Prefix |
The NextTransactionLineLink table.
Name | Type | References | Description |
foreignamount | Decimal | Amount (Transaction Currency) | |
linktype | String | Link Type | |
nextdoc | String | Transaction | |
nextline | String | Transaction Line | |
previousdoc | String | Related Transaction - Previous | |
previousline | String | Related Transaction Line - Previous | |
previoustype | String | Related Transaction Type - Previous |
The nexus table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
country | String | Country | |
description | String | Description | |
state | String | State/Province/County | |
taxagency | String | Preferred Tax Agency |
The nonInventoryItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The nonInventoryItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The nonInventoryItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The nonInventoryItemItemVendor table.
Name | Type | References | Description |
item | String | Item | |
preferredvendor | Boolean | Preferred | |
purchaseprice | String | Purchase Price | |
schedule | String | Schedule | |
subsidiary | String | Subsidiary | |
vendor | String | Vendor | |
vendorcode | String | Code | |
vendorcostentered | Decimal | Price (Entered) | |
vendorcurrencyid | String | Currency |
The nonInventoryItemPresentationItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
description | String | Item Description | |
onlineprice | Decimal | Online Price | |
presentationitem | String | Related Item | |
presitemid | Integer | Internal ID | |
superitem | String | -No label- |
The nonInventoryItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The nonInventoryItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The nonInventoryItemSiteCategory table.
Name | Type | References | Description |
categorydescription | String | Description | |
isdefault | Boolean | Preferred Category | |
item | String | -No label- | |
website | String | Site |
The nonInventoryItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The nonInventoryItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The nonInventoryPurchaseItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The nonInventoryPurchaseItemItemVendor table.
Name | Type | References | Description |
item | String | Item | |
preferredvendor | Boolean | Preferred | |
purchaseprice | String | Purchase Price | |
schedule | String | Schedule | |
subsidiary | String | Subsidiary | |
vendor | String | Vendor | |
vendorcode | String | Code | |
vendorcostentered | Decimal | Price (Entered) | |
vendorcurrencyid | String | Currency |
The nonInventoryPurchaseItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The nonInventoryPurchaseItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The nonInventoryResaleItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The nonInventoryResaleItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The nonInventoryResaleItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The nonInventoryResaleItemItemVendor table.
Name | Type | References | Description |
item | String | Item | |
preferredvendor | Boolean | Preferred | |
purchaseprice | String | Purchase Price | |
schedule | String | Schedule | |
subsidiary | String | Subsidiary | |
vendor | String | Vendor | |
vendorcode | String | Code | |
vendorcostentered | Decimal | Price (Entered) | |
vendorcurrencyid | String | Currency |
The nonInventoryResaleItemPresentationItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
description | String | Item Description | |
onlineprice | Decimal | Online Price | |
presentationitem | String | Related Item | |
presitemid | Integer | Internal ID | |
superitem | String | -No label- |
The nonInventoryResaleItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The nonInventoryResaleItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The nonInventoryResaleItemSiteCategory table.
Name | Type | References | Description |
categorydescription | String | Description | |
isdefault | Boolean | Preferred Category | |
item | String | -No label- | |
website | String | Site |
The nonInventoryResaleItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The nonInventoryResaleItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The nonInventorySaleItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The nonInventorySaleItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The nonInventorySaleItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The nonInventorySaleItemPresentationItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
description | String | Item Description | |
onlineprice | Decimal | Online Price | |
presentationitem | String | Related Item | |
presitemid | Integer | Internal ID | |
superitem | String | -No label- |
The nonInventorySaleItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The nonInventorySaleItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The nonInventorySaleItemSiteCategory table.
Name | Type | References | Description |
categorydescription | String | Description | |
isdefault | Boolean | Preferred Category | |
item | String | -No label- | |
website | String | Site |
The nonInventorySaleItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The nonInventorySaleItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
featureddescription | String | Featured Description | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
specialsdescription | String | Special Description | |
storedescription | String | Store Description | |
storedetaileddescription | String | Detailed Description |
The note table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accountingperiod | String | Period | |
activity | String | CRM/Support Record | |
entity | String | Entity | |
externalid | String | External ID | |
folder | String | Folder | |
item | String | Item | |
media | String | Media | |
topic | String | Topic |
The NoteDirectionType table.
Name | Type | References | Description |
key | String | key |
The NumberFormat table.
Name | Type | References | Description |
decimalseparator | String | Decimal Separator | |
groupseparator | String | Group Separator | |
key | Integer | key |
The NumberingSequenceSubsidMap table.
Name | Type | References | Description |
numbering | String | GL Sequence |
The OAuthToken table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
binactive | Boolean | Inactive | |
brevoked | Boolean | Revoked | |
createdby | String | Created By | |
dcreated | Date | Created | |
drevoked | Date | Revocation Date | |
role_name | String | Role | |
tba_app_name | String | Application Name | |
tba_token_name | String | Token Name |
The onlineFormTemplate table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
content | String | Content | |
description | String | Description | |
isinactive | Boolean | Inactive | |
isprivate | Boolean | Private | |
mediaitem | String | Media Item | |
name | String | Name | |
subject | String | Subject |
The onlineLeadFormEvent table.
Name | Type | References | Description |
action | String | Action | |
campaignevent | String | Campaign Event | |
contact | String | Contact | |
entity | String | Customer | |
leadsource | String | Lead Source | |
logdate | Date | Log Date |
The onlineLeadFormField table.
Name | Type | References | Description |
fielddescription | String | Field Description | |
fieldlabel | String | Field Label | |
iscustomfield | Boolean | Custom Field | |
ishidden | Boolean | Hidden | |
ismandatory | Boolean | Mandatory |
The opportunityBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The OpportunityCompetitor table.
Name | Type | References | Description |
competitor | String | Competitor | |
notes | String | Notes | |
opportunity | String | Opportunity |
The opportunityPartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The opportunitySalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The opportunityShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The orderFrequencyType table.
Name | Type | References | Description |
defaultname | String | Default Name |
The otherChargeItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The otherChargeItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The otherChargeItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The otherChargeItemItemVendor table.
Name | Type | References | Description |
item | String | Item | |
preferredvendor | Boolean | Preferred | |
purchaseprice | String | Purchase Price | |
schedule | String | Schedule | |
subsidiary | String | Subsidiary | |
vendor | String | Vendor | |
vendorcode | String | Code | |
vendorcostentered | Decimal | Price (Entered) | |
vendorcurrencyid | String | Currency |
The otherChargeItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The otherChargeItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The otherChargeItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The otherChargeItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The otherChargePurchaseItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The otherChargePurchaseItemItemVendor table.
Name | Type | References | Description |
item | String | Item | |
preferredvendor | Boolean | Preferred | |
purchaseprice | String | Purchase Price | |
schedule | String | Schedule | |
subsidiary | String | Subsidiary | |
vendor | String | Vendor | |
vendorcode | String | Code | |
vendorcostentered | Decimal | Price (Entered) | |
vendorcurrencyid | String | Currency |
The otherChargePurchaseItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The otherChargePurchaseItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The otherChargeResaleItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The otherChargeResaleItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The otherChargeResaleItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The otherChargeResaleItemItemVendor table.
Name | Type | References | Description |
item | String | Item | |
preferredvendor | Boolean | Preferred | |
purchaseprice | String | Purchase Price | |
schedule | String | Schedule | |
subsidiary | String | Subsidiary | |
vendor | String | Vendor | |
vendorcode | String | Code | |
vendorcostentered | Decimal | Price (Entered) | |
vendorcurrencyid | String | Currency |
The otherChargeResaleItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The otherChargeResaleItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The otherChargeResaleItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The otherChargeResaleItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
featureddescription | String | Featured Description | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
specialsdescription | String | Special Description | |
storedescription | String | Store Description | |
storedetaileddescription | String | Detailed Description |
The otherChargeSaleItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The otherChargeSaleItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The otherChargeSaleItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The otherChargeSaleItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The otherChargeSaleItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The otherChargeSaleItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The otherChargeSaleItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The othername table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accountnumber | String | Account ID | |
altemail | String | Alt. Email | |
altname | String | Other name | |
category | String | Category | |
comments | String | Comments | |
companyname | String | Company Name | |
contact | String | Primary Contact | |
contactlist | String | Contacts | |
creditlimit | Decimal | Credit Limit | |
currency | String | Currency | |
datecreated | Date | Date Created | |
defaultbillingaddress | String | Default Billing Address | |
defaultshippingaddress | String | Default Shipping Address | |
String | Other Name Email | ||
emailpreference | String | Email Preference | |
entityid | String | Entity ID | |
entitynumber | Integer | Number | |
entitytitle | String | Other Name ID | |
externalid | String | External ID | |
firstname | String | First Name | |
globalsubscriptionstatus | String | Global Subscription Status | |
isinactive | Boolean | Inactive | |
isperson | Boolean | Is Individual | |
lastmodifieddate | Date | Last Modified Date | |
lastname | String | Last Name | |
middlename | String | Middle Name | |
phoneticname | String | Furigana | |
printoncheckas | String | Print on Check As | |
salutation | String | Mr./Ms... | |
terms | String | Terms | |
title | String | Job Title |
The otherNameAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Address | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
entity | String | Entity |
The otherNameAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The otherNameBulkMerge table.
Name | Type | References | Description |
entity | String | -No label- | |
mergedate | Date | Date/Time | |
mergetype | String | Type | |
status | String | Status | |
subject | String | Subject | |
template | String | Template | |
username | String | -No label- |
The otherNameCampaigns table.
Name | Type | References | Description |
campaign | String | Campaign | |
campaignevent | String | Event | |
category | String | Category | |
contact | String | Contact | |
datesent | Date | Date Sent | |
entity | String | -No label- | |
response | String | Response Detail | |
responsedate | Date | Response Date |
The othernamecategory table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
isinactive | Boolean | Inactive |
The otherNameCompanyContact table.
Name | Type | References | Description |
contact | String | Contact |
The otherNameSubscriptionMessageHistory table.
Name | Type | References | Description |
String | |||
memo | String | Memo | |
recipient | String | Recipient | |
senddate | Date | Date Sent | |
sender | String | Sender |
The otherNameSubscriptions table.
Name | Type | References | Description |
entity | String | Entity | |
lastmodifieddate | Date | Last Modified | |
subscription | String | Campaign Subscription |
The OtherNameSubsidiaryRelationship table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
entity | String | Entity | |
externalid | String | External ID | |
isprimarysub | Boolean | Is Primary Subsidiary | |
name | String | -No label- |
The outboundRequest table.
Name | Type | References | Description |
elapsed | Integer | Elapsed Time [ms] | |
error | String | Error | |
host | String | Hostname | |
key | Integer | Internal ID | |
port | Integer | Port | |
protocol | String | Protocol | |
requestcontentlength | Integer | Request Content Length | |
requestcontenttype | String | Request Content Type | |
requestid | String | Request ID | |
responsecontentlength | Integer | Response Content Length | |
responsecontenttype | String | Response Content Type | |
scriptdeploymenturl | String | Script Deployment URL | |
scriptid | String | Script ID | |
statuscode | Integer | HTTP Status Code | |
time | Date | Date/Time |
The overallQuantityPricingType table.
Name | Type | References | Description |
key | String | key |
The overheadType table.
Name | Type | References | Description |
key | String | Internal ID |
The parametersAction table.
Name | Type | References | Description |
internalid [KEY] | String | ID | |
accesslevel | String | Access Level | |
label | String | Label | |
owner | String | Owner | |
searchlevel | String | Search Level | |
selectrecordtype | String | List/Record | |
setting | String | Preference |
The parametersBundleInstallation table.
Name | Type | References | Description |
internalid [KEY] | String | ID | |
accesslevel | String | Access Level | |
label | String | Label | |
owner | String | Owner | |
searchlevel | String | Search Level | |
selectrecordtype | String | List/Record | |
setting | String | Preference |
The parametersClient table.
Name | Type | References | Description |
internalid [KEY] | String | ID | |
accesslevel | String | Access Level | |
label | String | Label | |
owner | String | Owner | |
searchlevel | String | Search Level | |
selectrecordtype | String | List/Record | |
setting | String | Preference |
The parametersMapReduce table.
Name | Type | References | Description |
internalid [KEY] | String | ID | |
accesslevel | String | Access Level | |
label | String | Label | |
owner | String | Owner | |
searchlevel | String | Search Level | |
selectrecordtype | String | List/Record | |
setting | String | Preference |
The parametersMassUpdate table.
Name | Type | References | Description |
internalid [KEY] | String | ID | |
accesslevel | String | Access Level | |
label | String | Label | |
owner | String | Owner | |
searchlevel | String | Search Level | |
selectrecordtype | String | List/Record | |
setting | String | Preference |
The parametersPortlet table.
Name | Type | References | Description |
internalid [KEY] | String | ID | |
accesslevel | String | Access Level | |
label | String | Label | |
owner | String | Owner | |
searchlevel | String | Search Level | |
selectrecordtype | String | List/Record | |
setting | String | Preference |
The parametersRestlet table.
Name | Type | References | Description |
internalid [KEY] | String | ID | |
accesslevel | String | Access Level | |
label | String | Label | |
owner | String | Owner | |
searchlevel | String | Search Level | |
selectrecordtype | String | List/Record | |
setting | String | Preference |
The parametersScheduled table.
Name | Type | References | Description |
internalid [KEY] | String | ID | |
accesslevel | String | Access Level | |
label | String | Label | |
owner | String | Owner | |
searchlevel | String | Search Level | |
selectrecordtype | String | List/Record | |
setting | String | Preference |
The parametersScript table.
Name | Type | References | Description |
internalid [KEY] | String | ID | |
accesslevel | String | Access Level | |
label | String | Label | |
owner | String | Owner | |
searchlevel | String | Search Level | |
selectrecordtype | String | List/Record | |
setting | String | Preference |
The parametersSuitelet table.
Name | Type | References | Description |
internalid [KEY] | String | ID | |
accesslevel | String | Access Level | |
label | String | Label | |
owner | String | Owner | |
searchlevel | String | Search Level | |
selectrecordtype | String | List/Record | |
setting | String | Preference |
The parametersUserEvent table.
Name | Type | References | Description |
internalid [KEY] | String | ID | |
accesslevel | String | Access Level | |
label | String | Label | |
owner | String | Owner | |
searchlevel | String | Search Level | |
selectrecordtype | String | List/Record | |
setting | String | Preference |
The partner table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
altemail | String | Alt. Email | |
altname | String | Partner | |
category | String | Category | |
class | String | Class | |
comments | String | Comments | |
companyname | String | Company Name | |
contact | String | Primary Contact | |
contactlist | String | Contacts | |
datecreated | Date | Date Created | |
defaultbillingaddress | String | Default Billing Address | |
defaultshippingaddress | String | Default Shipping Address | |
department | String | Department | |
duplicate | Boolean | Duplicate | |
String | Partner Email | ||
emailpreference | String | Email Preference | |
entityid | String | Entity ID | |
entitynumber | Integer | Number | |
entitytitle | String | Partner Id | |
externalid | String | External ID | |
firstname | String | First Name | |
giveaccess | Boolean | Login Access | |
globalsubscriptionstatus | String | Global Subscription Status | |
isinactive | Boolean | Inactive | |
isperson | Boolean | Is Individual | |
lastmodifieddate | Date | Last Modified Date | |
lastname | String | Last Name | |
location | String | Location | |
middlename | String | Middle Name | |
parent | String | SubPartner of | |
partnercode | String | Partner Code | |
phoneticname | String | Furigana | |
printoncheckas | String | Print on Check As | |
salutation | String | Mr./Ms... | |
subpartnerlogin | Boolean | Can give login access to sub-partners | |
title | String | Job Title |
The PartnerAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Address | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
entity | String | Entity |
The PartnerAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The PartnerBulkMerge table.
Name | Type | References | Description |
entity | String | -No label- | |
mergedate | Date | Date/Time | |
mergetype | String | Type | |
status | String | Status | |
subject | String | Subject | |
template | String | Template | |
username | String | -No label- |
The PartnerCampaigns table.
Name | Type | References | Description |
campaign | String | Campaign | |
campaignevent | String | Event | |
category | String | Category | |
contact | String | Contact | |
datesent | Date | Date Sent | |
entity | String | -No label- | |
response | String | Response Detail | |
responsedate | Date | Response Date |
The partnerCategoryMap table.
Name | Type | References | Description |
category | String | -No label- |
The PartnerCompanyContact table.
Name | Type | References | Description |
contact | String | Contact |
The partnerContactRole table.
Name | Type | References | Description |
contact | String | Contacts | |
String | |||
entity | String | Entity | |
giveaccess | Boolean | Access |
The PartnerSubscriptionMessageHistory table.
Name | Type | References | Description |
String | |||
memo | String | Memo | |
recipient | String | Recipient | |
senddate | Date | Date Sent | |
sender | String | Sender |
The PartnerSubscriptions table.
Name | Type | References | Description |
entity | String | Entity | |
lastmodifieddate | Date | Last Modified | |
subscription | String | Campaign Subscription |
The PartnerSubsidiaryRelationship table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
entity | String | Entity | |
externalid | String | External ID | |
isprimarysub | Boolean | Is Primary Subsidiary | |
name | String | -No label- |
The PartnerSystem table.
Name | Type | References | Description |
id | String | ID |
The payItemType table.
Name | Type | References | Description |
fullname | String | Full Name | |
key | Integer | Internal ID |
The paymentCardBin table.
Name | Type | References | Description |
address | String | Address | |
cardbrand | String | Card Brand | |
cardlevel | String | Card Level | |
cardtype | String | Card Type | |
country | String | Country | |
info | String | Info | |
issuingbank | String | Issuing Bank | |
key | String | key | |
phone | String | Phone | |
purchasecard | Boolean | Purchase Card |
The paymentCardBrand table.
Name | Type | References | Description |
code | String | Code | |
key | Integer | key |
The paymentCardPaymentOperationMap table.
Name | Type | References | Description |
paymentinstrument | String | -No label- |
The paymentCardTokenPaymentOperationMap table.
Name | Type | References | Description |
paymentinstrument | String | -No label- |
The paymentevent table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
amount | Decimal | Amount | |
authcode | String | Auth. Code | |
avsstreetmatch | String | AVS Street Match | |
avszipmatch | String | AVS Zip Match | |
cancelable | Boolean | Cancelable | |
cardnameoncard | String | Cardholder Name | |
cardstreet | String | Card Street | |
cardtokensubcard | String | Card Street | |
cardzipcode | String | Card Zip Code | |
cscmatch | String | CSC Match | |
doc | String | Transaction | |
eventdate | Date | Date | |
externalid | String | External ID | |
handlingmode | String | Handling Mode | |
isadjustedexpirationdate | Boolean | Processed with Adjusted Expiration Date | |
isodate | String | ISO Date | |
isrecurringpayment | Boolean | Recurring Payment | |
lastevent | Boolean | Last event | |
maskedcard | String | Masked Card | |
merchantprintblock | String | Merchant Print Block | |
mitpurpose | String | Mit Purpose | |
paymentinitiator | String | Payment Initiator | |
paymentinstrumentmask | String | Mask | |
paymentinstrumentstate | String | State | |
paymentoperation | String | Payment Operation | |
paymentprocessingprofile | String | Payment processing profile | |
paymentrequestid | String | Payment Request ID | |
paymentstatus | String | Payment Status | |
pnrefnum | String | P/N Ref. | |
redirecturl | String | Redirect URL | |
request | String | Raw Request | |
response | String | Raw Response | |
shopperprintblock | String | Shopper Print Block | |
signaturerequired | Boolean | Signature Required | |
statusreason | String | Reason | |
statusreasondetails | String | Details | |
testmode | Boolean | Test Mode |
The paymentHandlingMode table.
Name | Type | References | Description |
key | String | key |
The paymentInitiator table.
Name | Type | References | Description |
key | String | key |
The paymentInstrumentListPaymentOperationMap table.
Name | Type | References | Description |
paymentinstrument | String | -No label- |
The paymentInstrumentPaymentOperationMap table.
Name | Type | References | Description |
paymentinstrument | String | -No label- |
The paymentInstrumentStateType table.
Name | Type | References | Description |
key | Integer | key |
The paymentInstrumentType table.
Name | Type | References | Description |
key | Integer | key |
The paymentItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The paymentItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The paymentmethod table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
account | String | Account | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
merchantaccounts | String | Associated Payment Processing Profiles | |
name | String | Name |
The paymentMethodVisual table.
Name | Type | References | Description |
flags | String | Flags | |
paymentmethod | String | Payment Method |
The paymentOperation table.
Name | Type | References | Description |
key | String | key |
The paymentResultPreview table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
cancelable | Boolean | Cancelable | |
datecreated | Date | Date | |
externalid | String | External ID | |
isodate | String | ISO Date | |
issignaturerequired | Boolean | Signature Required | |
maskedcard | String | Masked Card | |
merchantprintblock | String | Merchant Print Block | |
paymentrequestid | String | Payment Request ID | |
paymentstatus | String | Payment Status | |
paymentstatusreason | String | Payment Status Reason | |
shopperprintblock | String | Shopper Print Block |
The paymentStatus table.
Name | Type | References | Description |
key | String | key |
The paymentStatusReason table.
Name | Type | References | Description |
key | String | key |
The payrollitem table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
assetaccount | String | Asset Account | |
employeepaid | Boolean | Employee Paid | |
expenseaccount | String | Expense Account | |
externalid | String | External ID | |
inactive | Boolean | Inactive | |
itemtype | String | Item Type | |
liabilityaccount | String | Liability Account | |
name | String | Item Name | |
subsidiary | String | Subsidiary | |
vendor | String | Agency |
The payrollItemEmployeeTaxOptions table.
Name | Type | References | Description |
additionalallowances | Integer | Additional Exemption/Allowance Amount | |
addlallwncname | String | Additional Exemption/Allowance | |
employeeid | String | Name | |
excreditsname | String | Exemptions/Allowances | |
exempt | Boolean | Exempt | |
exemptioncredits | Integer | Exemption/Allowance Amount | |
overrideamount | Double | Override Amount | |
payrollitemid | String | -No label- | |
secndallwncname | String | Secondary Exemption/Allowance | |
secondaryallowances | Integer | Secondary Exemption/Allowance Amount | |
status | String | Filing Status |
The PdfTemplate table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
content | String | Content | |
description | String | Description | |
isinactive | Boolean | Inactive | |
isprivate | Boolean | Private | |
mediaitem | String | Media Item | |
name | String | Name | |
recordtype | String | Record Type | |
subject | String | Subject |
The permissionLevel table.
Name | Type | References | Description |
defaultname | String | defaultname | |
key | Integer | key |
The PermissionType table.
Name | Type | References | Description |
adminonly | Boolean | -No label- | |
everyone | Boolean | -No label- | |
feature | String | Feature | |
name | String | Name |
The phonecall table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accesslevel | Boolean | Private | |
assigned | String | Assigned To | |
bom | String | Bill of Materials | |
bomrevision | String | Bill of Materials Revision | |
company | String | Company | |
completeddate | Date | Date Completed | |
contact | String | Contact | |
createddate | Date | Date Created | |
externalid | String | External ID | |
lastmodifieddate | Date | Last Modified Date | |
message | String | Comments | |
mfgrouting | String | Manufacturing Routing | |
owner | String | Created By | |
priority | String | Priority | |
relateditem | String | Item | |
reminderminutes | String | Set up Reminder | |
remindertype | String | Reminder type | |
startdate | Date | Start Date | |
status | String | Status | |
supportcase | String | Support Case | |
timedevent | Boolean | Timed Event | |
title | String | Title |
The PickActionInventoryDetail table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
bin | String | Bin Number | |
inventorynumber | String | Inventory Number | |
pickaction | String | -No label- | |
quantity | Decimal | Quantity |
The plannedRevenueType table.
Name | Type | References | Description |
key | String | key |
The plannedStandardCost table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
item | String | Item | |
location | String | Location | |
memo | String | Memo | |
standardcostversion | String | Standard Cost Version |
The plannedStandardCostComponents table.
Name | Type | References | Description |
componentitem | String | Component | |
conversionrate | Double | Conversion Rate {1} | |
cost | Decimal | Cost | |
costcategory | String | Cost Category | |
plannedstandardcost | String | Planned Standard Cost |
The platformExtensionPluginLibrariesAdvancedRevRec table.
Name | Type | References | Description |
scriptfile | String | Library Script File |
The predictedRiskTrainEvalHistory table.
Name | Type | References | Description |
nkey [KEY] | Integer | Internal ID | |
accuracy | Decimal | Accuracy | |
bretrained | Boolean | Prediction Invoked | |
defaultname | String | Prediction Type | |
evaldate | Date | Evaluation Date | |
mae | Decimal | MAE | |
r2 | Decimal | R-Squared | |
rmse | Decimal | RMSE |
The presentationItemType table.
Name | Type | References | Description |
key | String | key |
The PreviousTransactionLineLink table.
Name | Type | References | Description |
foreignamount | Decimal | Amount (Transaction Currency) | |
linktype | String | Link Type | |
nextdoc | String | Related Transaction - Next | |
nextline | String | Related Transaction Line - Next | |
nexttype | String | Related Transaction Type - Next | |
previousdoc | String | Transaction | |
previousline | String | Transaction Line |
The PreviousTransactionLink table.
Name | Type | References | Description |
linktype | String | Link Type | |
nextdoc | String | Related Transaction - Next |
The pricelevel table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
discountpct | Double | Markup/Discount % | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
isonline | Boolean | Online Price Level |
The PriceModelType table.
Name | Type | References | Description |
isinactive | Boolean | Inactive | |
key | Integer | key |
The priceUsingType table.
Name | Type | References | Description |
id | String | Internal ID |
The pricing table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
currency | String | Currency | |
item | String | Item | |
pricelevel | String | Price Level | |
quantity | String | Quantity | |
saleunit | String | Sale Unit |
The pricinggroup table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
isinactive | Boolean | Inactive |
The ProjectBudgetAmount table.
Name | Type | References | Description |
adate | Date | Date | |
eac | Decimal | Eac | |
key | Integer | key | |
type | String | Amount Type |
The ProjectSubsidiaryRelationship table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
entity | String | Entity | |
externalid | String | External ID | |
isprimarysub | Boolean | Is Primary Subsidiary | |
name | String | -No label- |
The projecttask table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
actualwork | Double | Actual Work | |
constrainttype | String | Constraint Type | |
contact | String | Contact | |
enddate | Date | End Date | |
enddatebaseline | Date | End Date Baseline | |
estimatedwork | Double | Estimated Work | |
estimatedworkbaseline | Double | Estimated Work Baseline | |
eventid | Integer | Project Task ID | |
externalid | String | External ID | |
finishbydate | Date | Finish No Later Than | |
ismilestone | Boolean | Milestone | |
issummarytask | Boolean | Summary Task | |
message | String | Comments | |
nonbillabletask | Boolean | Non-billable | |
owner | String | Created By | |
parent | String | Parent Task | |
percenttimecomplete | Double | Percent Complete | |
priority | String | Priority | |
project | String | Job | |
remainingwork | Double | Remaining Work | |
startdatebaseline | Date | Start Date Baseline | |
startdatetime | Date | Start Date | |
status | String | Status | |
title | String | Name |
The projectTaskAssignee table.
Name | Type | References | Description |
cost | Decimal | Cost | |
estimatedwork | Double | Estimated Work | |
price | Decimal | Price | |
projecttask | String | -No label- | |
resource | String | Resource | |
resourcegroup | String | Resource Group | |
serviceitem | String | Service Item | |
unitcost | Decimal | Unit Cost | |
unitprice | Decimal | Unit Price |
The projectTaskConstraintType table.
Name | Type | References | Description |
key | String | Key |
The projectTaskPredecessor table.
Name | Type | References | Description |
lagdays | Double | Lag Time | |
predecessor | String | Task | |
successor | String | -No label- |
The projecttemplate table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
allowallresourcesfortasks | Boolean | Display All Resources for Project Task Assignment | |
allowexpenses | Boolean | Allow Expenses | |
allowtime | Boolean | Allow Time Entry | |
billingschedule | String | Billing Schedule | |
entityid | String | Name | |
estimatedcost | Decimal | Estimated Cost | |
estimatedgrossprofit | Decimal | Estimated Gross Profit | |
estimatedgrossprofitpercent | Double | Estimated Gross Profit Percent | |
estimatedlaborcost | Decimal | Estimated Labor Cost | |
estimatedlaborrevenue | Decimal | Estimated Labor Revenue | |
estimatedrevenue | Decimal | Estimated Revenue | |
estimatedtimeoverride | Double | Estimated Work | |
externalid | String | ExternalId | |
forecastchargerunondemand | Boolean | Forecast Charge Run on Demand | |
includecrmtasksintotals | Boolean | Include CRM Task In Job Totals | |
isexempttime | Boolean | Classify Time as Exempt | |
isinactive | Boolean | Inactive | |
isproductivetime | Boolean | Classify Time as Productive | |
isutilizedtime | Boolean | Classify Time as Utilized | |
jobbillingtype | String | Billing Type | |
jobitem | String | Billing Item | |
jobprice | Decimal | Project Price | |
limittimetoassignees | Boolean | Limit Time and Expenses To Resources | |
materializetime | Boolean | Create Planned Time Entries | |
projectmanager | String | Job Manager | |
startdate | Date | Start Date |
The projectTemplateJobResource table.
Name | Type | References | Description |
jobresource | String | Name | |
projecttemplate | String | Project Template |
The ProjectTemplateSubsidiaryRelationship table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
entity | String | Entity | |
externalid | String | External ID | |
isprimarysub | Boolean | Is Primary Subsidiary | |
name | String | -No label- |
The ProjectTimeApprovalType table.
Name | Type | References | Description |
id | Integer | ID |
The promocodediscounttype table.
Name | Type | References | Description |
key | String | key |
The promotioncode table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
applydiscountto | String | Each Customer Can Use The Promotion | |
codepattern | String | Code Pattern | |
description | String | Description | |
discount | String | Discount | |
discounttype | String | Discount Type | |
displaylinediscounts | Boolean | Display Line Discounts | |
enddate | Date | End Date | |
externalid | String | External ID | |
freeshipmethod | String | Shipping Method | |
isinactive | Boolean | Inactive | |
ispublic | Boolean | Available to all Customers | |
location | String | Location | |
name | String | Name | |
promotiontype | String | Promotion Type | |
rate | String | Rate | |
startdate | Date | Start Date | |
usetype | String | Coupon Code Type |
The promotionCodeCampaigns table.
Name | Type | References | Description |
campaigneventname | String | Event Name | |
category | String | Category | |
datesent | Date | Date Sent | |
promotioncode | String | Promotion | |
status | String | Status |
The promotionCodeCouponInstances table.
Name | Type | References | Description |
code | String | Coupon Code | |
datesent | Date | Date Sent | |
promotioncode | String | Promotion | |
recipient | String | Recipient | |
usecount | Integer | Use Count |
The promotionCodeCurrency table.
Name | Type | References | Description |
currency | String | Currency | |
promotioncode | String | Promotion |
The promotionCodeItems table.
Name | Type | References | Description |
item | String | Item |
The promotioncodelocationmap table.
Name | Type | References | Description |
location | String | Location |
The promotionCodePartnerMap table.
Name | Type | References | Description |
partner | String | Partner |
The promotionCodeWebsiteMap table.
Name | Type | References | Description |
promotioncode | String | Promo Code |
The publishedSavedSearch table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
currentaudience | String | Audience | |
disallowdrilldown | Boolean | Disallow Drill Down | |
excludefromsitemap | Boolean | Exclude from Sitemap | |
fullname | String | Full Name | |
isinactive | Boolean | Inactive | |
isonline | Boolean | Display in Web Site | |
itemlistlayout | String | Item List Layout | |
metataghtml | String | Meta Tag HTML | |
name | String | Title | |
pagetitle | String | Page Title | |
parent_category | String | Parent | |
search | String | Search | |
searchkeywords | String | Search Keywords | |
sectiondescription | String | Description | |
sectiondetaileddescription | String | Detailed Description | |
sitemappriority | String | Sitemap Priority | |
storedisplayimage | String | Image | |
storedisplaythumbnail | String | Thumbnail | |
urlcomponent | String | URL Component |
The publishedSavedSearchPresItemPresCategory table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
category | String | -No label- | |
description | String | Item Description | |
filecabinet | String | File Cabinet | |
infoitem | String | Information Item | |
item | String | Item | |
name | String | Name | |
onlineprice | Decimal | Online Price |
The publishedSavedSearchSiteCategoryTagSubstitution table.
Name | Type | References | Description |
section | String | Section | |
value | String | Substitution Value |
The publishedSavedSearchSiteCategoryTranslationPublishedSavedSearch table.
Name | Type | References | Description |
description | String | Brief Description | |
language | String | Language | |
pagetitle | String | Page Title | |
salesdescription | String | Detailed Description | |
section | String | Section |
The purchaseOrderBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The purchaseOrderExpenseMachine table.
Name | Type | References | Description |
account | String | Account | |
category | String | Category | |
class | String | Class | |
customer | String | -No label- | |
department | String | Department | |
expenseitem | Integer | Expense Item | |
grossamt | Decimal | Gross Amount | |
isbillable | Boolean | Billable | |
isclosed | Boolean | Closed | |
line | Integer | Line | |
location | String | Location | |
memo | String | Memo | |
purchaseorder | String | -No label- |
The purchaseOrderShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The purchaseOrderTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The purchaseRequisitionTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The quantityPricingSchedule table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
basediscount | Double | Base Discount | |
isinactive | Boolean | Inactive | |
name | String | Name | |
overallquantitypricingtype | String | Calculate Quantity Discounts | |
unit | String | Units | |
unitstype | String | Units Type | |
usemarginalrates | Boolean | Use Marginal Rates |
The quantityPricingScheduleLevelEdit table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
quantitypricingschedule | String | -No label- |
The quantityPricingScheduleLevelSpreadsheet table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricediscount | Double | Default Discount % | |
quantitypricingschedule | String | -No label- |
The Quota table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
aclass | String | Class | |
asa | Boolean | ALT_SALES | |
date | Date | Date | |
department | String | Department | |
entity | String | Sales Rep | |
id | Integer | Internal ID | |
ismanager | Boolean | Team Quota | |
item | String | Item | |
location | String | Location | |
mamount | Decimal | Amount Monthly | |
mamountquarterly | Decimal | Amount Quarterly | |
savedsearch | String | Saved Search | |
subsidiary | String | Subsidiary | |
targeton | String | Target On | |
total | Decimal | Amount |
The RecentRecord table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
isreport | Boolean | Is Report |
The redeemedAtTransaction table.
Name | Type | References | Description |
snumber | String | Gift Certificate |
The reforecastMethod table.
Name | Type | References | Description |
key | String | key |
The reportingSection table.
Name | Type | References | Description |
name | String | Label |
The requestForQuoteItemItemPricing table.
Name | Type | References | Description |
id [KEY] | String | Internal ID | |
calculatequantitydiscounts | String | Calculate Quantity Discounts | |
externalid | String | ExternalId | |
inputusing | String | Input Using | |
lineid | Integer | -No label- | |
transactionid | Integer | -No label- | |
vendor | Integer | -No label- |
The requestForQuoteItemItemPricingDiscount table.
Name | Type | References | Description |
id [KEY] | Integer | -No label- | |
fromquantity | Double | From Quantity | |
itempricing | Integer | -No label- | |
itempricingrecord | String | -No label- | |
memo | String | Memo | |
percent | Double | Percent Discount | |
quantityordered | Double | Quantity Ordered |
The resourceAllocationType table.
Name | Type | References | Description |
id | Integer | ID |
The resourceGroup table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Description | |
externalid | String | External ID | |
isinactive | Boolean | Inactive |
The resourceGroupMembers table.
Name | Type | References | Description |
group | String | -No label- |
The returnAuthorizationBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The returnAuthorizationPartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The returnAuthorizationSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The returnAuthorizationShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The returnAuthorizationTranPromotion table.
Name | Type | References | Description |
couponcode | String | Coupon Code | |
promocode | String | Promotion | |
promotiontype | String | Promotion Type |
The revenueCommitmentBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The revenueCommitmentPartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The revenueCommitmentReversalBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The revenueCommitmentReversalPartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The revenueCommitmentReversalSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The revenueCommitmentReversalShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The revenueCommitmentReversalTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The revenueCommitmentSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The revenueCommitmentShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The revenueCommitmentTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The revenueContractSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The RevenueElement table.
Name | Type | References | Description |
SourceRecordType | Boolean | SourceRecordType | |
Itemisautoexpand | String | Itemisautoexpand | |
AccountingBook | Integer | AccountingBook | |
Allocatedcontractcostamount | Float | Allocatedcontractcostamount | |
AllocationType | String | AllocationType | |
AlternateQuantity | Float | AlternateQuantity | |
AlternateUnits | Integer | AlternateUnits | |
AlternateUnitsType | Integer | AlternateUnitsType | |
AmortizationEndDate | Date | AmortizationEndDate | |
AmortizationSchedule | Integer | AmortizationSchedule | |
AmortizationStartDate | Date | AmortizationStartDate | |
AmortizationTemplate | Integer | AmortizationTemplate | |
FairValue | Float | FairValue | |
CalculatedAmount | Float | CalculatedAmount | |
Carveinratio | Percent | Carveinratio | |
Carveoutratio | Percent | Carveoutratio | |
Class | Integer | Class | |
Contractcostallocationpct | Percent | Contractcostallocationpct | |
ContractExpenseAcct | Integer | ContractExpenseAcct | |
ContractExpenseOffsetAcct | Integer | ContractExpenseOffsetAcct | |
CostAmortizationAmount | Float | CostAmortizationAmount | |
CreateRevenuePlansOn | Integer | CreateRevenuePlansOn | |
Currency | Integer | Currency | |
Entity | Integer | Entity | |
DeferralAccount | Integer | DeferralAccount | |
DeferContractExpenseAcct | Integer | DeferContractExpenseAcct | |
JournalEntry | Integer | JournalEntry | |
Delivered | Boolean | Delivered | |
Department | Integer | Department | |
DiscountedSalesAmount | Float | DiscountedSalesAmount | |
EffectiveEndDate | Date | EffectiveEndDate | |
EffectiveStartDate | Date | EffectiveStartDate | |
ContingentRevenueHandling | Boolean | ContingentRevenueHandling | |
RevRecEndDate | Date | RevRecEndDate | |
ExchangeRate | Float | ExchangeRate | |
TreatmentOverride | Boolean | TreatmentOverride | |
Expensemigrateadjaccount | Integer | Expensemigrateadjaccount | |
ExternalId | String | ExternalId | |
FairValueOverride | Boolean | FairValueOverride | |
Forecastenddate | Date | Forecastenddate | |
ForecastStartDate | Date | ForecastStartDate | |
Revreclassfxaccount | Integer | Revreclassfxaccount | |
Fullname | String | Fullname | |
Id [KEY] | Integer | Id | |
IsBOMItemType | Boolean | IsBOMItemType | |
IsVsoePrice | Boolean | IsVsoePrice | |
Item | Integer | Item | |
Itemlaborcostamount | Float | Itemlaborcostamount | |
Itemresalecostamount | Float | Itemresalecostamount | |
Labordeferredexpenseacct | Integer | Labordeferredexpenseacct | |
Laborexpenseacct | Integer | Laborexpenseacct | |
LastMergedFromArrangement | Integer | LastMergedFromArrangement | |
LastModifiedDate | Datetime | LastModifiedDate | |
ReturnOfElement | Integer | ReturnOfElement | |
Location | Integer | Location | |
RecordNumber | String | RecordNumber | |
Originalchangeorderdiscamount | Float | Originalchangeorderdiscamount | |
Originalchangeorderquantity | Float | Originalchangeorderquantity | |
CarveOverride | Boolean | CarveOverride | |
ParentBOMElement | Integer | ParentBOMElement | |
PermitDiscount | Boolean | PermitDiscount | |
PostingDiscountApplied | Boolean | PostingDiscountApplied | |
Quantity | Float | Quantity | |
RecognitionAccount | Integer | RecognitionAccount | |
RecognitionTreatment | Integer | RecognitionTreatment | |
ReferenceId | String | ReferenceId | |
Requiresrevenueplanupdate | Boolean | Requiresrevenueplanupdate | |
Residualdiscsalesamount | Currency | Residualdiscsalesamount | |
RevenueAllocationGroup | Integer | RevenueAllocationGroup | |
RevenueAllocationRatio | Percent | RevenueAllocationRatio | |
AllocationAmount | Float | AllocationAmount | |
RevenueArrangement | Integer | RevenueArrangement | |
Revenuemigrateadjaccount | Integer | Revenuemigrateadjaccount | |
Revenueplanstatus | String | Revenueplanstatus | |
RevenueRecognitionRule | Integer | RevenueRecognitionRule | |
RevRecForecastRule | Integer | RevRecForecastRule | |
SalesAmount | Float | SalesAmount | |
Source | String | Source | |
ElementDate | Date | ElementDate | |
RevRecStartDate | Date | RevRecStartDate | |
SubscriptionLine | String | SubscriptionLine | |
Subsidiary | Integer | Subsidiary | |
Carveinamount | Float | Carveinamount | |
Carveoutamount | Float | Carveoutamount | |
TermInDays | Integer | TermInDays | |
TermInMonths | Integer | TermInMonths | |
NewStandardMigrateDate | Date | NewStandardMigrateDate | |
UnbilledReceivableGroup | String | UnbilledReceivableGroup | |
Units | String | Units |
The revenueElementSourceType table.
Name | Type | References | Description |
key | String | key |
The revenuePlanSource table.
Name | Type | References | Description |
key | Integer | key |
The revenuePlanStatus table.
Name | Type | References | Description |
key | String | key |
The revenuePlanType table.
Name | Type | References | Description |
key | String | key |
The revRecAmountSourceType table.
Name | Type | References | Description |
key | String | key |
The revRecChangeImpactType table.
Name | Type | References | Description |
key | String | key |
The revRecDateSourceType table.
Name | Type | References | Description |
key | String | key |
The revRecEventPRevRule table.
Name | Type | References | Description |
key | Decimal | key |
The revRecEventTranLine table.
Name | Type | References | Description |
key | String | key |
The revRecRecurrenceType table.
Name | Type | References | Description |
key | String | key |
The role table.
Name | Type | References | Description |
id | Integer | id | |
restrictbydevice | Boolean | restrictbydevice | |
ispartnerrole | Boolean | ispartnerrole | |
issinglesignononly | Boolean | issinglesignononly | |
accountingbooksoption | String | accountingbooksoption | |
issalesrole | Boolean | issalesrole | |
subsidiaryviewingallowed | Boolean | subsidiaryviewingallowed | |
scriptid | String | scriptid | |
subsidiaryoption | String | subsidiaryoption | |
coreadminpermission | Boolean | coreadminpermission | |
restricttimeandexpenses | Boolean | restricttimeandexpenses | |
accountingbooksrestriction | String | accountingbooksrestriction | |
name | String | name | |
effectivesubsidiaries | String | effectivesubsidiaries | |
issupportrole | Boolean | issupportrole | |
subsidiaryrestriction | String | subsidiaryrestriction | |
iswebserviceonlyrole | Boolean | iswebserviceonlyrole | |
effectiveaccountingbooks | String | effectiveaccountingbooks | |
employeerestriction | String | employeerestriction | |
employeeviewingallowed | Boolean | employeeviewingallowed | |
employeeselectionunrestricted | Boolean | employeeselectionunrestricted | |
centertype | String | centertype |
The salesInvoiced table.
Name | Type | References | Description |
account | String | Account | |
amount | Decimal | Amount | |
amountnet | Decimal | Amount (Net) | |
class | String | Class | |
costestimate | Decimal | Est. Cost | |
department | String | Department | |
employee | String | Sales Rep | |
entity | String | Customer | |
estgrossprofit | Decimal | Est. Gross Profit | |
estgrossprofitpercent | Double | Est. Gross Profit Percent | |
item | String | Item | |
itemcount | Double | Quantity | |
location | String | Location | |
memo | String | Memo | |
partner | String | Partner | |
subsidiary | String | Subsidiary | |
trandate | Date | Date | |
tranline | String | Transaction Line | |
transaction | String | Transaction | |
type | String | Transaction Type |
The salesOrderBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The salesOrdered table.
Name | Type | References | Description |
account | String | Account | |
amount | Decimal | Amount | |
amountnet | Decimal | Amount (Net) | |
class | String | Class | |
costestimate | Decimal | Est. Cost | |
department | String | Department | |
employee | String | Sales Rep | |
entity | String | Customer | |
estgrossprofit | Decimal | Est. Gross Profit | |
estgrossprofitpercent | Double | Est. Gross Profit Percent | |
item | String | Item | |
itemcount | Double | Quantity | |
location | String | Location | |
memo | String | Memo | |
partner | String | Partner | |
subsidiary | String | Subsidiary | |
trandate | Date | Date | |
tranline | String | Transaction Line | |
transaction | String | Transaction | |
type | String | Transaction Type |
The salesOrderGiftCertRedemption table.
Name | Type | References | Description |
authcode | String | Gift Certificate | |
authcodeapplied | Decimal | Amount Applied |
The salesOrderItemShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The salesOrderLinkedTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The salesOrderPartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The salesOrderSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The salesOrderShipGroup table.
Name | Type | References | Description |
destinationaddress | String | Ship To | |
doc | String | -No label- | |
handlingrate | Decimal | Handling Rate | |
shippingmethod | String | Ship Via | |
shippingrate | Decimal | Shipping Rate | |
sourceaddress | String | Ship From | |
uniquekey | Integer | Unique Key |
The salesOrderShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The salesOrderTranPromotion table.
Name | Type | References | Description |
couponcode | String | Coupon Code | |
promocode | String | Promotion | |
promotiontype | String | Promotion Type |
The salestaxitem table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Description | |
isinactive | Boolean | Inactive |
The schedulingMethod table.
Name | Type | References | Description |
defaultname | String | Default Name | |
inactive | Boolean | Is Inactive | |
key | String | key | |
name | String | Name |
The scriptButton table.
Name | Type | References | Description |
buttonfunction | String | Function | |
buttonlabel | String | Label | |
owner | String | Owner |
The scriptEventType table.
Name | Type | References | Description |
id | String | ID |
The scriptExecutionContextMap table.
Name | Type | References | Description |
executioncontext | String | -No label- |
The scriptExecutionContextMapClient table.
Name | Type | References | Description |
executioncontext | String | -No label- |
The scriptExecutionContextMapUserEvent table.
Name | Type | References | Description |
executioncontext | String | -No label- |
The scriptFieldType table.
Name | Type | References | Description |
id | String | ID |
The scriptLocalizationContextMap table.
Name | Type | References | Description |
localizationcontext | String | -No label- |
The scriptLocalizationContextMapClient table.
Name | Type | References | Description |
localizationcontext | String | -No label- |
The scriptMethods table.
Name | Type | References | Description |
id [KEY] | String | ID | |
description | String | Description | |
method | String | Method | |
owner | String | Owner |
The scriptNoteType table.
Name | Type | References | Description |
id | String | Name |
The scriptPortletType table.
Name | Type | References | Description |
skey | String | ID |
The scriptStatus table.
Name | Type | References | Description |
id | String | ID |
The scriptType table.
Name | Type | References | Description |
id | String | ID |
The scriptVersion table.
Name | Type | References | Description |
id | String | ID |
The searchCampaign table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
audience | String | Audience | |
basecost | Decimal | Cost | |
campaignid | String | ID | |
category | String | Category | |
convcostpercustomer | Decimal | Cost per Purchaser | |
conversions | Integer | Number of Purchasers | |
cost | Decimal | Total Cost | |
costpercustomer | Decimal | Cost Per Lead | |
enddate | Date | End Date | |
expectedrevenue | Decimal | Projected Income | |
externalid | String | External ID | |
family | String | Family | |
isdefaultleadsource | Boolean | Default Lead Source | |
isinactive | Boolean | Inactive | |
issalescampaign | Boolean | Sales Campaign | |
item | String | Item | |
keyword | String | Keyword | |
leadsgenerated | Integer | Leads Generated | |
message | String | Description | |
offer | String | Offer | |
owner | String | Campaign Manager | |
ownerrole | String | Manager Role | |
profit | Decimal | Profit | |
promotioncode | String | Promotion | |
roi | Double | Return on Investment | |
searchengine | String | Search Engine | |
startdate | Date | Start Date | |
title | String | Title | |
totalrevenue | Decimal | Revenue | |
uniquevisitors | Integer | Unique Visitors |
The searchCampaignItem table.
Name | Type | References | Description |
campaign | String | -No label- |
The sentEmail table.
Name | Type | References | Description |
bccrecipients | String | BCC Recipients | |
body | String | Body | |
ccrecipients | String | CC Recipients | |
dkimalignmentok | Boolean | DKIM Alignment OK | |
dkimrecord | String | DKIM Record | |
dkimsignatureok | Boolean | DKIM Signature OK | |
dmarccompliant | Boolean | DMARC Compliant | |
dmarcrecord | String | DMARC Record | |
emailmessageid | String | Email Message ID | |
enveloperecipients | String | Envelope Recipients | |
failurereason | String | Failure Reason | |
hostname | String | Host Name | |
key | Integer | Internal ID | |
logdate | Date | Log Date | |
machine | String | Machine | |
mailingid | String | Mailing ID | |
messageid | String | Message-ID | |
netsuiteheader | String | NetSuite Header | |
originalenveloperecipients | String | Original Envelope Recipients | |
replyto | String | Reply to Email Address | |
sentdate | Date | Sent Date | |
spfok | Boolean | SPF OK | |
status | String | Status | |
subject | String | Subject | |
torecipients | String | To Recipients |
The sentemailrecipient table.
Name | Type | References | Description |
id [KEY] | String | -No label- | |
key | Integer | Internal ID | |
recipient | String | Recipient |
The serviceItemBillingRate table.
Name | Type | References | Description |
billingclass | String | Billing Class | |
rate | Decimal | Base Price |
The serviceItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The serviceItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The serviceItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The serviceItemItemVendor table.
Name | Type | References | Description |
item | String | Item | |
preferredvendor | Boolean | Preferred | |
purchaseprice | String | Purchase Price | |
schedule | String | Schedule | |
subsidiary | String | Subsidiary | |
vendor | String | Vendor | |
vendorcode | String | Code | |
vendorcostentered | Decimal | Price (Entered) | |
vendorcurrencyid | String | Currency |
The serviceItemPresentationItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
description | String | Item Description | |
onlineprice | Decimal | Online Price | |
presentationitem | String | Related Item | |
presitemid | Integer | Internal ID | |
superitem | String | -No label- |
The serviceItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The serviceItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The serviceItemSiteCategory table.
Name | Type | References | Description |
categorydescription | String | Description | |
isdefault | Boolean | Preferred Category | |
item | String | -No label- | |
website | String | Site |
The serviceItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The serviceItemTaskTemplate table.
Name | Type | References | Description |
item | String | -No label- | |
taskduration | Double | Effort (hours) | |
taskstartoffset | Integer | Start Date Offset |
The serviceItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The servicePurchaseItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The servicePurchaseItemItemVendor table.
Name | Type | References | Description |
item | String | Item | |
preferredvendor | Boolean | Preferred | |
purchaseprice | String | Purchase Price | |
schedule | String | Schedule | |
subsidiary | String | Subsidiary | |
vendor | String | Vendor | |
vendorcode | String | Code | |
vendorcostentered | Decimal | Price (Entered) | |
vendorcurrencyid | String | Currency |
The servicePurchaseItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The servicePurchaseItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The serviceResaleItemBillingRate table.
Name | Type | References | Description |
billingclass | String | Billing Class | |
rate | Decimal | Base Price |
The serviceResaleItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The serviceResaleItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The serviceResaleItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The serviceResaleItemItemVendor table.
Name | Type | References | Description |
item | String | Item | |
preferredvendor | Boolean | Preferred | |
purchaseprice | String | Purchase Price | |
schedule | String | Schedule | |
subsidiary | String | Subsidiary | |
vendor | String | Vendor | |
vendorcode | String | Code | |
vendorcostentered | Decimal | Price (Entered) | |
vendorcurrencyid | String | Currency |
The serviceResaleItemPresentationItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
description | String | Item Description | |
onlineprice | Decimal | Online Price | |
presentationitem | String | Related Item | |
presitemid | Integer | Internal ID | |
superitem | String | -No label- |
The serviceResaleItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The serviceResaleItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The serviceResaleItemSiteCategory table.
Name | Type | References | Description |
categorydescription | String | Description | |
isdefault | Boolean | Preferred Category | |
item | String | -No label- | |
website | String | Site |
The serviceResaleItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The serviceResaleItemTaskTemplate table.
Name | Type | References | Description |
item | String | -No label- | |
taskduration | Double | Effort (hours) | |
taskstartoffset | Integer | Start Date Offset |
The serviceResaleItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The serviceSaleItemItemAccountingBookDetail table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
item | String | -No label- |
The serviceSaleItemItemQuantityPricingDiscount table.
Name | Type | References | Description |
leveldiscount | Double | Discount | |
levelpricename | String | Price Level | |
parentitem | String | Item |
The serviceSaleItemItemQuantityPricingLevel table.
Name | Type | References | Description |
item | String | Item | |
leveldiscount | Double | Discount |
The serviceSaleItemPresentationItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
description | String | Item Description | |
onlineprice | Decimal | Online Price | |
presentationitem | String | Related Item | |
presitemid | Integer | Internal ID | |
superitem | String | -No label- |
The serviceSaleItemPrice table.
Name | Type | References | Description |
currencypage | String | Currency | |
discountdisplay | Double | Default Discount % | |
isinactive | Boolean | Inactive | |
item | String | Item | |
price | Decimal | Amount |
The serviceSaleItemQuantity table.
Name | Type | References | Description |
item | String | Item | |
maxcount | Integer | Maximum Count | |
mincount | Integer | Minimum Count |
The serviceSaleItemSiteCategory table.
Name | Type | References | Description |
categorydescription | String | Description | |
isdefault | Boolean | Preferred Category | |
item | String | -No label- | |
website | String | Site |
The serviceSaleItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The serviceSaleItemTaskTemplate table.
Name | Type | References | Description |
item | String | -No label- | |
taskduration | Double | Effort (hours) | |
taskstartoffset | Integer | Start Date Offset |
The serviceSaleItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
storedescription | String | Store Description |
The ShipGroup table.
Name | Type | References | Description |
destinationaddress | String | Ship To | |
doc | String | -No label- | |
handlingrate | Decimal | Handling Rate | |
shippingmethod | String | Ship Via | |
shippingrate | Decimal | Shipping Rate | |
sourceaddress | String | Ship From | |
uniquekey | Integer | Unique Key |
The shipitem table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
account | String | Account (Shipping) | |
accounthandling | String | Account (Handling) | |
costbasis | String | Shipping Rate | |
countries | String | Countries | |
description | String | Description | |
discountrate | Double | Discount Rate | |
displayname | String | Display Name/Code | |
doiftotal | Boolean | Web Site Visibility Limited by Total | |
doiftotalamt | Decimal | Web Site Visibility By Total Limit | |
doiftotaloperator | String | Web Site Visibility By Total Type | |
doifweightamt | Double | Web Site Visibility By Weight Limit | |
doifweightoperator | String | Web Site Visibility By Weight Type | |
doifweightunit | String | Web Site Visibility By Weight Unit | |
excludecountries | Boolean | Excluded For Countries | |
excludesites | Boolean | Excluded For Sites | |
externalid | String | ExternalId | |
fedexonerate | Boolean | FedEx One Rateツョ | |
freeifordertotalisoveramount | Decimal | Free If Total Over Amount | |
handlingaspercentageoftotal | Double | Handling Rate As Percent of Total | |
handlingbyweightamount | Decimal | Handling Rate By Weight | |
handlingbyweightperquantity | Double | Handling Rate By Weight Per | |
handlingbyweightperunit | String | Handling Rate By Weight Unit | |
handlingcost | String | Handling Rate | |
handlingflatrateamount | Decimal | Handling Flat Rate | |
handlingperitemamount | Decimal | Handling Rate By Item | |
handlingtablechargeby | String | Handling Rate Table Type | |
handlingtableuom | String | Handling Rate Table Unit | |
hasmaximumshippingcost | Boolean | Has Maximum Shipping Cost | |
hasminimumshippingcost | Boolean | Has Minimum Shipping Cost | |
integrationservicecode | String | Shipping Label Integration | |
invt_dispname | String | Display Name | |
isfreeifordertotalisover | Boolean | Is Free If Total Over | |
ishandlingbyweightbracketed | Boolean | Handling Rate By Weight Bracketed | |
isinactive | Boolean | Inactive | |
isonline | Boolean | Display in Web Site | |
isshippingbyweightbracketed | Boolean | Shipping Rate By Weight Bracketed | |
itemid | String | Ship Name | |
maximumshippingcost | Decimal | Maximum Shipping Cost | |
minimumshippingcost | Decimal | Minimum Shipping Cost | |
needsallfreeshippingitems | Boolean | All items must be purchased | |
omitpackaging | Boolean | Omit packaging | |
returnservicecode | String | Return Label Integration | |
servicecode | String | Shipper Service Code | |
shippingaspercentageoftotal | Double | Shipping Rate As Percent of Total | |
shippingbyweightamount | Decimal | Shipping Rate By Weight | |
shippingbyweightperquantity | Double | Shipping Rate By Weight Per | |
shippingbyweightperunit | String | Shipping Rate By Weight Unit | |
shippingflatrateamount | Decimal | Shipping Flat Rate | |
shippingperitemamount | Decimal | Shipping Rate By Item | |
shippingtablechargeby | String | Shipping Rate Table Type | |
shippingtableuom | String | Shipping Rate Table Unit | |
site | String | Limit To Sites | |
states | String | States | |
subsidiary | String | Subsidiaries |
The ShipItemFreeShippingItem table.
Name | Type | References | Description |
item | String | Item | |
shipitem | String | -No label- |
The ShipItemHandlingRate table.
Name | Type | References | Description |
handlingtablecharge | Decimal | Charge | |
shipitem | String | -No label- |
The ShipItemShippingRate table.
Name | Type | References | Description |
shipitem | String | -No label- | |
shippingtablecharge | Decimal | Charge |
The ShipItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
language | String | Language |
The ShipmentPackage table.
Name | Type | References | Description |
admissibilitypackagetype | String | Admissibility Package Type | |
alcoholrecipienttype | String | Alcohol Recipient Type | |
authorizationnumber | String | Authorization Number | |
carrierpackaging | String | Carrier Packaging | |
cashondeliveryamount | Decimal | Cash On Delivery Amount | |
cashondeliverymethod | String | Cash On Delivery Method | |
codothercharge | Decimal | C.O.D. Other Charge | |
contentsdescription | String | Contents Description | |
declaredvalue | Decimal | Declared Value | |
deliveryconfirmation | String | Delivery Confirmation | |
dimensionunit | String | Dimension Unit | |
dryiceweight | Double | Dry Ice Weight | |
freightchargeaddedtocod | String | Freight Charge Added To C.O.D. | |
hasadditionalhandling | Boolean | Has Additional Handling | |
hascashondelivery | Boolean | Has Cash On Delivery | |
hasdeclaredvalue | Boolean | Has Declared Value | |
hasinsuredvalue | Boolean | Has Insured Value | |
height | Integer | Height | |
insuredvalue | Decimal | Insured Value | |
isalcohol | Boolean | Is Alcohol | |
isnonhazardouslibatteries | Boolean | Is Non Hazardous Lithium Batteries | |
isnonstandardcontainer | Boolean | Is Non Standard Container | |
itemfulfillment | String | Item Fulfillment | |
length | Integer | Length | |
priorityalertcontent | String | Content Description | |
priorityalerttype | String | Priority Alert Type | |
reference | String | Reference | |
reference2 | String | Reference #2 | |
sequencenumber | Integer | Sequence Number | |
signatureoption | String | FedExツョ Delivery Signature Options | |
signaturerelease | String | Signature Release | |
trackingnumber | String | TrackingNumber | |
weightinlbs | Double | Weight in Pounds | |
width | Integer | Width |
The ShipperPackageTypeCode table.
Name | Type | References | Description |
code | String | Code | |
inactive | Boolean | Is Inactive | |
key | Integer | ID | |
name | String | Name | |
shipper | String | Carrier |
The shippingMethodRuleRelation table.
Name | Type | References | Description |
item | String | Shipping Item | |
parent | String | -No label- |
The ShippingPackage table.
Name | Type | References | Description |
pkgdefault | Boolean | Default | |
pkgheight | Integer | Height | |
pkgkey | Integer | ID | |
pkglength | Integer | Length | |
pkgmaxitems | Integer | Maximum Items | |
pkgname | String | Name | |
pkgweight | Double | Weight |
The shoppingcart table.
Name | Type | References | Description |
internalid [KEY] | Integer | Cart ID | |
customer | String | Customer | |
datecreated | Date | Date Created | |
datemodified | Date | Date Last Item Added | |
subtotal | Decimal | Subtotal |
The ShoppingCartLine table.
Name | Type | References | Description |
cart | String | Shopping Cart | |
item | String | Item Name | |
lastaddtocart | Date | Last Added | |
qty | Integer | Item Count | |
unitprice | Decimal | Price Per Item |
The siteAudience table.
Name | Type | References | Description |
id [KEY] | Integer | ID | |
allcustomers | Boolean | All Customers | |
allemployees | Boolean | All Employees | |
allpartners | Boolean | All Partners | |
allroles | Boolean | All Roles | |
allvendors | Boolean | All Vendors | |
audcustomer | String | Customers | |
auddepartment | String | Departments | |
audemployee | String | Employees | |
audgroup | String | Groups | |
audpartner | String | Partners | |
audslctrole | String | Roles | |
audsubsidiary | String | Subsidiaries | |
isonline | Boolean | Display in Web Site |
The siteAudienceCustomer table.
Name | Type | References | Description |
audience | String | -No label- |
The siteAudienceDepartment table.
Name | Type | References | Description |
audience | String | -No label- |
The siteAudienceEmployee table.
Name | Type | References | Description |
audience | String | -No label- |
The siteAudienceGroup table.
Name | Type | References | Description |
audience | String | -No label- |
The siteAudiencePartner table.
Name | Type | References | Description |
audience | String | -No label- |
The siteAudienceRole table.
Name | Type | References | Description |
audience | String | -No label- |
The siteAudienceSubsidiary table.
Name | Type | References | Description |
audience | String | -No label- |
The siteAudienceVendor table.
Name | Type | References | Description |
audience | String | -No label- |
The sitecategory table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
categorylistlayout | String | Category List Layout | |
correlateditemslistlayout | String | Upsell Items List Layout | |
currentaudience | String | Audience | |
excludefromsitemap | Boolean | Exclude from Sitemap | |
externalid | String | External ID | |
fullname | String | Full Name | |
isinactive | Boolean | Inactive | |
isonline | Boolean | Display in Web Site | |
itemlistlayout | String | Item List Layout | |
metataghtml | String | Meta Tag HTML | |
name | String | Category | |
pagetitle | String | Page Title | |
parent | String | Parent | |
relateditemslistlayout | String | Related Items List Layout | |
searchkeywords | String | Search Keywords | |
sectiondescription | String | Description | |
sectiondetaileddescription | String | Detailed Description | |
sitecategorytype | String | Category Type | |
sitemappriority | String | Sitemap Priority | |
storedisplayimage | String | Image | |
storedisplaythumbnail | String | Thumbnail | |
urlcomponent | String | URL Component |
The siteCategoryPresItemPresCategory table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
category | String | -No label- | |
description | String | Item Description | |
filecabinet | String | File Cabinet | |
infoitem | String | Information Item | |
item | String | Item | |
name | String | Name | |
onlineprice | Decimal | Online Price |
The siteCategoryTagSubstitution table.
Name | Type | References | Description |
section | String | Section | |
value | String | Substitution Value |
The siteCategoryTranslation table.
Name | Type | References | Description |
description | String | Brief Description / Greeting | |
displayname | String | Name / Title / Category | |
language | String | Language | |
pagetitle | String | Page Title | |
salesdescription | String | Detailed Description / Message |
The siteCategoryType table.
Name | Type | References | Description |
key | String | key |
The sitetheme table.
Name | Type | References | Description |
key | Integer | key |
The softDescriptor table.
Name | Type | References | Description |
key | Integer | key |
The soldOnTransaction table.
Name | Type | References | Description |
snumber | String | Gift Certificate |
The solution table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
assigned | String | Assigned To | |
displayonline | Boolean | Display Online | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
longdescription | String | Description | |
message | String | Abstract | |
solutions | String | Solutions | |
status | String | Status | |
title | String | Title |
The solutionSolutionMap table.
Name | Type | References | Description |
relatedsolution | String | -No label- |
The solutiontopicmap table.
Name | Type | References | Description |
solution | String | -No label- |
The specialAccountType table.
Name | Type | References | Description |
id | String | ID |
The standardcostdefaulttype table.
Name | Type | References | Description |
key | String | Internal ID |
The standardCostVersion table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
inventorystandardcost | String | Inventory Standard Cost | |
location | String | Locations | |
name | String | Name |
The standardCostVersionLocationMap table.
Name | Type | References | Description |
location | String | -No label- |
The statisticalScheduleDetail table.
Name | Type | References | Description |
class | String | Class | |
currentbalance | Integer | Current Balance | |
date | Date | Date | |
department | String | Department | |
difference | Integer | Difference | |
entity | String | Name | |
location | String | Location | |
parentschedule | String | Parent Schedule | |
previousbalance | Integer | Previous Balance | |
runid | Integer | Run ID | |
statisticaljournal | String | Statistical Journal |
The stockBehaviorType table.
Name | Type | References | Description |
key | String | key | |
name | String | Name |
The storeTab table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
categorylistlayout | String | Category List Layout | |
correlateditemslistlayout | String | Upsell Items List Layout | |
currentaudience | String | Audience | |
excludefromsitemap | Boolean | Exclude from Sitemap | |
isinactive | Boolean | Inactive | |
isonline | Boolean | Display in Web Site | |
itemlistlayout | String | Item List Layout | |
limitedsearch | Boolean | Limit search for the section | |
mediaitem | String | Web Site Page | |
metataghtml | String | Meta Tag HTML | |
mstoreflash | String | Image / Flashツョ File | |
orderconfirmationmessage | String | Order Confirmation Message | |
pagetitle | String | Page Title | |
placeordermessage | String | Place Order Page Message | |
relateditemslistlayout | String | Related Items List Layout | |
sectiondescription | String | Greeting | |
sectiondetaileddescription | String | Message | |
site | String | Web Site | |
sitemappriority | String | Sitemap Priority | |
tabname | String | Label | |
tabtype | String | Tab Type | |
urlcomponent | String | URL Component |
The storeTabPresItem table.
Name | Type | References | Description |
baseprice | Decimal | Base Price | |
category | String | -No label- | |
description | String | Item Description | |
filecabinet | String | File Cabinet | |
infoitem | String | Information Item | |
item | String | Item | |
name | String | Name | |
onlineprice | Decimal | Online Price |
The storeTabSiteCategoryTranslationStoreTab table.
Name | Type | References | Description |
description | String | Greeting | |
displayname | String | Name | |
language | String | Language | |
pagetitle | String | Page Title | |
salesdescription | String | Message |
The storeTabTagSubstitution table.
Name | Type | References | Description |
section | String | Section | |
value | String | Substitution Value |
The storeTabType table.
Name | Type | References | Description |
name | String | Name |
The sublist table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
assemblybuild | Boolean | Assembly Build | |
billofmaterials | Boolean | Assembly/Bill of Materials | |
call | Boolean | Call | |
campaign | Boolean | Campaign | |
contact | Boolean | Contact | |
customer | Boolean | Customer | |
customtransactions | String | Custom Transactions | |
deposit | Boolean | Deposit | |
depositapplication | Boolean | Deposit Application | |
employee | Boolean | Employee | |
event | Boolean | Event | |
expenseitem | Boolean | Expense Item | |
expensereport | Boolean | Expense Report | |
fulfillmentrequest | Boolean | Fulfillment Request | |
inventoryadjustment | Boolean | Inventory Adjustments | |
inventoryitem | Boolean | Inventory Item | |
issue | Boolean | Issue | |
itemfulfillment | Boolean | Item Fulfillment | |
itemgroup | Boolean | Group | |
itemreceipt | Boolean | Item Receipt | |
job | Boolean | Job | |
journal | Boolean | Journal | |
kit | Boolean | Kit/Package | |
label | String | Label | |
noninventoryitem | Boolean | Non-inventory Item | |
opportunity | Boolean | Opportunity | |
othercharge | Boolean | Other Charge | |
partner | Boolean | Partner | |
payment | Boolean | Payment | |
purchase | Boolean | Purchase | |
sale | Boolean | Sale | |
savedsearch | String | Search | |
scriptid | String | Script ID | |
service | Boolean | Service | |
solution | Boolean | Solution | |
storepickup | Boolean | Store Pickup Fulfillment | |
sublisttype | String | Type | |
task | Boolean | Task | |
vendor | Boolean | Vendor |
The subscriptionChangeOrderNewLine table.
Name | Type | References | Description |
discount | Double | Discount | |
include | String | Include | |
itemdisplay | String | Item | |
multiplierline | Integer | Included Quantity Multiplier | |
priceplan | String | Price Plan | |
quantity | Double | Quantity | |
required | String | Required | |
sequence | String | Line Number | |
subscriptionchangeorder | String | -No label- | |
subscriptionlinetype | String | Line Type |
The subscriptionLineStatus table.
Name | Type | References | Description |
key | String | ID |
The subscriptionMessageType table.
Name | Type | References | Description |
key | String | key |
The subscriptionPlanSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The subscriptiontermunit table.
Name | Type | References | Description |
id | String | ID |
The subsidiary table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
country | String | Country | |
currency | String | Currency | |
dropdownstate | String | State/Province | |
edition | String | Edition | |
String | Return Email Address | ||
externalid | String | External ID | |
fax | String | Fax | |
federalidnumber | String | Employer Identification Number (EIN) | |
fiscalcalendar | String | Fiscal Calendar | |
fullname | String | Full Name | |
iselimination | Boolean | Elimination | |
isinactive | Boolean | Subsidiary is Inactive | |
languagelocale | String | Language | |
legalname | String | Legal Name | |
mainaddress | String | Address | |
name | String | Name | |
parent | String | SubSubsidiary of | |
purchaseorderamount | Double | Vendor Bill - Purchase Order Amount Tolerance | |
purchaseorderquantity | Double | Vendor Bill - Purchase Order Quantity Tolerance | |
purchaseorderquantitydiff | Double | Vendor Bill - Purchase Order Quantity Difference | |
receiptamount | Double | Vendor Bill - Item Receipt Amount Tolerance | |
receiptquantity | Double | Vendor Bill - Item Receipt Quantity Tolerance | |
receiptquantitydiff | Double | Vendor Bill - Item Receipt Quantity Difference | |
returnaddress | String | Return Address | |
shippingaddress | String | Shipping Address | |
showsubsidiaryname | Boolean | Always Display Subsidiary Name | |
ssnortin | String | ||
state | String | State | |
state1taxnumber | String | ACN | |
tranprefix | String | Document Number Prefix |
The SubsidiaryMainAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The SubsidiaryReturnAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The SubsidiaryShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The subsidiaryTaxRegistration table.
Name | Type | References | Description |
subsidiary | String | Subsidiary |
The SUBSIDIARYTRANSLATION table.
Name | Type | References | Description |
language | String | Language | |
locale | String | Locale | |
name | String | Name |
The subtotalItemSubsidiaryMap table.
Name | Type | References | Description |
item | String | -No label- |
The subtotalItemTranslation table.
Name | Type | References | Description |
displayname | String | Display Name | |
featureddescription | String | Featured Description | |
item | String | Item | |
language | String | Language | |
nopricemessage | String | No Price Message | |
outofstockmessage | String | Out Of Stock Message | |
pagetitle | String | Page Title | |
salesdescription | String | Sales Description | |
specialsdescription | String | Special Description | |
storedescription | String | Store Description | |
storedetaileddescription | String | Detailed Description |
The SuiteScriptDetail table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
apiversion | String | API Version | |
bundle | String | Bundle | |
date | Date | Date | |
emails | Integer | Emails | |
entity | String | Entity | |
executiontime | Integer | Execution Time | |
faxes | Integer | Sent Fax Count | |
files | Integer | Files | |
httpmethod | String | Http Method | |
instructions | Integer | Instruction Count | |
ranasadmin | Boolean | Ran As Admin | |
recordid | String | Record ID | |
records | Integer | Records | |
recordtypeid | String | Record Type | |
role | String | Role | |
script | String | Script | |
scriptcontext | String | Script Context | |
scriptdeployment | String | Script Deployment | |
scripttype | String | Script Type | |
searches | Integer | Searches | |
sessionid | String | Session ID | |
threadid | Integer | Thread Id | |
totaltime | Integer | Total Time | |
triggers | Integer | Cascaded Before/After Submit Script Count | |
urlrequests | Integer | Outbound URL Requests |
The supplychainsnapshot table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
daterun | Date | Date Run | |
externalid | String | External ID | |
futurehorizon | Integer | Supply Chain Future Horizon | |
futurehorizondate | Date | Supply Chain Future Horizon Date | |
item | String | Item | |
memo | String | Memo | |
replenishmentmethod | String | Replenishment Method | |
stockunit | String | Stock Unit |
The supplyChainSnapshotDetails table.
Name | Type | References | Description |
date | Date | Date | |
dayspastdue | String | Days Past Due | |
demandquantity | Double | Demand Quantity | |
entity | String | Entity | |
invbalance | Double | Inventory Balance | |
item | String | Item | |
locationbase | String | Location | |
originaltransactiondate | String | Originating Transaction Date | |
otherdemandquantity | Double | Other Demand Quantity | |
othersupplyquantity | Double | Other Supply Quantity | |
purchaserrderquantity | Double | Purchase Order Quantity | |
replenishmentmethod | String | Replenishment Method | |
salesorderquantity | Double | Sales Order Quantity | |
sourcetype | String | Source Type | |
status | String | Status | |
subsidiary | String | Subsidiary | |
supplychainsnapshot | String | -No label- | |
supplyquantity | Double | Supply Quantity | |
transaction | String | Transaction | |
transferorderquantity | Double | Transfer Order Quantity | |
trantype | String | Transaction Type |
The supplychainsnapshotsimulation table.
Name | Type | References | Description |
id [KEY] | Integer | Simulation Number | |
demandlocation | String | Demand Location | |
demandlocationdate | Date | Demand Date | |
demandlocationsubsidiary | String | Demand Subsidiary | |
docnumcreatedfrom | String | Document Created From | |
externalid | String | External ID | |
isforreschedule | Boolean | For Reschedule | |
itemnamenumber | String | Item Name/Number | |
linecreatedfrom | Integer | Line Created From | |
memo | String | Memo | |
owner | String | Owner | |
quantity | Double | Quantity | |
status | String | Status | |
supplylocation | String | Supply Location | |
supplylocationdate | Date | Supply Date | |
supplylocationsubsidiary | String | Supply Subsidiary |
The SupplyReplenishmentType table.
Name | Type | References | Description |
key | String | Internal ID |
The supportcase table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
assigned | String | Assigned To | |
casenumber | String | ID | |
company | String | Company | |
datecreated | Date | Creation Date/Time | |
escalateto | String | Escalate To | |
externalid | String | External ID | |
helpdesk | Boolean | Help Desk | |
initialresponsetime | Double | Initial Response Time | |
isinactive | Boolean | Inactive | |
issue | String | Case Issue | |
issues | String | Issues | |
item | String | Item | |
lastcustomermessagereceived | Date | Last Customer Message Received | |
origin | String | Origin | |
priority | String | Priority | |
profile | String | Profile | |
serialnumber | String | Serial/Lot Number | |
solutions | String | Solutions | |
startdate | Date | Incident Date | |
status | String | Status | |
subsidiary | String | Subsidiary | |
supportfirstreply | Date | Support First Reply | |
timeelapsed | Double | Time Elapsed | |
timeonhold | Double | Time On Hold | |
timeopen | Double | Time Open | |
timetoassign | Double | Time To Assign | |
timetoclose | Double | Time To Close | |
title | String | Subject |
The supportCaseEscalateHist table.
Name | Type | References | Description |
datetime | Date | Date/Time | |
fromentity | String | From | |
supportcase | String | Case | |
territory | String | Escalation Assignment | |
toentity | String | Action |
The supportCaseEscalateToMap table.
Name | Type | References | Description |
supportcase | String | Case |
The supportCaseMediaItemMap table.
Name | Type | References | Description |
supportcase | String | Case |
The supportCaseSolutionMap table.
Name | Type | References | Description |
supportcase | String | Case |
The SystemEmailTemplate table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
content | String | Content | |
description | String | Description | |
isautoconverted | Boolean | Automatically Converted Template | |
isinactive | Boolean | Inactive | |
isprivate | Boolean | Private | |
mediaitem | String | Media Item | |
name | String | Name | |
subject | String | Subject |
The SystemNote table.
Name | Type | References | Description |
context | String | Context | |
date | Date | Date | |
field | String | Field | |
name | String | Name | |
newvalue | String | New Value | |
oldvalue | String | Old Value | |
record | String | Record | |
recordid | Integer | Record ID | |
recordtypeid | String | Record Type | |
role | String | Role |
The SystemNote2 table.
Name | Type | References | Description |
actor | String | Author | |
context | String | Context | |
datefrom | Date | Date From | |
dateto | Date | Date to | |
elementfullname | String | Element Full Name | |
instancename | String | Object Name | |
locale | String | Locale | |
objectactiontype | String | Object Action Type | |
objectelementkey | Integer | Object Element Key | |
objectelementname | String | Object Element Name | |
objectid | Integer | Object Id | |
objectparent | Integer | Parent Object Id | |
objectroot | Integer | Root Object Id | |
role | Integer | Role ID | |
rolename | String | Role | |
rootinstancename | String | Root Object Name | |
rootobjectbkey1 | Boolean | Root Object - Boolean Key #1 | |
rootobjectbkey2 | Boolean | Root Object - Boolean Key #2 | |
rootobjectdkey1 | Date | Root Object - Date Key | |
rootobjectelementkey | Integer | Root Object Element Key | |
rootobjectelementname | String | Root Object Element Name | |
rootobjectnkey1 | Integer | Root Object - Numeric Key #1 | |
rootobjectnkey2 | Integer | Root Object - Numeric Key #2 | |
rootobjectnkey3 | Integer | Root Object - Numeric Key #3 | |
rootobjectnkey4 | Integer | Root Object - Numeric Key #4 | |
rootobjectskey1 | String | Root Object - String Key #1 | |
rootobjectskey3 | String | Root Object - String Key #3 | |
runid | Integer | Run ID | |
timestamputc | Date | Date Changed | |
valueactiontype | String | Value Action Type | |
valuedatatype | String | Value Data Type | |
valueelementkey | Integer | Value Element Key | |
valuenewboolean | Boolean | New Boolean Value | |
valuenewdate | Date | New Date Value | |
valuenewdisplayname | String | New Display Value | |
valuenewnumber | Decimal | New Numeric Value | |
valuenewreference | Integer | New Reference - Part 1 | |
valuenewreference2 | Integer | New Reference - Part 2 | |
valuenewstring | String | New String Value | |
valueoldboolean | Boolean | Old Boolean Value | |
valueolddate | Date | Old Date Value | |
valueolddisplayname | String | Old Display Value | |
valueoldnumber | Decimal | Old Numeric Value | |
valueoldreference | Integer | Old Reference - Part 1 | |
valueoldreference2 | Integer | Old Reference - Part 2 | |
valueoldstring | String | Old String Value |
The systemNoteContextType table.
Name | Type | References | Description |
key | String | key |
The SystemNoteField table.
Name | Type | References | Description |
key | String | key |
The tag table.
Name | Type | References | Description |
defaultname | String | Default Name | |
defaultvalue | String | Default Value | |
feature | String | Feature | |
isinactive | Boolean | Inactive | |
key | String | key |
The task table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accesslevel | Boolean | Private | |
assigned | String | Assigned To | |
bom | String | Bill of Materials | |
bomrevision | String | Bill of Materials Revision | |
company | String | Company | |
completeddate | Date | Date Completed | |
contact | String | Contact | |
createddate | Date | Date Created | |
duedate | Date | Due Date | |
externalid | String | External ID | |
lastmodifieddate | Date | Last Modified Date | |
message | String | Comments | |
mfgrouting | String | Manufacturing Routing | |
milestone | String | Milestone | |
order | String | Insert Before | |
owner | String | Created By | |
parent | String | Child Of | |
percentcomplete | Double | Percent Complete | |
percenttimecomplete | Double | Percent Complete (Time) | |
priority | String | Priority | |
relateditem | String | Item | |
reminderminutes | String | Set up Reminder | |
remindertype | String | Reminder type | |
startdate | Date | Start Date | |
status | String | Status | |
supportcase | String | Support Case | |
timedevent | Boolean | Timed Event | |
title | String | Title |
The TaskCompanyMap table.
Name | Type | References | Description |
company | String | Company |
The TaskContactMap table.
Name | Type | References | Description |
contact | String | Contact |
The TaskEventFile table.
Name | Type | References | Description |
event | String | Event |
The taxItemTaxGroup table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Description | |
isinactive | Boolean | Inactive |
The taxOverrideMethod table.
Name | Type | References | Description |
overridename | String | Name | |
validtaxcalcoverrideskey | String | key |
The taxtype table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
country | String | Country | |
description | String | Description | |
name | String | Name |
The term table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
daydiscountexpires | Integer | Day Discount Expires | |
dayofmonthnetdue | Integer | Day Of Month Net Due | |
daysuntilexpiry | Integer | Days Till Discount Expires | |
daysuntilnetdue | Integer | Days Till Net Due | |
discountpercent | Double | % Discount | |
discountpercentdatedriven | Double | Date Driven % Discount | |
duenextmonthifwithindays | Integer | Due Next Month If Within Days | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
preferred | Boolean | Preferred |
The Terminationregretted table.
Name | Type | References | Description |
key | String | key |
The testCell table.
Name | Type | References | Description |
cellname | String | Name | |
group | String | Group |
The ThreeDSECommerceIndicator table.
Name | Type | References | Description |
key | String | key |
The ThreeDSTranStatus table.
Name | Type | References | Description |
key | String | key |
The ThreeDSTranStatusReason table.
Name | Type | References | Description |
key | String | key |
The ThreeDSVersion table.
Name | Type | References | Description |
key | String | key |
The timebill table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
casetaskevent | String | Task | |
class | String | Class | |
customer | String | Customer | |
department | String | Department | |
displayfield | String | Time Tracking | |
employee | String | Employee | |
externalid | String | External ID | |
hours | Double | Duration | |
isbillable | Boolean | Billable | |
isexempt | Boolean | Exempt | |
isproductive | Boolean | Productive | |
item | String | Service Item | |
location | String | Location | |
memo | String | Memo | |
overriderate | Boolean | Lock this Rate | |
payrollworkplace | String | Payroll Item Workplace | |
price | String | Price Level | |
rate | Decimal | Rate | |
subsidiary | String | Subsidiary | |
supervisorapproval | Boolean | Supervisor Approval | |
timemodified | Boolean | Time Modified | |
timetype | String | Type | |
trandate | Date | Date |
The timeLineApprovalStatus table.
Name | Type | References | Description |
key | Integer | Internal ID |
The TimelineType table.
Name | Type | References | Description |
name | String | Name |
The timeOffAccrualFrequency table.
Name | Type | References | Description |
key | String | key |
The timeOffAccrualType table.
Name | Type | References | Description |
key | String | key |
The timeOffRequestDetailsMachine table.
Name | Type | References | Description |
amountoftime | Double | Amount of Time | |
timeoffdate | Date | Date | |
timeoffrequest | String | Time-Off Request | |
timeunit | String | Time Unit |
The TimeZone table.
Name | Type | References | Description |
id [KEY] | String | ID | |
timezone | String | Time Zone |
The topic table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
description | String | Brief Description | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
longdescription | String | Detailed Description | |
parenttopic | String | Parent Topic | |
solution | String | Solutions |
The topicPublish table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
kb | String | Knowledge Base Location |
The topicSolutionMap table.
Name | Type | References | Description |
solution | String | -No label- |
The TrackingNumber table.
Name | Type | References | Description |
id | Integer | ID |
The TrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The tranPromotion table.
Name | Type | References | Description |
couponcode | String | Coupon Code | |
promocode | String | Promotion | |
promotiontype | String | Promotion Type |
The transaction table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
abbrevtype | String | Abbrev. Type | |
accountbasednumber | String | Account Based Number | |
actionitem | String | Action Item | |
actualproductionenddate | Date | Actual Production End Date | |
actualproductionstartdate | Date | Actual Production Start Date | |
actualshipdate | Date | Actual Shipping Date | |
approvalstatus | String | Approval Status | |
asofdate | Date | As of Date | |
autocalculatelag | Boolean | Auto-calculate Lag | |
billingaddress | String | Billing Address | |
billingstatus | Boolean | Billing Status | |
billofmaterials | String | Bill of Materials | |
billofmaterialsrevision | String | Bill of Materials Revision | |
buyingreason | String | Buying Reason | |
buyingtimeframe | String | Buying Time Frame | |
closedate | Date | Date Closed | |
committed | Double | Buildable | |
createdby | String | Created By | |
createddate | Date | Date Created | |
currency | String | Currency | |
daysopen | Double | Days Open | |
daysoverduesearch | Integer | Days Overdue | |
duedate | Date | Due Date | |
employee | String | Sales Rep | |
enddate | Date | End Date | |
entity | String | Entity | |
entitystatus | String | Status (Customer) | |
estgrossprofit | Decimal | Est. Gross Profit | |
estgrossprofitpercent | Double | Est. Gross Profit Percent | |
estimatedbudget | Decimal | Estimated Budget | |
exchangerate | Decimal | Exchange Rate | |
expectedclosedate | Date | Expected Close Date | |
externalid | String | External ID | |
firmed | Boolean | Firmed | |
forecasttype | String | Forecast Type | |
foreignamountpaid | Decimal | Amount Paid (Transaction Currency) | |
foreignamountunpaid | Decimal | Amount Unpaid (Transaction Currency) | |
foreignpaymentamountunused | Decimal | Payment Amount Unused (Transaction Currency) | |
foreignpaymentamountused | Decimal | Payment Amount Used (Transaction Currency) | |
foreigntotal | Decimal | Total Amount (Transaction Currency) | |
fulfillmenttype | String | Fulfillment Type | |
incoterm | String | Incoterm | |
isactualprodenddateenteredmanually | Boolean | Enter Manually | |
isactualprodstartdateenteredmanually | Boolean | Enter Manually | |
isbookspecific | Boolean | Is Book Specific | |
isbudgetapproved | Boolean | Budget Approved | |
isfinchrg | Boolean | Finance Charge | |
isreversal | Boolean | Is Reversal | |
journaltype | String | Journal Type | |
lastmodifiedby | String | Last Modified By | |
lastmodifieddate | Date | Date Last Modified | |
leadsource | String | Lead Source | |
linkedtrackingnumberlist | String | Linked Tracking Numbers | |
manufacturingrouting | String | Manufacturing Routing | |
memdoc | String | Memorized Transaction Definition | |
memo | String | Memo | |
message | String | Message | |
nextapprover | String | Next Approver | |
nextbilldate | Date | Next Bill Date | |
nexus | String | Nexus | |
number | Long | Document Number | |
opportunity | String | Opportunity | |
ordpicked | Boolean | Picked | |
ordreceived | Boolean | Order Received | |
otherrefnum | String | PO/Check Number | |
partner | String | Partner | |
paymenthold | Boolean | Payment Hold | |
paymentmethod | String | Payment Method | |
paymentoption | String | Payment Option | |
posting | Boolean | Posting | |
postingperiod | String | Posting Period | |
printedpickingticket | Boolean | Printed Picking Ticket | |
probability | Double | Probability (%) | |
projectedtotal | Decimal | Projected Total | |
rangehigh | Decimal | Range High | |
rangelow | Decimal | Range Low | |
recordtype | String | Record Type | |
reversal | String | Reversal Doc | |
reversaldate | Date | Reversal Date | |
salesreadiness | String | Sales Readiness | |
schedulingmethod | String | Scheduling Method | |
shipcomplete | Boolean | Ship Complete | |
shipdate | Date | Ship Date | |
shippingaddress | String | Shipping Address | |
source | String | Source | |
sourcetransaction | String | Source Transaction | |
startdate | Date | Start Date | |
status | String | Status | |
terms | String | Terms | |
title | String | Title | |
tosubsidiary | String | To Subsidiary | |
totalcostestimate | Decimal | Est. Cost | |
trackingnumberlist | String | Tracking Numbers | |
trandate | Date | Date | |
trandisplayname | String | Transaction | |
tranid | String | Document Number/ID | |
transactionnumber | String | Transaction Number | |
transferlocation | String | Destination Location | |
type | String | Type | |
typebaseddocumentnumber | String | Type Based Document Number | |
useitemcostastransfercost | Boolean | Use Item Cost As Transfer Cost | |
userevenuearrangement | Boolean | Generates Revenue Arrangement | |
visibletocustomer | Boolean | Available In Customer Center | |
void | Boolean | Void | |
voided | Boolean | Voided | |
website | String | Website | |
weightedtotal | Decimal | Weighted Total | |
winlossreason | String | Win/Loss Reason |
The TransactionAccountingLine table.
Name | Type | References | Description |
account | String | Account | |
accountingbook | String | Accounting Book | |
amount | Decimal | Amount | |
amountpaid | Decimal | Amount Paid | |
amountunpaid | Decimal | Amount Unpaid | |
credit | Decimal | Amount (Credit) | |
debit | Decimal | Amount (Debit) | |
exchangerate | Decimal | Exchange Rate | |
netamount | Decimal | Amount (Net) | |
overheadparentitem | String | Material Overhead Parent Item | |
paymentamountunused | Decimal | Payment Amount Unused | |
paymentamountused | Decimal | Payment Amount Used | |
posting | Boolean | Posting | |
transaction | String | Transaction |
The TransactionAccountingLineCostComponent table.
Name | Type | References | Description |
accountingbook | String | Accounting Book | |
amount | Decimal | Amount | |
componentitem | String | Component | |
costcategory | String | Cost Category | |
standardcost | Decimal | Standard Cost | |
standardcostquantity | Double | Quantity | |
transaction | String | Transaction | |
transactionaccountingline | String | Transaction Accounting Line |
The transactionAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
label | String | Label |
The transactionAddressMapping table.
Name | Type | References | Description |
address | String | Address | |
addresstype | String | Address Type | |
createdby | String | Created By | |
createddate | Date | Date Created |
The transactionAddressMappingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The TransactionBilling table.
Name | Type | References | Description |
billnetamountforeign | Double | Bill Net Amount Foreign | |
paymentterms | Integer | Payment Terms | |
transactionline | Integer | Transaction Line | |
billnetamount | Double | Bill Net Amount | |
revrecstartdate | Date | Rev Rec Start Date | |
billcount | Double | Bill Count | |
revrecenddate | Date | Rev Rec End Date | |
billamount | Double | Bill Amount | |
billdate | Date | Bill Date | |
transaction | Integer | Transaction | |
billamountforeign | Integer | Bill Amount Foreign |
The transactionBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The transactionBillingAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Edit | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
label | String | Label |
The transactionBillingAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The transactionCompetitor table.
Name | Type | References | Description |
competitor | String | Competitor | |
notes | String | Notes | |
opportunity | String | Opportunity |
The transactionLine table.
Name | Type | References | Description |
id [KEY] | Integer | ID | |
actualshipdate | Date | Actual Ship/Receipt/Pickup Date | |
amortizationenddate | Date | Amort. End Date | |
amortizationresidual | String | Residual | |
amortizationsched | String | Amort. Schedule | |
amortizstartdate | Date | Amort. Start Date | |
amountlinked | Decimal | Amount Linked | |
assemblycomponent | Boolean | Assembly Component | |
billeddate | Date | Date Billed | |
billingschedule | String | Billing Schedule | |
billvariancestatus | String | Bill Variance Status | |
blandedcost | Boolean | Landed Cost | |
bomquantity | Decimal | BOM Quantity | |
buildvariance | Double | Build Variance | |
category | String | Expense Category | |
chargetype | String | Charge Type | |
class | String | Class | |
cleared | Boolean | Cleared | |
cleareddate | Date | Date Cleared | |
commitinventory | String | Commit | |
commitmentfirm | Boolean | Commitment Confirmed | |
componentyield | Double | Component Yield | |
costestimate | Decimal | Est. Cost | |
costestimaterate | String | Est. Rate | |
costestimatetype | String | Cost Estimate Type | |
createdfrom | String | Created From | |
createdpo | String | Special Order | |
creditforeignamount | Decimal | Amount (Credit) (Transaction Currency) | |
debitforeignamount | Decimal | Amount (Debit) (Transaction Currency) | |
department | String | Department | |
documentnumber | String | Document Number | |
donotdisplayline | Boolean | Technical Line | |
dropship | Boolean | Drop Ship Item | |
entity | String | Entity | |
estgrossprofit | Decimal | Est. Gross Profit | |
estgrossprofitpercent | Double | Est. Gross Profit Percent | |
estimatedamount | Decimal | Estimated Amount | |
expectedreceiptdate | Date | Expected Receipt Date | |
expectedshipdate | Date | Expected Ship Date | |
expenseaccount | String | Expense Account | |
expensedate | Date | Expense Date | |
foreignamount | Decimal | Amount (Transaction Currency) | |
foreignamountpaid | Decimal | Amount Paid (Transaction Currency) | |
foreignamountunpaid | Decimal | Amount Unpaid (Transaction Currency) | |
foreignpaymentamountunused | Decimal | Payment Amount Unused (Transaction Currency) | |
foreignpaymentamountused | Decimal | Payment Amount Used (Transaction Currency) | |
fulfillable | Boolean | To Be Fulfilled / Received | |
fxamountlinked | Decimal | Amount Linked (Transaction Currency) | |
hasfulfillableitems | Boolean | Fulfillable | |
inventorylocation | String | Inventory Location | |
inventoryreportinglocation | String | Inventory Reporting Location | |
inventorysubsidiary | String | Inventory Subsidiary | |
isbillable | Boolean | Billable | |
isclosed | Boolean | Closed | |
iscogs | Boolean | Is COGS | |
isfullyshipped | Boolean | Fully Shipped/Received/Picked Up | |
isfxvariance | Boolean | Is Fx Variance | |
isinventoryaffecting | Boolean | Inventory Affecting | |
isrevrectransaction | Boolean | Is Amortization/Revenue Recognition | |
isscrap | Boolean | Is Scrap | |
item | String | Item | |
itemtype | String | Item Type | |
kitcomponent | Boolean | Kit Component | |
kitmemberof | Integer | Member of Line | |
landedcostcategory | String | Landed Cost Category | |
landedcostperline | Boolean | Landed Cost per Line | |
linelastmodifieddate | Date | Line Last Modified Date | |
linesequencenumber | Integer | Line Number | |
location | String | Location | |
mainline | Boolean | Main Line | |
matchbilltoreceipt | Boolean | Match Bill To Receipt | |
memo | String | Memo | |
netamount | Decimal | Amount (Net) (Transaction Currency) | |
oldcommitmentfirm | Boolean | -No label- | |
orderpriority | Double | Order Priority | |
paymentmethod | String | Payment Method | |
price | String | Price Level | |
processedbyrevcommit | Boolean | Processed by Rev Commit | |
quantity | Double | Quantity | |
quantitybackordered | Double | Back Ordered | |
quantitybilled | Double | Quantity Billed | |
quantitycommitted | Double | Committed | |
quantityonshipments | Double | Quantity On Shipments | |
quantitypicked | Double | Quantity Picked | |
quantityrejected | Double | Quantity Rejected | |
quantityshiprecv | Double | Quantity Shipped/Received/Picked Up | |
rate | Decimal | Rate | |
requestdate | Date | Requested Date | |
requestnote | String | Request Note | |
shipmethod | String | Ship Via | |
specialorder | Boolean | Special Order Item | |
subsidiary | String | Subsidiary | |
taxline | Boolean | Tax Line | |
transaction | String | Transaction | |
transactiondiscount | Boolean | Transaction Discount | |
transactionlinetype | String | Line Type | |
transferorderitemlineid | Integer | Transfer Order Item Line Id | |
uniquekey [KEY] | Integer | Unique Key | |
units | String | Units | |
vsoeisestimate | Boolean | Estimate |
The transactionLineAddressMapping table.
Name | Type | References | Description |
address | String | Address | |
addresstype | String | Address Type | |
createdby | String | Created By | |
createddate | Date | Date Created | |
transaction | String | Transaction |
The transactionLineAddressMappingLineAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The TransactionNumberingAuditLog table.
Name | Type | References | Description |
author | String | Author | |
authorname | String | Author (Name) | |
dateallocated | Date | Date Allocated | |
datedeleted | Date | Date Deleted | |
deletedby | String | Deleted By | |
deletedbyname | String | Deleted By (Name) | |
location | String | Location | |
locationused | Boolean | By Location | |
message | String | Message | |
overrideallowed | Boolean | Override Allowed | |
subsidiary | String | Subsidiary | |
subsidiaryused | Boolean | By Subsidiary | |
trannumber | String | Transaction Number | |
transaction | String | Transaction |
The transactionPartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The transactionPayeeAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Edit | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
label | String | Label |
The transactionPayeeAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The transactionReturnAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Edit | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
label | String | Label |
The transactionReturnAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The transactionSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The TransactionShipment table.
Name | Type | References | Description |
destinationaddress | String | Ship To | |
doc | String | Parent Transaction | |
handlingrate | Decimal | Handling Rate | |
isfulfilledtransaction | Boolean | Fulfilled | |
shippingmethod | String | Ship Via | |
shippingrate | Decimal | Shipping Rate | |
sourceaddress | String | Ship From | |
uniquekey | Integer | Unique Key |
The transactionShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The transactionShippingAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Edit | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
label | String | Label |
The transactionShippingAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The TransactionStatus table.
Name | Type | References | Description |
id | String | ID | |
trancustomtype | Integer | Trancustomtype | |
fullname | String | Full Name | |
name | String | Name | |
trantype | String | TranType |
The transferOrderLinkedTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The transferOrderShippingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The transferOrderTrackingNumberMap table.
Name | Type | References | Description |
trackingnumber | String | Tracking Number |
The UnbilledReceivableGrouping table.
Name | Type | References | Description |
key | String | key |
The undeliveredEmail table.
Name | Type | References | Description |
complianceverified | Boolean | Compliance Verified | |
key | Integer | Internal ID | |
logdate | Date | Log Date | |
messageid | String | Message-ID | |
reason | String | Reason | |
sentdate | Date | Sent Date |
The unitstype table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
isinactive | Boolean | Inactive |
The unitsTypeUom table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
abbreviation | String | Abbreviation | |
baseunit | Boolean | Base Unit | |
conversionrate | Double | Conversion Rate {1} | |
pluralabbreviation | String | Plural Abbreviation | |
unitname | String | Name | |
unitstype | String | -No label- |
The upsellItem table.
Name | Type | References | Description |
corrrelationfld | Double | Correlation | |
countfld | Integer | Count | |
customer | String | -No label- | |
item | String | Item |
The UserAuthorizationConsent table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
app | String | Application Name | |
given_at | Date | Created | |
revoked_at | Date | Revocation Date | |
revoked_by | String | Revoked By | |
role_name | String | Role |
The UserOAuthToken table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
binactive | Boolean | Inactive | |
role_name | String | Role | |
tba_app_name | String | Application Name | |
tba_token_name | String | Token Name |
The usrsavedsearch table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
datecreated | Date | Date Created | |
dateexecuted | Date | Date Executed | |
datemodified | Date | Date Modified | |
definitionentity | String | Definition | |
description | String | Description | |
isshared | Boolean | Is Shared | |
name | String | Name | |
owner | String | Owner | |
role | String | Role | |
scriptid | String | Script ID |
The usrsavedsearchexec table.
Name | Type | References | Description |
internalid [KEY] | String | Internal ID | |
dateexecuted | Date | Date Executed | |
executedentityid | Integer | Owner |
The validatePostbackStatus table.
Name | Type | References | Description |
key | String | key |
The vendor table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accountnumber | String | Account Number | |
altemail | String | Alt. Email | |
altname | String | Vendor | |
balance | Decimal | Balance (Base) | |
balanceprimary | Decimal | Balance | |
billpay | Boolean | Enable Online Bill Pay | |
category | String | Category | |
comments | String | Comments | |
companyname | String | Company Name | |
contact | String | Primary Contact | |
contactlist | String | Contacts | |
creditlimit | Decimal | Credit Limit | |
currency | String | Currency | |
datecreated | Date | Date Created | |
defaultbankaccount | String | Default Bank Account | |
defaultbillingaddress | String | Default Billing Address | |
defaultshippingaddress | String | Default Shipping Address | |
duplicate | Boolean | Duplicate | |
String | Vendor Email | ||
emailpreference | String | Email Preference | |
emailtransactions | Boolean | Email Transactions | |
entityid | String | Entity ID | |
entitynumber | Integer | Number | |
entitytitle | String | Vendor ID | |
expenseaccount | String | Default Expense Account | |
externalid | String | External ID | |
faxtransactions | Boolean | Fax Transactions | |
firstname | String | First Name | |
giveaccess | Boolean | Login Access | |
globalsubscriptionstatus | String | Global Subscription Status | |
incoterm | String | Incoterm | |
isinactive | Boolean | Vendor is Inactive | |
isjobresourcevend | Boolean | Job Resource | |
isperson | Boolean | Is Individual | |
laborcost | Decimal | Labor Cost | |
lastmodifieddate | Date | Last Modified Date | |
lastname | String | Last Name | |
legalname | String | Legal Name | |
middlename | String | Middle Name | |
payablesaccount | String | -No label- | |
phoneticname | String | Furigana | |
predconfidence | Double | Predicted Risk Confidence | |
predicteddays | Integer | Predicted Days Late/Early | |
printoncheckas | String | Print on Check As | |
printtransactions | Boolean | Print Transactions | |
purchaseorderamount | Double | Vendor Bill - Purchase Order Amount Tolerance | |
purchaseorderquantity | Double | Vendor Bill - Purchase Order Quantity Tolerance | |
purchaseorderquantitydiff | Double | Vendor Bill - Purchase Order Quantity Difference | |
receiptamount | Double | Vendor Bill - Item Receipt Amount Tolerance | |
receiptquantity | Double | Vendor Bill - Item Receipt Quantity Tolerance | |
receiptquantitydiff | Double | Vendor Bill - Item Receipt Quantity Difference | |
rolesforsearch | String | Roles | |
salutation | String | Mr./Ms... | |
subsidiaryedition | String | Edition | |
terms | String | Terms | |
timeapprover | String | Time Approver | |
title | String | Job Title | |
unbilledorders | Decimal | Unbilled Orders (Base) | |
unbilledordersprimary | Decimal | Unbilled Orders |
The vendorAchAcct table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
accountnumber | String | Account Number | |
addenda | String | Addenda | |
bankname | String | Bank Name | |
banknumber | String | Transit Number | |
idnumber | String | Bank Number | |
includetransaction | Boolean | Include Transaction in Addenda | |
isinactive | Boolean | Inactive | |
issavings | Boolean | Savings Account | |
limit | Decimal | Limit | |
routingnumber | String | Routing Number | |
sendaddenda | Boolean | Send Addenda |
The vendorAddressbook table.
Name | Type | References | Description |
internalid [KEY] | Integer | Internal ID | |
addressbookaddress | String | Address | |
defaultbilling | Boolean | Default Billing | |
defaultshipping | Boolean | Default Shipping | |
entity | String | Entity |
The vendorAddressbookEntityAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The vendorBillBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The vendorBillExpenseMachine table.
Name | Type | References | Description |
account | String | Account | |
amortizationenddate | Date | Amort. End Date | |
amortizationresidual | String | Residual | |
amortizationsched | String | Amort. Schedule | |
amortizstartdate | Date | Amort. Start Date | |
category | String | Category | |
class | String | Class | |
customer | String | -No label- | |
department | String | Department | |
expenseitem | Integer | Expense Item | |
grossamt | Decimal | Gross Amount | |
isbillable | Boolean | Billable | |
line | Integer | Line | |
location | String | Location | |
memo | String | Memo | |
orderdoc | String | -No label- | |
orderline | String | Order Line | |
vendorbill | String | -No label- |
The vendorBulkMerge table.
Name | Type | References | Description |
entity | String | -No label- | |
mergedate | Date | Date/Time | |
mergetype | String | Type | |
status | String | Status | |
subject | String | Subject | |
template | String | Template | |
username | String | -No label- |
The vendorCampaigns table.
Name | Type | References | Description |
campaign | String | Campaign | |
campaignevent | String | Event | |
category | String | Category | |
contact | String | Contact | |
datesent | Date | Date Sent | |
entity | String | -No label- | |
response | String | Response Detail | |
responsedate | Date | Response Date |
The vendorcategory table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
externalid | String | External ID | |
isinactive | Boolean | Inactive | |
istaxagency | Boolean | Tax Agency |
The vendorCompanyContact table.
Name | Type | References | Description |
contact | String | Contact |
The vendorCreditBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The vendorCreditExpenseMachine table.
Name | Type | References | Description |
account | String | Account | |
amortizationenddate | Date | Amort. End Date | |
amortizationresidual | String | Residual | |
amortizationsched | String | Amort. Schedule | |
amortizstartdate | Date | Amort. Start Date | |
category | String | Category | |
class | String | Class | |
customer | String | -No label- | |
department | String | Department | |
expenseitem | Integer | Expense Item | |
grossamt | Decimal | Gross Amount | |
isbillable | Boolean | Billable | |
line | Integer | Line | |
location | String | Location | |
memo | String | Memo | |
orderdoc | String | -No label- | |
orderline | String | Order Line | |
vendorcredit | String | -No label- |
The vendorCurrencyBalance table.
Name | Type | References | Description |
balance | Decimal | Balance | |
currency | String | Currency | |
unbilledorders | Decimal | Unbilled Orders |
The vendorPaymentPayeeAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The vendorRate table.
Name | Type | References | Description |
entitycurrency | String | Currency | |
rate | Decimal | Hourly Rate |
The vendorRequestForQuoteItemItemPricing table.
Name | Type | References | Description |
id [KEY] | String | Internal ID | |
calculatequantitydiscounts | String | Calculate Quantity Discounts | |
externalid | String | ExternalId | |
inputusing | String | Input Using | |
lineid | Integer | -No label- | |
transactionid | Integer | -No label- | |
vendor | Integer | -No label- |
The vendorRequestForQuoteItemItemPricingDiscount table.
Name | Type | References | Description |
id [KEY] | Integer | -No label- | |
fromquantity | Double | From Quantity | |
itempricing | Integer | -No label- | |
itempricingrecord | String | -No label- | |
memo | String | Memo | |
percent | Double | Percent Discount | |
quantityordered | Double | Quantity Ordered |
The vendorReturnAuthorizationBillingAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
The vendorReturnAuthorizationExpenseMachine table.
Name | Type | References | Description |
account | String | Account | |
amortizationenddate | Date | Amort. End Date | |
amortizationresidual | String | Residual | |
amortizationsched | String | Amort. Schedule | |
amortizstartdate | Date | Amort. Start Date | |
category | String | Category | |
class | String | Class | |
customer | String | -No label- | |
department | String | Department | |
expenseitem | Integer | Expense Item | |
grossamt | Decimal | Gross Amount | |
isbillable | Boolean | Billable | |
line | Integer | Line | |
location | String | Location | |
memo | String | Memo | |
orderdoc | String | -No label- | |
orderline | String | Order Line | |
vendorreturnauthorization | String | -No label- |
The vendorRolesForSearch table.
Name | Type | References | Description |
entity | String | -No label- |
The vendorSubscriptionMessageHistory table.
Name | Type | References | Description |
String | |||
memo | String | Memo | |
recipient | String | Recipient | |
senddate | Date | Date Sent | |
sender | String | Sender |
The vendorSubscriptions table.
Name | Type | References | Description |
entity | String | Entity | |
lastmodifieddate | Date | Last Modified | |
subscription | String | Campaign Subscription |
The vendorsubsidiaryrelationship table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
balance | Decimal | Balance | |
balancebase | Decimal | Balance (Base) | |
basecurrency | String | Base Currency | |
creditlimit | Decimal | Credit Limit | |
externalid | String | External ID | |
isprimarysub | Boolean | Is Primary Subsidiary | |
name | String | -No label- | |
primarycurrency | String | Primary Currency | |
subsidiary | String | Subsidiary | |
unbilledorders | Decimal | Unbilled Orders | |
unbilledordersbase | Decimal | Unbilled Orders (Base) |
The verificationMatchCode table.
Name | Type | References | Description |
key | String | key |
The vsoeDeferralType table.
Name | Type | References | Description |
key | String | key |
The vsoeDiscountType table.
Name | Type | References | Description |
key | String | key | |
name | String | Name |
The vsoeSopGroupType table.
Name | Type | References | Description |
key | String | key | |
name | String | Name |
The WbsAmount table.
Name | Type | References | Description |
adate | Date | Date | |
eac | Decimal | Eac | |
key | Integer | key | |
type | String | Amount Type |
The WbsLine table.
Name | Type | References | Description |
costcalculationtype | String | Cost Type | |
key | Integer | key | |
name | String | Name | |
parent | String | Parent | |
projecttask | String | Project Task | |
resourceentity | String | Resource | |
resourceitem | String | Item | |
seqnum | Integer | Sequence Number | |
skey | String | ID |
The webSiteFieldsetRecordType table.
Name | Type | References | Description |
name | String | Name |
The workCalendar table.
Name | Type | References | Description |
id [KEY] | Integer | Internal ID | |
comments | String | Comments | |
friday | Boolean | Friday | |
isdefault | Boolean | Default Calendar | |
monday | Boolean | Monday | |
name | String | Name | |
saturday | Boolean | Saturday | |
starthour | String | Start At | |
sunday | Boolean | Sunday | |
thursday | Boolean | Thursday | |
tuesday | Boolean | Tuesday | |
workhoursperday | Double | Hours Per Day |
The workCalendarHoliday table.
Name | Type | References | Description |
description | String | Description | |
exceptiondate | Date | Date |
The workOrderPartner table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
isprimary | Boolean | Primary | |
partner | String | Partner | |
partnerrole | String | Partner Role |
The workOrderSalesTeam table.
Name | Type | References | Description |
contribution | Double | Contribution % | |
employee | String | Employee | |
isprimary | Boolean | Primary | |
salesrole | String | Sales Role |
The WorkplaceMainAddress table.
Name | Type | References | Description |
nkey [KEY] | String | -No label- | |
addr1 | String | Address 1 | |
addr2 | String | Address 2 | |
addr3 | String | Address 3 | |
addressee | String | Addressee | |
attention | String | Attention | |
city | String | City | |
country | String | Country | |
dropdownstate | String | State | |
override | Boolean | Override | |
state | String | State/Province |
Sync App は、データソースの型を、スキーマで使用可能な対応するデータ型にマッピングします。以下のテーブルはこれらのマッピングを説明します。
NetSuite | CData スキーマ |
Check Box | bool |
Currency | float |
Date | date |
Date/Time | datetime |
Decimal Number | float |
Email Address | string |
Free-Form Text | string |
Hyperlink | string |
Image | string |
Integer Number | long |
Long Text | string |
Password | string |
Percent | float |
Phone Number | string |
Rich Text | string |
Text Area | string |
Time Of Day | datetime |
プロパティ | 説明 |
AuthScheme | NetSuite に接続する際に使用する認証の種類。 |
AccountId | NetSuite でユーザー名に関連付けられている企業アカウント。 |
RoleId | RoleId は、NetSuite にログインするために使用されるロールのInternalId です。ユーザーのデフォルトId を使用するには、空のままにします。 |
User | 認証で使用されるNetSuite アカウントのユーザー。 |
Password | 認証に使用されるNetSuite ユーザーのパスワード。 |
Version | 使用中のNetSuite API のバージョン。デフォルトは2022_2です。 |
IncludeChildTables | 子テーブルを表示するかどうかを示すboolean。 |
NetsuiteMetadataFolder | NetSuite からメタデータファイルをダウンロードするためのディレクトリへのパス。最高のパフォーマンスを得るためにこれを設定します。 |
プロパティ | 説明 |
OAuthVersion | The version of OAuth being used. |
OAuthClientId | OAuth 認証サーバーを使用してアプリケーションを登録する場合に割り当てられたクライアントId。 |
OAuthClientSecret | OAuth 認証サーバーにアプリケーションを登録する場合に割り当てられたクライアントシークレット。 |
OAuthAccessToken | OAuth を使用して接続するためのアクセストークン。 |
OAuthAccessTokenSecret | OAuth を使用して接続するためのアクセストークンのトークン シークレット。 |
Scope | OAuth 2.0で初期アクセストークンとリフレッシュトークンを取得するスコープを指定します。 |
AuthToken | OAuth アクセストークンをリクエストおよび取得するために使用される認証トークン。 |
AuthKey | OAuth アクセストークンをリクエストおよび取得するために使用される認証シークレット。 |
プロパティ | 説明 |
SSLServerCert | TLS/SSL を使用して接続するときに、サーバーが受け入れ可能な証明書。 |
プロパティ | 説明 |
FirewallType | プロキシベースのファイアウォールで使われるプロトコル。 |
FirewallServer | プロキシベースのファイアウォールの名前もしくはIP アドレス。 |
FirewallPort | プロキシベースのファイアウォールのTCP ポート。 |
FirewallUser | プロキシベースのファイアウォールに認証するために使うユーザー名。 |
FirewallPassword | プロキシベースのファイアウォールへの認証に使われるパスワード。 |
プロパティ | 説明 |
ProxyAutoDetect | これは、システムプロキシ設定を使用するかどうかを示します。これは他のプロキシ設定よりも優先されるため、カスタムプロキシ設定を使用するにはProxyAutoDetect をFALSE に設定する必要があります。 |
ProxyServer | HTTP トラフィックをルートするためのプロキシのホストネームもしくはIP アドレス。 |
ProxyPort | ProxyServer プロキシが起動しているTCP ポート。 |
ProxyAuthScheme | ProxyServer プロキシへの認証で使われる認証タイプ。 |
ProxyUser | ProxyServer プロキシへの認証に使われるユーザー名。 |
ProxyPassword | ProxyServer プロキシへの認証に使われるパスワード。 |
ProxySSLType | ProxyServer プロキシへの接続時に使用するSSL タイプ。 |
ProxyExceptions | ProxyServer 経由での接続が免除される宛先ホスト名またはIP のセミコロン区切りのリスト。 |
プロパティ | 説明 |
LogModules | ログファイルに含めるコアモジュール。 |
プロパティ | 説明 |
Location | テーブル、ビュー、およびストアドプロシージャを定義するスキーマファイルを格納するディレクトリへのパス。 |
BrowsableSchemas | このプロパティは、使用可能なスキーマのサブセットにレポートされるスキーマを制限します。例えば、BrowsableSchemas=SchemaA,SchemaB,SchemaC です。 |
Tables | このプロパティは、使用可能なテーブルのサブセットにレポートされるテーブルを制限します。例えば、Tables=TableA,TableB,TableC です。 |
Views | 使用可能なテーブルのサブセットにレポートされるビューを制限します。例えば、Views=ViewA,ViewB,ViewC です。 |
Schema | 使用するスキーマの種類。 |
RowScanDepth | The number of rows to scan when dynamically determining columns for the table. |
プロパティ | 説明 |
AccountSupportsSuiteAnalyticsConnect | A boolean indicating if Connect Service Feature is enabled for the authenticated account. |
AggregateColumnMode | 集計カラムをどのように扱うべきかを示します。 |
ApplicationId | バージョン2020.1 以降、NetSuite へのリクエストにはアプリケーションID が必要です。 |
CustomFieldPermissions | カスタムフィールドの許可のカンマ区切りリスト。 IncludeCustomFieldColumns よりも細かく設定できます。 |
IncludeCustomFieldColumns | カスタムフィールドカラムを含めるかどうかを示すboolean。 |
IncludeCustomListTables | カスタムリストに基づいてテーブルを使用するかどうかを示すboolean。 |
IncludeCustomRecordTables | カスタムレコードタイプに基づいてテーブルを使用するかどうかを示すboolean。 |
IncludeReferenceColumns | レコード参照を表すフィールドからデータを取得するときに含めるカラムを表すカンマ区切りリスト。 |
MaximumConcurrentSessions | 接続で使用できる同時セッションの最大数。 |
MaxRows | クエリで集計またはグループ化を使用しない場合に返される行数を制限します。これにより、設計時にパフォーマンスの問題を回避できます。 |
NetsuiteDateFormat | The preffered date format set in NetSuite UI. |
NetsuiteLongDateFormat | The preffered long date format set in NetSuite UI. |
Other | これらの隠しプロパティは特定のユースケースでのみ使用されます。 |
Pagesize | NetSuite から返されるページあたりの結果数。 |
PseudoColumns | このプロパティは、テーブルのカラムとして疑似カラムが含まれているかどうかを示します。 |
ReportDoublesAsDecimal | double をdecimal としてレポートするかどうかを示します。 |
RequestMemorizedTransactions | NetSuite からトランザクションを取得するときに、記憶されたトランザクションをリクエストするかどうかを示すboolean。 |
Timeout | タイムアウトエラーがスローされ、処理をキャンセルするまでの秒数。 |
UseAsyncServices | 挿入、更新、および削除時に非同期サービスを使用するかどうかを示すboolean。 |
UseInternalNamesForCustomizations | カスタマイズ用に内部名を使用するかどうかを示すboolean。 |
UserDefinedViews | カスタムビューを含むJSON コンフィギュレーションファイルを指すファイルパス。 |
UserTimezoneOffset | NetSuite の[ホーム]->[プリファレンス]->[タイムゾーン]のプリファレンスの設定で定義されているユーザータイムゾーンオフセット。例:EST |
UseSimpleNames | テーブルとカラムに簡略名を使用するかどうかを決定するboolean。 |
UseUpserts | 挿入操作が使用されたときにupsert を実行するかどうかを示すboolean。 |
WebServiceHost | webservices.na1.netsuite.com などのWeb サービスホストのオーバーライドオプション。 |
このセクションでは、本プロバイダーの接続文字列で設定可能なAuthentication プロパティの全リストを提供します。
プロパティ | 説明 |
AuthScheme | NetSuite に接続する際に使用する認証の種類。 |
AccountId | NetSuite でユーザー名に関連付けられている企業アカウント。 |
RoleId | RoleId は、NetSuite にログインするために使用されるロールのInternalId です。ユーザーのデフォルトId を使用するには、空のままにします。 |
User | 認証で使用されるNetSuite アカウントのユーザー。 |
Password | 認証に使用されるNetSuite ユーザーのパスワード。 |
Version | 使用中のNetSuite API のバージョン。デフォルトは2022_2です。 |
IncludeChildTables | 子テーブルを表示するかどうかを示すboolean。 |
NetsuiteMetadataFolder | NetSuite からメタデータファイルをダウンロードするためのディレクトリへのパス。最高のパフォーマンスを得るためにこれを設定します。 |
NetSuite に接続する際に使用する認証の種類。
RoleId は、NetSuite にログインするために使用されるロールのInternalId です。ユーザーのデフォルトId を使用するには、空のままにします。
このフィールドは、User、Password、およびAccountId とともに、NetSuite に対する認証に使用されます。 RoleId を指定しない場合は、ユーザーのデフォルトロールが使用されます。それ以外の場合は、NetSuite にログインして[セットアップ]->[統合]->[Web サービスのプリファレンス]ページに移動してRoleId を取得することができます。ここでは、指定されたロールの横に表示されているId を取得するのと同様に、別の[Web サービスデフォルトロール]を選択できます。
使用中のNetSuite API のバージョン。デフォルトは2022_2です。
ほとんどの場合、バージョンを変更する必要はありません。ただし、バージョンを変更する場合は、指定したバージョンがNetSuite API に存在することを事前に確認してください。 不正なバージョンが指定された場合、Sync App はNetSuite のテーブルを取得または更新できません。
子テーブルを表示するかどうかを示すboolean。
これをtrue に設定すると、指定したエンティティのすべての子リストに対してテーブルが表示されます。 例えば、NetSuite 開発環境のCashRefund テーブルにはItemList という子リストがあります。したがって、このプロパティがtrue に設定されている場合、CashRefund_ItemList という新しいテーブルが表示されます。 これは、リスト内の各アイテムをそれ自体の行にリストするのに便利です。
NetSuite からメタデータファイルをダウンロードするためのディレクトリへのパス。最高のパフォーマンスを得るためにこれを設定します。
不必要なオーバーヘッドを避けるために、Sync App はNetSuite API から多くのメタデータファイルをダウンロードします。 NetsuiteMetadataFolder が指定されていない場合は、Location が使用されます。最高のパフォーマンスを 得るには、常にNetSuiteMetadata の値を設定します。このディレクトリが空の場合、Sync App はNetsuite から スキーマファイルをダウンロードし、それらを後続のメタデータクエリに使用します。これらのメタデータファイルのファイル 拡張子はxsd です。このメタデータには、Netsuite Version 固有の静的に定義されたテーブルとビューのみが 含まれています。カスタムフィールドとテーブルは、このメタデータには含まれません。 Sync App は、接続するNetsuite のバージョンごとに異なるサブフォルダを作成します。
このセクションでは、本プロバイダーの接続文字列で設定可能なOAuth プロパティの全リストを提供します。
プロパティ | 説明 |
OAuthVersion | The version of OAuth being used. |
OAuthClientId | OAuth 認証サーバーを使用してアプリケーションを登録する場合に割り当てられたクライアントId。 |
OAuthClientSecret | OAuth 認証サーバーにアプリケーションを登録する場合に割り当てられたクライアントシークレット。 |
OAuthAccessToken | OAuth を使用して接続するためのアクセストークン。 |
OAuthAccessTokenSecret | OAuth を使用して接続するためのアクセストークンのトークン シークレット。 |
Scope | OAuth 2.0で初期アクセストークンとリフレッシュトークンを取得するスコープを指定します。 |
AuthToken | OAuth アクセストークンをリクエストおよび取得するために使用される認証トークン。 |
AuthKey | OAuth アクセストークンをリクエストおよび取得するために使用される認証シークレット。 |
The version of OAuth being used.
The version of OAuth being used. The following options are available:
OAuth 認証サーバーを使用してアプリケーションを登録する場合に割り当てられたクライアントId。
OAuth アプリケーションの登録の一環として、コンシューマキーとも呼ばれるOAuthClientId 値、およびクライアントシークレットOAuthClientSecret が提供されます。
OAuth 認証サーバーにアプリケーションを登録する場合に割り当てられたクライアントシークレット。
OAuth アプリケーションの登録の一環として、コンシューマキーとも呼ばれるOAuthClientId が提供されます。また、コンシューマーシークレットと呼ばれるクライアントシークレットも提供されます。クライアントシークレットをOAuthClientSecret プロパティに設定します。
OAuth を使用して接続するためのアクセストークン。
OAuth を使用して接続するには、OAuthAccessToken プロパティが使用されます。認証プロセスにおいてOAuth サーバーからOAuthAccessToken が取得されます。このプロパティは、サーバーに依存するタイムアウトがあり、要求の間で再利用することができます。
アクセストークンは、ユーザー名とパスワードの代わりに使用されます。サーバー上で維持することで、認証情報が保護されます。
OAuth を使用して接続するためのアクセストークンのトークン シークレット。
OAuth を使用して接続および認証するには、OAuthAccessTokenSecret プロパティが使用されます。認証プロセスにおいてOAuth サーバーからOAuthAccessTokenSecret が取得されます。取得されたトークンシークレットは OAuthAccessToken と一緒に使用され、タイムアウトするまで複数の要求のために使用されます。
OAuth 2.0で初期アクセストークンとリフレッシュトークンを取得するスコープを指定します。
OAuth 2.0を使用する際には(Schema がSuiteQL に設定されている場合のみ利用可能)、NetSuite がトークンを取得するためにスコープの指定が必要となります。埋め込みトークンを使用する場合、 適切なスコープが自動で使用されます。その他の場合、スコープは指定されたOAuthClientId の設定済みスコープに 正確に合致する必要があり、合致しない場合 NetSuite はエラーを返します。利用可能な値は次のとおりです。
OAuth アクセストークンをリクエストおよび取得するために使用される認証トークン。
このプロパティは、OAuth 1.0でヘッドレス認証を実行する場合にのみ必要です。これは、GetOAuthAuthorizationUrl ストアドプロシージャから取得できます。
GetOAuthAccessToken ストアドプロシージャでAuthKey とともに指定して、OAuthAccessToken を取得できます。
OAuth アクセストークンをリクエストおよび取得するために使用される認証シークレット。
このプロパティは、OAuth 1.0でヘッドレス認証を実行する場合にのみ必要です。これは、GetOAuthAuthorizationUrl ストアドプロシージャから取得できます。
GetOAuthAccessToken ストアドプロシージャでAuthToken とともに指定して、OAuthAccessToken を取得できます。
このセクションでは、本プロバイダーの接続文字列で設定可能なSSL プロパティの全リストを提供します。
プロパティ | 説明 |
SSLServerCert | TLS/SSL を使用して接続するときに、サーバーが受け入れ可能な証明書。 |
TLS/SSL を使用して接続するときに、サーバーが受け入れ可能な証明書。
TLS/SSL 接続を使用する場合は、このプロパティを使用して、サーバーが受け入れるTLS/SSL 証明書を指定できます。コンピュータによって信頼されていない他の証明書はすべて拒否されます。
このプロパティは、次のフォームを取ります:
説明 | 例 |
フルPEM 証明書(例では省略されています) | -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE----- |
証明書を保有するローカルファイルへのパス。 | C:\cert.cer |
公開鍵(例では省略されています) | -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY----- |
MD5 Thumbprint (hex 値はスペースおよびコロン区切り) | ecadbdda5a1529c58a1e9e09828d70e4 |
SHA1 Thumbprint (hex 値はスペースおよびコロン区切り) | 34a929226ae0819f2ec14b4a3d904f801cbb150d |
これを指定しない場合は、マシンが信用するすべての証明書が受け入れられます。
すべての証明書の受け入れを示すには、'*'を使用します。セキュリティ上の理由から、これはお勧めできません。
このセクションでは、本プロバイダーの接続文字列で設定可能なFirewall プロパティの全リストを提供します。
プロパティ | 説明 |
FirewallType | プロキシベースのファイアウォールで使われるプロトコル。 |
FirewallServer | プロキシベースのファイアウォールの名前もしくはIP アドレス。 |
FirewallPort | プロキシベースのファイアウォールのTCP ポート。 |
FirewallUser | プロキシベースのファイアウォールに認証するために使うユーザー名。 |
FirewallPassword | プロキシベースのファイアウォールへの認証に使われるパスワード。 |
プロキシベースのファイアウォールで使われるプロトコル。
このプロパティは、Sync App がFirewallServer プロキシ経由でトンネルトラフィックを使うためのプロトコルを指定します。デフォルトでは、Sync App はシステムプロキシに接続します。この動作を無効化し次のプロキシタイプのどれかで接続するには、ProxyAutoDetect をfalse に設定します。
タイプ | デフォルトポート | 説明 |
TUNNEL | 80 | これが設定されている場合、Sync App はNetSuite への接続を開き、プロキシを経由して通信が行われます。 |
SOCKS4 | 1080 | これが設定されている場合、Sync App はデータをFirewallServer およびFirewallPort で指定されたSOCS 4 プロキシ経由で送信し、接続リクエストが許容されるかどうかを決定します。 |
SOCKS5 | 1080 | これが設定されている場合、Sync App はデータをFirewallServer およびFirewallPort で指定されたSOCS 5 プロキシ経由で送信します。プロキシに認証が必要な場合には、FirewallUser およびFirewallPassword をプロキシが認識する認証情報に設定します。 |
HTTP プロキシへの接続には、ProxyServer およびProxyPort ポートを使ってください。HTTP プロキシへの認証には、ProxyAuthScheme、ProxyUser、およびProxyPassword を使ってください。
プロキシベースのファイアウォールの名前もしくはIP アドレス。
ファイアウォールトラバーサルを許容するために設定するIP アドレス、DNS 名、もしくはプロキシホスト名を指定するプロパティです。プロトコルはFirewallType で指定されます。このプロパティとFirewallServer を使って、SOCKS 経由での接続、もしくはトンネリングが可能です。HTTP プロキシへの接続には、ProxyServer を使用します。
Sync App はデフォルトでシステムプロキシを使うので注意してください。他のプロキシを使う場合には、ProxyAutoDetect をfalse に設定してください。
プロキシベースのファイアウォールのTCP ポート。
ファイアウォールトラバーサルを許容するために設定するプロキシベースのファイアウォールのTCP ポート。名前もしくはIP アドレスを指定するには、FirewallServer を使います。FirewallType でプロトコルを指定します。
プロキシベースのファイアウォールに認証するために使うユーザー名。
FirewallUser およびFirewallPassword プロパティは、FirewallType により指定された認証方式に則り、FirewallServer、およびFirewallPort で指定されたプロキシに対しての認証に使われます。
プロキシベースのファイアウォールへの認証に使われるパスワード。
このプロパティは、FirewallType により指定された認証メソッドに則り、FirewallServer およびFirewallPort で指定されたプロキシに渡されます。
このセクションでは、本プロバイダーの接続文字列で設定可能なProxy プロパティの全リストを提供します。
プロパティ | 説明 |
ProxyAutoDetect | これは、システムプロキシ設定を使用するかどうかを示します。これは他のプロキシ設定よりも優先されるため、カスタムプロキシ設定を使用するにはProxyAutoDetect をFALSE に設定する必要があります。 |
ProxyServer | HTTP トラフィックをルートするためのプロキシのホストネームもしくはIP アドレス。 |
ProxyPort | ProxyServer プロキシが起動しているTCP ポート。 |
ProxyAuthScheme | ProxyServer プロキシへの認証で使われる認証タイプ。 |
ProxyUser | ProxyServer プロキシへの認証に使われるユーザー名。 |
ProxyPassword | ProxyServer プロキシへの認証に使われるパスワード。 |
ProxySSLType | ProxyServer プロキシへの接続時に使用するSSL タイプ。 |
ProxyExceptions | ProxyServer 経由での接続が免除される宛先ホスト名またはIP のセミコロン区切りのリスト。 |
これは、システムプロキシ設定を使用するかどうかを示します。これは他のプロキシ設定よりも優先されるため、カスタムプロキシ設定を使用するにはProxyAutoDetect をFALSE に設定する必要があります。
これは他のプロキシ設定よりも優先されるため、カスタムプロキシ設定を使用するにはProxyAutoDetect をFALSE に設定する必要があります。
HTTP プロキシへの接続には、ProxyServer を参照してください。SOCKS やトンネリングなどの他のプロキシには、FirewallType を参照してください。
HTTP トラフィックをルートするためのプロキシのホストネームもしくはIP アドレス。
HTTP トラフィックをルートするためのプロキシのホストネームもしくはIP アドレス。HTTP プロキシへの認証には、Sync App はHTTP、Windows(NTLM)、もしくはKerberos 認証タイプを使用することができます。
SOCKS プロキシを経由して接続する、もしくは接続をトンネルするには、FirewallType を参照してください。
デフォルトで、Sync App はsystem プロキシを使います。他のプロキシを使う場合には、ProxyAutoDetect をfalse に設定します。
ProxyServer プロキシが起動しているTCP ポート。
HTTP トラフィックをリダイレクトするHTTP プロキシが実行されているポート。ProxyServer でHTTP プロキシを指定します。その他のプロキシタイプについては、FirewallType を参照してください。
ProxyServer プロキシへの認証で使われる認証タイプ。
この値は、ProxyServer およびProxyPort で指定されるHTTP プロキシに認証するために使われる認証タイプを指定します。
Sync App は、デフォルトでsystem proxy settings を使い、追加での設定が不要です。他のプロキシへの接続をする場合には、ProxyServer およびProxyPort に加え、ProxyAutoDetect をfalse に設定します。認証するには、ProxyAuthScheme を設定し、必要な場合にはProxyUser およびProxyPassword を設定します。
認証タイプは、次のどれかになります。
SOCKS 5 認証のような他の認証タイプを使用するには、FirewallType を参照してください。
ProxyServer プロキシへの認証に使われるユーザー名。
ProxyUser および ProxyPassword オプションは、ProxyServer で指定されたHTTP プロキシに対して接続および認証するために使用されます。
ProxyAuthScheme で使用可能な認証タイプを選択することができます。HTTP 認証を使う場合、これをHTTP プロキシで識別可能なユーザーのユーザー名に設定します。Windows もしくはKerberos 認証を使用する場合、このプロパティを次の形式のどれかでユーザー名に設定します。
user@domain domain\user
ProxyServer プロキシへの認証に使われるパスワード。
このプロパティは、NTLM(Windows)、Kerberos、もしくはHTTP 認証をサポートするHTTP プロキシサーバーに認証するために使われます。HTTP プロキシを指定するためには、ProxyServer およびProxyPort を設定します。認証タイプを指定するためにはProxyAuthScheme を設定します。
HTTP 認証を使う場合、さらにHTTP プロキシにProxyUser およびProxyPassword を設定します。
NTLM 認証を使う場合、Windows パスワードにProxyUser およびProxyPassword を設定します。Kerberos 認証には、これらを入力する必要があります。
SOCKS 5 認証もしくは、トンネリングは、FirewallType を参照してください。
デフォルトで、Sync App はsystem プロキシを使います。他のプロキシに接続する場合には、これをfalse に設定します。
ProxyServer プロキシへの接続時に使用するSSL タイプ。
このプロパティは、ProxyServer で指定されたHTTP プロキシへの接続にSSL を使用するかどうかを決定します。この値は、AUTO、ALWAYS、NEVER、TUNNEL のいずれかです。有効な値は次のとおりです。
AUTO | デフォルト設定。URL がHTTPS URL の場合、Sync App は、TUNNEL オプションを使います。URL がHTTP URL の場合、コンポーネントはNEVER オプションを使います。 |
ALWAYS | 接続は、常にSSL 有効となります。 |
NEVER | 接続は、SSL 有効になりません。 |
TUNNEL | 接続は、トンネリングプロキシを経由します。プロキシサーバーがリモートホストへの接続を開き、プロキシを経由して通信が行われます。 |
ProxyServer 経由での接続が免除される宛先ホスト名またはIP のセミコロン区切りのリスト。
ProxyServer は、このプロパティで定義されたアドレスを除くすべてのアドレスに使用されます。セミコロンを使用してエントリを区切ります。
Sync App は、追加設定なしにデフォルトでシステムのプロキシ設定を使います。この接続のプロキシ例外を明示的に構成するには、ProxyAutoDetect をfalse に設定して、ProxyServer およびProxyPort を設定する必要があります。認証するには、ProxyAuthScheme を設定し、必要な場合にはProxyUser およびProxyPassword を設定します。
ログファイルに含めるコアモジュール。
指定された(';' で区切られた)モジュールのみがログファイルに含まれます。デフォルトではすべてのモジュールが含まれます。
概要はログ ページを参照してください。
このセクションでは、本プロバイダーの接続文字列で設定可能なSchema プロパティの全リストを提供します。
プロパティ | 説明 |
Location | テーブル、ビュー、およびストアドプロシージャを定義するスキーマファイルを格納するディレクトリへのパス。 |
BrowsableSchemas | このプロパティは、使用可能なスキーマのサブセットにレポートされるスキーマを制限します。例えば、BrowsableSchemas=SchemaA,SchemaB,SchemaC です。 |
Tables | このプロパティは、使用可能なテーブルのサブセットにレポートされるテーブルを制限します。例えば、Tables=TableA,TableB,TableC です。 |
Views | 使用可能なテーブルのサブセットにレポートされるビューを制限します。例えば、Views=ViewA,ViewB,ViewC です。 |
Schema | 使用するスキーマの種類。 |
RowScanDepth | The number of rows to scan when dynamically determining columns for the table. |
テーブル、ビュー、およびストアドプロシージャを定義するスキーマファイルを格納するディレクトリへのパス。
Sync App のスキーマファイル(テーブルとビューの場合は.rsd ファイル、ストアドプロシージャの場合は.rsb ファイル)を含むディレクトリへのパス。このフォルダの場所は、実行ファイルの場所からの相対パスにすることができます。Location プロパティは、定義をカスタマイズしたり(例えば、カラム名を変更する、カラムを無視するなど)、新しいテーブル、ビュー、またはストアドプロシージャでデータモデルを拡張する場合にのみ必要です。
Note: このSync App は複数のスキーマをサポートするため、NetSuite カスタムスキーマファイルの構造は以下のようになります。
指定しない場合、デフォルトの場所は"%APPDATA%\\CData\\NetSuite Data Provider\\Schema" となり、%APPDATA% はユーザーのコンフィギュレーションディレクトリに設定されます:
このプロパティは、使用可能なスキーマのサブセットにレポートされるスキーマを制限します。例えば、BrowsableSchemas=SchemaA,SchemaB,SchemaC です。
スキーマをデータベースからリストすると、負荷がかかる可能性があります。接続文字列でスキーマのリストを提供すると、 パフォーマンスが向上します。
このプロパティは、使用可能なテーブルのサブセットにレポートされるテーブルを制限します。例えば、Tables=TableA,TableB,TableC です。
テーブルを複数のデータベースからリストすると、負荷がかかる可能性があります。接続文字列でテーブルのリストを提供すると、Sync App のパフォーマンスが向上します。
このプロパティは、作業したいビューがすでにわかっていて、ビューが多すぎる場合に、ビューを自動的にリストする代わりに使用することもできます。
カンマ区切りのリストで使用したいテーブルを指定します。各テーブルは、角かっこ、二重引用符、またはバッククオートを使用してエスケープされた特殊文字列を含む有効なSQL 識別子である必要があります。 例えば、Tables=TableA,[TableB/WithSlash],WithCatalog.WithSchema.`TableC With Space` です。
複数のスキーマまたはカタログを持つデータソースに接続する場合は、複数のカタログやスキーマに存在するテーブル間の曖昧さを避けるため、最後の例のように、このプロパティにテーブルの完全修飾名を指定する必要があることに注意してください。
使用可能なテーブルのサブセットにレポートされるビューを制限します。例えば、Views=ViewA,ViewB,ViewC です。
ビューを複数のデータベースからリストすると、負荷がかかる可能性があります。接続文字列でビューのリストを提供すると、Sync App のパフォーマンスが向上します。
このプロパティは、作業したいビューがすでにわかっていて、ビューが多すぎる場合に、ビューを自動的にリストする代わりに使用することもできます。
カンマ区切りのリストで使用したいビューを指定します。各ビューは、角かっこ、二重引用符、またはバッククオートを使用してエスケープされた特殊文字列を含む有効なSQL 識別子である必要があります。 例えば、Views=ViewA,[ViewB/WithSlash],WithCatalog.WithSchema.`ViewC With Space` です。
複数のスキーマまたはカタログを持つデータソースに接続する場合は、複数のカタログやスキーマに存在するテーブル間の曖昧さを避けるため、最後の例のように、このプロパティにテーブルの完全修飾名を指定する必要があることに注意してください。
使用するスキーマの種類。
利用可能なスキーマは、SuiteTalk(SuiteTalk SOAP API とSuiteScript を使う場合)およびSuiteQL(SuiteQL 経由でREST API を使う場合)です。
The number of rows to scan when dynamically determining columns for the table.
This property applies only to the SuiteQL schema. SuiteQL has no metadata service available outside of custom records and custom fields. Standard tables and fields must be hardcoded in some fashion. However, this comes with a downside in that NetSuite will throw exceptions when columns and tables that are not available based on your user permissions or NetSuite company settings are attempted to be selected.
In order to try and ensure at least that the columns displayed are available to you in your connection, a RowScan can be performed during column listing. This will ensure that any columns that are displayed for a given table are actually available based on your user credentials. Note that NetSuite does not return columns that are null. Therefore, this method may result in tables that do not have complete column information. Please be aware that SuiteQL has a maximum pagesize of 1000. Setting this value higher than 1000 will result in multiple page requests. Setting RowScanDepth to 0 will result in no rows being scanned (all available columns will be listed regardless). RowScanDepth may not be set higher than 100000.
このセクションでは、本プロバイダーの接続文字列で設定可能なMiscellaneous プロパティの全リストを提供します。
プロパティ | 説明 |
AccountSupportsSuiteAnalyticsConnect | A boolean indicating if Connect Service Feature is enabled for the authenticated account. |
AggregateColumnMode | 集計カラムをどのように扱うべきかを示します。 |
ApplicationId | バージョン2020.1 以降、NetSuite へのリクエストにはアプリケーションID が必要です。 |
CustomFieldPermissions | カスタムフィールドの許可のカンマ区切りリスト。 IncludeCustomFieldColumns よりも細かく設定できます。 |
IncludeCustomFieldColumns | カスタムフィールドカラムを含めるかどうかを示すboolean。 |
IncludeCustomListTables | カスタムリストに基づいてテーブルを使用するかどうかを示すboolean。 |
IncludeCustomRecordTables | カスタムレコードタイプに基づいてテーブルを使用するかどうかを示すboolean。 |
IncludeReferenceColumns | レコード参照を表すフィールドからデータを取得するときに含めるカラムを表すカンマ区切りリスト。 |
MaximumConcurrentSessions | 接続で使用できる同時セッションの最大数。 |
MaxRows | クエリで集計またはグループ化を使用しない場合に返される行数を制限します。これにより、設計時にパフォーマンスの問題を回避できます。 |
NetsuiteDateFormat | The preffered date format set in NetSuite UI. |
NetsuiteLongDateFormat | The preffered long date format set in NetSuite UI. |
Other | これらの隠しプロパティは特定のユースケースでのみ使用されます。 |
Pagesize | NetSuite から返されるページあたりの結果数。 |
PseudoColumns | このプロパティは、テーブルのカラムとして疑似カラムが含まれているかどうかを示します。 |
ReportDoublesAsDecimal | double をdecimal としてレポートするかどうかを示します。 |
RequestMemorizedTransactions | NetSuite からトランザクションを取得するときに、記憶されたトランザクションをリクエストするかどうかを示すboolean。 |
Timeout | タイムアウトエラーがスローされ、処理をキャンセルするまでの秒数。 |
UseAsyncServices | 挿入、更新、および削除時に非同期サービスを使用するかどうかを示すboolean。 |
UseInternalNamesForCustomizations | カスタマイズ用に内部名を使用するかどうかを示すboolean。 |
UserDefinedViews | カスタムビューを含むJSON コンフィギュレーションファイルを指すファイルパス。 |
UserTimezoneOffset | NetSuite の[ホーム]->[プリファレンス]->[タイムゾーン]のプリファレンスの設定で定義されているユーザータイムゾーンオフセット。例:EST |
UseSimpleNames | テーブルとカラムに簡略名を使用するかどうかを決定するboolean。 |
UseUpserts | 挿入操作が使用されたときにupsert を実行するかどうかを示すboolean。 |
WebServiceHost | webservices.na1.netsuite.com などのWeb サービスホストのオーバーライドオプション。 |
A boolean indicating if Connect Service Feature is enabled for the authenticated account.
The API returns 100,000 records if the SuiteAnalytics Connect feature is disabled. To bypass this issue the provider will slice the query in multiple ones grouped by different range filters on primary key column. In case the SuiteAnalytics Connect feature is enabled in your account, the API will return unlimited results. To bypass the query slicing logic you will need to enable SuiteAnalytics Connect feature and set this connection property to true. As an additional feature, the provider will try to auto-detect if that feature is enabled but that request will fail in case the authenticated account doesn't have permissions to check the enabled features.
集計カラムをどのように扱うべきかを示します。
集計カラムは、子コレクション内に含まれるすべてのデータを集計する基本テーブルに表示されるカラムです。 これらのカラムには子コレクションのすべてのデータが含まれているため、非常に大きくなる可能性があります。 オフラインデータベースへのデータの書き込みなど、状況によってはAggregateColumnMode をIgnore またはList に設定することをお勧めします。 子テーブル内のデータは、IncludeChildTables をtrue に設定することで取得できます。 AggregateColumnMode をList に設定した場合でも、挿入および更新で使用するための集計カラムはリストされます。
Ignore | すべての集計は無視され、利用可能なカラムとしてテーブル定義に表示されません。 |
List | 集計カラムはすべてのテーブルに表示されますが、SalesOrders などの基本テーブルではNetSuite からデータを取得しません。 |
ListAndRetrieve | 集計カラムがすべてのテーブルでリストされ、リクエストされます。 |
バージョン2020.1 以降、NetSuite へのリクエストにはアプリケーションID が必要です。
NetSuite UI の[セットアップ]->[統合]->[統合の管理]で、アプリケーションを見つけることができます。 NetSuite との接続を確立する際に、利用可能な最大セッション数を確保するために、常に独自のアプリケーションを作成することをお勧めします。
カスタムフィールドの許可のカンマ区切りリスト。 IncludeCustomFieldColumns よりも細かく設定できます。
このプロパティはIncludeCustomFieldColumns に加えて、またはその代わりに設定できます。あるカスタムフィールドは許可して別のものは許可しない、というように認証にロールを使用したい場合は、このプロパティを使ってどのカスタムフィールドのメタデータがCData Sync App からリクエストされるのか、指定することができます。 このプロパティが空のままの場合、IncludeCustomFieldColumns が、すべてのカスタムフィールドのメタデータがリクエストされているのか、カスタムフィールドのメタデータは全くリクエストされていないのかを決定します。 空でなければ、このプロパティはIncludeCustomFieldColumns の動作をオーバーライドします。
例えば、すべてのカスタムフィールドの許可をすべての利用可能なテーブルに指定するには、このプロパティを以下のように設定します。
Custom Body Fields, Custom Column Fields, Custom Entity Fields, Custom Event Fields, Custom Item Fields, Item Number Fields, Other Custom Fields
カスタムフィールドカラムを含めるかどうかを示すboolean。
これをtrue に設定すると、カスタムフィールドが独自のカラムとして直接テーブルに表示されます。ただし、オープン接続で初めてテーブルのメタデータ情報を取得する場合、パフォーマンスは低下します。 テーブルのメタデータは接続時に格納され、接続が閉じられるとクリアされます。
カスタムリストに基づいてテーブルを使用するかどうかを示すboolean。
これをtrue に設定すると、カスタムリストタイプが独自のテーブルとして含まれます。ただし、オープン接続で初めてテーブルのメタデータ情報を取得する場合、パフォーマンスは低下します。 テーブルのメタデータは接続時に格納され、接続が閉じられるとクリアされます。
カスタムレコードタイプに基づいてテーブルを使用するかどうかを示すboolean。
これをtrue に設定すると、カスタムレコードタイプが独自のテーブルとして含まれます。ただし、オープン接続で初めてテーブルのメタデータ情報を取得する場合、パフォーマンスは低下します。 テーブルのメタデータは接続時に格納され、接続が閉じられるとクリアされます。
レコード参照を表すフィールドからデータを取得するときに含めるカラムを表すカンマ区切りリスト。
NetSuite の多くのフィールドは、他のタイプのレコードへの参照です。例えば、Invoice はAccount およびCustomer レコードを参照します。 レコード参照フィールドからデータを取得するときに、NetSuite から返されるデータがいくつかあります。 利用可能な値は次のとおりです。
InternalId | レコード参照のNetSuite 外部キー。 |
Name | 参照されるレコードの読み込み可能な名前。 |
Type | 参照されるレコードのタイプ。指定されたフィールドは1つの型しか持たないので、常に値が与えられるわけではありません。 |
接続で使用できる同時セッションの最大数。
バージョン2020.1 では、この値はAccountId およびApplicationId に基づいて自動的に取得されます。 NetSuite 2020.1 時点での同時接続セッションは、トークンベース認証でのみ可能です。 ユーザー/パスワードは常に利用可能な単一のセッションのみを解決します。
NetSuite では、一般的に最大5つの同時接続セッションを許可していますが、それ以上のレベルを購入することもできます。 接続に使用されているアカウントまたは統合アプリの同時セッション制限を超える追加のリクエストを行うと、エラーが発生します。 CData Sync App はすでに多くの同時リクエストが行われている場合、エラーを受け取る追加リクエストを保留することで、これを自動的に考慮しようとします。
アカウントの利用可能額が多い場合、同時利用可能なセッションの最大数を設定することができます。
クエリで集計またはグループ化を使用しない場合に返される行数を制限します。これにより、設計時にパフォーマンスの問題を回避できます。
クエリで集計またはグループ化を使用しない場合に返される行数を制限します。これにより、設計時にパフォーマンスの問題を回避できます。
The preffered date format set in NetSuite UI.
The preffered date format set in NetSuite UI. This format should be used when filtering based on Date. You can change the date format in NetSuite UI using Home -> Set Preferences -> Formatting.
Available values are: 'M/D/YYYY', 'D/M/YYYY', 'D.M.YYYY', 'D-MONTH-YYYY', 'D MONTH, YYYY', 'YYYY/M/D', 'YYYY-M-D', 'DD/MM/YYYY', 'DD-MON-YYYY', 'DD.MM.YYYY', 'DD-MONTH-YYYY', 'DD MONTH, YYYY', 'MM/DD/YYYY', 'YYYY/MM/DD', 'YYYY-MM-DD'.
Note:This property is only applicable for SuiteQL Schema. If the two formats are mismatched, the server thows an exception.
The preffered long date format set in NetSuite UI.
The preffered long date format set in NetSuite UI. This format should be used when filtering based on long date. You can change the long date format in NetSuite UI using Home -> Set Preferences -> Formatting
Available values are: 'Month D, YYYY', 'D Month YYYY', 'YYYY Month D', 'Month DD, YYYY', 'DD Month YYYY', 'YYYY Month DD'.
Note:This property is only applicable for SuiteQL Schema. If the two formats are mismatched, the server thows an exception.
これらの隠しプロパティは特定のユースケースでのみ使用されます。
以下にリストされているプロパティは、特定のユースケースで使用可能です。通常のドライバーのユースケースおよび機能では、これらのプロパティは必要ありません。
複数のプロパティをセミコロン区切りリストで指定します。
DefaultColumnSize | データソースがメタデータにカラムの長さを提供しない場合に、文字列フィールドのデフォルトの長さを設定します。デフォルト値は2000です。 |
ConvertDateTimeToGMT | 日時の値を、マシンのローカルタイムではなくGMT グリニッジ標準時に変換するかどうかを決定します。 |
RecordToFile=filename | 基底のソケットデータ転送を指定のファイルに記録します。 |
NetSuite から返されるページあたりの結果数。
ページサイズは、NetSuite からリクエストされたクエリの結果数をコントロールできます。 より大きなページサイズを設定することにより、一定のリクエストで返せるデータ量を増やすことができますが、実行にはより長い時間がかかります。 タイムアウト例外を発生させないためには、より小さなページサイズを設定することが推奨されます。
このプロパティは、テーブルのカラムとして疑似カラムが含まれているかどうかを示します。
Entity Framework ではテーブルカラムでない疑似カラムに値を設定できないため、この設定はEntity Framework で特に便利です。この接続設定の値は、"Table1=Column1, Table1=Column2, Table2=Column3" の形式です。"*=*" のように"*" 文字を使用して、すべてのテーブルとすべてのカラムを含めることができます。
double をdecimal としてレポートするかどうかを示します。
NetSuite API 内では、すべてのカラムがdouble としてレポートされます。ただし、この設定は集計クエリ内で使われると丸め処理に問題が発生する可能性があります。 金額に関するカラムが使用される場合、通常はdecimal としてレポート、格納されることが想定されています。 NetSuite API がこれらのカラムを扱う方法は変更できませんが、ツール内でdecimal として表現することで、集計のような式内で使用する際に、上の問題を回避できます。 既存の実装との後方互換性を保つには、このプロパティをfalse に設定してください。
NetSuite からトランザクションを取得するときに、記憶されたトランザクションをリクエストするかどうかを示すboolean。
NetSuite で記憶されたトランザクションは、後から再び使用する可能性があるために記憶されたトランザクションです。 定期的に繰り返すように設定することも、ユーザーへのリマインダーにすることもできます。
タイムアウトエラーがスローされ、処理をキャンセルするまでの秒数。
Timeout プロパティが0に設定されている場合は、操作がタイムアウトしません。処理が正しく完了するか、エラー状態になるまで実行されます。 Timeout の有効期限が切れても処理が完了していない場合は、Sync App は例外をスローします。
NetSuite では、子テーブルからデータを取得する場合や、AggregateColumnMode がListAndRetrieve に設定されている特定のテーブルからデータを取得する場合に、オペレーションが戻るのに非常に長い時間がかかることがあります。 例えば、AggregateColumnMode がListAndRetrieve に設定されている場合、NetSuite から単一のリクエストで1000 SalesOrders を取得するのに10分以上かかるのは前例のないことではありません。 残念ながら、これはNetSuite Web サービスの制限であり、既知の解決策はありません。集計カラムや子テーブルで作業する必要がある場合は、Timeout を0に設定して、Pagesize の値を小さくし、すべてのカラムではなく特定のカラムを選択します。
挿入、更新、および削除時に非同期サービスを使用するかどうかを示すboolean。
NetSuite の応答は、特に一度に多数のレコードを挿入、更新、または削除する場合に、かなり遅くなる可能性があります。 このような状況では、非同期サービスを使用してデータを送信することをお勧めします。非同期サービスは、アプリケーションの実行中にNetSuite がデータを処理できるようにします。 非同期サービスを使用することの欠点は、NetSuite のJob をチェックして、NetSuite がリクエストの処理を完了したかどうか、問題がないかどうかを確認する必要があることです。
カスタマイズ用に内部名を使用するかどうかを示すboolean。
通常、カスタマイズ用のLabel はカスタムレコードのテーブルやカスタムフィールドのカラムを閲覧する際に表示されます。 これはNetSuite UI と同じ表示にすることで、操作を簡単にするための設定です。しかし、厳密には同じ設定が保持される保証はありません。 NetSuite 内からラベルを変更すると、カスタムフィールドやカスタムレコードの名前が、CData のツールでも変更されます。 UseInternalNamesForCustomizations をfalse に設定すると、代わりに内部API 名(これは変更することはできません)がこれらのテーブルやカスタムフィールドに表示されます。
カスタムビューを含むJSON コンフィギュレーションファイルを指すファイルパス。
ユーザー定義ビューは、UserDefinedViews.json というJSON 形式のコンフィギュレーションファイルで定義されています。Sync App は、このファイルで指定されたビューを自動的に検出します。
また、複数のビュー定義を持ち、UserDefinedViews 接続プロパティを使用して制御することも可能です。このプロパティを使用すると、指定されたビューのみがSync App によって検知されます。
このユーザー定義ビューのコンフィギュレーションファイルは、次のようにフォーマットされています。
次に例を示します。
{ "MyView": { "query": "SELECT * FROM Account WHERE MyColumn = 'value'" }, "MyView2": { "query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)" } }UserDefinedViews 接続プロパティを使用して、JSON コンフィギュレーションファイルの場所を指定します。次に例を示します。
"UserDefinedViews", "C:\\Users\\yourusername\\Desktop\\tmp\\UserDefinedViews.json"
NetSuite の[ホーム]->[プリファレンス]->[タイムゾーン]のプリファレンスの設定で定義されているユーザータイムゾーンオフセット。例:EST
NetSuite は、ユーザータイムゾーンプリファレンスに基づいて日付と時刻のオフセットを返します。これはDate とTime オブジェクトにのみ適用され、Datetime には適用されません。Datetime は個人のプリファレンスに関係なく常に同じ方法で返されます。 CData では、NetSuite UI の表示と同じになるように自動修正して日付を返します。 ただし、デイライトセービングにより24時間以上の時差があるタイムゾーンがあるため、これは100% 完璧ではありません。 ユーザープリファレンスが+13:00、+12:00、または-12:00 に設定されている場合は、この値を指定して日付を正しく表示させます。 その他のオフセットでは必須ではありませんが、最高の精度を得るため指定することをお勧めします。
Time の値を取得する場合、このプロパティは、ローカルマシンの時刻がログインユーザーのものと一致しない場合にのみ必要です。 確認するには、NetSuite UI にログインしてホームアイコンの上にマウスを置き[プリファレンス]を選択してください。ユーザーのタイムゾーンオフセットはそこで指定されます。 もし、CData Sync App が実行されるローカルマシンが、ユーザーに設定されているタイムゾーンと同じタイムゾーンに一致しない状況にある場合は、UserTimezoneOffset をNetSuite のユーザー設定で指定されたものと一致するように設定してください。
テーブルとカラムに簡略名を使用するかどうかを決定するboolean。
NetSuite テーブルおよびカラムでは、 通常のデータベースでは使うことが認められていない特殊記号・文字を名前に使うことができます。UseSimpleNames を使用すると、Sync App を従来のデータベースツールでより簡単に使用できるようになります。
UseSimpleNames をtrue に設定し、返されるテーブル名およびカラム名をシンプルにします。表示されるテーブル名 およびカラム名においてアルファベット文字およびアンダースコアのみを有効とするネーミングスキームを強制します。 英数字以外の文字はすべて、アンダースコアに変換されます。
挿入操作が使用されたときにupsert を実行するかどうかを示すboolean。
Upsert を使用すると、挿入時に既存のレコードを更新できます。NetSuite は、指定されたレコードのExternalId を使用してこれを処理します。 指定したExternalId がNetSuite に存在するときに挿入を実行すると、代わりに対応するレコードが更新されます。 それ以外の場合は、挿入が行われます。常に新しいレコードを挿入するには、この値をfalse に設定してください。
webservices.na1.netsuite.com などのWeb サービスホストのオーバーライドオプション。
これは、何らかの理由でホストが動的に解決できない場合のWeb サービスホストのオーバーライドです。 通常は指定する必要はありません。
ほとんどの場合、Web サービスのホストはNetSuite のWeb サービスのリクエストを使用して動的に決定され、お客様のアカウント用の正しいWeb サービスホストを取得します。 これにより、新しい接続を作成して確立するたびに1つの追加リクエストが発生します。 この余分なリクエストを回避したい場合やサービスホストを解決できない場合は、代わりにそれをオーバーライドするWebServiceHost を設定することができます。
Web サービスホストは以下のフォーマットに従ってください。アカウントid 内の"_" はすべて"-" に置き換えてください。 アカウントid はすべて小文字で、[アカウントid].suitetalk.api.netsuite.com としてください。
Web サービスホストを取得するには、NetSuite に管理者としてログインして、[設定]->[会社]->[会社情報]に進んでください。 会社のURL のタブ以下のSuiteTalk にURL が表示されています。