sap.businessone.financials
Module sap.businessone.financials
API
Definitions
ballerinax/sap.businessone.financials Ballerina library
Overview
SAP Business One is an enterprise resource planning (ERP) solution designed for small and midsize businesses by SAP SE.
The SAP Business One Financials connector provides APIs for the financial accounting objects of SAP Business One: chart of accounts, journal entries, budgets, cost accounting dimensions, and tax setup, exposed through the SAP Business One Service Layer (OData).
Key Features
- Create and query journal entries and posting templates
- Manage the chart of accounts and account categories
- Maintain budgets, budget scenarios, and distribution rules
- Configure tax codes, VAT groups, and withholding tax
Setup guide
The connector requires an SAP Business One installation with the Service Layer component enabled.
To connect, you need three values from the SAP Business One desktop client's login screen: the company database, your user name, and your password.
Click the company name at the top of the SAP Business One desktop application, or contact your administrator.

The Service Layer endpoint follows the pattern https://<host>:50000/b1s/v1.
Quickstart
To use the sap.businessone.financials connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
import ballerinax/sap.businessone.financials;
Step 2: Instantiate a new connector
The connector authenticates with the Service Layer session protocol: it logs in with the configured company
database, user name, and password, tracks the B1SESSION/ROUTEID cookies, and transparently re-logs in once
when the session expires. Place the credentials in a Config.toml (never commit credentials to source control):
serviceUrl = "https://<host>:50000/b1s/v1" companyDb = "<COMPANY_DB>" username = "<USER>" password = "<PASSWORD>"
configurable string serviceUrl = ?; configurable string companyDb = ?; configurable string username = ?; configurable string password = ?; financials:Client b1Client = check new ( {companyDb, username, password}, serviceUrl = serviceUrl );
Step 3: Invoke the connector operation
financials:JournalEntries_CollectionResponse response = check b1Client->journalEntriesList();
Step 4: Run the Ballerina application
bal run
Examples
The SAP Business One connectors provide practical examples illustrating usage in various scenarios. Explore these examples, covering use cases like listing open sales orders, reporting inventory stock, and logging CRM activities.
Clients
sap.businessone.financials: Client
OpenAPI 3.0.3 description generated directly from the SAP Business One Service Layer OData V3 $metadata (namespace 'SAPB1')
Authentication is session based: call POST /Login with company/user/password; the Service Layer returns a B1SESSION cookie (and a ROUTEID cookie when load balanced) that must be sent on every subsequent request. Call POST /Logout to end the session
Collection responses use the OData V3 envelope { "odata.metadata": ..., "value": [ ... ], "odata.nextLink": ... }. Use $inlinecount=allpages to obtain the total count and the Prefer: odata.maxpagesize=N header to control server paging
Constructor
Gets invoked to initialize the connector
init (SessionConfig session, ConnectionConfig config, string serviceUrl)- session SessionConfig - SAP Business One Service Layer session credentials
- config ConnectionConfig {} - The configurations to be used when initializing the
connector
- serviceUrl string "https://localhost:50000/b1s/v1" - URL of the target service
listAccountCategory
function listAccountCategory(ListAccountCategoryHeaders headers, *ListAccountCategoryQueries queries) returns AccountCategoryCollectionResponse|errorQuery the AccountCategory collection
Parameters
- headers ListAccountCategoryHeaders (default {}) - Headers to be sent with the request
- queries *ListAccountCategoryQueries - Queries to be sent with the request
Return Type
- AccountCategoryCollectionResponse|error - A page of entities
createAccountCategory
function createAccountCategory(AccountCategory payload, map<string|string[]> headers) returns AccountCategory|errorCreate a new AccountCategory
Parameters
- payload AccountCategory - Request payload
Return Type
- AccountCategory|error - The created entity
getAccountCategory
function getAccountCategory(Signed32 categoryCode, map<string|string[]> headers, *GetAccountCategoryQueries queries) returns AccountCategory|errorGet a single AccountCategory by key
Parameters
- categoryCode Signed32 - Key property 'CategoryCode' (Edm.Int32)
- queries *GetAccountCategoryQueries - Queries to be sent with the request
Return Type
- AccountCategory|error - The requested entity
deleteAccountCategory
Delete a AccountCategory
Parameters
- categoryCode Signed32 - Key property 'CategoryCode' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateAccountCategory
function updateAccountCategory(Signed32 categoryCode, AccountCategory payload, map<string|string[]> headers) returns error?Partially update a AccountCategory (PATCH/MERGE semantics)
Parameters
- categoryCode Signed32 - Key property 'CategoryCode' (Edm.Int32)
- payload AccountCategory - Request payload
Return Type
- error? - Updated. No content returned
accountCategoryServiceGetCategoryList
function accountCategoryServiceGetCategoryList(map<string|string[]> headers) returns inline_response_200|errorGet category list
Return Type
- inline_response_200|error - Function result
listAccountSegmentationCategories
function listAccountSegmentationCategories(ListAccountSegmentationCategoriesHeaders headers, *ListAccountSegmentationCategoriesQueries queries) returns AccountSegmentationCategoriesCollectionResponse|errorQuery the AccountSegmentationCategories collection
Parameters
- headers ListAccountSegmentationCategoriesHeaders (default {}) - Headers to be sent with the request
- queries *ListAccountSegmentationCategoriesQueries - Queries to be sent with the request
Return Type
- AccountSegmentationCategoriesCollectionResponse|error - A page of entities
createAccountSegmentationCategories
function createAccountSegmentationCategories(AccountSegmentationCategory payload, map<string|string[]> headers) returns AccountSegmentationCategory|errorCreate a new AccountSegmentationCategory
Parameters
- payload AccountSegmentationCategory - Request payload
Return Type
- AccountSegmentationCategory|error - The created entity
getAccountSegmentationCategories
function getAccountSegmentationCategories(Signed32 segmentID, string code, map<string|string[]> headers, *GetAccountSegmentationCategoriesQueries queries) returns AccountSegmentationCategory|errorGet a single AccountSegmentationCategory by key
Parameters
- segmentID Signed32 - Composite key part 'SegmentID' (Edm.Int32)
- code string - Composite key part 'Code' (Edm.String)
- queries *GetAccountSegmentationCategoriesQueries - Queries to be sent with the request
Return Type
- AccountSegmentationCategory|error - The requested entity
deleteAccountSegmentationCategories
function deleteAccountSegmentationCategories(Signed32 segmentID, string code, map<string|string[]> headers) returns error?Delete a AccountSegmentationCategory
Parameters
- segmentID Signed32 - Composite key part 'SegmentID' (Edm.Int32)
- code string - Composite key part 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateAccountSegmentationCategories
function updateAccountSegmentationCategories(Signed32 segmentID, string code, AccountSegmentationCategory payload, map<string|string[]> headers) returns error?Partially update a AccountSegmentationCategory (PATCH/MERGE semantics)
Parameters
- segmentID Signed32 - Composite key part 'SegmentID' (Edm.Int32)
- code string - Composite key part 'Code' (Edm.String)
- payload AccountSegmentationCategory - Request payload
Return Type
- error? - Updated. No content returned
listAccountSegmentations
function listAccountSegmentations(ListAccountSegmentationsHeaders headers, *ListAccountSegmentationsQueries queries) returns AccountSegmentationsCollectionResponse|errorQuery the AccountSegmentations collection
Parameters
- headers ListAccountSegmentationsHeaders (default {}) - Headers to be sent with the request
- queries *ListAccountSegmentationsQueries - Queries to be sent with the request
Return Type
- AccountSegmentationsCollectionResponse|error - A page of entities
createAccountSegmentations
function createAccountSegmentations(AccountSegmentation payload, map<string|string[]> headers) returns AccountSegmentation|errorCreate a new AccountSegmentation
Parameters
- payload AccountSegmentation - Request payload
Return Type
- AccountSegmentation|error - The created entity
getAccountSegmentations
function getAccountSegmentations(Signed32 numerator, map<string|string[]> headers, *GetAccountSegmentationsQueries queries) returns AccountSegmentation|errorGet a single AccountSegmentation by key
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- queries *GetAccountSegmentationsQueries - Queries to be sent with the request
Return Type
- AccountSegmentation|error - The requested entity
deleteAccountSegmentations
function deleteAccountSegmentations(Signed32 numerator, map<string|string[]> headers) returns error?Delete a AccountSegmentation
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateAccountSegmentations
function updateAccountSegmentations(Signed32 numerator, AccountSegmentation payload, map<string|string[]> headers) returns error?Partially update a AccountSegmentation (PATCH/MERGE semantics)
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- payload AccountSegmentation - Request payload
Return Type
- error? - Updated. No content returned
accountsServiceCreateOpenBalance
function accountsServiceCreateOpenBalance(AccountsService_CreateOpenBalance_body payload, map<string|string[]> headers) returns error?Create open balance
Parameters
- payload AccountsService_CreateOpenBalance_body - Request payload
Return Type
- error? - Success. No content returned
listAccrualTypes
function listAccrualTypes(ListAccrualTypesHeaders headers, *ListAccrualTypesQueries queries) returns AccrualTypesCollectionResponse|errorQuery the AccrualTypes collection
Parameters
- headers ListAccrualTypesHeaders (default {}) - Headers to be sent with the request
- queries *ListAccrualTypesQueries - Queries to be sent with the request
Return Type
- AccrualTypesCollectionResponse|error - A page of entities
createAccrualTypes
function createAccrualTypes(AccrualType payload, map<string|string[]> headers) returns AccrualType|errorCreate a new AccrualType
Parameters
- payload AccrualType - Request payload
Return Type
- AccrualType|error - The created entity
getAccrualTypes
function getAccrualTypes(string code, map<string|string[]> headers, *GetAccrualTypesQueries queries) returns AccrualType|errorGet a single AccrualType by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetAccrualTypesQueries - Queries to be sent with the request
Return Type
- AccrualType|error - The requested entity
deleteAccrualTypes
Delete a AccrualType
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateAccrualTypes
function updateAccrualTypes(string code, AccrualType payload, map<string|string[]> headers) returns error?Partially update a AccrualType (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
accrualTypesServiceGetAccrualTypeList
function accrualTypesServiceGetAccrualTypeList(map<string|string[]> headers) returns inline_response_200_1|errorGet accrual type list
Return Type
- inline_response_200_1|error - Function result
listBudgetDistributions
function listBudgetDistributions(ListBudgetDistributionsHeaders headers, *ListBudgetDistributionsQueries queries) returns BudgetDistributionsCollectionResponse|errorQuery the BudgetDistributions collection
Parameters
- headers ListBudgetDistributionsHeaders (default {}) - Headers to be sent with the request
- queries *ListBudgetDistributionsQueries - Queries to be sent with the request
Return Type
- BudgetDistributionsCollectionResponse|error - A page of entities
createBudgetDistributions
function createBudgetDistributions(BudgetDistribution payload, map<string|string[]> headers) returns BudgetDistribution|errorCreate a new BudgetDistribution
Parameters
- payload BudgetDistribution - Request payload
Return Type
- BudgetDistribution|error - The created entity
getBudgetDistributions
function getBudgetDistributions(Signed32 divisionCode, map<string|string[]> headers, *GetBudgetDistributionsQueries queries) returns BudgetDistribution|errorGet a single BudgetDistribution by key
Parameters
- divisionCode Signed32 - Key property 'DivisionCode' (Edm.Int32)
- queries *GetBudgetDistributionsQueries - Queries to be sent with the request
Return Type
- BudgetDistribution|error - The requested entity
deleteBudgetDistributions
function deleteBudgetDistributions(Signed32 divisionCode, map<string|string[]> headers) returns error?Delete a BudgetDistribution
Parameters
- divisionCode Signed32 - Key property 'DivisionCode' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBudgetDistributions
function updateBudgetDistributions(Signed32 divisionCode, BudgetDistribution payload, map<string|string[]> headers) returns error?Partially update a BudgetDistribution (PATCH/MERGE semantics)
Parameters
- divisionCode Signed32 - Key property 'DivisionCode' (Edm.Int32)
- payload BudgetDistribution - Request payload
Return Type
- error? - Updated. No content returned
listBudgetScenarios
function listBudgetScenarios(ListBudgetScenariosHeaders headers, *ListBudgetScenariosQueries queries) returns BudgetScenariosCollectionResponse|errorQuery the BudgetScenarios collection
Parameters
- headers ListBudgetScenariosHeaders (default {}) - Headers to be sent with the request
- queries *ListBudgetScenariosQueries - Queries to be sent with the request
Return Type
- BudgetScenariosCollectionResponse|error - A page of entities
createBudgetScenarios
function createBudgetScenarios(BudgetScenario payload, map<string|string[]> headers) returns BudgetScenario|errorCreate a new BudgetScenario
Parameters
- payload BudgetScenario - Request payload
Return Type
- BudgetScenario|error - The created entity
getBudgetScenarios
function getBudgetScenarios(Signed32 numerator, map<string|string[]> headers, *GetBudgetScenariosQueries queries) returns BudgetScenario|errorGet a single BudgetScenario by key
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- queries *GetBudgetScenariosQueries - Queries to be sent with the request
Return Type
- BudgetScenario|error - The requested entity
deleteBudgetScenarios
Delete a BudgetScenario
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBudgetScenarios
function updateBudgetScenarios(Signed32 numerator, BudgetScenario payload, map<string|string[]> headers) returns error?Partially update a BudgetScenario (PATCH/MERGE semantics)
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- payload BudgetScenario - Request payload
Return Type
- error? - Updated. No content returned
listBudgets
function listBudgets(ListBudgetsHeaders headers, *ListBudgetsQueries queries) returns BudgetsCollectionResponse|errorQuery the Budgets collection
Parameters
- headers ListBudgetsHeaders (default {}) - Headers to be sent with the request
- queries *ListBudgetsQueries - Queries to be sent with the request
Return Type
- BudgetsCollectionResponse|error - A page of entities
createBudgets
Create a new Budget
Parameters
- payload Budget - Request payload
getBudgets
function getBudgets(Signed32 numerator, map<string|string[]> headers, *GetBudgetsQueries queries) returns Budget|errorGet a single Budget by key
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- queries *GetBudgetsQueries - Queries to be sent with the request
deleteBudgets
Delete a Budget
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBudgets
function updateBudgets(Signed32 numerator, Budget payload, map<string|string[]> headers) returns error?Partially update a Budget (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listCashDiscounts
function listCashDiscounts(ListCashDiscountsHeaders headers, *ListCashDiscountsQueries queries) returns CashDiscountsCollectionResponse|errorQuery the CashDiscounts collection
Parameters
- headers ListCashDiscountsHeaders (default {}) - Headers to be sent with the request
- queries *ListCashDiscountsQueries - Queries to be sent with the request
Return Type
- CashDiscountsCollectionResponse|error - A page of entities
createCashDiscounts
function createCashDiscounts(CashDiscount payload, map<string|string[]> headers) returns CashDiscount|errorCreate a new CashDiscount
Parameters
- payload CashDiscount - Request payload
Return Type
- CashDiscount|error - The created entity
getCashDiscounts
function getCashDiscounts(string code, map<string|string[]> headers, *GetCashDiscountsQueries queries) returns CashDiscount|errorGet a single CashDiscount by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetCashDiscountsQueries - Queries to be sent with the request
Return Type
- CashDiscount|error - The requested entity
deleteCashDiscounts
Delete a CashDiscount
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateCashDiscounts
function updateCashDiscounts(string code, CashDiscount payload, map<string|string[]> headers) returns error?Partially update a CashDiscount (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
cashDiscountsServiceGetCashDiscountList
function cashDiscountsServiceGetCashDiscountList(map<string|string[]> headers) returns inline_response_200_2|errorGet cash discount list
Return Type
- inline_response_200_2|error - Function result
listCashFlowLineItems
function listCashFlowLineItems(ListCashFlowLineItemsHeaders headers, *ListCashFlowLineItemsQueries queries) returns CashFlowLineItemsCollectionResponse|errorQuery the CashFlowLineItems collection
Parameters
- headers ListCashFlowLineItemsHeaders (default {}) - Headers to be sent with the request
- queries *ListCashFlowLineItemsQueries - Queries to be sent with the request
Return Type
- CashFlowLineItemsCollectionResponse|error - A page of entities
createCashFlowLineItems
function createCashFlowLineItems(CashFlowLineItem payload, map<string|string[]> headers) returns CashFlowLineItem|errorCreate a new CashFlowLineItem
Parameters
- payload CashFlowLineItem - Request payload
Return Type
- CashFlowLineItem|error - The created entity
getCashFlowLineItems
function getCashFlowLineItems(Signed32 lineItemID, map<string|string[]> headers, *GetCashFlowLineItemsQueries queries) returns CashFlowLineItem|errorGet a single CashFlowLineItem by key
Parameters
- lineItemID Signed32 - Key property 'LineItemID' (Edm.Int32)
- queries *GetCashFlowLineItemsQueries - Queries to be sent with the request
Return Type
- CashFlowLineItem|error - The requested entity
deleteCashFlowLineItems
Delete a CashFlowLineItem
Parameters
- lineItemID Signed32 - Key property 'LineItemID' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateCashFlowLineItems
function updateCashFlowLineItems(Signed32 lineItemID, CashFlowLineItem payload, map<string|string[]> headers) returns error?Partially update a CashFlowLineItem (PATCH/MERGE semantics)
Parameters
- lineItemID Signed32 - Key property 'LineItemID' (Edm.Int32)
- payload CashFlowLineItem - Request payload
Return Type
- error? - Updated. No content returned
cashFlowLineItemsServiceGetCashFlowLineItemList
function cashFlowLineItemsServiceGetCashFlowLineItemList(map<string|string[]> headers) returns inline_response_200_3|errorGet cash flow line item list
Return Type
- inline_response_200_3|error - Function result
listChartOfAccounts
function listChartOfAccounts(ListChartOfAccountsHeaders headers, *ListChartOfAccountsQueries queries) returns ChartOfAccountsCollectionResponse|errorQuery the ChartOfAccounts collection
Parameters
- headers ListChartOfAccountsHeaders (default {}) - Headers to be sent with the request
- queries *ListChartOfAccountsQueries - Queries to be sent with the request
Return Type
- ChartOfAccountsCollectionResponse|error - A page of entities
createChartOfAccounts
function createChartOfAccounts(ChartOfAccount payload, map<string|string[]> headers) returns ChartOfAccount|errorCreate a new ChartOfAccount
Parameters
- payload ChartOfAccount - Request payload
Return Type
- ChartOfAccount|error - The created entity
getChartOfAccounts
function getChartOfAccounts(string code, map<string|string[]> headers, *GetChartOfAccountsQueries queries) returns ChartOfAccount|errorGet a single ChartOfAccount by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetChartOfAccountsQueries - Queries to be sent with the request
Return Type
- ChartOfAccount|error - The requested entity
deleteChartOfAccounts
Delete a ChartOfAccount
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateChartOfAccounts
function updateChartOfAccounts(string code, ChartOfAccount payload, map<string|string[]> headers) returns error?Partially update a ChartOfAccount (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listClosingDateProcedure
function listClosingDateProcedure(ListClosingDateProcedureHeaders headers, *ListClosingDateProcedureQueries queries) returns ClosingDateProcedureCollectionResponse|errorQuery the ClosingDateProcedure collection
Parameters
- headers ListClosingDateProcedureHeaders (default {}) - Headers to be sent with the request
- queries *ListClosingDateProcedureQueries - Queries to be sent with the request
Return Type
- ClosingDateProcedureCollectionResponse|error - A page of entities
createClosingDateProcedure
function createClosingDateProcedure(ClosingDateProcedure payload, map<string|string[]> headers) returns ClosingDateProcedure|errorCreate a new ClosingDateProcedure
Parameters
- payload ClosingDateProcedure - Request payload
Return Type
- ClosingDateProcedure|error - The created entity
getClosingDateProcedure
function getClosingDateProcedure(Signed32 closingDateNum, map<string|string[]> headers, *GetClosingDateProcedureQueries queries) returns ClosingDateProcedure|errorGet a single ClosingDateProcedure by key
Parameters
- closingDateNum Signed32 - Key property 'ClosingDateNum' (Edm.Int32)
- queries *GetClosingDateProcedureQueries - Queries to be sent with the request
Return Type
- ClosingDateProcedure|error - The requested entity
deleteClosingDateProcedure
function deleteClosingDateProcedure(Signed32 closingDateNum, map<string|string[]> headers) returns error?Delete a ClosingDateProcedure
Parameters
- closingDateNum Signed32 - Key property 'ClosingDateNum' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateClosingDateProcedure
function updateClosingDateProcedure(Signed32 closingDateNum, ClosingDateProcedure payload, map<string|string[]> headers) returns error?Partially update a ClosingDateProcedure (PATCH/MERGE semantics)
Parameters
- closingDateNum Signed32 - Key property 'ClosingDateNum' (Edm.Int32)
- payload ClosingDateProcedure - Request payload
Return Type
- error? - Updated. No content returned
listCostCenterTypes
function listCostCenterTypes(ListCostCenterTypesHeaders headers, *ListCostCenterTypesQueries queries) returns CostCenterTypesCollectionResponse|errorQuery the CostCenterTypes collection
Parameters
- headers ListCostCenterTypesHeaders (default {}) - Headers to be sent with the request
- queries *ListCostCenterTypesQueries - Queries to be sent with the request
Return Type
- CostCenterTypesCollectionResponse|error - A page of entities
createCostCenterTypes
function createCostCenterTypes(CostCenterType payload, map<string|string[]> headers) returns CostCenterType|errorCreate a new CostCenterType
Parameters
- payload CostCenterType - Request payload
Return Type
- CostCenterType|error - The created entity
getCostCenterTypes
function getCostCenterTypes(string costCenterTypeCode, map<string|string[]> headers, *GetCostCenterTypesQueries queries) returns CostCenterType|errorGet a single CostCenterType by key
Parameters
- costCenterTypeCode string - Key property 'CostCenterTypeCode' (Edm.String)
- queries *GetCostCenterTypesQueries - Queries to be sent with the request
Return Type
- CostCenterType|error - The requested entity
deleteCostCenterTypes
function deleteCostCenterTypes(string costCenterTypeCode, map<string|string[]> headers) returns error?Delete a CostCenterType
Parameters
- costCenterTypeCode string - Key property 'CostCenterTypeCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateCostCenterTypes
function updateCostCenterTypes(string costCenterTypeCode, CostCenterType payload, map<string|string[]> headers) returns error?Partially update a CostCenterType (PATCH/MERGE semantics)
Parameters
- costCenterTypeCode string - Key property 'CostCenterTypeCode' (Edm.String)
- payload CostCenterType - Request payload
Return Type
- error? - Updated. No content returned
costCenterTypesServiceGetCostCenterTypeList
function costCenterTypesServiceGetCostCenterTypeList(map<string|string[]> headers) returns inline_response_200_4|errorGet cost center type list
Return Type
- inline_response_200_4|error - Function result
costElementServiceGetCostElementList
function costElementServiceGetCostElementList(map<string|string[]> headers) returns inline_response_200_5|errorGet cost element list
Return Type
- inline_response_200_5|error - Function result
listCostElements
function listCostElements(ListCostElementsHeaders headers, *ListCostElementsQueries queries) returns CostElementsCollectionResponse|errorQuery the CostElements collection
Parameters
- headers ListCostElementsHeaders (default {}) - Headers to be sent with the request
- queries *ListCostElementsQueries - Queries to be sent with the request
Return Type
- CostElementsCollectionResponse|error - A page of entities
createCostElements
function createCostElements(CostElement payload, map<string|string[]> headers) returns CostElement|errorCreate a new CostElement
Parameters
- payload CostElement - Request payload
Return Type
- CostElement|error - The created entity
getCostElements
function getCostElements(string code, map<string|string[]> headers, *GetCostElementsQueries queries) returns CostElement|errorGet a single CostElement by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetCostElementsQueries - Queries to be sent with the request
Return Type
- CostElement|error - The requested entity
deleteCostElements
Delete a CostElement
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateCostElements
function updateCostElements(string code, CostElement payload, map<string|string[]> headers) returns error?Partially update a CostElement (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listCurrencies
function listCurrencies(ListCurrenciesHeaders headers, *ListCurrenciesQueries queries) returns CurrenciesCollectionResponse|errorQuery the Currencies collection
Parameters
- headers ListCurrenciesHeaders (default {}) - Headers to be sent with the request
- queries *ListCurrenciesQueries - Queries to be sent with the request
Return Type
- CurrenciesCollectionResponse|error - A page of entities
createCurrencies
Create a new Currency
Parameters
- payload Currency - Request payload
getCurrencies
function getCurrencies(string code, map<string|string[]> headers, *GetCurrenciesQueries queries) returns Currency|errorGet a single Currency by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetCurrenciesQueries - Queries to be sent with the request
deleteCurrencies
Delete a Currency
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateCurrencies
function updateCurrencies(string code, Currency payload, map<string|string[]> headers) returns error?Partially update a Currency (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
deductibleTaxServiceGetList
function deductibleTaxServiceGetList(map<string|string[]> headers) returns inline_response_200_6|errorGet list
Return Type
- inline_response_200_6|error - Function result
listDeductibleTaxes
function listDeductibleTaxes(ListDeductibleTaxesHeaders headers, *ListDeductibleTaxesQueries queries) returns DeductibleTaxesCollectionResponse|errorQuery the DeductibleTaxes collection
Parameters
- headers ListDeductibleTaxesHeaders (default {}) - Headers to be sent with the request
- queries *ListDeductibleTaxesQueries - Queries to be sent with the request
Return Type
- DeductibleTaxesCollectionResponse|error - A page of entities
createDeductibleTaxes
function createDeductibleTaxes(DeductibleTax payload, map<string|string[]> headers) returns DeductibleTax|errorCreate a new DeductibleTax
Parameters
- payload DeductibleTax - Request payload
Return Type
- DeductibleTax|error - The created entity
getDeductibleTaxes
function getDeductibleTaxes(string code, map<string|string[]> headers, *GetDeductibleTaxesQueries queries) returns DeductibleTax|errorGet a single DeductibleTax by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetDeductibleTaxesQueries - Queries to be sent with the request
Return Type
- DeductibleTax|error - The requested entity
deleteDeductibleTaxes
Delete a DeductibleTax
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateDeductibleTaxes
function updateDeductibleTaxes(string code, DeductibleTax payload, map<string|string[]> headers) returns error?Partially update a DeductibleTax (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listDeductionTaxGroups
function listDeductionTaxGroups(ListDeductionTaxGroupsHeaders headers, *ListDeductionTaxGroupsQueries queries) returns DeductionTaxGroupsCollectionResponse|errorQuery the DeductionTaxGroups collection
Parameters
- headers ListDeductionTaxGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListDeductionTaxGroupsQueries - Queries to be sent with the request
Return Type
- DeductionTaxGroupsCollectionResponse|error - A page of entities
createDeductionTaxGroups
function createDeductionTaxGroups(DeductionTaxGroup payload, map<string|string[]> headers) returns DeductionTaxGroup|errorCreate a new DeductionTaxGroup
Parameters
- payload DeductionTaxGroup - Request payload
Return Type
- DeductionTaxGroup|error - The created entity
getDeductionTaxGroups
function getDeductionTaxGroups(Signed32 groupKey, map<string|string[]> headers, *GetDeductionTaxGroupsQueries queries) returns DeductionTaxGroup|errorGet a single DeductionTaxGroup by key
Parameters
- groupKey Signed32 - Key property 'GroupKey' (Edm.Int32)
- queries *GetDeductionTaxGroupsQueries - Queries to be sent with the request
Return Type
- DeductionTaxGroup|error - The requested entity
deleteDeductionTaxGroups
Delete a DeductionTaxGroup
Parameters
- groupKey Signed32 - Key property 'GroupKey' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDeductionTaxGroups
function updateDeductionTaxGroups(Signed32 groupKey, DeductionTaxGroup payload, map<string|string[]> headers) returns error?Partially update a DeductionTaxGroup (PATCH/MERGE semantics)
Parameters
- groupKey Signed32 - Key property 'GroupKey' (Edm.Int32)
- payload DeductionTaxGroup - Request payload
Return Type
- error? - Updated. No content returned
listDeductionTaxHierarchies
function listDeductionTaxHierarchies(ListDeductionTaxHierarchiesHeaders headers, *ListDeductionTaxHierarchiesQueries queries) returns DeductionTaxHierarchiesCollectionResponse|errorQuery the DeductionTaxHierarchies collection
Parameters
- headers ListDeductionTaxHierarchiesHeaders (default {}) - Headers to be sent with the request
- queries *ListDeductionTaxHierarchiesQueries - Queries to be sent with the request
Return Type
- DeductionTaxHierarchiesCollectionResponse|error - A page of entities
createDeductionTaxHierarchies
function createDeductionTaxHierarchies(DeductionTaxHierarchy payload, map<string|string[]> headers) returns DeductionTaxHierarchy|errorCreate a new DeductionTaxHierarchy
Parameters
- payload DeductionTaxHierarchy - Request payload
Return Type
- DeductionTaxHierarchy|error - The created entity
getDeductionTaxHierarchies
function getDeductionTaxHierarchies(Signed32 absEntry, map<string|string[]> headers, *GetDeductionTaxHierarchiesQueries queries) returns DeductionTaxHierarchy|errorGet a single DeductionTaxHierarchy by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetDeductionTaxHierarchiesQueries - Queries to be sent with the request
Return Type
- DeductionTaxHierarchy|error - The requested entity
deleteDeductionTaxHierarchies
function deleteDeductionTaxHierarchies(Signed32 absEntry, map<string|string[]> headers) returns error?Delete a DeductionTaxHierarchy
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDeductionTaxHierarchies
function updateDeductionTaxHierarchies(Signed32 absEntry, DeductionTaxHierarchy payload, map<string|string[]> headers) returns error?Partially update a DeductionTaxHierarchy (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload DeductionTaxHierarchy - Request payload
Return Type
- error? - Updated. No content returned
listDeductionTaxSubGroups
function listDeductionTaxSubGroups(ListDeductionTaxSubGroupsHeaders headers, *ListDeductionTaxSubGroupsQueries queries) returns DeductionTaxSubGroupsCollectionResponse|errorQuery the DeductionTaxSubGroups collection
Parameters
- headers ListDeductionTaxSubGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListDeductionTaxSubGroupsQueries - Queries to be sent with the request
Return Type
- DeductionTaxSubGroupsCollectionResponse|error - A page of entities
createDeductionTaxSubGroups
function createDeductionTaxSubGroups(DeductionTaxSubGroup payload, map<string|string[]> headers) returns DeductionTaxSubGroup|errorCreate a new DeductionTaxSubGroup
Parameters
- payload DeductionTaxSubGroup - Request payload
Return Type
- DeductionTaxSubGroup|error - The created entity
getDeductionTaxSubGroups
function getDeductionTaxSubGroups(string groupCode, map<string|string[]> headers, *GetDeductionTaxSubGroupsQueries queries) returns DeductionTaxSubGroup|errorGet a single DeductionTaxSubGroup by key
Parameters
- groupCode string - Key property 'GroupCode' (Edm.String)
- queries *GetDeductionTaxSubGroupsQueries - Queries to be sent with the request
Return Type
- DeductionTaxSubGroup|error - The requested entity
deleteDeductionTaxSubGroups
Delete a DeductionTaxSubGroup
Parameters
- groupCode string - Key property 'GroupCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateDeductionTaxSubGroups
function updateDeductionTaxSubGroups(string groupCode, DeductionTaxSubGroup payload, map<string|string[]> headers) returns error?Partially update a DeductionTaxSubGroup (PATCH/MERGE semantics)
Parameters
- groupCode string - Key property 'GroupCode' (Edm.String)
- payload DeductionTaxSubGroup - Request payload
Return Type
- error? - Updated. No content returned
deductionTaxSubGroupsServiceGetDeductionTaxSubGroupList
function deductionTaxSubGroupsServiceGetDeductionTaxSubGroupList(map<string|string[]> headers) returns inline_response_200_7|errorGet deduction tax sub group list
Return Type
- inline_response_200_7|error - Function result
listDeterminationCriterias
function listDeterminationCriterias(ListDeterminationCriteriasHeaders headers, *ListDeterminationCriteriasQueries queries) returns DeterminationCriteriasCollectionResponse|errorQuery the DeterminationCriterias collection
Parameters
- headers ListDeterminationCriteriasHeaders (default {}) - Headers to be sent with the request
- queries *ListDeterminationCriteriasQueries - Queries to be sent with the request
Return Type
- DeterminationCriteriasCollectionResponse|error - A page of entities
createDeterminationCriterias
function createDeterminationCriterias(DeterminationCriteria payload, map<string|string[]> headers) returns DeterminationCriteria|errorCreate a new DeterminationCriteria
Parameters
- payload DeterminationCriteria - Request payload
Return Type
- DeterminationCriteria|error - The created entity
getDeterminationCriterias
function getDeterminationCriterias(Signed32 dmcId, map<string|string[]> headers, *GetDeterminationCriteriasQueries queries) returns DeterminationCriteria|errorGet a single DeterminationCriteria by key
Parameters
- dmcId Signed32 - Key property 'DmcId' (Edm.Int32)
- queries *GetDeterminationCriteriasQueries - Queries to be sent with the request
Return Type
- DeterminationCriteria|error - The requested entity
deleteDeterminationCriterias
Delete a DeterminationCriteria
Parameters
- dmcId Signed32 - Key property 'DmcId' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDeterminationCriterias
function updateDeterminationCriterias(Signed32 dmcId, DeterminationCriteria payload, map<string|string[]> headers) returns error?Partially update a DeterminationCriteria (PATCH/MERGE semantics)
Parameters
- dmcId Signed32 - Key property 'DmcId' (Edm.Int32)
- payload DeterminationCriteria - Request payload
Return Type
- error? - Updated. No content returned
determinationCriteriasServiceGetList
function determinationCriteriasServiceGetList(map<string|string[]> headers) returns inline_response_200_8|errorGet list
Return Type
- inline_response_200_8|error - Function result
listDimensions
function listDimensions(ListDimensionsHeaders headers, *ListDimensionsQueries queries) returns DimensionsCollectionResponse|errorQuery the Dimensions collection
Parameters
- headers ListDimensionsHeaders (default {}) - Headers to be sent with the request
- queries *ListDimensionsQueries - Queries to be sent with the request
Return Type
- DimensionsCollectionResponse|error - A page of entities
createDimensions
Create a new Dimension
Parameters
- payload Dimension - Request payload
getDimensions
function getDimensions(Signed32 dimensionCode, map<string|string[]> headers, *GetDimensionsQueries queries) returns Dimension|errorGet a single Dimension by key
Parameters
- dimensionCode Signed32 - Key property 'DimensionCode' (Edm.Int32)
- queries *GetDimensionsQueries - Queries to be sent with the request
deleteDimensions
Delete a Dimension
Parameters
- dimensionCode Signed32 - Key property 'DimensionCode' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateDimensions
function updateDimensions(Signed32 dimensionCode, Dimension payload, map<string|string[]> headers) returns error?Partially update a Dimension (PATCH/MERGE semantics)
Parameters
- dimensionCode Signed32 - Key property 'DimensionCode' (Edm.Int32)
- payload Dimension - Request payload
Return Type
- error? - Updated. No content returned
dimensionsServiceGetDimensionList
function dimensionsServiceGetDimensionList(map<string|string[]> headers) returns inline_response_200_9|errorGet dimension list
Return Type
- inline_response_200_9|error - Function result
listDistributionRules
function listDistributionRules(ListDistributionRulesHeaders headers, *ListDistributionRulesQueries queries) returns DistributionRulesCollectionResponse|errorQuery the DistributionRules collection
Parameters
- headers ListDistributionRulesHeaders (default {}) - Headers to be sent with the request
- queries *ListDistributionRulesQueries - Queries to be sent with the request
Return Type
- DistributionRulesCollectionResponse|error - A page of entities
createDistributionRules
function createDistributionRules(DistributionRule payload, map<string|string[]> headers) returns DistributionRule|errorCreate a new DistributionRule
Parameters
- payload DistributionRule - Request payload
Return Type
- DistributionRule|error - The created entity
getDistributionRules
function getDistributionRules(string factorCode, map<string|string[]> headers, *GetDistributionRulesQueries queries) returns DistributionRule|errorGet a single DistributionRule by key
Parameters
- factorCode string - Key property 'FactorCode' (Edm.String)
- queries *GetDistributionRulesQueries - Queries to be sent with the request
Return Type
- DistributionRule|error - The requested entity
deleteDistributionRules
Delete a DistributionRule
Parameters
- factorCode string - Key property 'FactorCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateDistributionRules
function updateDistributionRules(string factorCode, DistributionRule payload, map<string|string[]> headers) returns error?Partially update a DistributionRule (PATCH/MERGE semantics)
Parameters
- factorCode string - Key property 'FactorCode' (Edm.String)
- payload DistributionRule - Request payload
Return Type
- error? - Updated. No content returned
distributionRulesServiceGetDistributionRuleList
function distributionRulesServiceGetDistributionRuleList(map<string|string[]> headers) returns inline_response_200_10|errorGet distribution rule list
Return Type
- inline_response_200_10|error - Function result
listFinancialYears
function listFinancialYears(ListFinancialYearsHeaders headers, *ListFinancialYearsQueries queries) returns FinancialYearsCollectionResponse|errorQuery the FinancialYears collection
Parameters
- headers ListFinancialYearsHeaders (default {}) - Headers to be sent with the request
- queries *ListFinancialYearsQueries - Queries to be sent with the request
Return Type
- FinancialYearsCollectionResponse|error - A page of entities
createFinancialYears
function createFinancialYears(FinancialYear payload, map<string|string[]> headers) returns FinancialYear|errorCreate a new FinancialYear
Parameters
- payload FinancialYear - Request payload
Return Type
- FinancialYear|error - The created entity
getFinancialYears
function getFinancialYears(Signed32 absEntry, map<string|string[]> headers, *GetFinancialYearsQueries queries) returns FinancialYear|errorGet a single FinancialYear by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetFinancialYearsQueries - Queries to be sent with the request
Return Type
- FinancialYear|error - The requested entity
deleteFinancialYears
Delete a FinancialYear
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateFinancialYears
function updateFinancialYears(Signed32 absEntry, FinancialYear payload, map<string|string[]> headers) returns error?Partially update a FinancialYear (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload FinancialYear - Request payload
Return Type
- error? - Updated. No content returned
financialYearsServiceGetFinancialYearList
function financialYearsServiceGetFinancialYearList(map<string|string[]> headers) returns inline_response_200_11|errorGet financial year list
Return Type
- inline_response_200_11|error - Function result
listForms1099
function listForms1099(ListForms1099Headers headers, *ListForms1099Queries queries) returns Forms1099CollectionResponse|errorQuery the Forms1099 collection
Parameters
- headers ListForms1099Headers (default {}) - Headers to be sent with the request
- queries *ListForms1099Queries - Queries to be sent with the request
Return Type
- Forms1099CollectionResponse|error - A page of entities
createForms1099
Create a new Forms1099
Parameters
- payload Forms1099 - Request payload
getForms1099
function getForms1099(Signed32 formCode, map<string|string[]> headers, *GetForms1099Queries queries) returns Forms1099|errorGet a single Forms1099 by key
Parameters
- formCode Signed32 - Key property 'FormCode' (Edm.Int32)
- queries *GetForms1099Queries - Queries to be sent with the request
deleteForms1099
Delete a Forms1099
Parameters
- formCode Signed32 - Key property 'FormCode' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateForms1099
function updateForms1099(Signed32 formCode, Forms1099 payload, map<string|string[]> headers) returns error?Partially update a Forms1099 (PATCH/MERGE semantics)
Parameters
- formCode Signed32 - Key property 'FormCode' (Edm.Int32)
- payload Forms1099 - Request payload
Return Type
- error? - Updated. No content returned
listGLAccountAdvancedRules
function listGLAccountAdvancedRules(ListGLAccountAdvancedRulesHeaders headers, *ListGLAccountAdvancedRulesQueries queries) returns GLAccountAdvancedRulesCollectionResponse|errorQuery the GLAccountAdvancedRules collection
Parameters
- headers ListGLAccountAdvancedRulesHeaders (default {}) - Headers to be sent with the request
- queries *ListGLAccountAdvancedRulesQueries - Queries to be sent with the request
Return Type
- GLAccountAdvancedRulesCollectionResponse|error - A page of entities
createGLAccountAdvancedRules
function createGLAccountAdvancedRules(GLAccountAdvancedRule payload, map<string|string[]> headers) returns GLAccountAdvancedRule|errorCreate a new GLAccountAdvancedRule
Parameters
- payload GLAccountAdvancedRule - Request payload
Return Type
- GLAccountAdvancedRule|error - The created entity
getGLAccountAdvancedRules
function getGLAccountAdvancedRules(Signed32 absoluteEntry, map<string|string[]> headers, *GetGLAccountAdvancedRulesQueries queries) returns GLAccountAdvancedRule|errorGet a single GLAccountAdvancedRule by key
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
- queries *GetGLAccountAdvancedRulesQueries - Queries to be sent with the request
Return Type
- GLAccountAdvancedRule|error - The requested entity
deleteGLAccountAdvancedRules
function deleteGLAccountAdvancedRules(Signed32 absoluteEntry, map<string|string[]> headers) returns error?Delete a GLAccountAdvancedRule
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateGLAccountAdvancedRules
function updateGLAccountAdvancedRules(Signed32 absoluteEntry, GLAccountAdvancedRule payload, map<string|string[]> headers) returns error?Partially update a GLAccountAdvancedRule (PATCH/MERGE semantics)
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
- payload GLAccountAdvancedRule - Request payload
Return Type
- error? - Updated. No content returned
gLAccountAdvancedRulesServiceGetList
function gLAccountAdvancedRulesServiceGetList(map<string|string[]> headers) returns inline_response_200_12|errorGet list
Return Type
- inline_response_200_12|error - Function result
listJournalEntries
function listJournalEntries(ListJournalEntriesHeaders headers, *ListJournalEntriesQueries queries) returns JournalEntriesCollectionResponse|errorQuery the JournalEntries collection
Parameters
- headers ListJournalEntriesHeaders (default {}) - Headers to be sent with the request
- queries *ListJournalEntriesQueries - Queries to be sent with the request
Return Type
- JournalEntriesCollectionResponse|error - A page of entities
createJournalEntries
function createJournalEntries(JournalEntry payload, map<string|string[]> headers) returns JournalEntry|errorCreate a new JournalEntry
Parameters
- payload JournalEntry - Request payload
Return Type
- JournalEntry|error - The created entity
getJournalEntries
function getJournalEntries(Signed32 jdtNum, map<string|string[]> headers, *GetJournalEntriesQueries queries) returns JournalEntry|errorGet a single JournalEntry by key
Parameters
- jdtNum Signed32 - Key property 'JdtNum' (Edm.Int32)
- queries *GetJournalEntriesQueries - Queries to be sent with the request
Return Type
- JournalEntry|error - The requested entity
deleteJournalEntries
Delete a JournalEntry
Parameters
- jdtNum Signed32 - Key property 'JdtNum' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateJournalEntries
function updateJournalEntries(Signed32 jdtNum, JournalEntry payload, map<string|string[]> headers) returns error?Partially update a JournalEntry (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
journalEntriesCancel
Bound action 'Cancel' on JournalEntries (binding type JournalEntry)
Parameters
- jdtNum Signed32 - Key property 'JdtNum' (Edm.Int32)
Return Type
- error? - Success. No content returned
journalEntriesServiceClose
function journalEntriesServiceClose(JournalEntriesService_Close_body payload, map<string|string[]> headers) returns error?Close
Parameters
- payload JournalEntriesService_Close_body - Request payload
Return Type
- error? - Success. No content returned
journalEntryDocumentTypeServiceGetList
function journalEntryDocumentTypeServiceGetList(map<string|string[]> headers) returns inline_response_200_13|errorGet list
Return Type
- inline_response_200_13|error - Function result
listJournalEntryDocumentTypes
function listJournalEntryDocumentTypes(ListJournalEntryDocumentTypesHeaders headers, *ListJournalEntryDocumentTypesQueries queries) returns JournalEntryDocumentTypesCollectionResponse|errorQuery the JournalEntryDocumentTypes collection
Parameters
- headers ListJournalEntryDocumentTypesHeaders (default {}) - Headers to be sent with the request
- queries *ListJournalEntryDocumentTypesQueries - Queries to be sent with the request
Return Type
- JournalEntryDocumentTypesCollectionResponse|error - A page of entities
createJournalEntryDocumentTypes
function createJournalEntryDocumentTypes(JournalEntryDocumentType payload, map<string|string[]> headers) returns JournalEntryDocumentType|errorCreate a new JournalEntryDocumentType
Parameters
- payload JournalEntryDocumentType - Request payload
Return Type
- JournalEntryDocumentType|error - The created entity
getJournalEntryDocumentTypes
function getJournalEntryDocumentTypes(string journalEntryType, map<string|string[]> headers, *GetJournalEntryDocumentTypesQueries queries) returns JournalEntryDocumentType|errorGet a single JournalEntryDocumentType by key
Parameters
- journalEntryType string - Key property 'JournalEntryType' (Edm.String)
- queries *GetJournalEntryDocumentTypesQueries - Queries to be sent with the request
Return Type
- JournalEntryDocumentType|error - The requested entity
deleteJournalEntryDocumentTypes
function deleteJournalEntryDocumentTypes(string journalEntryType, map<string|string[]> headers) returns error?Delete a JournalEntryDocumentType
Parameters
- journalEntryType string - Key property 'JournalEntryType' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateJournalEntryDocumentTypes
function updateJournalEntryDocumentTypes(string journalEntryType, JournalEntryDocumentType payload, map<string|string[]> headers) returns error?Partially update a JournalEntryDocumentType (PATCH/MERGE semantics)
Parameters
- journalEntryType string - Key property 'JournalEntryType' (Edm.String)
- payload JournalEntryDocumentType - Request payload
Return Type
- error? - Updated. No content returned
journalVouchersServiceAdd
function journalVouchersServiceAdd(JournalVouchersService_Add_body payload, map<string|string[]> headers) returns error?Add
Parameters
- payload JournalVouchersService_Add_body - Request payload
Return Type
- error? - Success. No content returned
listNatureOfAssessees
function listNatureOfAssessees(ListNatureOfAssesseesHeaders headers, *ListNatureOfAssesseesQueries queries) returns NatureOfAssesseesCollectionResponse|errorQuery the NatureOfAssessees collection
Parameters
- headers ListNatureOfAssesseesHeaders (default {}) - Headers to be sent with the request
- queries *ListNatureOfAssesseesQueries - Queries to be sent with the request
Return Type
- NatureOfAssesseesCollectionResponse|error - A page of entities
createNatureOfAssessees
function createNatureOfAssessees(NatureOfAssessee payload, map<string|string[]> headers) returns NatureOfAssessee|errorCreate a new NatureOfAssessee
Parameters
- payload NatureOfAssessee - Request payload
Return Type
- NatureOfAssessee|error - The created entity
getNatureOfAssessees
function getNatureOfAssessees(Signed32 absEntry, map<string|string[]> headers, *GetNatureOfAssesseesQueries queries) returns NatureOfAssessee|errorGet a single NatureOfAssessee by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetNatureOfAssesseesQueries - Queries to be sent with the request
Return Type
- NatureOfAssessee|error - The requested entity
deleteNatureOfAssessees
Delete a NatureOfAssessee
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateNatureOfAssessees
function updateNatureOfAssessees(Signed32 absEntry, NatureOfAssessee payload, map<string|string[]> headers) returns error?Partially update a NatureOfAssessee (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload NatureOfAssessee - Request payload
Return Type
- error? - Updated. No content returned
natureOfAssesseesServiceGetNatureOfAssesseeList
function natureOfAssesseesServiceGetNatureOfAssesseeList(map<string|string[]> headers) returns inline_response_200_14|errorGet nature of assessee list
Return Type
- inline_response_200_14|error - Function result
listPostingTemplates
function listPostingTemplates(ListPostingTemplatesHeaders headers, *ListPostingTemplatesQueries queries) returns PostingTemplatesCollectionResponse|errorQuery the PostingTemplates collection
Parameters
- headers ListPostingTemplatesHeaders (default {}) - Headers to be sent with the request
- queries *ListPostingTemplatesQueries - Queries to be sent with the request
Return Type
- PostingTemplatesCollectionResponse|error - A page of entities
createPostingTemplates
function createPostingTemplates(PostingTemplates payload, map<string|string[]> headers) returns PostingTemplates|errorCreate a new PostingTemplates
Parameters
- payload PostingTemplates - Request payload
Return Type
- PostingTemplates|error - The created entity
getPostingTemplates
function getPostingTemplates(string code, map<string|string[]> headers, *GetPostingTemplatesQueries queries) returns PostingTemplates|errorGet a single PostingTemplates by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetPostingTemplatesQueries - Queries to be sent with the request
Return Type
- PostingTemplates|error - The requested entity
deletePostingTemplates
Delete a PostingTemplates
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updatePostingTemplates
function updatePostingTemplates(string code, PostingTemplates payload, map<string|string[]> headers) returns error?Partially update a PostingTemplates (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
postingTemplatesServiceGetList
function postingTemplatesServiceGetList(map<string|string[]> headers) returns inline_response_200_15|errorGet list
Return Type
- inline_response_200_15|error - Function result
listProfitCenters
function listProfitCenters(ListProfitCentersHeaders headers, *ListProfitCentersQueries queries) returns ProfitCentersCollectionResponse|errorQuery the ProfitCenters collection
Parameters
- headers ListProfitCentersHeaders (default {}) - Headers to be sent with the request
- queries *ListProfitCentersQueries - Queries to be sent with the request
Return Type
- ProfitCentersCollectionResponse|error - A page of entities
createProfitCenters
function createProfitCenters(ProfitCenter payload, map<string|string[]> headers) returns ProfitCenter|errorCreate a new ProfitCenter
Parameters
- payload ProfitCenter - Request payload
Return Type
- ProfitCenter|error - The created entity
getProfitCenters
function getProfitCenters(string centerCode, map<string|string[]> headers, *GetProfitCentersQueries queries) returns ProfitCenter|errorGet a single ProfitCenter by key
Parameters
- centerCode string - Key property 'CenterCode' (Edm.String)
- queries *GetProfitCentersQueries - Queries to be sent with the request
Return Type
- ProfitCenter|error - The requested entity
deleteProfitCenters
Delete a ProfitCenter
Parameters
- centerCode string - Key property 'CenterCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateProfitCenters
function updateProfitCenters(string centerCode, ProfitCenter payload, map<string|string[]> headers) returns error?Partially update a ProfitCenter (PATCH/MERGE semantics)
Parameters
- centerCode string - Key property 'CenterCode' (Edm.String)
- payload ProfitCenter - Request payload
Return Type
- error? - Updated. No content returned
profitCentersServiceGetProfitCenterList
function profitCentersServiceGetProfitCenterList(map<string|string[]> headers) returns inline_response_200_16|errorGet profit center list
Return Type
- inline_response_200_16|error - Function result
listRecurringPostings
function listRecurringPostings(ListRecurringPostingsHeaders headers, *ListRecurringPostingsQueries queries) returns RecurringPostingsCollectionResponse|errorQuery the RecurringPostings collection
Parameters
- headers ListRecurringPostingsHeaders (default {}) - Headers to be sent with the request
- queries *ListRecurringPostingsQueries - Queries to be sent with the request
Return Type
- RecurringPostingsCollectionResponse|error - A page of entities
createRecurringPostings
function createRecurringPostings(RecurringPostings payload, map<string|string[]> headers) returns RecurringPostings|errorCreate a new RecurringPostings
Parameters
- payload RecurringPostings - Request payload
Return Type
- RecurringPostings|error - The created entity
getRecurringPostings
function getRecurringPostings(string code, Signed32 instance, map<string|string[]> headers, *GetRecurringPostingsQueries queries) returns RecurringPostings|errorGet a single RecurringPostings by key
Parameters
- code string - Composite key part 'Code' (Edm.String)
- instance Signed32 - Composite key part 'Instance' (Edm.Int32)
- queries *GetRecurringPostingsQueries - Queries to be sent with the request
Return Type
- RecurringPostings|error - The requested entity
deleteRecurringPostings
function deleteRecurringPostings(string code, Signed32 instance, map<string|string[]> headers) returns error?Delete a RecurringPostings
Parameters
- code string - Composite key part 'Code' (Edm.String)
- instance Signed32 - Composite key part 'Instance' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateRecurringPostings
function updateRecurringPostings(string code, Signed32 instance, RecurringPostings payload, map<string|string[]> headers) returns error?Partially update a RecurringPostings (PATCH/MERGE semantics)
Parameters
- code string - Composite key part 'Code' (Edm.String)
- instance Signed32 - Composite key part 'Instance' (Edm.Int32)
- payload RecurringPostings - Request payload
Return Type
- error? - Updated. No content returned
recurringPostingsServiceGetList
function recurringPostingsServiceGetList(map<string|string[]> headers) returns inline_response_200_17|errorGet list
Return Type
- inline_response_200_17|error - Function result
recurringTransactionServiceDeleteRecurringTransactions
function recurringTransactionServiceDeleteRecurringTransactions(RecurringTransactionService_DeleteRecurringTransactions_body payload, map<string|string[]> headers) returns error?Delete recurring transactions
Parameters
- payload RecurringTransactionService_DeleteRecurringTransactions_body - Request payload
Return Type
- error? - Success. No content returned
recurringTransactionServiceExecuteRecurringTransactions
function recurringTransactionServiceExecuteRecurringTransactions(RecurringTransactionService_ExecuteRecurringTransactions_body payload, map<string|string[]> headers) returns inline_response_200_18|errorExecute recurring transactions
Parameters
- payload RecurringTransactionService_ExecuteRecurringTransactions_body - Request payload
Return Type
- inline_response_200_18|error - Function result
recurringTransactionServiceGetAvailableRecurringTransactions
function recurringTransactionServiceGetAvailableRecurringTransactions(map<string|string[]> headers) returns inline_response_200_19|errorGet available recurring transactions
Return Type
- inline_response_200_19|error - Function result
recurringTransactionServiceGetRecurringTransaction
function recurringTransactionServiceGetRecurringTransaction(RecurringTransactionService_GetRecurringTransaction_body payload, map<string|string[]> headers) returns RclRecurringTransaction|errorGet recurring transaction
Parameters
- payload RecurringTransactionService_GetRecurringTransaction_body - Request payload
Return Type
- RclRecurringTransaction|error - Function result
listRecurringTransactionTemplates
function listRecurringTransactionTemplates(ListRecurringTransactionTemplatesHeaders headers, *ListRecurringTransactionTemplatesQueries queries) returns RecurringTransactionTemplatesCollectionResponse|errorQuery the RecurringTransactionTemplates collection
Parameters
- headers ListRecurringTransactionTemplatesHeaders (default {}) - Headers to be sent with the request
- queries *ListRecurringTransactionTemplatesQueries - Queries to be sent with the request
Return Type
- RecurringTransactionTemplatesCollectionResponse|error - A page of entities
createRecurringTransactionTemplates
function createRecurringTransactionTemplates(RecurringTransactionTemplate payload, map<string|string[]> headers) returns RecurringTransactionTemplate|errorCreate a new RecurringTransactionTemplate
Parameters
- payload RecurringTransactionTemplate - Request payload
Return Type
- RecurringTransactionTemplate|error - The created entity
getRecurringTransactionTemplates
function getRecurringTransactionTemplates(Signed32 absoluteEntry, map<string|string[]> headers, *GetRecurringTransactionTemplatesQueries queries) returns RecurringTransactionTemplate|errorGet a single RecurringTransactionTemplate by key
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
- queries *GetRecurringTransactionTemplatesQueries - Queries to be sent with the request
Return Type
- RecurringTransactionTemplate|error - The requested entity
deleteRecurringTransactionTemplates
function deleteRecurringTransactionTemplates(Signed32 absoluteEntry, map<string|string[]> headers) returns error?Delete a RecurringTransactionTemplate
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateRecurringTransactionTemplates
function updateRecurringTransactionTemplates(Signed32 absoluteEntry, RecurringTransactionTemplate payload, map<string|string[]> headers) returns error?Partially update a RecurringTransactionTemplate (PATCH/MERGE semantics)
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
- payload RecurringTransactionTemplate - Request payload
Return Type
- error? - Updated. No content returned
recurringTransactionTemplatesServiceGetList
function recurringTransactionTemplatesServiceGetList(map<string|string[]> headers) returns inline_response_200_20|errorGet list
Return Type
- inline_response_200_20|error - Function result
listSalesTaxAuthorities
function listSalesTaxAuthorities(ListSalesTaxAuthoritiesHeaders headers, *ListSalesTaxAuthoritiesQueries queries) returns SalesTaxAuthoritiesCollectionResponse|errorQuery the SalesTaxAuthorities collection
Parameters
- headers ListSalesTaxAuthoritiesHeaders (default {}) - Headers to be sent with the request
- queries *ListSalesTaxAuthoritiesQueries - Queries to be sent with the request
Return Type
- SalesTaxAuthoritiesCollectionResponse|error - A page of entities
createSalesTaxAuthorities
function createSalesTaxAuthorities(SalesTaxAuthority payload, map<string|string[]> headers) returns SalesTaxAuthority|errorCreate a new SalesTaxAuthority
Parameters
- payload SalesTaxAuthority - Request payload
Return Type
- SalesTaxAuthority|error - The created entity
getSalesTaxAuthorities
function getSalesTaxAuthorities(Signed32 'type, string code, map<string|string[]> headers, *GetSalesTaxAuthoritiesQueries queries) returns SalesTaxAuthority|errorGet a single SalesTaxAuthority by key
Parameters
- 'type Signed32 - Composite key part 'Type' (Edm.Int32)
- code string - Composite key part 'Code' (Edm.String)
- queries *GetSalesTaxAuthoritiesQueries - Queries to be sent with the request
Return Type
- SalesTaxAuthority|error - The requested entity
deleteSalesTaxAuthorities
function deleteSalesTaxAuthorities(Signed32 'type, string code, map<string|string[]> headers) returns error?Delete a SalesTaxAuthority
Parameters
- 'type Signed32 - Composite key part 'Type' (Edm.Int32)
- code string - Composite key part 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateSalesTaxAuthorities
function updateSalesTaxAuthorities(Signed32 'type, string code, SalesTaxAuthority payload, map<string|string[]> headers) returns error?Partially update a SalesTaxAuthority (PATCH/MERGE semantics)
Parameters
- 'type Signed32 - Composite key part 'Type' (Edm.Int32)
- code string - Composite key part 'Code' (Edm.String)
- payload SalesTaxAuthority - Request payload
Return Type
- error? - Updated. No content returned
listSalesTaxAuthoritiesTypes
function listSalesTaxAuthoritiesTypes(ListSalesTaxAuthoritiesTypesHeaders headers, *ListSalesTaxAuthoritiesTypesQueries queries) returns SalesTaxAuthoritiesTypesCollectionResponse|errorQuery the SalesTaxAuthoritiesTypes collection
Parameters
- headers ListSalesTaxAuthoritiesTypesHeaders (default {}) - Headers to be sent with the request
- queries *ListSalesTaxAuthoritiesTypesQueries - Queries to be sent with the request
Return Type
- SalesTaxAuthoritiesTypesCollectionResponse|error - A page of entities
createSalesTaxAuthoritiesTypes
function createSalesTaxAuthoritiesTypes(SalesTaxAuthoritiesType payload, map<string|string[]> headers) returns SalesTaxAuthoritiesType|errorCreate a new SalesTaxAuthoritiesType
Parameters
- payload SalesTaxAuthoritiesType - Request payload
Return Type
- SalesTaxAuthoritiesType|error - The created entity
getSalesTaxAuthoritiesTypes
function getSalesTaxAuthoritiesTypes(Signed32 numerator, map<string|string[]> headers, *GetSalesTaxAuthoritiesTypesQueries queries) returns SalesTaxAuthoritiesType|errorGet a single SalesTaxAuthoritiesType by key
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- queries *GetSalesTaxAuthoritiesTypesQueries - Queries to be sent with the request
Return Type
- SalesTaxAuthoritiesType|error - The requested entity
deleteSalesTaxAuthoritiesTypes
function deleteSalesTaxAuthoritiesTypes(Signed32 numerator, map<string|string[]> headers) returns error?Delete a SalesTaxAuthoritiesType
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateSalesTaxAuthoritiesTypes
function updateSalesTaxAuthoritiesTypes(Signed32 numerator, SalesTaxAuthoritiesType payload, map<string|string[]> headers) returns error?Partially update a SalesTaxAuthoritiesType (PATCH/MERGE semantics)
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- payload SalesTaxAuthoritiesType - Request payload
Return Type
- error? - Updated. No content returned
listSalesTaxCodes
function listSalesTaxCodes(ListSalesTaxCodesHeaders headers, *ListSalesTaxCodesQueries queries) returns SalesTaxCodesCollectionResponse|errorQuery the SalesTaxCodes collection
Parameters
- headers ListSalesTaxCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListSalesTaxCodesQueries - Queries to be sent with the request
Return Type
- SalesTaxCodesCollectionResponse|error - A page of entities
createSalesTaxCodes
function createSalesTaxCodes(SalesTaxCode payload, map<string|string[]> headers) returns SalesTaxCode|errorCreate a new SalesTaxCode
Parameters
- payload SalesTaxCode - Request payload
Return Type
- SalesTaxCode|error - The created entity
getSalesTaxCodes
function getSalesTaxCodes(string code, map<string|string[]> headers, *GetSalesTaxCodesQueries queries) returns SalesTaxCode|errorGet a single SalesTaxCode by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetSalesTaxCodesQueries - Queries to be sent with the request
Return Type
- SalesTaxCode|error - The requested entity
deleteSalesTaxCodes
Delete a SalesTaxCode
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateSalesTaxCodes
function updateSalesTaxCodes(string code, SalesTaxCode payload, map<string|string[]> headers) returns error?Partially update a SalesTaxCode (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listSpecificWTHAmountsService
function listSpecificWTHAmountsService(ListSpecificWTHAmountsServiceHeaders headers, *ListSpecificWTHAmountsServiceQueries queries) returns SpecificWTHAmountsServiceCollectionResponse|errorQuery the SpecificWTHAmountsService collection
Parameters
- headers ListSpecificWTHAmountsServiceHeaders (default {}) - Headers to be sent with the request
- queries *ListSpecificWTHAmountsServiceQueries - Queries to be sent with the request
Return Type
- SpecificWTHAmountsServiceCollectionResponse|error - A page of entities
createSpecificWTHAmountsService
function createSpecificWTHAmountsService(SpecificWTHAmounts payload, map<string|string[]> headers) returns SpecificWTHAmounts|errorCreate a new SpecificWTHAmounts
Parameters
- payload SpecificWTHAmounts - Request payload
Return Type
- SpecificWTHAmounts|error - The created entity
getSpecificWTHAmountsService
function getSpecificWTHAmountsService(string paymentReasonCode, string cardCode, BoYesNoEnum cUSplit, map<string|string[]> headers, *GetSpecificWTHAmountsServiceQueries queries) returns SpecificWTHAmounts|errorGet a single SpecificWTHAmounts by key
Parameters
- paymentReasonCode string - Composite key part 'PaymentReasonCode' (Edm.String)
- cardCode string - Composite key part 'CardCode' (Edm.String)
- cUSplit BoYesNoEnum - Composite key part 'CUSplit' (SAPB1.BoYesNoEnum)
- queries *GetSpecificWTHAmountsServiceQueries - Queries to be sent with the request
Return Type
- SpecificWTHAmounts|error - The requested entity
deleteSpecificWTHAmountsService
function deleteSpecificWTHAmountsService(string paymentReasonCode, string cardCode, BoYesNoEnum cUSplit, map<string|string[]> headers) returns error?Delete a SpecificWTHAmounts
Parameters
- paymentReasonCode string - Composite key part 'PaymentReasonCode' (Edm.String)
- cardCode string - Composite key part 'CardCode' (Edm.String)
- cUSplit BoYesNoEnum - Composite key part 'CUSplit' (SAPB1.BoYesNoEnum)
Return Type
- error? - Deleted. No content returned
updateSpecificWTHAmountsService
function updateSpecificWTHAmountsService(string paymentReasonCode, string cardCode, BoYesNoEnum cUSplit, SpecificWTHAmounts payload, map<string|string[]> headers) returns error?Partially update a SpecificWTHAmounts (PATCH/MERGE semantics)
Parameters
- paymentReasonCode string - Composite key part 'PaymentReasonCode' (Edm.String)
- cardCode string - Composite key part 'CardCode' (Edm.String)
- cUSplit BoYesNoEnum - Composite key part 'CUSplit' (SAPB1.BoYesNoEnum)
- payload SpecificWTHAmounts - Request payload
Return Type
- error? - Updated. No content returned
specificWTHAmountsServiceGetList
function specificWTHAmountsServiceGetList(map<string|string[]> headers) returns inline_response_200_21|errorGet list
Return Type
- inline_response_200_21|error - Function result
listTaxCodeDeterminations
function listTaxCodeDeterminations(ListTaxCodeDeterminationsHeaders headers, *ListTaxCodeDeterminationsQueries queries) returns TaxCodeDeterminationsCollectionResponse|errorQuery the TaxCodeDeterminations collection
Parameters
- headers ListTaxCodeDeterminationsHeaders (default {}) - Headers to be sent with the request
- queries *ListTaxCodeDeterminationsQueries - Queries to be sent with the request
Return Type
- TaxCodeDeterminationsCollectionResponse|error - A page of entities
createTaxCodeDeterminations
function createTaxCodeDeterminations(TaxCodeDetermination payload, map<string|string[]> headers) returns TaxCodeDetermination|errorCreate a new TaxCodeDetermination
Parameters
- payload TaxCodeDetermination - Request payload
Return Type
- TaxCodeDetermination|error - The created entity
getTaxCodeDeterminations
function getTaxCodeDeterminations(Signed32 docEntry, map<string|string[]> headers, *GetTaxCodeDeterminationsQueries queries) returns TaxCodeDetermination|errorGet a single TaxCodeDetermination by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetTaxCodeDeterminationsQueries - Queries to be sent with the request
Return Type
- TaxCodeDetermination|error - The requested entity
deleteTaxCodeDeterminations
function deleteTaxCodeDeterminations(Signed32 docEntry, map<string|string[]> headers) returns error?Delete a TaxCodeDetermination
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateTaxCodeDeterminations
function updateTaxCodeDeterminations(Signed32 docEntry, TaxCodeDetermination payload, map<string|string[]> headers) returns error?Partially update a TaxCodeDetermination (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload TaxCodeDetermination - Request payload
Return Type
- error? - Updated. No content returned
taxCodeDeterminationsServiceGetTaxCodeDeterminationList
function taxCodeDeterminationsServiceGetTaxCodeDeterminationList(map<string|string[]> headers) returns inline_response_200_22|errorGet tax code determination list
Return Type
- inline_response_200_22|error - Function result
listTaxCodeDeterminationsTCD
function listTaxCodeDeterminationsTCD(ListTaxCodeDeterminationsTCDHeaders headers, *ListTaxCodeDeterminationsTCDQueries queries) returns TaxCodeDeterminationsTCDCollectionResponse|errorQuery the TaxCodeDeterminationsTCD collection
Parameters
- headers ListTaxCodeDeterminationsTCDHeaders (default {}) - Headers to be sent with the request
- queries *ListTaxCodeDeterminationsTCDQueries - Queries to be sent with the request
Return Type
- TaxCodeDeterminationsTCDCollectionResponse|error - A page of entities
createTaxCodeDeterminationsTCD
function createTaxCodeDeterminationsTCD(TaxCodeDeterminationTCD payload, map<string|string[]> headers) returns TaxCodeDeterminationTCD|errorCreate a new TaxCodeDeterminationTCD
Parameters
- payload TaxCodeDeterminationTCD - Request payload
Return Type
- TaxCodeDeterminationTCD|error - The created entity
getTaxCodeDeterminationsTCD
function getTaxCodeDeterminationsTCD(Signed32 absId, map<string|string[]> headers, *GetTaxCodeDeterminationsTCDQueries queries) returns TaxCodeDeterminationTCD|errorGet a single TaxCodeDeterminationTCD by key
Parameters
- absId Signed32 - Key property 'AbsId' (Edm.Int32)
- queries *GetTaxCodeDeterminationsTCDQueries - Queries to be sent with the request
Return Type
- TaxCodeDeterminationTCD|error - The requested entity
deleteTaxCodeDeterminationsTCD
function deleteTaxCodeDeterminationsTCD(Signed32 absId, map<string|string[]> headers) returns error?Delete a TaxCodeDeterminationTCD
Parameters
- absId Signed32 - Key property 'AbsId' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateTaxCodeDeterminationsTCD
function updateTaxCodeDeterminationsTCD(Signed32 absId, TaxCodeDeterminationTCD payload, map<string|string[]> headers) returns error?Partially update a TaxCodeDeterminationTCD (PATCH/MERGE semantics)
Parameters
- absId Signed32 - Key property 'AbsId' (Edm.Int32)
- payload TaxCodeDeterminationTCD - Request payload
Return Type
- error? - Updated. No content returned
taxCodeDeterminationsTCDServiceGetTaxCodeDeterminationTCDList
function taxCodeDeterminationsTCDServiceGetTaxCodeDeterminationTCDList(map<string|string[]> headers) returns inline_response_200_23|errorGet tax code determination TCD list
Return Type
- inline_response_200_23|error - Function result
taxExemptReasonServiceGetList
function taxExemptReasonServiceGetList(map<string|string[]> headers) returns inline_response_200_24|errorGet list
Return Type
- inline_response_200_24|error - Function result
listTaxExemptReasons
function listTaxExemptReasons(ListTaxExemptReasonsHeaders headers, *ListTaxExemptReasonsQueries queries) returns TaxExemptReasonsCollectionResponse|errorQuery the TaxExemptReasons collection
Parameters
- headers ListTaxExemptReasonsHeaders (default {}) - Headers to be sent with the request
- queries *ListTaxExemptReasonsQueries - Queries to be sent with the request
Return Type
- TaxExemptReasonsCollectionResponse|error - A page of entities
createTaxExemptReasons
function createTaxExemptReasons(TaxExemptReason payload, map<string|string[]> headers) returns TaxExemptReason|errorCreate a new TaxExemptReason
Parameters
- payload TaxExemptReason - Request payload
Return Type
- TaxExemptReason|error - The created entity
getTaxExemptReasons
function getTaxExemptReasons(string code, map<string|string[]> headers, *GetTaxExemptReasonsQueries queries) returns TaxExemptReason|errorGet a single TaxExemptReason by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetTaxExemptReasonsQueries - Queries to be sent with the request
Return Type
- TaxExemptReason|error - The requested entity
deleteTaxExemptReasons
Delete a TaxExemptReason
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateTaxExemptReasons
function updateTaxExemptReasons(string code, TaxExemptReason payload, map<string|string[]> headers) returns error?Partially update a TaxExemptReason (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listTaxInvoiceReport
function listTaxInvoiceReport(ListTaxInvoiceReportHeaders headers, *ListTaxInvoiceReportQueries queries) returns TaxInvoiceReportCollectionResponse|errorQuery the TaxInvoiceReport collection
Parameters
- headers ListTaxInvoiceReportHeaders (default {}) - Headers to be sent with the request
- queries *ListTaxInvoiceReportQueries - Queries to be sent with the request
Return Type
- TaxInvoiceReportCollectionResponse|error - A page of entities
createTaxInvoiceReport
function createTaxInvoiceReport(TaxInvoiceReport payload, map<string|string[]> headers) returns TaxInvoiceReport|errorCreate a new TaxInvoiceReport
Parameters
- payload TaxInvoiceReport - Request payload
Return Type
- TaxInvoiceReport|error - The created entity
getTaxInvoiceReport
function getTaxInvoiceReport(string taxInvoiceReportNumber, map<string|string[]> headers, *GetTaxInvoiceReportQueries queries) returns TaxInvoiceReport|errorGet a single TaxInvoiceReport by key
Parameters
- taxInvoiceReportNumber string - Key property 'TaxInvoiceReportNumber' (Edm.String)
- queries *GetTaxInvoiceReportQueries - Queries to be sent with the request
Return Type
- TaxInvoiceReport|error - The requested entity
deleteTaxInvoiceReport
function deleteTaxInvoiceReport(string taxInvoiceReportNumber, map<string|string[]> headers) returns error?Delete a TaxInvoiceReport
Parameters
- taxInvoiceReportNumber string - Key property 'TaxInvoiceReportNumber' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateTaxInvoiceReport
function updateTaxInvoiceReport(string taxInvoiceReportNumber, TaxInvoiceReport payload, map<string|string[]> headers) returns error?Partially update a TaxInvoiceReport (PATCH/MERGE semantics)
Parameters
- taxInvoiceReportNumber string - Key property 'TaxInvoiceReportNumber' (Edm.String)
- payload TaxInvoiceReport - Request payload
Return Type
- error? - Updated. No content returned
taxInvoiceReportCancelTaxInvoiceReport
function taxInvoiceReportCancelTaxInvoiceReport(string taxInvoiceReportNumber, map<string|string[]> headers) returns error?Bound action 'CancelTaxInvoiceReport' on TaxInvoiceReport (binding type TaxInvoiceReport)
Parameters
- taxInvoiceReportNumber string - Key property 'TaxInvoiceReportNumber' (Edm.String)
Return Type
- error? - Success. No content returned
listTaxReplStateSubs
function listTaxReplStateSubs(ListTaxReplStateSubsHeaders headers, *ListTaxReplStateSubsQueries queries) returns TaxReplStateSubsCollectionResponse|errorQuery the TaxReplStateSubs collection
Parameters
- headers ListTaxReplStateSubsHeaders (default {}) - Headers to be sent with the request
- queries *ListTaxReplStateSubsQueries - Queries to be sent with the request
Return Type
- TaxReplStateSubsCollectionResponse|error - A page of entities
createTaxReplStateSubs
function createTaxReplStateSubs(TaxReplStateSubData payload, map<string|string[]> headers) returns TaxReplStateSubData|errorCreate a new TaxReplStateSubData
Parameters
- payload TaxReplStateSubData - Request payload
Return Type
- TaxReplStateSubData|error - The created entity
getTaxReplStateSubs
function getTaxReplStateSubs(string state, map<string|string[]> headers, *GetTaxReplStateSubsQueries queries) returns TaxReplStateSubData|errorGet a single TaxReplStateSubData by key
Parameters
- state string - Key property 'State' (Edm.String)
- queries *GetTaxReplStateSubsQueries - Queries to be sent with the request
Return Type
- TaxReplStateSubData|error - The requested entity
deleteTaxReplStateSubs
Delete a TaxReplStateSubData
Parameters
- state string - Key property 'State' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateTaxReplStateSubs
function updateTaxReplStateSubs(string state, TaxReplStateSubData payload, map<string|string[]> headers) returns error?Partially update a TaxReplStateSubData (PATCH/MERGE semantics)
Parameters
- state string - Key property 'State' (Edm.String)
- payload TaxReplStateSubData - Request payload
Return Type
- error? - Updated. No content returned
listTaxWebSites
function listTaxWebSites(ListTaxWebSitesHeaders headers, *ListTaxWebSitesQueries queries) returns TaxWebSitesCollectionResponse|errorQuery the TaxWebSites collection
Parameters
- headers ListTaxWebSitesHeaders (default {}) - Headers to be sent with the request
- queries *ListTaxWebSitesQueries - Queries to be sent with the request
Return Type
- TaxWebSitesCollectionResponse|error - A page of entities
createTaxWebSites
function createTaxWebSites(TaxWebSite payload, map<string|string[]> headers) returns TaxWebSite|errorCreate a new TaxWebSite
Parameters
- payload TaxWebSite - Request payload
Return Type
- TaxWebSite|error - The created entity
getTaxWebSites
function getTaxWebSites(Signed32 absEntry, map<string|string[]> headers, *GetTaxWebSitesQueries queries) returns TaxWebSite|errorGet a single TaxWebSite by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetTaxWebSitesQueries - Queries to be sent with the request
Return Type
- TaxWebSite|error - The requested entity
deleteTaxWebSites
Delete a TaxWebSite
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateTaxWebSites
function updateTaxWebSites(Signed32 absEntry, TaxWebSite payload, map<string|string[]> headers) returns error?Partially update a TaxWebSite (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload TaxWebSite - Request payload
Return Type
- error? - Updated. No content returned
taxWebSitesSetAsDefault
Bound action 'SetAsDefault' on TaxWebSites (binding type TaxWebSite)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
taxWebSitesServiceGetDefaultWebSite
function taxWebSitesServiceGetDefaultWebSite(map<string|string[]> headers) returns TaxWebSiteParams|errorGet default web site
Return Type
- TaxWebSiteParams|error - Function result
taxWebSitesServiceGetTaxWebSiteList
function taxWebSitesServiceGetTaxWebSiteList(map<string|string[]> headers) returns inline_response_200_25|errorGet tax web site list
Return Type
- inline_response_200_25|error - Function result
listTransactionCodes
function listTransactionCodes(ListTransactionCodesHeaders headers, *ListTransactionCodesQueries queries) returns TransactionCodesCollectionResponse|errorQuery the TransactionCodes collection
Parameters
- headers ListTransactionCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListTransactionCodesQueries - Queries to be sent with the request
Return Type
- TransactionCodesCollectionResponse|error - A page of entities
createTransactionCodes
function createTransactionCodes(TransactionCode payload, map<string|string[]> headers) returns TransactionCode|errorCreate a new TransactionCode
Parameters
- payload TransactionCode - Request payload
Return Type
- TransactionCode|error - The created entity
getTransactionCodes
function getTransactionCodes(string code, map<string|string[]> headers, *GetTransactionCodesQueries queries) returns TransactionCode|errorGet a single TransactionCode by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetTransactionCodesQueries - Queries to be sent with the request
Return Type
- TransactionCode|error - The requested entity
deleteTransactionCodes
Delete a TransactionCode
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateTransactionCodes
function updateTransactionCodes(string code, TransactionCode payload, map<string|string[]> headers) returns error?Partially update a TransactionCode (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
transactionCodesServiceGetList
function transactionCodesServiceGetList(map<string|string[]> headers) returns inline_response_200_26|errorGet list
Return Type
- inline_response_200_26|error - Function result
listVatGroups
function listVatGroups(ListVatGroupsHeaders headers, *ListVatGroupsQueries queries) returns VatGroupsCollectionResponse|errorQuery the VatGroups collection
Parameters
- headers ListVatGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListVatGroupsQueries - Queries to be sent with the request
Return Type
- VatGroupsCollectionResponse|error - A page of entities
createVatGroups
Create a new VatGroup
Parameters
- payload VatGroup - Request payload
getVatGroups
function getVatGroups(string code, map<string|string[]> headers, *GetVatGroupsQueries queries) returns VatGroup|errorGet a single VatGroup by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetVatGroupsQueries - Queries to be sent with the request
deleteVatGroups
Delete a VatGroup
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateVatGroups
function updateVatGroups(string code, VatGroup payload, map<string|string[]> headers) returns error?Partially update a VatGroup (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
wTaxTypeCodeServiceGetWTaxTypeCodeList
function wTaxTypeCodeServiceGetWTaxTypeCodeList(map<string|string[]> headers) returns inline_response_200_27|errorGet W tax type code list
Return Type
- inline_response_200_27|error - Function result
listWTaxTypeCodes
function listWTaxTypeCodes(ListWTaxTypeCodesHeaders headers, *ListWTaxTypeCodesQueries queries) returns WTaxTypeCodesCollectionResponse|errorQuery the WTaxTypeCodes collection
Parameters
- headers ListWTaxTypeCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListWTaxTypeCodesQueries - Queries to be sent with the request
Return Type
- WTaxTypeCodesCollectionResponse|error - A page of entities
createWTaxTypeCodes
function createWTaxTypeCodes(WTaxTypeCode payload, map<string|string[]> headers) returns WTaxTypeCode|errorCreate a new WTaxTypeCode
Parameters
- payload WTaxTypeCode - Request payload
Return Type
- WTaxTypeCode|error - The created entity
getWTaxTypeCodes
function getWTaxTypeCodes(Signed32 code, map<string|string[]> headers, *GetWTaxTypeCodesQueries queries) returns WTaxTypeCode|errorGet a single WTaxTypeCode by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetWTaxTypeCodesQueries - Queries to be sent with the request
Return Type
- WTaxTypeCode|error - The requested entity
deleteWTaxTypeCodes
Delete a WTaxTypeCode
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateWTaxTypeCodes
function updateWTaxTypeCodes(Signed32 code, WTaxTypeCode payload, map<string|string[]> headers) returns error?Partially update a WTaxTypeCode (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listWithholdingTaxCodes
function listWithholdingTaxCodes(ListWithholdingTaxCodesHeaders headers, *ListWithholdingTaxCodesQueries queries) returns WithholdingTaxCodesCollectionResponse|errorQuery the WithholdingTaxCodes collection
Parameters
- headers ListWithholdingTaxCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListWithholdingTaxCodesQueries - Queries to be sent with the request
Return Type
- WithholdingTaxCodesCollectionResponse|error - A page of entities
createWithholdingTaxCodes
function createWithholdingTaxCodes(WithholdingTaxCode payload, map<string|string[]> headers) returns WithholdingTaxCode|errorCreate a new WithholdingTaxCode
Parameters
- payload WithholdingTaxCode - Request payload
Return Type
- WithholdingTaxCode|error - The created entity
getWithholdingTaxCodes
function getWithholdingTaxCodes(string wTCode, map<string|string[]> headers, *GetWithholdingTaxCodesQueries queries) returns WithholdingTaxCode|errorGet a single WithholdingTaxCode by key
Parameters
- wTCode string - Key property 'WTCode' (Edm.String)
- queries *GetWithholdingTaxCodesQueries - Queries to be sent with the request
Return Type
- WithholdingTaxCode|error - The requested entity
deleteWithholdingTaxCodes
Delete a WithholdingTaxCode
Parameters
- wTCode string - Key property 'WTCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateWithholdingTaxCodes
function updateWithholdingTaxCodes(string wTCode, WithholdingTaxCode payload, map<string|string[]> headers) returns error?Partially update a WithholdingTaxCode (PATCH/MERGE semantics)
Parameters
- wTCode string - Key property 'WTCode' (Edm.String)
- payload WithholdingTaxCode - Request payload
Return Type
- error? - Updated. No content returned
listWitholdingTaxDefinition
function listWitholdingTaxDefinition(ListWitholdingTaxDefinitionHeaders headers, *ListWitholdingTaxDefinitionQueries queries) returns WitholdingTaxDefinitionCollectionResponse|errorQuery the WitholdingTaxDefinition collection
Parameters
- headers ListWitholdingTaxDefinitionHeaders (default {}) - Headers to be sent with the request
- queries *ListWitholdingTaxDefinitionQueries - Queries to be sent with the request
Return Type
- WitholdingTaxDefinitionCollectionResponse|error - A page of entities
createWitholdingTaxDefinition
function createWitholdingTaxDefinition(WTDCode payload, map<string|string[]> headers) returns WTDCode|errorCreate a new WTDCode
Parameters
- payload WTDCode - Request payload
getWitholdingTaxDefinition
function getWitholdingTaxDefinition(Signed32 absEntry, map<string|string[]> headers, *GetWitholdingTaxDefinitionQueries queries) returns WTDCode|errorGet a single WTDCode by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetWitholdingTaxDefinitionQueries - Queries to be sent with the request
deleteWitholdingTaxDefinition
function deleteWitholdingTaxDefinition(Signed32 absEntry, map<string|string[]> headers) returns error?Delete a WTDCode
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateWitholdingTaxDefinition
function updateWitholdingTaxDefinition(Signed32 absEntry, WTDCode payload, map<string|string[]> headers) returns error?Partially update a WTDCode (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
logout
function logout() returns error?Ends the active SAP Business One Service Layer session
Return Type
- error? - An error if the logout failed
Records
sap.businessone.financials: AccountCategory
The AccountCategory entity of the SAP Business One Service Layer
Fields
- categoryCode? Signed32 - Category code field
- chartOfAccounts? ChartOfAccount[] - Chart of accounts field
- categoryName? string - Category name field
- categorySource? AccountCategorySourceEnum - Category source field
sap.businessone.financials: AccountCategoryCollectionResponse
A paged collection of AccountCategory entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AccountCategory[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: AccountCategoryParams
The AccountCategoryParams complex type of the SAP Business One Service Layer
Fields
- categoryCode? Signed32 - Category code field
- categoryName? string - Category name field
sap.businessone.financials: AccountSegmentation
The AccountSegmentation entity of the SAP Business One Service Layer
Fields
- Numerator? Signed32 - Numerator field
- Name? string - Name field
- Size? Signed32 - Size field
- Type? AccountSegmentationTypeEnum - OData EnumType 'AccountSegmentationTypeEnum'. Serialised by the Service Layer as the member name
- AccountSegmentationsCategories? AccountSegmentationsCategory[] - Account segmentations categories field
- AccountSegmentationCategories? AccountSegmentationCategory[] - Account segmentation categories field
sap.businessone.financials: AccountSegmentationCategoriesCollectionResponse
A paged collection of AccountSegmentationCategories entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AccountSegmentationCategory[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: AccountSegmentationCategory
The AccountSegmentationCategory entity of the SAP Business One Service Layer
Fields
- SegmentID? Signed32 - Segment ID field
- Code? string - Code field
- Name? string - Name field
- ShortName? string - Short name field
- AccountSegmentation? AccountSegmentation - The
AccountSegmentationentity of the SAP Business One Service Layer
sap.businessone.financials: AccountSegmentationsCategory
The AccountSegmentationsCategory complex type of the SAP Business One Service Layer
Fields
- SegmentID? Signed32 - Segment ID field
- Code? string - Code field
- Name? string - Name field
- ShortName? string - Short name field
sap.businessone.financials: AccountSegmentationsCollectionResponse
A paged collection of AccountSegmentations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AccountSegmentation[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: AccountsService_CreateOpenBalance_body
Represents the request payload for the AccountsService_CreateOpenBalance operation of the SAP Business One Service Layer
Fields
- openningBalanceAccount? OpenningBalanceAccount - Openning balance account field
- gLAccounts? GLAccount[] - G l accounts field
sap.businessone.financials: AccrualType
The AccrualType entity of the SAP Business One Service Layer
Fields
- Code? string - Code field
- Name? string - Name field
- PostingAccount? string - Posting account field
- CalculationAccount? string - Calculation account field
- InterimAccount? string - Interim account field
- ChartOfAccount? ChartOfAccount - The
ChartOfAccountentity of the SAP Business One Service Layer
sap.businessone.financials: AccrualTypeParams
The AccrualTypeParams complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
sap.businessone.financials: AccrualTypesCollectionResponse
A paged collection of AccrualTypes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AccrualType[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: Boxes1099Item
The Boxes1099Item complex type of the SAP Business One Service Layer
Fields
- FormCode? Signed32 - Form code field
- Box1099? string - Box1099 field
- BoxDescription? string - Box description field
- Minimum1099Amount? decimal - Minimum1099 amount field
sap.businessone.financials: Budget
The Budget entity of the SAP Business One Service Layer
Fields
- FutureAnnualExpensesCreditSys? decimal - Future annual expenses credit sys field
- FutureAnnualExpensesCreditLoc? decimal - Future annual expenses credit loc field
- FutureAnnualExpensesDebitSys? decimal - Future annual expenses debit sys field
- FutureAnnualExpensesDebitLoc? decimal - Future annual expenses debit loc field
- FutureAnnualRevenuesCredit? decimal - Future annual revenues credit field
- FutureAnnualRevenuesDebit? decimal - Future annual revenues debit field
- FutureRevenuesDebitSys? decimal - Future revenues debit sys field
- FutureRevenuesDebitLoc? decimal - Future revenues debit loc field
- ParentAccPercent? decimal - Parent acc percent field
- StartofFiscalYear? string - Startof fiscal year field
- ParentAccountKey? string - Parent account key field
- TotalAnnualBudgetDebitSys? decimal - Total annual budget debit sys field
- BudgetBalanceDebitSys? decimal - Budget balance debit sys field
- BudgetBalanceDebitLoc? decimal - Budget balance debit loc field
- TotalAnnualBudgetDebitLoc? decimal - Total annual budget debit loc field
- TotalAnnualBudgetCreditSys? decimal - Total annual budget credit sys field
- TotalAnnualBudgetCreditLoc? decimal - Total annual budget credit loc field
- BudgetBalanceCreditSys? decimal - Budget balance credit sys field
- BudgetBalanceCreditLoc? decimal - Budget balance credit loc field
- DivisionCode? Signed32 - Division code field
- AccountCode? string - Account code field
- Numerator? Signed32 - Numerator field
- BudgetScenario? Signed32 - Budget scenario field
- BudgetLines? BudgetLine[] - Budget lines field
- BudgetCostAccountingLines? BudgetCostAccountingLine[] - Budget cost accounting lines field
- BudgetDistribution? BudgetDistribution - The
BudgetDistributionentity of the SAP Business One Service Layer
- BudgetScenario2? BudgetScenario - The
BudgetScenarioentity of the SAP Business One Service Layer
sap.businessone.financials: BudgetCostAccountingLine
The BudgetCostAccountingLine complex type of the SAP Business One Service Layer
Fields
- DistrRuleCode? string - Distr rule code field
- Dimension? Signed32 - Dimension field
- DistrRuleDebitLC? decimal - Distr rule debit local currency field
- DistrRuleDebitSC? decimal - Distr rule debit system currency field
- DistrRuleCreditLC? decimal - Distr rule credit local currency field
- DistrRuleCreditSC? decimal - Distr rule credit system currency field
sap.businessone.financials: BudgetDistribution
The BudgetDistribution entity of the SAP Business One Service Layer
Fields
- September? decimal - September field
- August? decimal - August field
- July? decimal - July field
- June? decimal - June field
- May? decimal - May field
- April? decimal - April field
- March? decimal - March field
- February? decimal - February field
- December? decimal - December field
- November? decimal - November field
- October? decimal - October field
- January? decimal - January field
- BudgetAmount? decimal - Budget amount field
- Description? string - Description field
- DivisionCode? Signed32 - Division code field
- Budgets? Budget[] - Budgets field
sap.businessone.financials: BudgetDistributionsCollectionResponse
A paged collection of BudgetDistributions entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BudgetDistribution[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: BudgetLine
The BudgetLine complex type of the SAP Business One Service Layer
Fields
- PrecentOfAnnualBudgetAmount? decimal - Precent of annual budget amount field
- RowDetails? string - Row details field
- RowNumber? Signed32 - Row number field
- FutExpenSysDebit? decimal - Fut expen sys debit field
- FutExpenDebit? decimal - Fut expen debit field
- FutExpenSysCredit? decimal - Fut expen sys credit field
- FutExpenCredit? decimal - Fut expen credit field
- FutIncomesSysCredit? decimal - Fut incomes sys credit field
- FutIncomesSysDebit? decimal - Fut incomes sys debit field
- FutIncomesCredit? decimal - Fut incomes credit field
- BudgetSysTotDebit? decimal - Budget sys tot debit field
- BalSysTotDebit? decimal - Bal sys tot debit field
- BalTotDebit? decimal - Bal tot debit field
- BudgetTotCredit? decimal - Budget tot credit field
- BudgetSysTotCredit? decimal - Budget sys tot credit field
- BudgetTotDebit? decimal - Budget tot debit field
- BalSysTotCredit? decimal - Bal sys tot credit field
- BalTotCredit? decimal - Bal tot credit field
- BudgetKey? Signed32 - Budget key field
- AccountCode? string - Account code field
- FutureIncomeDeb? decimal - Future income deb field
sap.businessone.financials: BudgetScenario
The BudgetScenario entity of the SAP Business One Service Layer
Fields
- Name? string - Name field
- InitialRatioPercentage? decimal - Initial ratio percentage field
- StartofFiscalYear? string - Startof fiscal year field
- BasicBudget? Signed32 - Basic budget field
- Numerator? Signed32 - Numerator field
- RoundingMethod? BoRoundingMethod - OData EnumType 'BoRoundingMethod'. Serialised by the Service Layer as the member name
- Project? string - Project field
- DistributionRule? string - Distribution rule field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- Budgets? Budget[] - Budgets field
- DistributionRule6? DistributionRule - The
DistributionRuleentity of the SAP Business One Service Layer
sap.businessone.financials: BudgetScenariosCollectionResponse
A paged collection of BudgetScenarios entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BudgetScenario[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: BudgetsCollectionResponse
A paged collection of Budgets entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Budget[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: CashDiscount
The CashDiscount entity of the SAP Business One Service Layer
Fields
- tax? BoYesNoEnum - Tax field
- byDate? BoYesNoEnum - By date field
- code? string - Code field
- discountLines? DiscountLine[] - Discount lines field
- freight? BoYesNoEnum - Freight field
- name? string - Name field
sap.businessone.financials: CashDiscountParams
The CashDiscountParams complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
- name? string - Name field
sap.businessone.financials: CashDiscountsCollectionResponse
A paged collection of CashDiscounts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CashDiscount[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: CashFlowAssignment
The CashFlowAssignment complex type of the SAP Business One Service Layer
Fields
- CashFlowAssignmentsID? Signed32 - Cash flow assignments ID field
- CashFlowLineItemID? Signed32 - Cash flow line item ID field
- Credit? decimal - Credit field
- PaymentMeans? PaymentMeansTypeEnum - OData EnumType 'PaymentMeansTypeEnum'. Serialised by the Service Layer as the member name
- CheckNumber? string - Check number field
- AmountLC? decimal - Amount local currency field
- AmountFC? decimal - Amount foreign currency field
- JDTLineId? Signed32 - JDT line ID field
- JDTId? Signed32 - JDT ID field
sap.businessone.financials: CashFlowLineItem
The CashFlowLineItem entity of the SAP Business One Service Layer
Fields
- parentArticle? Signed32 - Parent article field
- level? Signed32 - Level field
- lineItemID? Signed32 - Line item ID field
- drawer? Signed32 - Drawer field
- lineItemName? string - Line item name field
- activeLineItem? BoYesNoEnum - Active line item field
sap.businessone.financials: CashFlowLineItemParams
The CashFlowLineItemParams complex type of the SAP Business One Service Layer
Fields
- lineItemID? Signed32 - Line item ID field
- lineItemName? string - Line item name field
sap.businessone.financials: CashFlowLineItemsCollectionResponse
A paged collection of CashFlowLineItems entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CashFlowLineItem[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: ChartOfAccount
The ChartOfAccount entity of the SAP Business One Service Layer
Fields
- Code? string - Code field
- Name? string - Name field
- Balance? decimal - Balance field
- CashAccount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BudgetAccount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ActiveAccount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PrimaryAccount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AccountLevel? Signed32 - Account level field
- DataExportCode? string - Data export code field
- FatherAccountKey? string - Father account key field
- ExternalCode? string - External code field
- RateConversion? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxLiableAccount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxExemptAccount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExternalReconNo? Signed32 - External recon number field
- InternalReconNo? Signed32 - Internal recon number field
- AccountType? BoAccountTypes - OData EnumType 'BoAccountTypes'. Serialised by the Service Layer as the member name
- AcctCurrency? string - Account currency field
- Balance_syscurr? decimal - Balance syscurr field
- Balance_FrgnCurr? decimal - Balance frgn currency field
- Protected? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReconciledAccount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LiableForAdvances? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ForeignName? string - Foreign name field
- Details? string - Details field
- ProjectCode? string - Project code field
- RevaluationCoordinated? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LockManualTransaction? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FormatCode? string - Format code field
- AllowChangeVatGroup? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DefaultVatGroup? string - Default VAT group field
- Category? Signed32 - Category field
- TransactionCode? string - Transaction code field
- LoadingType? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LoadingFactorCode? string - Loading factor code field
- LoadingFactorCode2? string - Loading factor code2 field
- LoadingFactorCode3? string - Loading factor code3 field
- LoadingFactorCode4? string - Loading factor code4 field
- LoadingFactorCode5? string - Loading factor code5 field
- PlanningLevel? string - Planning level field
- DatevAccount? string - Datev account field
- DatevAutoAccount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DatevFirstDataEntry? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AllowMultipleLinking? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ProjectRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRuleRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRule2Relevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRule3Relevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRule4Relevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRule5Relevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BPLID? Signed32 - BPLID field
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- AccountPurposeCode? SPEDContabilAccountPurposeCode - OData EnumType 'SPEDContabilAccountPurposeCode'. Serialised by the Service Layer as the member name
- ReferentialAccountCode? string - Referential account code field
- ValidFor? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ValidFrom? string - Valid from field
- ValidTo? string - Valid to field
- ValidRemarks? string - Valid remarks field
- FrozenFor? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FrozenFrom? string - Frozen from field
- FrozenTo? string - Frozen to field
- FrozenRemarks? string - Frozen remarks field
- BlockManualPosting? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CashFlowRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PCN874ReportRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PrimaryClosingAccount? string - Primary closing account field
- CostAccountingOnly? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CostElementRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CostElementCode? string - Cost element code field
- StandardAccountCode? string - Standard account code field
- TaxonomyCode? string - Taxonomy code field
- IncomeClassificationCategory? Signed32 - Income classification category field
- IncomeClassificationType? Signed32 - Income classification type field
- ExpenseClassificationCategory? Signed32 - Expense classification category field
- ExpenseClassificationType? Signed32 - Expense classification type field
- OfficialAccountCode? string - Official account code field
- ExchangeRateDifference? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AccrualTypes? AccrualType[] - Accrual types field
- VatGroups? VatGroup[] - VAT groups field
- WithholdingTaxCodes? WithholdingTaxCode[] - Withholding tax codes field
- GLAccountAdvancedRules? GLAccountAdvancedRule[] - General ledger account advanced rules field
- Currency? Currency - The
Currencyentity of the SAP Business One Service Layer
- AccountCategory? AccountCategory - The
AccountCategoryentity of the SAP Business One Service Layer
- TransactionCode2? TransactionCode - The
TransactionCodeentity of the SAP Business One Service Layer
- DistributionRule? DistributionRule - The
DistributionRuleentity of the SAP Business One Service Layer
- CostElement? CostElement - The
CostElemententity of the SAP Business One Service Layer
- SalesTaxAuthorities? SalesTaxAuthority[] - Sales tax authorities field
sap.businessone.financials: ChartOfAccountsCollectionResponse
A paged collection of ChartOfAccounts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ChartOfAccount[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: ClosingDateProcedure
The ClosingDateProcedure entity of the SAP Business One Service Layer
Fields
- ClosingDateNum? Signed32 - Closing date number field
- ClosingDateCode? string - Closing date code field
- BaselineDate? BoClosingDateProcedureBaseDateEnum - OData EnumType 'BoClosingDateProcedureBaseDateEnum'. Serialised by the Service Layer as the member name
- DueMonth? BoClosingDateProcedureDueMonthEnum - OData EnumType 'BoClosingDateProcedureDueMonthEnum'. Serialised by the Service Layer as the member name
- ExtraMonth? Signed32 - Extra month field
- ExtraDay? Signed32 - Extra day field
sap.businessone.financials: ClosingDateProcedureCollectionResponse
A paged collection of ClosingDateProcedure entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ClosingDateProcedure[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: ConnectionConfig
Provides a set of configurations for controlling the behaviours when communicating with a remote HTTP endpoint
Fields
- httpVersion HttpVersion(default http:HTTP_2_0) - The HTTP version understood by the client
- http1Settings ClientHttp1Settings(default {}) - Configurations related to HTTP/1.x protocol
- http2Settings ClientHttp2Settings(default {}) - Configurations related to HTTP/2 protocol
- timeout decimal(default 30) - The maximum time to wait (in seconds) for a response before closing the connection
- forwarded string(default "disable") - The choice of setting
forwarded/x-forwardedheader
- followRedirects? FollowRedirects - Configurations associated with Redirection
- poolConfig? PoolConfiguration - Configurations associated with request pooling
- cache CacheConfig(default {}) - HTTP caching related configurations
- compression Compression(default http:COMPRESSION_AUTO) - Specifies the way of handling compression (
accept-encoding) header
- circuitBreaker? CircuitBreakerConfig - Configurations associated with the behaviour of the Circuit Breaker
- retryConfig? RetryConfig - Configurations associated with retrying
- cookieConfig? CookieConfig - Configurations associated with cookies
- responseLimits ResponseLimitConfigs(default {}) - Configurations associated with inbound response size limits
- secureSocket? ClientSecureSocket - SSL/TLS-related options
- proxy? ProxyConfig - Proxy server related options
- socketConfig ClientSocketConfig(default {}) - Provides settings related to client socket configuration
- validation boolean(default true) - Enables the inbound payload validation functionality which provided by the constraint package. Enabled by default
- laxDataBinding boolean(default true) - Enables relaxed data binding on the client side. When enabled,
nilvalues are treated as optional, and absent fields are handled asnilabletypes. Enabled by default
sap.businessone.financials: CostCenterType
The CostCenterType entity of the SAP Business One Service Layer
Fields
- CostCenterTypeCode? string - Cost center type code field
- CostCenterTypeName? string - Cost center type name field
- ProfitCenters? ProfitCenter[] - Profit centers field
sap.businessone.financials: CostCenterTypeParams
The CostCenterTypeParams complex type of the SAP Business One Service Layer
Fields
- costCenterTypeCode? string - Cost center type code field
sap.businessone.financials: CostCenterTypesCollectionResponse
A paged collection of CostCenterTypes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CostCenterType[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: CostElement
The CostElement entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- chartOfAccounts? ChartOfAccount[] - Chart of accounts field
- isActive? BoYesNoEnum - Is active field
- code? string - Code field
sap.businessone.financials: CostElementParams
The CostElementParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.financials: CostElementsCollectionResponse
A paged collection of CostElements entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CostElement[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: CurrenciesCollectionResponse
A paged collection of Currencies entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Currency[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: Currency
The Currency entity of the SAP Business One Service Layer
Fields
- Code? string - Code field
- Name? string - Name field
- DocumentsCode? string - Documents code field
- InternationalDescription? string - International description field
- HundredthName? string - Hundredth name field
- EnglishName? string - English name field
- EnglishHundredthName? string - English hundredth name field
- PluralInternationalDescription? string - Plural international description field
- PluralHundredthName? string - Plural hundredth name field
- PluralEnglishName? string - Plural english name field
- PluralEnglishHundredthName? string - Plural english hundredth name field
- Decimals? CurrenciesDecimalsEnum - OData EnumType 'CurrenciesDecimalsEnum'. Serialised by the Service Layer as the member name
- Rounding? RoundingSysEnum - OData EnumType 'RoundingSysEnum'. Serialised by the Service Layer as the member name
- RoundingInPayment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- MaxIncomingAmtDiff? decimal - Max incoming amount diff field
- MaxOutgoingAmtDiff? decimal - Max outgoing amount diff field
- MaxIncomingAmtDiffPercent? decimal - Max incoming amount diff percent field
- MaxOutgoingAmtDiffPercent? decimal - Max outgoing amount diff percent field
- WithholdingTaxCodes? WithholdingTaxCode[] - Withholding tax codes field
- ChartOfAccounts? ChartOfAccount[] - Chart of accounts field
sap.businessone.financials: DeductibleTax
The DeductibleTax entity of the SAP Business One Service Layer
Fields
- category? BoVatCategoryEnum - Category field
- inactive? BoYesNoEnum - Inactive field
- deductibleTaxRate? decimal - Deductible tax rate field
- code? string - Code field
- name? string - Name field
sap.businessone.financials: DeductibleTaxesCollectionResponse
A paged collection of DeductibleTaxes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DeductibleTax[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: DeductibleTaxParams
The DeductibleTaxParams complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
- name? string - Name field
sap.businessone.financials: DeductionTaxGroup
The DeductionTaxGroup entity of the SAP Business One Service Layer
Fields
- GroupKey? Signed32 - Group key field
- GroupCode? BoDeductionTaxGroupCodeEnum - OData EnumType 'BoDeductionTaxGroupCodeEnum'. Serialised by the Service Layer as the member name
- GroupName? string - Group name field
- MaxRedin? decimal - Max redin field
- GroupExtendedCode? string - Group extended code field
- DeductionTaxSubGroup? DeductionTaxSubGroup - The
DeductionTaxSubGroupentity of the SAP Business One Service Layer
sap.businessone.financials: DeductionTaxGroupsCollectionResponse
A paged collection of DeductionTaxGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DeductionTaxGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: DeductionTaxHierarchiesCollectionResponse
A paged collection of DeductionTaxHierarchies entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DeductionTaxHierarchy[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: DeductionTaxHierarchiesLine
The DeductionTaxHierarchies_Line complex type of the SAP Business One Service Layer
Fields
- RowNumber? Signed32 - Row number field
- DeductionPercent? decimal - Deduction percent field
- MaximumTotal? decimal - Maximum total field
sap.businessone.financials: DeductionTaxHierarchy
The DeductionTaxHierarchy entity of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 - Abs entry field
- BPCode? string - Business partner code field
- HierarchyCode? string - Hierarchy code field
- HierarchyName? string - Hierarchy name field
- ValidFrom? string - Valid from field
- ValidUntil? string - Valid until field
- DeductionPercent? decimal - Deduction percent field
- MaximumTotal? decimal - Maximum total field
- LastUpdated? string - Last updated field
- DeductionTaxHierarchies_Lines? DeductionTaxHierarchiesLine[] - Deduction tax hierarchies lines field
sap.businessone.financials: DeductionTaxSubGroup
The DeductionTaxSubGroup entity of the SAP Business One Service Layer
Fields
- groupName? string - Group name field
- groupCode? string - Group code field
- deductionTaxGroups? DeductionTaxGroup[] - Deduction tax groups field
sap.businessone.financials: DeductionTaxSubGroupParams
The DeductionTaxSubGroupParams complex type of the SAP Business One Service Layer
Fields
- groupName? string - Group name field
- groupCode? string - Group code field
sap.businessone.financials: DeductionTaxSubGroupsCollectionResponse
A paged collection of DeductionTaxSubGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DeductionTaxSubGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: DeterminationCriteria
The DeterminationCriteria entity of the SAP Business One Service Layer
Fields
- dmcId? Signed32 - Dmc ID field
- isActive? BoYesNoEnum - Is active field
- priority? Signed32 - Priority field
- determinationCriteria? string - Determination criteria field
sap.businessone.financials: DeterminationCriteriaParams
The DeterminationCriteriaParams complex type of the SAP Business One Service Layer
Fields
- dmcId? Signed32 - Dmc ID field
sap.businessone.financials: DeterminationCriteriasCollectionResponse
A paged collection of DeterminationCriterias entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DeterminationCriteria[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: Dimension
The Dimension entity of the SAP Business One Service Layer
Fields
- DimensionCode? Signed32 - Dimension code field
- DimensionName? string - Dimension name field
- IsActive? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DimensionDescription? string - Dimension description field
- DistributionRules? DistributionRule[] - Distribution rules field
- ProfitCenters? ProfitCenter[] - Profit centers field
sap.businessone.financials: DimensionParams
The DimensionParams complex type of the SAP Business One Service Layer
Fields
- dimensionCode? Signed32 - Dimension code field
- dimensionName? string - Dimension name field
sap.businessone.financials: DimensionsCollectionResponse
A paged collection of Dimensions entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Dimension[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: DiscountLine
The DiscountLine complex type of the SAP Business One Service Layer
Fields
- month? Signed32 - Month field
- numOfDays? Signed32 - Number of days field
- discount? decimal - Discount field
- lineId? Signed32 - Line ID field
- discountCode? string - Discount code field
- day? Signed32 - Day field
sap.businessone.financials: DistributionRule
The DistributionRule entity of the SAP Business One Service Layer
Fields
- FactorCode? string - Factor code field
- FactorDescription? string - Factor description field
- TotalFactor? decimal - Total factor field
- Direct? string - Direct field
- InWhichDimension? Signed32 - In which dimension field
- Active? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IsFixedAmount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRuleLines? DistributionRuleLine[] - Distribution rule lines field
- Dimension? Dimension - The
Dimensionentity of the SAP Business One Service Layer
- ChartOfAccounts? ChartOfAccount[] - Chart of accounts field
- BudgetScenarios? BudgetScenario[] - Budget scenarios field
sap.businessone.financials: DistributionRuleLine
The DistributionRuleLine complex type of the SAP Business One Service Layer
Fields
- effectiveFrom? string - Effective from field
- totalInCenter? decimal - Total in center field
- centerCode? string - Center code field
- effectiveTo? string - Effective to field
sap.businessone.financials: DistributionRuleParams
The DistributionRuleParams complex type of the SAP Business One Service Layer
Fields
- factorCode? string - Factor code field
- factorDescription? string - Factor description field
sap.businessone.financials: DistributionRulesCollectionResponse
A paged collection of DistributionRules entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DistributionRule[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: ElectronicProtocol
The ElectronicProtocol complex type of the SAP Business One Service Layer
Fields
- ProtocolCode? ElectronicDocProtocolCodeEnum - OData EnumType 'ElectronicDocProtocolCodeEnum'. Serialised by the Service Layer as the member name
- GenerationType? ElectronicDocGenTypeEnum - OData EnumType 'ElectronicDocGenTypeEnum'. Serialised by the Service Layer as the member name
- MappingID? Signed32 - Mapping ID field
- TestingMode? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Confirmation? string - Confirmation field
- EDocType? Signed32 - E document type field
- CFDiCancellationReason? string - CF di cancellation reason field
- CFDiCancellationResponse? string - CF di cancellation response field
- RelatedDocuments? RelatedDocument[] - Related documents field
- EBooksRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EBooksMARK? string - E books MARK field
- EBooksMARKofNegative? string - E books MAR kof negative field
- EBooksInvoiceType? string - E books invoice type field
- EBooksInvoiceTypeofNegative? string - E books invoice typeof negative field
- EBillingIRN? string - E billing IRN field
- EETPKP? string - EETPKP field
- EETBKP? string - EETBKP field
- SignatureInputMessage? string - Signature input message field
- SignatureDigest? string - Signature digest field
- FechaTimbrado? string - Fecha timbrado field
- SelloSAT? string - Sello SAT field
- PaymentMethod? string - Payment method field
- RfcProvCertif? string - Rfc prov certif field
- NoCertificadoSAT? string - Number certificado SAT field
- FPASequenceNumber? Signed32 - FPA sequence number field
- FPASendDateSDI? string - FPA send date SDI field
- FPAProgressivo? string - FPA progressivo field
- ProtocolDescription? string - Protocol description field
- CFDiExport? string - CF di export field
- EBillingAckNo? string - E billing ack number field
- EBillingAckDt? string - E billing ack dt field
- EBillingSignedInvoice? string - E billing signed invoice field
- EBillingSignedQRCode? string - E billing signed QR code field
- EBillingResponseStatus? string - E billing response status field
- CFDiCancellationReference? string - CF di cancellation reference field
- EBooksQRCodePath? string - E books QR code path field
- EBooksQRCodePathofNegative? string - E books QR code pathof negative field
- CartaPorteID? string - Carta porte ID field
- EBooksDispatchDate? string - E books dispatch date field
- EBooksDispatchTime? string - E books dispatch time field
sap.businessone.financials: FinancialYear
The FinancialYear entity of the SAP Business One Service Layer
Fields
- startDate? string - Start date field
- description? string - Description field
- assessYear? string - Assess year field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
- endDate? string - End date field
- tCSAccumulationBase? TCSAccumulationBaseEnum - T CS accumulation base field
sap.businessone.financials: FinancialYearParams
The FinancialYearParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.financials: FinancialYearsCollectionResponse
A paged collection of FinancialYears entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? FinancialYear[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: Forms1099
The Forms1099 entity of the SAP Business One Service Layer
Fields
- FormCode? Signed32 - Form code field
- Form1099? string - Form1099 field
- Boxes1099? Boxes1099Item[] - Boxes1099 field
sap.businessone.financials: Forms1099CollectionResponse
A paged collection of Forms1099 entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Forms1099[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: GetAccountCategoryQueries
Represents the Queries record for the operation: getAccountCategory
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetAccountSegmentationCategoriesQueries
Represents the Queries record for the operation: getAccountSegmentationCategories
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetAccountSegmentationsQueries
Represents the Queries record for the operation: getAccountSegmentations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetAccrualTypesQueries
Represents the Queries record for the operation: getAccrualTypes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetBudgetDistributionsQueries
Represents the Queries record for the operation: getBudgetDistributions
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetBudgetScenariosQueries
Represents the Queries record for the operation: getBudgetScenarios
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetBudgetsQueries
Represents the Queries record for the operation: getBudgets
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetCashDiscountsQueries
Represents the Queries record for the operation: getCashDiscounts
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetCashFlowLineItemsQueries
Represents the Queries record for the operation: getCashFlowLineItems
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetChartOfAccountsQueries
Represents the Queries record for the operation: getChartOfAccounts
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetClosingDateProcedureQueries
Represents the Queries record for the operation: getClosingDateProcedure
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetCostCenterTypesQueries
Represents the Queries record for the operation: getCostCenterTypes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetCostElementsQueries
Represents the Queries record for the operation: getCostElements
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetCurrenciesQueries
Represents the Queries record for the operation: getCurrencies
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetDeductibleTaxesQueries
Represents the Queries record for the operation: getDeductibleTaxes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetDeductionTaxGroupsQueries
Represents the Queries record for the operation: getDeductionTaxGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetDeductionTaxHierarchiesQueries
Represents the Queries record for the operation: getDeductionTaxHierarchies
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetDeductionTaxSubGroupsQueries
Represents the Queries record for the operation: getDeductionTaxSubGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetDeterminationCriteriasQueries
Represents the Queries record for the operation: getDeterminationCriterias
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetDimensionsQueries
Represents the Queries record for the operation: getDimensions
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetDistributionRulesQueries
Represents the Queries record for the operation: getDistributionRules
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetFinancialYearsQueries
Represents the Queries record for the operation: getFinancialYears
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetForms1099Queries
Represents the Queries record for the operation: getForms1099
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetGLAccountAdvancedRulesQueries
Represents the Queries record for the operation: getGLAccountAdvancedRules
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetJournalEntriesQueries
Represents the Queries record for the operation: getJournalEntries
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetJournalEntryDocumentTypesQueries
Represents the Queries record for the operation: getJournalEntryDocumentTypes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetNatureOfAssesseesQueries
Represents the Queries record for the operation: getNatureOfAssessees
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetPostingTemplatesQueries
Represents the Queries record for the operation: getPostingTemplates
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetProfitCentersQueries
Represents the Queries record for the operation: getProfitCenters
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetRecurringPostingsQueries
Represents the Queries record for the operation: getRecurringPostings
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetRecurringTransactionTemplatesQueries
Represents the Queries record for the operation: getRecurringTransactionTemplates
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetSalesTaxAuthoritiesQueries
Represents the Queries record for the operation: getSalesTaxAuthorities
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetSalesTaxAuthoritiesTypesQueries
Represents the Queries record for the operation: getSalesTaxAuthoritiesTypes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetSalesTaxCodesQueries
Represents the Queries record for the operation: getSalesTaxCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetSpecificWTHAmountsServiceQueries
Represents the Queries record for the operation: getSpecificWTHAmountsService
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetTaxCodeDeterminationsQueries
Represents the Queries record for the operation: getTaxCodeDeterminations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetTaxCodeDeterminationsTCDQueries
Represents the Queries record for the operation: getTaxCodeDeterminationsTCD
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetTaxExemptReasonsQueries
Represents the Queries record for the operation: getTaxExemptReasons
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetTaxInvoiceReportQueries
Represents the Queries record for the operation: getTaxInvoiceReport
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetTaxReplStateSubsQueries
Represents the Queries record for the operation: getTaxReplStateSubs
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetTaxWebSitesQueries
Represents the Queries record for the operation: getTaxWebSites
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetTransactionCodesQueries
Represents the Queries record for the operation: getTransactionCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetVatGroupsQueries
Represents the Queries record for the operation: getVatGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetWithholdingTaxCodesQueries
Represents the Queries record for the operation: getWithholdingTaxCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetWitholdingTaxDefinitionQueries
Represents the Queries record for the operation: getWitholdingTaxDefinition
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GetWTaxTypeCodesQueries
Represents the Queries record for the operation: getWTaxTypeCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: GLAccount
The GLAccount complex type of the SAP Business One Service Layer
Fields
- debit? decimal - Debit field
- systemCredit? decimal - System credit field
- credit? decimal - Credit field
- foreignCredit? decimal - Foreign credit field
- foreignCurrency? string - Foreign currency field
- systemDebit? decimal - System debit field
- foreignDebit? decimal - Foreign debit field
- dueDate? string - Due date field
- code? string - Code field
sap.businessone.financials: GLAccountAdvancedRule
The GLAccountAdvancedRule entity of the SAP Business One Service Layer
Fields
- foreignExpensAcc? string - Foreign expens acc field
- decreasingAccount? string - Decreasing account field
- purchaseAcct? string - Purchase account field
- returningAccount? string - Returning account field
- costAccount? string - Cost account field
- eURevenuesAccount? string - E u revenues account field
- purchaseCreditAcc? string - Purchase credit acc field
- purchaseBalanceAccount? string - Purchase balance account field
- vatGroup? VatGroup - VAT group field
- exchangeRateDifferencesAcct? string - Exchange rate differences account field
- expensesAccount? string - Expenses account field
- stockInflationOffsetAccount? string - Stock inflation offset account field
- eUPurchaseCreditAcc? string - E u purchase credit acc field
- federalTaxID? string - Federal tax ID field
- businessPartnerType? BoBusinessPartnerTypes - Business partner type field
- financialYear? Signed32 - Financial year field
- shipToState? string - Ship to state field
- numberOfPeriods? Signed32 - Number of periods field
- wipAccount? string - Wip account field
- stockInTransitAccount? string - Stock in transit account field
- salesCreditEUAcc? string - Sales credit EU acc field
- exemptedCredits? string - Exempted credits field
- pAReturnAcct? string - P a return account field
- stockInflationAdjustAccount? string - Stock inflation adjust account field
- period? string - Period field
- subPeriodType? BoSubPeriodTypeEnum - Sub period type field
- expenseClearingAct? string - Expense clearing act field
- expenseOffsettingAccount? string - Expense offsetting account field
- increasingAccount? string - Increasing account field
- shippedGoodsAccount? string - Shipped goods account field
- transferAccount? string - Transfer account field
- bPGroup? Signed32 - B p group field
- code? string - Code field
- toDocumentDate? string - To document date field
- chartOfAccount? ChartOfAccount - Chart of account field
- toDueDate? string - To due date field
- priceDifferenceAcc? string - Price difference acc field
- negativeInventoryAdjustmentAccount? string - Negative inventory adjustment account field
- wHOutgoingCenvatAccount? string - W h outgoing cenvat account field
- fromDate? string - From date field
- periodName? string - Period name field
- itemCode? string - Item code field
- warehouse? string - Warehouse field
- description? string - Description field
- isActive? BoYesNoEnum - Is active field
- foreignRevenueAcc? string - Foreign revenue acc field
- wipVarianceAccount? string - Wip variance account field
- wHIncomingCenvatAccount? string - W h incoming cenvat account field
- gLIncreaseAcct? string - G l increase account field
- fromDocumentDate? string - From document date field
- absoluteEntry? Signed32 - Absolute entry field
- uDF5? string - U DF5 field
- uDF4? string - U DF4 field
- uDF3? string - U DF3 field
- wipOffsetProfitAndLossAccount? string - Wip offset profit and loss account field
- uDF2? string - U DF2 field
- fromPostingDate? string - From posting date field
- uDF1? string - U DF1 field
- fromDueDate? string - From due date field
- inventoryAccount? string - Inventory account field
- foreignPurchaseCreditAcc? string - Foreign purchase credit acc field
- salesCreditAcc? string - Sales credit acc field
- usage? Signed32 - Usage field
- shipToCountry? string - Ship to country field
- gLDecreaseAcct? string - G l decrease account field
- vATInRevenueAccount? string - V AT in revenue account field
- goodsClearingAcct? string - Goods clearing account field
- salesCreditForeignAcc? string - Sales credit foreign acc field
- beginningofFinancialYear? string - Beginningof financial year field
- inventoryOffsetProfitAndLossAccount? string - Inventory offset profit and loss account field
- exemptIncomeAcc? string - Exempt income acc field
- eUExpensesAccount? string - E u expenses account field
- itemGroup? Signed32 - Item group field
- getGLAccountBy? GetGLAccountByEnum - Get general ledger account by field
- varienceAccount? string - Varience account field
- vATGroup? string - V AT group field
- toDate? string - To date field
- revenuesAccount? string - Revenues account field
- purchaseOffsetAcct? string - Purchase offset account field
- costInflationAccount? string - Cost inflation account field
- bPCode? string - B p code field
- toPostingDate? string - To posting date field
- costInflationOffsetAccount? string - Cost inflation offset account field
sap.businessone.financials: GLAccountAdvancedRuleParams
The GLAccountAdvancedRuleParams complex type of the SAP Business One Service Layer
Fields
- federalTaxID? string - Federal tax ID field
- itemCode? string - Item code field
- warehouse? string - Warehouse field
- itemGroup? Signed32 - Item group field
- absoluteEntry? Signed32 - Absolute entry field
- shipToCountry? string - Ship to country field
- shipToState? string - Ship to state field
- period? string - Period field
- code? string - Code field
- bPGroup? Signed32 - B p group field
sap.businessone.financials: GLAccountAdvancedRulesCollectionResponse
A paged collection of GLAccountAdvancedRules entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? GLAccountAdvancedRule[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: inline_response_200
Represents the response payload for the AccountCategoryService_GetCategoryList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AccountCategoryParams[] - Value field
sap.businessone.financials: inline_response_200_1
Represents the response payload for the AccrualTypesService_GetAccrualTypeList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AccrualTypeParams[] - Value field
sap.businessone.financials: inline_response_200_10
Represents the response payload for the DistributionRulesService_GetDistributionRuleList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DistributionRuleParams[] - Value field
sap.businessone.financials: inline_response_200_11
Represents the response payload for the FinancialYearsService_GetFinancialYearList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? FinancialYearParams[] - Value field
sap.businessone.financials: inline_response_200_12
Represents the response payload for the GLAccountAdvancedRulesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? GLAccountAdvancedRuleParams[] - Value field
sap.businessone.financials: inline_response_200_13
Represents the response payload for the JournalEntryDocumentTypeService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? JournalEntryDocumentTypeParams[] - Value field
sap.businessone.financials: inline_response_200_14
Represents the response payload for the NatureOfAssesseesService_GetNatureOfAssesseeList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? NatureOfAssesseeParams[] - Value field
sap.businessone.financials: inline_response_200_15
Represents the response payload for the PostingTemplatesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? PostingTemplatesParams[] - Value field
sap.businessone.financials: inline_response_200_16
Represents the response payload for the ProfitCentersService_GetProfitCenterList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ProfitCenterParams[] - Value field
sap.businessone.financials: inline_response_200_17
Represents the response payload for the RecurringPostingsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? RecurringPostingsParams[] - Value field
sap.businessone.financials: inline_response_200_18
Represents the response payload for the RecurringTransactionService_ExecuteRecurringTransactions operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? RclRecurringTransaction[] - Value field
sap.businessone.financials: inline_response_200_19
Represents the response payload for the RecurringTransactionService_GetAvailableRecurringTransactions operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? RclRecurringTransaction[] - Value field
sap.businessone.financials: inline_response_200_2
Represents the response payload for the CashDiscountsService_GetCashDiscountList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CashDiscountParams[] - Value field
sap.businessone.financials: inline_response_200_20
Represents the response payload for the RecurringTransactionTemplatesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? RecurringTransactionTemplateParams[] - Value field
sap.businessone.financials: inline_response_200_21
Represents the response payload for the SpecificWTHAmountsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? SpecificWTHAmountsParams[] - Value field
sap.businessone.financials: inline_response_200_22
Represents the response payload for the TaxCodeDeterminationsService_GetTaxCodeDeterminationList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TaxCodeDeterminationParams[] - Value field
sap.businessone.financials: inline_response_200_23
Represents the response payload for the TaxCodeDeterminationsTCDService_GetTaxCodeDeterminationTCDList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TaxCodeDeterminationTCDParams[] - Value field
sap.businessone.financials: inline_response_200_24
Represents the response payload for the TaxExemptReasonService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TaxExemptReasonParams[] - Value field
sap.businessone.financials: inline_response_200_25
Represents the response payload for the TaxWebSitesService_GetTaxWebSiteList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TaxWebSiteParams[] - Value field
sap.businessone.financials: inline_response_200_26
Represents the response payload for the TransactionCodesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TransactionCodeParams[] - Value field
sap.businessone.financials: inline_response_200_27
Represents the response payload for the WTaxTypeCodeService_GetWTaxTypeCodeList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WTaxTypeCodeParams[] - Value field
sap.businessone.financials: inline_response_200_3
Represents the response payload for the CashFlowLineItemsService_GetCashFlowLineItemList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CashFlowLineItemParams[] - Value field
sap.businessone.financials: inline_response_200_4
Represents the response payload for the CostCenterTypesService_GetCostCenterTypeList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CostCenterTypeParams[] - Value field
sap.businessone.financials: inline_response_200_5
Represents the response payload for the CostElementService_GetCostElementList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CostElementParams[] - Value field
sap.businessone.financials: inline_response_200_6
Represents the response payload for the DeductibleTaxService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DeductibleTaxParams[] - Value field
sap.businessone.financials: inline_response_200_7
Represents the response payload for the DeductionTaxSubGroupsService_GetDeductionTaxSubGroupList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DeductionTaxSubGroupParams[] - Value field
sap.businessone.financials: inline_response_200_8
Represents the response payload for the DeterminationCriteriasService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DeterminationCriteriaParams[] - Value field
sap.businessone.financials: inline_response_200_9
Represents the response payload for the DimensionsService_GetDimensionList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DimensionParams[] - Value field
sap.businessone.financials: JournalEntriesCollectionResponse
A paged collection of JournalEntries entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? JournalEntry[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: JournalEntriesService_Close_body
Represents the request payload for the JournalEntriesService_Close operation of the SAP Business One Service Layer
Fields
- journalEntry? JournalEntry - Journal entry field
sap.businessone.financials: JournalEntry
The JournalEntry entity of the SAP Business One Service Layer
Fields
- ReferenceDate? string - Reference date field
- Memo? string - Memo field
- Reference? string - Reference field
- Reference2? string - Reference2 field
- TransactionCode? string - Transaction code field
- ProjectCode? string - Project code field
- TaxDate? string - Tax date field
- JdtNum? Signed32 - Jdt number field
- Indicator? string - Indicator field
- UseAutoStorno? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- StornoDate? string - Storno date field
- VatDate? string - VAT date field
- Series? Signed32 - Series field
- StampTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DueDate? string - Due date field
- AutoVAT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Number? Signed32 - Number field
- FolioNumber? Signed32 - Folio number field
- FolioPrefixString? string - Folio prefix string field
- ReportEU? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Report347? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Printed? PrintStatusEnum - OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
- LocationCode? Signed32 - Location code field
- OriginalJournal? TransTypesEnum - OData EnumType 'TransTypesEnum'. Serialised by the Service Layer as the member name
- Original? Signed32 - Original field
- BaseReference? string - Base reference field
- BlockDunningLetter? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AutomaticWT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WTSum? decimal - Withholding tax sum field
- WTSumSC? decimal - Withholding tax sum system currency field
- WTSumFC? decimal - Withholding tax sum foreign currency field
- SignatureInputMessage? string - Signature input message field
- SignatureDigest? string - Signature digest field
- CertificationNumber? string - Certification number field
- PrivateKeyVersion? Signed32 - Private key version field
- Corisptivi? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Reference3? string - Reference3 field
- DocumentType? string - Document type field
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BlanketAgreementNumber? Signed32 - Blanket agreement number field
- OperationCode? OperationCodeTypeEnum - OData EnumType 'OperationCodeTypeEnum'. Serialised by the Service Layer as the member name
- ResidenceNumberType? ResidenceNumberTypeEnum - OData EnumType 'ResidenceNumberTypeEnum'. Serialised by the Service Layer as the member name
- ECDPostingType? ECDPostingTypeEnum - OData EnumType 'ECDPostingTypeEnum'. Serialised by the Service Layer as the member name
- ExposedTransNumber? Signed32 - Exposed trans number field
- PointOfIssueCode? string - Point of issue code field
- Letter? FolioLetterEnum - OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
- FolioNumberFrom? Signed32 - Folio number from field
- FolioNumberTo? Signed32 - Folio number to field
- IsCostCenterTransfer? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReportingSectionControlStatementVAT? string - Reporting section control statement VAT field
- ExcludeFromTaxReportControlStatementVAT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SAPPassport? string - SAP passport field
- Cig? Signed32 - Cig field
- Cup? Signed32 - Cup field
- AdjustTransaction? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AttachmentEntry? Signed32 - Attachment entry field
- SAFTTransactionType? SAFTTransactionTypeEnum - OData EnumType 'SAFTTransactionTypeEnum'. Serialised by the Service Layer as the member name
- AllocationNumberIL? string - Allocation number IL field
- SAFTTransactionTypeEx? string - SAFT transaction type ex field
- JournalEntryLines? JournalEntryLine[] - Journal entry lines field
- WithholdingTaxDataCollection? WithholdingTaxData[] - Withholding tax data collection field
- ElectronicProtocols? ElectronicProtocol[] - Electronic protocols field
- TransactionCode2? TransactionCode - The
TransactionCodeentity of the SAP Business One Service Layer
- JournalEntryDocumentType? JournalEntryDocumentType - The
JournalEntryDocumentTypeentity of the SAP Business One Service Layer
sap.businessone.financials: JournalEntryDocumentType
The JournalEntryDocumentType entity of the SAP Business One Service Layer
Fields
- docTypeDescription? string - Document type description field
- journalEntries? JournalEntry[] - Journal entries field
- shortName? string - Short name field
- journalEntryType? string - Journal entry type field
sap.businessone.financials: JournalEntryDocumentTypeParams
The JournalEntryDocumentTypeParams complex type of the SAP Business One Service Layer
Fields
- docTypeDescription? string - Document type description field
- shortName? string - Short name field
- journalEntryType? string - Journal entry type field
sap.businessone.financials: JournalEntryDocumentTypesCollectionResponse
A paged collection of JournalEntryDocumentTypes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? JournalEntryDocumentType[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: JournalEntryLine
The JournalEntryLine complex type of the SAP Business One Service Layer
Fields
- Line_ID? Signed32 - Line ID field
- AccountCode? string - Account code field
- Debit? decimal - Debit field
- Credit? decimal - Credit field
- FCDebit? decimal - Foreign currency debit field
- FCCredit? decimal - Foreign currency credit field
- FCCurrency? string - Foreign currency currency field
- DueDate? string - Due date field
- ShortName? string - Short name field
- ContraAccount? string - Contra account field
- LineMemo? string - Line memo field
- ReferenceDate1? string - Reference date1 field
- ReferenceDate2? string - Reference date2 field
- Reference1? string - Reference1 field
- Reference2? string - Reference2 field
- ProjectCode? string - Project code field
- CostingCode? string - Costing code field
- TaxDate? string - Tax date field
- BaseSum? decimal - Base sum field
- TaxGroup? string - Tax group field
- DebitSys? decimal - Debit sys field
- CreditSys? decimal - Credit sys field
- VatDate? string - VAT date field
- VatLine? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SystemBaseAmount? decimal - System base amount field
- VatAmount? decimal - VAT amount field
- SystemVatAmount? decimal - System VAT amount field
- GrossValue? decimal - Gross value field
- AdditionalReference? string - Additional reference field
- CheckAbs? Signed32 - Check abs field
- CostingCode2? string - Costing code2 field
- CostingCode3? string - Costing code3 field
- CostingCode4? string - Costing code4 field
- TaxCode? string - Tax code field
- TaxPostAccount? BoTaxPostAccEnum - OData EnumType 'BoTaxPostAccEnum'. Serialised by the Service Layer as the member name
- CostingCode5? string - Costing code5 field
- LocationCode? Signed32 - Location code field
- ControlAccount? string - Control account field
- EqualizationTaxAmount? decimal - Equalization tax amount field
- SystemEqualizationTaxAmount? decimal - System equalization tax amount field
- TotalTax? decimal - Total tax field
- SystemTotalTax? decimal - System total tax field
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WTRow? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentBlock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BlockReason? Signed32 - Block reason field
- FederalTaxID? string - Federal tax ID field
- BPLID? Signed32 - BPLID field
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- PaymentOrdered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExposedTransNumber? Signed32 - Exposed trans number field
- DocumentArray? Signed32 - Document array field
- DocumentLine? Signed32 - Document line field
- CostElementCode? string - Cost element code field
- Cig? Signed32 - Cig field
- Cup? Signed32 - Cup field
- IncomeClassificationCategory? Signed32 - Income classification category field
- IncomeClassificationType? Signed32 - Income classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- VATClassificationCategory? Signed32 - VAT classification category field
- VATClassificationType? Signed32 - VAT classification type field
- VATExemptionCause? Signed32 - VAT exemption cause field
- LineAllocationNumber? string - Line allocation number field
- CashFlowAssignments? CashFlowAssignment[] - Cash flow assignments field
sap.businessone.financials: JournalVouchersService_Add_body
Represents the request payload for the JournalVouchersService_Add operation of the SAP Business One Service Layer
Fields
- journalVoucher? JournalEntry[] - Journal voucher field
sap.businessone.financials: ListAccountCategoryHeaders
Represents the Headers record for the operation: listAccountCategory
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListAccountCategoryQueries
Represents the Queries record for the operation: listAccountCategory
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListAccountSegmentationCategoriesHeaders
Represents the Headers record for the operation: listAccountSegmentationCategories
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListAccountSegmentationCategoriesQueries
Represents the Queries record for the operation: listAccountSegmentationCategories
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListAccountSegmentationsHeaders
Represents the Headers record for the operation: listAccountSegmentations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListAccountSegmentationsQueries
Represents the Queries record for the operation: listAccountSegmentations
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListAccrualTypesHeaders
Represents the Headers record for the operation: listAccrualTypes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListAccrualTypesQueries
Represents the Queries record for the operation: listAccrualTypes
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListBudgetDistributionsHeaders
Represents the Headers record for the operation: listBudgetDistributions
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListBudgetDistributionsQueries
Represents the Queries record for the operation: listBudgetDistributions
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListBudgetScenariosHeaders
Represents the Headers record for the operation: listBudgetScenarios
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListBudgetScenariosQueries
Represents the Queries record for the operation: listBudgetScenarios
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListBudgetsHeaders
Represents the Headers record for the operation: listBudgets
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListBudgetsQueries
Represents the Queries record for the operation: listBudgets
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListCashDiscountsHeaders
Represents the Headers record for the operation: listCashDiscounts
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListCashDiscountsQueries
Represents the Queries record for the operation: listCashDiscounts
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListCashFlowLineItemsHeaders
Represents the Headers record for the operation: listCashFlowLineItems
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListCashFlowLineItemsQueries
Represents the Queries record for the operation: listCashFlowLineItems
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListChartOfAccountsHeaders
Represents the Headers record for the operation: listChartOfAccounts
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListChartOfAccountsQueries
Represents the Queries record for the operation: listChartOfAccounts
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListClosingDateProcedureHeaders
Represents the Headers record for the operation: listClosingDateProcedure
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListClosingDateProcedureQueries
Represents the Queries record for the operation: listClosingDateProcedure
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListCostCenterTypesHeaders
Represents the Headers record for the operation: listCostCenterTypes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListCostCenterTypesQueries
Represents the Queries record for the operation: listCostCenterTypes
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListCostElementsHeaders
Represents the Headers record for the operation: listCostElements
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListCostElementsQueries
Represents the Queries record for the operation: listCostElements
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListCurrenciesHeaders
Represents the Headers record for the operation: listCurrencies
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListCurrenciesQueries
Represents the Queries record for the operation: listCurrencies
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListDeductibleTaxesHeaders
Represents the Headers record for the operation: listDeductibleTaxes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListDeductibleTaxesQueries
Represents the Queries record for the operation: listDeductibleTaxes
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListDeductionTaxGroupsHeaders
Represents the Headers record for the operation: listDeductionTaxGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListDeductionTaxGroupsQueries
Represents the Queries record for the operation: listDeductionTaxGroups
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListDeductionTaxHierarchiesHeaders
Represents the Headers record for the operation: listDeductionTaxHierarchies
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListDeductionTaxHierarchiesQueries
Represents the Queries record for the operation: listDeductionTaxHierarchies
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListDeductionTaxSubGroupsHeaders
Represents the Headers record for the operation: listDeductionTaxSubGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListDeductionTaxSubGroupsQueries
Represents the Queries record for the operation: listDeductionTaxSubGroups
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListDeterminationCriteriasHeaders
Represents the Headers record for the operation: listDeterminationCriterias
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListDeterminationCriteriasQueries
Represents the Queries record for the operation: listDeterminationCriterias
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListDimensionsHeaders
Represents the Headers record for the operation: listDimensions
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListDimensionsQueries
Represents the Queries record for the operation: listDimensions
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListDistributionRulesHeaders
Represents the Headers record for the operation: listDistributionRules
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListDistributionRulesQueries
Represents the Queries record for the operation: listDistributionRules
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListFinancialYearsHeaders
Represents the Headers record for the operation: listFinancialYears
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListFinancialYearsQueries
Represents the Queries record for the operation: listFinancialYears
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListForms1099Headers
Represents the Headers record for the operation: listForms1099
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListForms1099Queries
Represents the Queries record for the operation: listForms1099
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListGLAccountAdvancedRulesHeaders
Represents the Headers record for the operation: listGLAccountAdvancedRules
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListGLAccountAdvancedRulesQueries
Represents the Queries record for the operation: listGLAccountAdvancedRules
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListJournalEntriesHeaders
Represents the Headers record for the operation: listJournalEntries
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListJournalEntriesQueries
Represents the Queries record for the operation: listJournalEntries
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListJournalEntryDocumentTypesHeaders
Represents the Headers record for the operation: listJournalEntryDocumentTypes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListJournalEntryDocumentTypesQueries
Represents the Queries record for the operation: listJournalEntryDocumentTypes
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListNatureOfAssesseesHeaders
Represents the Headers record for the operation: listNatureOfAssessees
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListNatureOfAssesseesQueries
Represents the Queries record for the operation: listNatureOfAssessees
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListPostingTemplatesHeaders
Represents the Headers record for the operation: listPostingTemplates
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListPostingTemplatesQueries
Represents the Queries record for the operation: listPostingTemplates
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListProfitCentersHeaders
Represents the Headers record for the operation: listProfitCenters
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListProfitCentersQueries
Represents the Queries record for the operation: listProfitCenters
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListRecurringPostingsHeaders
Represents the Headers record for the operation: listRecurringPostings
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListRecurringPostingsQueries
Represents the Queries record for the operation: listRecurringPostings
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListRecurringTransactionTemplatesHeaders
Represents the Headers record for the operation: listRecurringTransactionTemplates
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListRecurringTransactionTemplatesQueries
Represents the Queries record for the operation: listRecurringTransactionTemplates
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListSalesTaxAuthoritiesHeaders
Represents the Headers record for the operation: listSalesTaxAuthorities
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListSalesTaxAuthoritiesQueries
Represents the Queries record for the operation: listSalesTaxAuthorities
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListSalesTaxAuthoritiesTypesHeaders
Represents the Headers record for the operation: listSalesTaxAuthoritiesTypes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListSalesTaxAuthoritiesTypesQueries
Represents the Queries record for the operation: listSalesTaxAuthoritiesTypes
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListSalesTaxCodesHeaders
Represents the Headers record for the operation: listSalesTaxCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListSalesTaxCodesQueries
Represents the Queries record for the operation: listSalesTaxCodes
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListSpecificWTHAmountsServiceHeaders
Represents the Headers record for the operation: listSpecificWTHAmountsService
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListSpecificWTHAmountsServiceQueries
Represents the Queries record for the operation: listSpecificWTHAmountsService
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListTaxCodeDeterminationsHeaders
Represents the Headers record for the operation: listTaxCodeDeterminations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListTaxCodeDeterminationsQueries
Represents the Queries record for the operation: listTaxCodeDeterminations
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListTaxCodeDeterminationsTCDHeaders
Represents the Headers record for the operation: listTaxCodeDeterminationsTCD
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListTaxCodeDeterminationsTCDQueries
Represents the Queries record for the operation: listTaxCodeDeterminationsTCD
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListTaxExemptReasonsHeaders
Represents the Headers record for the operation: listTaxExemptReasons
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListTaxExemptReasonsQueries
Represents the Queries record for the operation: listTaxExemptReasons
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListTaxInvoiceReportHeaders
Represents the Headers record for the operation: listTaxInvoiceReport
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListTaxInvoiceReportQueries
Represents the Queries record for the operation: listTaxInvoiceReport
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListTaxReplStateSubsHeaders
Represents the Headers record for the operation: listTaxReplStateSubs
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListTaxReplStateSubsQueries
Represents the Queries record for the operation: listTaxReplStateSubs
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListTaxWebSitesHeaders
Represents the Headers record for the operation: listTaxWebSites
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListTaxWebSitesQueries
Represents the Queries record for the operation: listTaxWebSites
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListTransactionCodesHeaders
Represents the Headers record for the operation: listTransactionCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListTransactionCodesQueries
Represents the Queries record for the operation: listTransactionCodes
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListVatGroupsHeaders
Represents the Headers record for the operation: listVatGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListVatGroupsQueries
Represents the Queries record for the operation: listVatGroups
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListWithholdingTaxCodesHeaders
Represents the Headers record for the operation: listWithholdingTaxCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListWithholdingTaxCodesQueries
Represents the Queries record for the operation: listWithholdingTaxCodes
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListWitholdingTaxDefinitionHeaders
Represents the Headers record for the operation: listWitholdingTaxDefinition
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListWitholdingTaxDefinitionQueries
Represents the Queries record for the operation: listWitholdingTaxDefinition
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: ListWTaxTypeCodesHeaders
Represents the Headers record for the operation: listWTaxTypeCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.financials: ListWTaxTypeCodesQueries
Represents the Queries record for the operation: listWTaxTypeCodes
Fields
- dollarSkip? Signed32 - Number of records to skip (paging)
- dollarTop? Signed32 - Maximum number of records to return
- dollarFilter? string - OData filter expression
- dollarOrderby? string - OData orderby expression
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarInlinecount? "allpages"|"none" - Set to 'allpages' to include the total count (odata.count)
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.financials: NatureOfAssessee
The NatureOfAssessee entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- withholdingTaxCodes? WithholdingTaxCode[] - Withholding tax codes field
- assesseeType? AssesseeTypeEnum - Assessee type field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.financials: NatureOfAssesseeParams
The NatureOfAssesseeParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.financials: NatureOfAssesseesCollectionResponse
A paged collection of NatureOfAssessees entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? NatureOfAssessee[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: OpenningBalanceAccount
The OpenningBalanceAccount complex type of the SAP Business One Service Layer
Fields
- details? string - Details field
- openBalanceAccount? string - Open balance account field
- ref1? string - Ref1 field
- ref2? string - Ref2 field
- date? string - Date field
- bPLID? Signed32 - B PLID field
sap.businessone.financials: PostingTemplates
The PostingTemplates entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- stampTax? BoYesNoEnum - Stamp tax field
- automaticVAT? BoYesNoEnum - Automatic VAT field
- manageWTax? BoYesNoEnum - Manage w tax field
- postingTemplatesLineCollection? PostingTemplatesLine[] - Posting templates line collection field
- deferredTax? BoYesNoEnum - Deferred tax field
- code? string - Code field
sap.businessone.financials: PostingTemplatesCollectionResponse
A paged collection of PostingTemplates entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? PostingTemplates[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: PostingTemplatesLine
The PostingTemplatesLine complex type of the SAP Business One Service Layer
Fields
- distributionRule? string - Distribution rule field
- debit? decimal - Debit field
- taxPostingAccount? BoTaxPostingAccountTypeEnum - Tax posting account field
- costElementCode? string - Cost element code field
- wTaxLiable? BoYesNoEnum - W tax liable field
- costingCode2? string - Costing code2 field
- costingCode3? string - Costing code3 field
- costingCode4? string - Costing code4 field
- costingCode5? string - Costing code5 field
- controlAccount? string - Control account field
- lineNumber? Signed32 - Line number field
- credit? decimal - Credit field
- taxCode? string - Tax code field
- trtCode? string - Trt code field
- taxGroup? string - Tax group field
- costingCode1? string - Costing code1 field
- accountCode? string - Account code field
- vatLine? BoYesNoEnum - VAT line field
- projectCode? string - Project code field
- wTaxLine? BoYesNoEnum - W tax line field
- accountName? string - Account name field
sap.businessone.financials: PostingTemplatesParams
The PostingTemplatesParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.financials: ProfitCenter
The ProfitCenter entity of the SAP Business One Service Layer
Fields
- CenterCode? string - Center code field
- CenterName? string - Center name field
- GroupCode? string - Group code field
- InWhichDimension? Signed32 - In which dimension field
- CostCenterType? string - Cost center type field
- EffectiveFrom? string - Effective from field
- EffectiveTo? string - Effective to field
- Active? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CenterOwner? Signed32 - Center owner field
- Dimension? Dimension - The
Dimensionentity of the SAP Business One Service Layer
- CostCenterType2? CostCenterType - The
CostCenterTypeentity of the SAP Business One Service Layer
sap.businessone.financials: ProfitCenterParams
The ProfitCenterParams complex type of the SAP Business One Service Layer
Fields
- centerName? string - Center name field
- centerCode? string - Center code field
sap.businessone.financials: ProfitCentersCollectionResponse
A paged collection of ProfitCenters entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ProfitCenter[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: ProgressiveTaxLine
The ProgressiveTax_Line complex type of the SAP Business One Service Layer
Fields
- TaxRate? decimal - Tax rate field
- MinAmount? decimal - Min amount field
- MaxAmount? decimal - Max amount field
sap.businessone.financials: RclRecurringExecutionParams
The RclRecurringExecutionParams complex type of the SAP Business One Service Layer
Fields
- onError? RclRecurringExecutionHandlingEnum - On error field
sap.businessone.financials: RclRecurringTransaction
The RclRecurringTransaction complex type of the SAP Business One Service Layer
Fields
- status? RclRecurringTransactionStatusEnum - Status field
- instance? Signed32 - Instance field
- plannedDate? string - Planned date field
- docEntry? Signed32 - Document entry field
- templateID? Signed32 - Template ID field
- docType? string - Document type field
- transactionID? Signed32 - Transaction ID field
sap.businessone.financials: RclRecurringTransactionParams
The RclRecurringTransactionParams complex type of the SAP Business One Service Layer
Fields
- plannedDate? string - Planned date field
- transactionID? Signed32 - Transaction ID field
sap.businessone.financials: RecurringPostings
The RecurringPostings entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- instance? Signed32 - Instance field
- stampTax? BoYesNoEnum - Stamp tax field
- automaticVAT? BoYesNoEnum - Automatic VAT field
- manageWTax? BoYesNoEnum - Manage w tax field
- deferredTax? BoYesNoEnum - Deferred tax field
- code? string - Code field
- nextExecution? string - Next execution field
- validUntil? BoYesNoEnum - Valid until field
- validUntilDate? string - Valid until date field
- recurringPostingsLineCollection? RecurringPostingsLine[] - Recurring postings line collection field
- remarks? string - Remarks field
- reference3? string - Reference3 field
- reference1? string - Reference1 field
- transactionCode? string - Transaction code field
- reference2? string - Reference2 field
- frequency? BoFrequencyTypeEnum - Frequency field
- subFrequency? BoSubFrequencyTypeEnum - Sub frequency field
- recurringPostingsDocumentReferenceCollection? RecurringPostingsDocumentReference[] - Recurring postings document reference collection field
sap.businessone.financials: RecurringPostingsCollectionResponse
A paged collection of RecurringPostings entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? RecurringPostings[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: RecurringPostingsDocumentReference
The RecurringPostingsDocumentReference complex type of the SAP Business One Service Layer
Fields
- referencedDocEntry? Signed32 - Referenced document entry field
- referencedObjectType? ReferencedObjectTypeEnum - Referenced object type field
- externalReferencedDocNumber? string - External referenced document number field
- issueDate? string - Issue date field
- rcrCode? string - Rcr code field
- referencedDocNumber? Signed32 - Referenced document number field
- lineNumber? Signed32 - Line number field
- remark? string - Remark field
sap.businessone.financials: RecurringPostingsLine
The RecurringPostingsLine complex type of the SAP Business One Service Layer
Fields
- distributionRule? string - Distribution rule field
- debit? decimal - Debit field
- taxPostingAccount? BoTaxPostingAccountTypeEnum - Tax posting account field
- costElementCode? string - Cost element code field
- wTaxLiable? BoYesNoEnum - W tax liable field
- costingCode2? string - Costing code2 field
- costingCode3? string - Costing code3 field
- costingCode4? string - Costing code4 field
- costingCode5? string - Costing code5 field
- controlAccount? string - Control account field
- lineNumber? Signed32 - Line number field
- credit? decimal - Credit field
- taxCode? string - Tax code field
- taxGroup? string - Tax group field
- currency? string - Currency field
- costingCode1? string - Costing code1 field
- accountCode? string - Account code field
- vatLine? BoYesNoEnum - VAT line field
- projectCode? string - Project code field
- rcrCode? string - Rcr code field
- wTaxLine? BoYesNoEnum - W tax line field
- accountName? string - Account name field
sap.businessone.financials: RecurringPostingsParams
The RecurringPostingsParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- instance? Signed32 - Instance field
- code? string - Code field
sap.businessone.financials: RecurringTransactionService_DeleteRecurringTransactions_body
Represents the request payload for the RecurringTransactionService_DeleteRecurringTransactions operation of the SAP Business One Service Layer
Fields
- rclRecurringTransactionParamsCollection? RclRecurringTransactionParams[] - Rcl recurring transaction params collection field
sap.businessone.financials: RecurringTransactionService_ExecuteRecurringTransactions_body
Represents the request payload for the RecurringTransactionService_ExecuteRecurringTransactions operation of the SAP Business One Service Layer
Fields
- rclRecurringExecutionParams? RclRecurringExecutionParams - Rcl recurring execution params field
- rclRecurringTransactionParamsCollection? RclRecurringTransactionParams[] - Rcl recurring transaction params collection field
sap.businessone.financials: RecurringTransactionService_GetRecurringTransaction_body
Represents the request payload for the RecurringTransactionService_GetRecurringTransaction operation of the SAP Business One Service Layer
Fields
- rclRecurringTransactionParams? RclRecurringTransactionParams - Rcl recurring transaction params field
sap.businessone.financials: RecurringTransactionTemplate
The RecurringTransactionTemplate entity of the SAP Business One Service Layer
Fields
- templateCode? string - Template code field
- startDate? string - Start date field
- documentObjectType? DocumentObjectTypeEnum - Document object type field
- absoluteEntry? Signed32 - Absolute entry field
- frequency? RecurringTransactionTemplateFrequencyEnum - Frequency field
- cardCode? string - Card code field
- draftEntry? Signed32 - Draft entry field
- remind? RecurringTransactionTemplateRemindEnum - Remind field
- templateDescription? string - Template description field
- endDate? string - End date field
- priceUpdate? BoYesNoEnum - Price update field
sap.businessone.financials: RecurringTransactionTemplateParams
The RecurringTransactionTemplateParams complex type of the SAP Business One Service Layer
Fields
- absoluteEntry? Signed32 - Absolute entry field
sap.businessone.financials: RecurringTransactionTemplatesCollectionResponse
A paged collection of RecurringTransactionTemplates entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? RecurringTransactionTemplate[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: RelatedDocument
The RelatedDocument complex type of the SAP Business One Service Layer
Fields
- absEnry? Signed32 - Abs enry field
- absEntry? Signed32 - Abs entry field
- uUID? string - U UID field
- docTye? RelatedDocumentTypeEnum - Document tye field
- docType? RelatedDocumentTypeEnum - Document type field
sap.businessone.financials: SalesTaxAuthoritiesCollectionResponse
A paged collection of SalesTaxAuthorities entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? SalesTaxAuthority[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: SalesTaxAuthoritiesType
The SalesTaxAuthoritiesType entity of the SAP Business One Service Layer
Fields
- UserSignature? Signed32 - User signature field
- Name? string - Name field
- VAT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Numerator? Signed32 - Numerator field
- TaxCreditControl? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NfTaxId? Signed32 - Nf tax ID field
- TaxParamSetId? Signed32 - Tax param set ID field
- SalesTaxAuthorities? SalesTaxAuthority[] - Sales tax authorities field
sap.businessone.financials: SalesTaxAuthoritiesTypesCollectionResponse
A paged collection of SalesTaxAuthoritiesTypes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? SalesTaxAuthoritiesType[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: SalesTaxAuthority
The SalesTaxAuthority entity of the SAP Business One Service Layer
Fields
- UseTaxAccount? string - Use tax account field
- UserSignature? Signed32 - User signature field
- Type? Signed32 - Type field
- AOrRTaxAccount? string - A or r tax account field
- Rate? decimal - Rate field
- AOrPTaxAccount? string - A or p tax account field
- NonDeductiblePrecent? decimal - Non deductible precent field
- NonDeductibleAccount? string - Non deductible account field
- Name? string - Name field
- DeferredTaxAccount? string - Deferred tax account field
- Code? string - Code field
- MinTaxableAmount? decimal - Min taxable amount field
- MaxTaxableAmount? decimal - Max taxable amount field
- FlatTaxAmount? decimal - Flat tax amount field
- InclInPrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Exempt? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- APExpAccount? string - Accounts payable exp account field
- ARExpAccount? string - Accounts receivable exp account field
- InclInGrossRevenue? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TextCode? Signed32 - Text code field
- InclInFirstInstallment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReverseChargePercent? decimal - Reverse charge percent field
- SalesTaxRCMAccount? string - Sales tax RCM account field
- SalesTaxRCMClrAccount? string - Sales tax RCM clr account field
- VATExemption? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VATExemptionBasePercent? decimal - VAT exemption base percent field
- VATExemptionPercent? decimal - VAT exemption percent field
- TaxDefinitions? TaxDefinition[] - Tax definitions field
- ChartOfAccount? ChartOfAccount - The
ChartOfAccountentity of the SAP Business One Service Layer
- SalesTaxAuthoritiesType? SalesTaxAuthoritiesType - The
SalesTaxAuthoritiesTypeentity of the SAP Business One Service Layer
sap.businessone.financials: SalesTaxCode
The SalesTaxCode entity of the SAP Business One Service Layer
Fields
- ValidForAR? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ValidForAP? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UserSignature? Signed32 - User signature field
- Rate? decimal - Rate field
- Name? string - Name field
- Freight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Code? string - Code field
- IsItemLevel? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Inactive? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FADebit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TypeFormulaCombId? Signed32 - Type formula comb ID field
- CFOPIn? string - CFOP in field
- CFOPOut? string - CFOP out field
- SalesTaxCodes_Lines? SalesTaxCodesLine[] - Sales tax codes lines field
sap.businessone.financials: SalesTaxCodesCollectionResponse
A paged collection of SalesTaxCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? SalesTaxCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: SalesTaxCodesLine
The SalesTaxCodes_Line complex type of the SAP Business One Service Layer
Fields
- STATaxOnTaxType? Signed32 - STA tax on tax type field
- STATaxonTaxCode? string - STA taxon tax code field
- STCCode? string - STC code field
- STAType? Signed32 - STA type field
- STACode? string - STA code field
- RowNumber? Signed32 - Row number field
- EffectiveRate? decimal - Effective rate field
- FormulaId? Signed32 - Formula ID field
- CSTCodeIn? string - CST code in field
- CSTSuffix? string - CST suffix field
sap.businessone.financials: SpecificWTHAmounts
The SpecificWTHAmounts entity of the SAP Business One Service Layer
Fields
- PaymentReasonCode? string - Payment reason code field
- CardCode? string - Card code field
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FullWtaxTaxationInAdvance? decimal - Full wtax taxation in advance field
- WTaxAmountOnHold? decimal - W tax amount on hold field
- RegionalIRPEFHeldAsWTax? decimal - Regional IRPEF held as w tax field
- RegionalIRPEFInAdvance? decimal - Regional IRPEF in advance field
- RegionalSuspendedTaxIRPEF? decimal - Regional suspended tax IRPEF field
- MunicipalTaxAsWTaxIRPEF? decimal - Municipal tax as w tax IRPEF field
- MunicipalTaxHeldAsAdvance? decimal - Municipal tax held as advance field
- SuspendedMunicipalTax? decimal - Suspended municipal tax field
- TaxableAmtPreviousYear? decimal - Taxable amount previous year field
- WTaxAmountPreviousYear? decimal - W tax amount previous year field
- ExpensesReimbursed? decimal - Expenses reimbursed field
- WTaxReimbursed? decimal - W tax reimbursed field
- ReturnedAmountAfterDeductionOfWTax? decimal - Returned amount after deduction of w tax field
- DeliveryIdentificationNo? string - Delivery identification number field
- SingleCertificationNo? string - Single certification number field
- EarningYear? Signed32 - Earning year field
- Advanced? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WTaxTypeCode? string - W tax type code field
- SocialSecurityFiscalC? string - Social security fiscal c field
- SocialSecurityInstitut? string - Social security institut field
- CompanyCode? string - Company code field
- Category? BoOSWACategoryEnum - OData EnumType 'BoOSWACategoryEnum'. Serialised by the Service Layer as the member name
- EmployeeSocialSecurity? decimal - Employee social security field
- EmployerSocialSecurity? decimal - Employer social security field
- OtherContributions? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ValueOfOtherContribut? decimal - Value of other contribut field
- OtherAmountsDue? decimal - Other amounts due field
- OtherAmountsPaid? decimal - Other amounts paid field
- AmountPaidBeforeBankr? decimal - Amount paid before bankr field
- AmountPaidByTrustee? decimal - Amount paid by trustee field
- FiscalCode? string - Fiscal code field
- TaxableAmount? decimal - Taxable amount field
- TaxAmount? decimal - Tax amount field
- TaxAmountInAdvance? decimal - Tax amount in advance field
- SuspendedWTHTax? decimal - Suspended WTH tax field
- AdditionalRegionalTax57? decimal - Additional regional tax57 field
- AdditionalRegionalTax58? decimal - Additional regional tax58 field
- SuspendedRegionalTax? decimal - Suspended regional tax field
- AdditionalCitytaxToI60? decimal - Additional citytax to I60 field
- AdditionalCityTaxToI? decimal - Additional city tax to i field
- SuspendedCityTax? decimal - Suspended city tax field
- FiscalCodeThirdParty71? string - Fiscal code third party71 field
- FiscalCodeThirdParty72? string - Fiscal code third party72 field
- FiscalCodeExpropriation? string - Fiscal code expropriation field
- FiscalCodeOfMainDeb101? string - Fiscal code of main deb101 field
- AmountPaid102? decimal - Amount paid102 field
- AmountsProvidedAndNo104? decimal - Amounts provided and no104 field
- WHTApplied103? decimal - WHT applied103 field
- FiscalCodeOfMainDeb105? string - Fiscal code of main deb105 field
- AmountPaid106? decimal - Amount paid106 field
- AmountsProvidedAndNo108? decimal - Amounts provided and no108 field
- WHTApplied107? decimal - WHT applied107 field
- AmountPaid131? decimal - Amount paid131 field
- TaxApplied132? decimal - Tax applied132 field
- AmountPaid133? decimal - Amount paid133 field
- TaxApplied134? decimal - Tax applied134 field
- AmountPaid135? decimal - Amount paid135 field
- TaxApplied136? decimal - Tax applied136 field
- AmountPaid137? decimal - Amount paid137 field
- TaxApplied138? decimal - Tax applied138 field
- WTaxTypeCode2? WTaxTypeCode - The
WTaxTypeCodeentity of the SAP Business One Service Layer
sap.businessone.financials: SpecificWTHAmountsParams
The SpecificWTHAmountsParams complex type of the SAP Business One Service Layer
Fields
- PaymentReasonCode? string - Payment reason code field
- CardCode? string - Card code field
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FullWtaxTaxationInAdvance? decimal - Full wtax taxation in advance field
- WTaxAmountOnHold? decimal - W tax amount on hold field
- RegionalIRPEFHeldAsWTax? decimal - Regional IRPEF held as w tax field
- RegionalIRPEFInAdvance? decimal - Regional IRPEF in advance field
- RegionalSuspendedTaxIRPEF? decimal - Regional suspended tax IRPEF field
- MunicipalTaxAsWTaxIRPEF? decimal - Municipal tax as w tax IRPEF field
- MunicipalTaxHeldAsAdvance? decimal - Municipal tax held as advance field
- SuspendedMunicipalTax? decimal - Suspended municipal tax field
- TaxableAmtPreviousYear? decimal - Taxable amount previous year field
- WTaxAmountPreviousYear? decimal - W tax amount previous year field
- ExpensesReimbursed? decimal - Expenses reimbursed field
- WTaxReimbursed? decimal - W tax reimbursed field
- ReturnedAmountAfterDeductionOfWTax? decimal - Returned amount after deduction of w tax field
- DeliveryIdentificationNo? string - Delivery identification number field
- SingleCertificationNo? string - Single certification number field
- EarningYear? Signed32 - Earning year field
- Advanced? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WTaxTypeCode? string - W tax type code field
- SocialSecurityFiscalC? string - Social security fiscal c field
- SocialSecurityInstitut? string - Social security institut field
- CompanyCode? string - Company code field
- Category? BoOSWACategoryEnum - OData EnumType 'BoOSWACategoryEnum'. Serialised by the Service Layer as the member name
- EmployeeSocialSecurity? decimal - Employee social security field
- EmployerSocialSecurity? decimal - Employer social security field
- OtherContributions? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ValueOfOtherContribut? decimal - Value of other contribut field
- OtherAmountsDue? decimal - Other amounts due field
- OtherAmountsPaid? decimal - Other amounts paid field
- AmountPaidBeforeBankr? decimal - Amount paid before bankr field
- AmountPaidByTrustee? decimal - Amount paid by trustee field
- FiscalCode? string - Fiscal code field
- TaxableAmount? decimal - Taxable amount field
- TaxAmount? decimal - Tax amount field
- TaxAmountInAdvance? decimal - Tax amount in advance field
- SuspendedWTHTax? decimal - Suspended WTH tax field
- AdditionalRegionalTax57? decimal - Additional regional tax57 field
- AdditionalRegionalTax58? decimal - Additional regional tax58 field
- SuspendedRegionalTax? decimal - Suspended regional tax field
- AdditionalCitytaxToI60? decimal - Additional citytax to I60 field
- AdditionalCityTaxToI? decimal - Additional city tax to i field
- SuspendedCityTax? decimal - Suspended city tax field
- FiscalCodeThirdParty71? string - Fiscal code third party71 field
- FiscalCodeThirdParty72? string - Fiscal code third party72 field
- FiscalCodeExpropriation? string - Fiscal code expropriation field
- FiscalCodeOfMainDeb101? string - Fiscal code of main deb101 field
- AmountPaid102? decimal - Amount paid102 field
- AmountsProvidedAndNo104? decimal - Amounts provided and no104 field
- WHTApplied103? decimal - WHT applied103 field
- FiscalCodeOfMainDeb105? string - Fiscal code of main deb105 field
- AmountPaid106? decimal - Amount paid106 field
- AmountsProvidedAndNo108? decimal - Amounts provided and no108 field
- WHTApplied107? decimal - WHT applied107 field
- AmountPaid131? decimal - Amount paid131 field
- TaxApplied132? decimal - Tax applied132 field
- AmountPaid133? decimal - Amount paid133 field
- TaxApplied134? decimal - Tax applied134 field
- AmountPaid135? decimal - Amount paid135 field
- TaxApplied136? decimal - Tax applied136 field
- AmountPaid137? decimal - Amount paid137 field
- TaxApplied138? decimal - Tax applied138 field
sap.businessone.financials: SpecificWTHAmountsServiceCollectionResponse
A paged collection of SpecificWTHAmountsService entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? SpecificWTHAmounts[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: TaxCodeDetermination
The TaxCodeDetermination entity of the SAP Business One Service Layer
Fields
- condition1? BoTCDConditionEnum - Condition1 field
- condition2? BoTCDConditionEnum - Condition2 field
- freightHeaderTax? string - Freight header tax field
- uDFTable2? string - U DF table2 field
- uDFTable1? string - U DF table1 field
- description? string - Description field
- uDFTable4? string - U DF table4 field
- uDFTable3? string - U DF table3 field
- uDFTable5? string - U DF table5 field
- condition5? BoTCDConditionEnum - Condition5 field
- lineNumber? Signed32 - Line number field
- condition3? BoTCDConditionEnum - Condition3 field
- condition4? BoTCDConditionEnum - Condition4 field
- uDFAlias4? string - U DF alias4 field
- uDFAlias3? string - U DF alias3 field
- uDFAlias2? string - U DF alias2 field
- uDFAlias1? string - U DF alias1 field
- taxCode? string - Tax code field
- freightRowTax? string - Freight row tax field
- uDFAlias5? string - U DF alias5 field
- stringValue5? string - String value5 field
- moneyValue5? decimal - Money value5 field
- stringValue4? string - String value4 field
- stringValue1? string - String value1 field
- moneyValue1? decimal - Money value1 field
- moneyValue2? decimal - Money value2 field
- stringValue3? string - String value3 field
- moneyValue3? decimal - Money value3 field
- stringValue2? string - String value2 field
- moneyValue4? decimal - Money value4 field
- businessArea? BoBusinessAreaEnum - Business area field
- numberValue5? Signed32 - Number value5 field
- docEntry? Signed32 - Document entry field
- documentType? BoTCDDocumentTypeEnum - Document type field
- numberValue4? Signed32 - Number value4 field
- numberValue1? Signed32 - Number value1 field
- numberValue3? Signed32 - Number value3 field
- numberValue2? Signed32 - Number value2 field
sap.businessone.financials: TaxCodeDeterminationParams
The TaxCodeDeterminationParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 - Document entry field
sap.businessone.financials: TaxCodeDeterminationsCollectionResponse
A paged collection of TaxCodeDeterminations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TaxCodeDetermination[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: TaxCodeDeterminationsTCDCollectionResponse
A paged collection of TaxCodeDeterminationsTCD entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TaxCodeDeterminationTCD[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: TaxCodeDeterminationTCD
The TaxCodeDeterminationTCD entity of the SAP Business One Service Layer
Fields
- taxCodeDeterminationTCDDefaultWTs? TaxCodeDeterminationTCDDefaultWT[] - Tax code determination TCD default w ts field
- dftApCode? string - Dft accounts payable code field
- dftArCode? string - Dft accounts receivable code field
- taxCodeDeterminationTCDByUsages? TaxCodeDeterminationTCDByUsage[] - Tax code determination TCD by usages field
- tcdType? TaxCodeDeterminationTCDTypeEnum - Tcd type field
- taxCodeDeterminationTCDKeyFields? TaxCodeDeterminationTCDKeyField[] - Tax code determination TCD key fields field
- absId? Signed32 - Abs ID field
sap.businessone.financials: TaxCodeDeterminationTCDByUsage
The TaxCodeDeterminationTCDByUsage complex type of the SAP Business One Service Layer
Fields
- usageCode? Signed32 - Usage code field
- 'type? TaxCodeDeterminationTCDByUsageTypeEnum - Type field
- taxCode? string - Tax code field
- expTaxCode? string - Exp tax code field
- purTaxCode? string - Pur tax code field
- absId? Signed32 - Abs ID field
sap.businessone.financials: TaxCodeDeterminationTCDDefaultWT
The TaxCodeDeterminationTCDDefaultWT complex type of the SAP Business One Service Layer
Fields
- 'type? TaxCodeDeterminationTCDDefaultWTTypeEnum - Type field
- absId? Signed32 - Abs ID field
- wTCode? string - W t code field
sap.businessone.financials: TaxCodeDeterminationTCDKeyField
The TaxCodeDeterminationTCDKeyField complex type of the SAP Business One Service Layer
Fields
- uDFTable3? string - U DF table3 field
- keyFld4? Signed32 - Key fld4 field
- uDFTable2? string - U DF table2 field
- keyFld5? Signed32 - Key fld5 field
- uDFTable1? string - U DF table1 field
- keyFld1? Signed32 - Key fld1 field
- priority? Signed32 - Priority field
- keyFld2? Signed32 - Key fld2 field
- uDFTable5? string - U DF table5 field
- keyFld3? Signed32 - Key fld3 field
- uDFTable4? string - U DF table4 field
- taxCodeDeterminationTCDKeyFieldValues? TaxCodeDeterminationTCDKeyFieldValue[] - Tax code determination TCD key field values field
- descr? string - Descr field
- absId? Signed32 - Abs ID field
- legalText? string - Legal text field
- uDFAlias1? string - U DF alias1 field
- uDFAlias2? string - U DF alias2 field
- uDFAlias3? string - U DF alias3 field
- uDFAlias4? string - U DF alias4 field
- uDFAlias5? string - U DF alias5 field
sap.businessone.financials: TaxCodeDeterminationTCDKeyFieldValue
The TaxCodeDeterminationTCDKeyFieldValue complex type of the SAP Business One Service Layer
Fields
- keyFld5V? string - Key fld5 v field
- keyFld3V? string - Key fld3 v field
- keyFld4V? string - Key fld4 v field
- keyFld1V? string - Key fld1 v field
- keyFld2V? string - Key fld2 v field
- dispOrder? Signed32 - Disp order field
- taxCodeDeterminationTCDKeyFieldValueDefaultWTs? TaxCodeDeterminationTCDKeyFieldValueDefaultWT[] - Tax code determination TCD key field value default w ts field
- absId? Signed32 - Abs ID field
- taxCodeDeterminationTCDKeyFieldValuePeriods? TaxCodeDeterminationTCDKeyFieldValuePeriod[] - Tax code determination TCD key field value periods field
sap.businessone.financials: TaxCodeDeterminationTCDKeyFieldValueDefaultWT
The TaxCodeDeterminationTCDKeyFieldValueDefaultWT complex type of the SAP Business One Service Layer
Fields
- absId? Signed32 - Abs ID field
- wTCode? string - W t code field
sap.businessone.financials: TaxCodeDeterminationTCDKeyFieldValuePeriod
The TaxCodeDeterminationTCDKeyFieldValuePeriod complex type of the SAP Business One Service Layer
Fields
- taxCode? string - Tax code field
- efctTo? string - Efct to field
- taxCodeDeterminationTCDKeyFieldValuePeriodByUsages? TaxCodeDeterminationTCDKeyFieldValuePeriodByUsage[] - Tax code determination TCD key field value period by usages field
- efctFrom? string - Efct from field
- absId? Signed32 - Abs ID field
sap.businessone.financials: TaxCodeDeterminationTCDKeyFieldValuePeriodByUsage
The TaxCodeDeterminationTCDKeyFieldValuePeriodByUsage complex type of the SAP Business One Service Layer
Fields
- usageCode? Signed32 - Usage code field
- taxCode? string - Tax code field
- expTaxCode? string - Exp tax code field
- purTaxCode? string - Pur tax code field
- absId? Signed32 - Abs ID field
sap.businessone.financials: TaxCodeDeterminationTCDParams
The TaxCodeDeterminationTCDParams complex type of the SAP Business One Service Layer
Fields
- absId? Signed32 - Abs ID field
sap.businessone.financials: TaxDefinition
The TaxDefinition complex type of the SAP Business One Service Layer
Fields
- Effectivefrom? string - Effectivefrom field
- Rate? decimal - Rate field
sap.businessone.financials: TaxExemptReason
The TaxExemptReason entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- vatGroups? VatGroup[] - VAT groups field
- code? string - Code field
sap.businessone.financials: TaxExemptReasonParams
The TaxExemptReasonParams complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
sap.businessone.financials: TaxExemptReasonsCollectionResponse
A paged collection of TaxExemptReasons entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TaxExemptReason[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: TaxInvoiceReport
The TaxInvoiceReport entity of the SAP Business One Service Layer
Fields
- taxInvoiceReportNumber? string - Tax invoice report number field
- nTSApprovalNo? string - N TS approval number field
- nTSApproval? TaxInvoiceReportNTSApprovedEnum - N TS approval field
- taxWebSite? TaxWebSite - Tax web site field
- eTaxWebSite? Signed32 - E tax web site field
- eTaxNo? string - E tax number field
- date? string - Date field
- taxInvoiceReportLineCollection? TaxInvoiceReportLine[] - Tax invoice report line collection field
- businessPlace? Signed32 - Business place field
- baseAmount? decimal - Base amount field
- taxAmount? decimal - Tax amount field
- remarks? string - Remarks field
- bPName? string - B p name field
- originalNTSApprovalNo? string - Original NTS approval number field
- canceled? string - Canceled field
- bPCode? string - B p code field
- reportType? Signed32 - Report type field
sap.businessone.financials: TaxInvoiceReportCollectionResponse
A paged collection of TaxInvoiceReport entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TaxInvoiceReport[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: TaxInvoiceReportLine
The TaxInvoiceReportLine complex type of the SAP Business One Service Layer
Fields
- taxInvoiceReportNumber? string - Tax invoice report number field
- legacy? string - Legacy field
- itemPrice? decimal - Item price field
- documentType? Signed32 - Document type field
- itemDescription? string - Item description field
- lineNumber? Signed32 - Line number field
- baseAmount? decimal - Base amount field
- businessPlace? Signed32 - Business place field
- taxAmount? decimal - Tax amount field
- taxCode? string - Tax code field
- bPName? string - B p name field
- itemQuantity? decimal - Item quantity field
- itemNo? string - Item number field
- currency? string - Currency field
- documentEntry? Signed32 - Document entry field
- bPCode? string - B p code field
- lineType? TaxInvoiceReportLineTypeEnum - Line type field
- documentDate? string - Document date field
sap.businessone.financials: TaxReplStateSubData
The TaxReplStateSubData entity of the SAP Business One Service Layer
Fields
- state? string - State field
- iEST? string - I EST field
sap.businessone.financials: TaxReplStateSubsCollectionResponse
A paged collection of TaxReplStateSubs entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TaxReplStateSubData[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: TaxWebSite
The TaxWebSite entity of the SAP Business One Service Layer
Fields
- taxInvoiceReport? TaxInvoiceReport[] - Tax invoice report field
- description? string - Description field
- webSiteURL? string - Web site URL field
- absEntry? Signed32 - Abs entry field
- webSiteName? string - Web site name field
sap.businessone.financials: TaxWebSiteParams
The TaxWebSiteParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
- webSiteName? string - Web site name field
sap.businessone.financials: TaxWebSitesCollectionResponse
A paged collection of TaxWebSites entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TaxWebSite[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: TransactionCode
The TransactionCode entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- journalEntries? JournalEntry[] - Journal entries field
- chartOfAccounts? ChartOfAccount[] - Chart of accounts field
- code? string - Code field
sap.businessone.financials: TransactionCodeParams
The TransactionCodeParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.financials: TransactionCodesCollectionResponse
A paged collection of TransactionCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TransactionCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: VatGroup
The VatGroup entity of the SAP Business One Service Layer
Fields
- Code? string - Code field
- Name? string - Name field
- Category? BoVatCategoryEnum - OData EnumType 'BoVatCategoryEnum'. Serialised by the Service Layer as the member name
- TaxAccount? string - Tax account field
- EU? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TriangularDeal? string - Triangular deal field
- AcquisitionReverse? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NonDeduct? decimal - Non deduct field
- AcquisitionTax? string - Acquisition tax field
- GoodsShipment? string - Goods shipment field
- NonDeductAcc? string - Non deduct acc field
- DeferredTaxAcc? string - Deferred tax acc field
- Correction? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatCorrection? string - VAT correction field
- EqualizationTaxAccount? string - Equalization tax account field
- ServiceSupply? string - Service supply field
- Inactive? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxTypeBlackList? TaxTypeBlackListEnum - OData EnumType 'TaxTypeBlackListEnum'. Serialised by the Service Layer as the member name
- Report349Code? Report349CodeListEnum - OData EnumType 'Report349CodeListEnum'. Serialised by the Service Layer as the member name
- VATInRevenueAccount? string - VAT in revenue account field
- DownPaymentTaxOffsetAccount? string - Down payment tax offset account field
- CashDiscountAccount? string - Cash discount account field
- VATDeductibleAccount? string - VAT deductible account field
- TaxRegion? VatGroupsTaxRegionEnum - OData EnumType 'VatGroupsTaxRegionEnum'. Serialised by the Service Layer as the member name
- AcquisitionReverseCorrespondingTaxCode? string - Acquisition reverse corresponding tax code field
- EBooksVatCategory? Signed32 - E books VAT category field
- TaxExemptionReason? string - Tax exemption reason field
- SAFTTaxCode? SAFTTaxCodeEnum - OData EnumType 'SAFTTaxCodeEnum'. Serialised by the Service Layer as the member name
- EBooksVatExemptionCause? Signed32 - E books VAT exemption cause field
- EBooksVatExpClassType? Signed32 - E books VAT exp class type field
- EBooksVatExpClassCategory? Signed32 - E books VAT exp class category field
- SAFTTaxCodeEx? string - SAFT tax code ex field
- GroupDescription? string - Group description field
- VATType? Signed32 - VAT type field
- VatGroups_Lines? VatGroupsLine[] - VAT groups lines field
- ChartOfAccount? ChartOfAccount - The
ChartOfAccountentity of the SAP Business One Service Layer
- TaxExemptReason? TaxExemptReason - The
TaxExemptReasonentity of the SAP Business One Service Layer
- GLAccountAdvancedRules? GLAccountAdvancedRule[] - General ledger account advanced rules field
sap.businessone.financials: VatGroupsCollectionResponse
A paged collection of VatGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? VatGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: VatGroupsLine
The VatGroups_Line complex type of the SAP Business One Service Layer
Fields
- Effectivefrom? string - Effectivefrom field
- Rate? decimal - Rate field
- EqualizationTax? decimal - Equalization tax field
- DatevCode? Signed32 - Datev code field
sap.businessone.financials: WithholdingTaxCode
The WithholdingTaxCode entity of the SAP Business One Service Layer
Fields
- WTCode? string - Withholding tax code field
- WTName? string - Withholding tax name field
- Category? WithholdingTaxCodeCategoryEnum - OData EnumType 'WithholdingTaxCodeCategoryEnum'. Serialised by the Service Layer as the member name
- BaseType? WithholdingTaxCodeBaseTypeEnum - OData EnumType 'WithholdingTaxCodeBaseTypeEnum'. Serialised by the Service Layer as the member name
- BaseAmount? decimal - Base amount field
- OfficialCode? string - Official code field
- Account? string - Account field
- WithholdingType? WithholdingTypeEnum - OData EnumType 'WithholdingTypeEnum'. Serialised by the Service Layer as the member name
- RoundingType? RoundingTypeEnum - OData EnumType 'RoundingTypeEnum'. Serialised by the Service Layer as the member name
- Section? Signed32 - Section field
- Threshold? decimal - Threshold field
- Surcharge? decimal - Surcharge field
- Concessional? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Assessee? Signed32 - Assessee field
- APTDSAccount? string - APTDS account field
- APSurchargeAccount? string - Accounts payable surcharge account field
- APCessAccount? string - Accounts payable cess account field
- APHSCAccount? string - APHSC account field
- APIGSTAccount? string - APIGST account field
- APCGSTAccount? string - APCGST account field
- APSGSTAccount? string - APSGST account field
- APUTGSTAccount? string - APUTGST account field
- APCessGSTAccount? string - Accounts payable cess GST account field
- ARTDSAccount? string - ARTDS account field
- ARSurchargeAccount? string - Accounts receivable surcharge account field
- ARCessAccount? string - Accounts receivable cess account field
- ARHSCAccount? string - ARHSC account field
- ARIGSTAccount? string - ARIGST account field
- ARCGSTAccount? string - ARCGST account field
- ARSGSTAccount? string - ARSGST account field
- ARUTGSTAccount? string - ARUTGST account field
- ARCessGSTAccount? string - Accounts receivable cess GST account field
- ARTCSInterimAccount? string - ARTCS interim account field
- ARSurchargeInterimAccount? string - Accounts receivable surcharge interim account field
- ARCessInterimAccount? string - Accounts receivable cess interim account field
- ARHSCInterimAccount? string - ARHSC interim account field
- APTCSInterimAccount? string - APTCS interim account field
- APSurchargeInterimAccount? string - Accounts payable surcharge interim account field
- APCessInterimAccount? string - Accounts payable cess interim account field
- APHSCInterimAccount? string - APHSC interim account field
- Location? Signed32 - Location field
- ReturnType? ReturnTypeEnum - OData EnumType 'ReturnTypeEnum'. Serialised by the Service Layer as the member name
- Inactive? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CSTCodeIncomingID? Signed32 - CST code incoming ID field
- CSTCodeOutgoingID? Signed32 - CST code outgoing ID field
- NatureOfCalculationBaseCode? string - Nature of calculation base code field
- TypeID? Signed32 - Type ID field
- Rate? decimal - Rate field
- EffectiveFrom? string - Effective from field
- MinimumTaxableAmount? decimal - Minimum taxable amount field
- IsProgressiveTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Currency? string - Currency field
- TdsType? TdsTypeEnum - OData EnumType 'TdsTypeEnum'. Serialised by the Service Layer as the member name
- TransactonThreshold? decimal - Transacton threshold field
- EBooksWTaxCategory? Signed32 - E books w tax category field
- NonDeductThreshold? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UseInAPDPR? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WithholdingTaxCodes_Lines? WithholdingTaxCodesLine[] - Withholding tax codes lines field
- ChartOfAccount? ChartOfAccount - The
ChartOfAccountentity of the SAP Business One Service Layer
- NatureOfAssessee? NatureOfAssessee - The
NatureOfAssesseeentity of the SAP Business One Service Layer
- Currency2? Currency - The
Currencyentity of the SAP Business One Service Layer
sap.businessone.financials: WithholdingTaxCodesCollectionResponse
A paged collection of WithholdingTaxCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WithholdingTaxCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: WithholdingTaxCodesLine
The WithholdingTaxCodes_Line complex type of the SAP Business One Service Layer
Fields
- Effectivefrom? string - Effectivefrom field
- Rate? decimal - Rate field
- TDSRate? decimal - TDS rate field
- SurchargeRate? decimal - Surcharge rate field
- CessRate? decimal - Cess rate field
- HSCRate? decimal - HSC rate field
- IGSTRate? decimal - IGST rate field
- CGSTRate? decimal - CGST rate field
- SGSTRate? decimal - SGST rate field
- UTGSTRate? decimal - UTGST rate field
- CessGSTRate? decimal - Cess GST rate field
- LineNum? Signed32 - Line number field
- UoMEntry? Signed32 - Uo m entry field
- UoMCode? string - Uo m code field
- FixedAmount? decimal - Fixed amount field
- Currency? string - Currency field
- ITRNonCompliantRate? decimal - ITR non compliant rate field
- PANNonCompliantRate? decimal - PAN non compliant rate field
- ProgressiveTax_Lines? ProgressiveTaxLine[] - Progressive tax lines field
- WithholdingTaxCodes_ValueRange_Lines? WithholdingTaxCodesValueRangeLine[] - Withholding tax codes value range lines field
sap.businessone.financials: WithholdingTaxCodesValueRangeLine
The WithholdingTaxCodes_ValueRange_Line complex type of the SAP Business One Service Layer
Fields
- ValueFrom? decimal - Value from field
- WTaxToBeDeductible? decimal - W tax to be deductible field
- Rate? decimal - Rate field
sap.businessone.financials: WithholdingTaxData
The WithholdingTaxData complex type of the SAP Business One Service Layer
Fields
- WTCode? string - Withholding tax code field
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- RoundingType? string - Rounding type field
- Rate? decimal - Rate field
- Criteria? string - Criteria field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 - Target abs entry field
- TargetDocumentType? Signed32 - Target document type field
sap.businessone.financials: WitholdingTaxDefinitionCollectionResponse
A paged collection of WitholdingTaxDefinition entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WTDCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: WTaxTypeCode
The WTaxTypeCode entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? Signed32 - Code field
- specificWTHAmountsService? SpecificWTHAmounts[] - Specific WTH amounts service field
sap.businessone.financials: WTaxTypeCodeParams
The WTaxTypeCodeParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
sap.businessone.financials: WTaxTypeCodesCollectionResponse
A paged collection of WTaxTypeCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WTaxTypeCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.financials: WTDBP
The WTDBP complex type of the SAP Business One Service Layer
Fields
- BPKeyPart1? string - Business partner key part1 field
- BPKeyPart2? string - Business partner key part2 field
- WTaxCode? string - W tax code field
- EffectiveDateFrom? string - Effective date from field
- EffectiveDateTo? string - Effective date to field
- Rate? decimal - Rate field
- DetailType? WTDDetailType - OData EnumType 'WTDDetailType'. Serialised by the Service Layer as the member name
sap.businessone.financials: WTDCode
The WTDCode entity of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 - Abs entry field
- WTaxCode? string - W tax code field
- WTaxName? string - W tax name field
- FormulaID? Signed32 - Formula ID field
- Inactive? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- OfficialCode? string - Official code field
- Category? WithholdingTaxCodeCategoryEnum - OData EnumType 'WithholdingTaxCodeCategoryEnum'. Serialised by the Service Layer as the member name
- BaseType? WithholdingTaxCodeBaseTypeEnum - OData EnumType 'WithholdingTaxCodeBaseTypeEnum'. Serialised by the Service Layer as the member name
- Type? Signed32 - Type field
- MinAmount? decimal - Min amount field
- BaseAmountPrct? decimal - Base amount prct field
- SlidingScaleProgressiveTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CalculateInAutomaticCM? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WTDEffectiveDateCollection? WTDEffectiveDate[] - WTD effective date collection field
- WTDBPCollection? WTDBP[] - WTDBP collection field
- WTDItemCollection? WTDItem[] - WTD item collection field
- WTDFreightCollection? WTDFreight[] - WTD freight collection field
sap.businessone.financials: WTDEffectiveDate
The WTDEffectiveDate complex type of the SAP Business One Service Layer
Fields
- LineNumber? Signed32 - Line number field
- EffectiveFrom? string - Effective from field
- Rate? decimal - Rate field
- WTDValueRangeCollection? WTDValueRange[] - WTD value range collection field
sap.businessone.financials: WTDFreight
The WTDFreight complex type of the SAP Business One Service Layer
Fields
- FreightCode? Signed32 - Freight code field
- WTaxCode? string - W tax code field
- EffectiveDateFrom? string - Effective date from field
- EffectiveDateTo? string - Effective date to field
sap.businessone.financials: WTDItem
The WTDItem complex type of the SAP Business One Service Layer
Fields
- ItemCode? string - Item code field
- WTaxCode? string - W tax code field
- EffectiveDateFrom? string - Effective date from field
- EffectiveDateTo? string - Effective date to field
sap.businessone.financials: WTDValueRange
The WTDValueRange complex type of the SAP Business One Service Layer
Fields
- LineNumber? Signed32 - Line number field
- SeqNum? Signed32 - Seq number field
- EffectiveFrom? string - Effective from field
- ValueFrom? decimal - Value from field
- Rate? decimal - Rate field
Union types
sap.businessone.financials: SPEDContabilAccountPurposeCode
SPEDContabilAccountPurposeCode
OData EnumType 'SPEDContabilAccountPurposeCode'. Serialised by the Service Layer as the member name
sap.businessone.financials: ElectronicDocGenTypeEnum
ElectronicDocGenTypeEnum
OData EnumType 'ElectronicDocGenTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoSubPeriodTypeEnum
BoSubPeriodTypeEnum
OData EnumType 'BoSubPeriodTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoClosingDateProcedureDueMonthEnum
BoClosingDateProcedureDueMonthEnum
OData EnumType 'BoClosingDateProcedureDueMonthEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: AssesseeTypeEnum
AssesseeTypeEnum
OData EnumType 'AssesseeTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: ECDPostingTypeEnum
ECDPostingTypeEnum
OData EnumType 'ECDPostingTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: RoundingTypeEnum
RoundingTypeEnum
OData EnumType 'RoundingTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: SAFTTaxCodeEnum
SAFTTaxCodeEnum
OData EnumType 'SAFTTaxCodeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: RclRecurringExecutionHandlingEnum
RclRecurringExecutionHandlingEnum
OData EnumType 'RclRecurringExecutionHandlingEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: RoundingSysEnum
RoundingSysEnum
OData EnumType 'RoundingSysEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: TaxCodeDeterminationTCDDefaultWTTypeEnum
TaxCodeDeterminationTCDDefaultWTTypeEnum
OData EnumType 'TaxCodeDeterminationTCDDefaultWTTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: RelatedDocumentTypeEnum
RelatedDocumentTypeEnum
OData EnumType 'RelatedDocumentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: RecurringTransactionTemplateRemindEnum
RecurringTransactionTemplateRemindEnum
OData EnumType 'RecurringTransactionTemplateRemindEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoSubFrequencyTypeEnum
BoSubFrequencyTypeEnum
OData EnumType 'BoSubFrequencyTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: AccountSegmentationTypeEnum
AccountSegmentationTypeEnum
OData EnumType 'AccountSegmentationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: VatGroupsTaxRegionEnum
VatGroupsTaxRegionEnum
OData EnumType 'VatGroupsTaxRegionEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoDeductionTaxGroupCodeEnum
BoDeductionTaxGroupCodeEnum
OData EnumType 'BoDeductionTaxGroupCodeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: WTDDetailType
WTDDetailType
OData EnumType 'WTDDetailType'. Serialised by the Service Layer as the member name
sap.businessone.financials: WithholdingTaxCodeBaseTypeEnum
WithholdingTaxCodeBaseTypeEnum
OData EnumType 'WithholdingTaxCodeBaseTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: PaymentMeansTypeEnum
PaymentMeansTypeEnum
OData EnumType 'PaymentMeansTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoBusinessPartnerTypes
BoBusinessPartnerTypes
OData EnumType 'BoBusinessPartnerTypes'. Serialised by the Service Layer as the member name
sap.businessone.financials: FolioLetterEnum
FolioLetterEnum
OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoFrequencyTypeEnum
BoFrequencyTypeEnum
OData EnumType 'BoFrequencyTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: ElectronicDocProtocolCodeEnum
ElectronicDocProtocolCodeEnum
OData EnumType 'ElectronicDocProtocolCodeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoTCDDocumentTypeEnum
BoTCDDocumentTypeEnum
OData EnumType 'BoTCDDocumentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: TdsTypeEnum
TdsTypeEnum
OData EnumType 'TdsTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: ReturnTypeEnum
ReturnTypeEnum
OData EnumType 'ReturnTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: GetGLAccountByEnum
GetGLAccountByEnum
OData EnumType 'GetGLAccountByEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: AccountCategorySourceEnum
AccountCategorySourceEnum
OData EnumType 'AccountCategorySourceEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoVatCategoryEnum
BoVatCategoryEnum
OData EnumType 'BoVatCategoryEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: TaxInvoiceReportLineTypeEnum
TaxInvoiceReportLineTypeEnum
OData EnumType 'TaxInvoiceReportLineTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: DocumentObjectTypeEnum
DocumentObjectTypeEnum
OData EnumType 'DocumentObjectTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: RclRecurringTransactionStatusEnum
RclRecurringTransactionStatusEnum
OData EnumType 'RclRecurringTransactionStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: PrintStatusEnum
PrintStatusEnum
OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: SAFTTransactionTypeEnum
SAFTTransactionTypeEnum
OData EnumType 'SAFTTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoRoundingMethod
BoRoundingMethod
OData EnumType 'BoRoundingMethod'. Serialised by the Service Layer as the member name
sap.businessone.financials: ReferencedObjectTypeEnum
ReferencedObjectTypeEnum
OData EnumType 'ReferencedObjectTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoOSWACategoryEnum
BoOSWACategoryEnum
OData EnumType 'BoOSWACategoryEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: TCSAccumulationBaseEnum
TCSAccumulationBaseEnum
OData EnumType 'TCSAccumulationBaseEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: CurrenciesDecimalsEnum
CurrenciesDecimalsEnum
OData EnumType 'CurrenciesDecimalsEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoTaxPostingAccountTypeEnum
BoTaxPostingAccountTypeEnum
OData EnumType 'BoTaxPostingAccountTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: TaxCodeDeterminationTCDTypeEnum
TaxCodeDeterminationTCDTypeEnum
OData EnumType 'TaxCodeDeterminationTCDTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: Report349CodeListEnum
Report349CodeListEnum
OData EnumType 'Report349CodeListEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoTCDConditionEnum
BoTCDConditionEnum
OData EnumType 'BoTCDConditionEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoStatus
BoStatus
OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
sap.businessone.financials: WithholdingTaxCodeCategoryEnum
WithholdingTaxCodeCategoryEnum
OData EnumType 'WithholdingTaxCodeCategoryEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: OperationCodeTypeEnum
OperationCodeTypeEnum
OData EnumType 'OperationCodeTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: RecurringTransactionTemplateFrequencyEnum
RecurringTransactionTemplateFrequencyEnum
OData EnumType 'RecurringTransactionTemplateFrequencyEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoBusinessAreaEnum
BoBusinessAreaEnum
OData EnumType 'BoBusinessAreaEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: TaxInvoiceReportNTSApprovedEnum
TaxInvoiceReportNTSApprovedEnum
OData EnumType 'TaxInvoiceReportNTSApprovedEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoYesNoEnum
BoYesNoEnum
OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: ResidenceNumberTypeEnum
ResidenceNumberTypeEnum
OData EnumType 'ResidenceNumberTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoAccountTypes
BoAccountTypes
OData EnumType 'BoAccountTypes'. Serialised by the Service Layer as the member name
sap.businessone.financials: TransTypesEnum
TransTypesEnum
OData EnumType 'TransTypesEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoClosingDateProcedureBaseDateEnum
BoClosingDateProcedureBaseDateEnum
OData EnumType 'BoClosingDateProcedureBaseDateEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: TaxCodeDeterminationTCDByUsageTypeEnum
TaxCodeDeterminationTCDByUsageTypeEnum
OData EnumType 'TaxCodeDeterminationTCDByUsageTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: WithholdingTypeEnum
WithholdingTypeEnum
OData EnumType 'WithholdingTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: TaxTypeBlackListEnum
TaxTypeBlackListEnum
OData EnumType 'TaxTypeBlackListEnum'. Serialised by the Service Layer as the member name
sap.businessone.financials: BoTaxPostAccEnum
BoTaxPostAccEnum
OData EnumType 'BoTaxPostAccEnum'. Serialised by the Service Layer as the member name
Import
import ballerinax/sap.businessone.financials;Metadata
Released date: 6 days ago
Version: 1.0.1
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 2
Current verison: 0
Weekly downloads
Keywords
Name/SAP Business One Financials
Area/ERP & Business Operations
Vendor/SAP
Cost/Paid
Type/Connector
SAP Business One
Financials
ERP
Contributors