FinancialTransactions
The request returns a list of financial documents that are ready to be processed. The request can include parameters to limit the results.
テーブル固有の情報
Select
本製品 はSAP Concur API を使用して、DocType、DocId、IgnoreDocumentStatus、およびSystemId を参照するフィルタを処理します。本製品 はクライアント側で本製品 内で他のフィルタを処理します。
例えば、本製品 はSAP Concur API に次のクエリの処理をオフロードします。
SELECT * FROM FinancialTransactions WHERE DocType = 'expense' SELECT * FROM FinancialTransactions WHERE DocType = 'expense' AND DocId = 'some doc id' SELECT * FROM FinancialTransactions WHERE DocType = 'expense' AND IgnoreDocumentStatus = 'yes' SELECT * FROM FinancialTransactions WHERE DocType = 'expense' AND SystemId = 'some system id'
DocType はAPI で常に要求されることに注意してください。指定されない場合は、プロバイダーは次のように変換します。
SELECT * FROM FinancialTransactionsTO:
SELECT * FROM FinancialTransactions WHERE DocType IN ('expense','invoice','cashadvance','payroll','requestobligation','reportobligation')
パフォーマンスの問題を回避するために、常にDocType フィルタを適用してください。
Columns
| Name | Type | References | Description |
| Id [KEY] | String | The unique identifier for the document. | |
| DocType | String | Transaction type | |
| CompanyId | String | Unique identifier for the company in SAP Concur. Maximum 32 characters. | |
| EntityId | String | Unique identifier for the entity in SAP Concur. Maximum 32 characters. | |
| CompanyUuid | String | UUID for the company in SAP Concur. Maximum 36 characters. | |
| ErpSystemId | String | The external System ID that processed the document. Maximum 50 characters. | |
| Document | String | The JSON financial document. | |
| DocStatus | String | The financial document status. Supported values: READY, ACKNOWLEDGED, POSTING_CONFIRMED_SUCCESS, POSTING_CONFIRMED_FAILURE. | |
| DocId | String | The transaction unique identifier, it could be expense report ID, payment request ID or cash advance ID. If specified, a single document that matches docId is returned. | |
| IgnoreDocumentStatus | String | Ignores the financial documents status. If yes, a document is returned regardless of status. If no, only documents that have not been acknowledged/confirmed are returned. Supported values: yes, no. | |
| SystemId | String | The external system ID that processed the document. Maximum 50 characters. |