sap.businessone.fixedassets
Module sap.businessone.fixedassets
API
Definitions
ballerinax/sap.businessone.fixedassets 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 Fixed Assets connector provides APIs for the fixed asset objects of SAP Business One: asset classes, depreciation setup, capitalization, retirement, and transfers, exposed through the SAP Business One Service Layer (OData).
Key Features
- Manage asset master data and asset classes
- Run capitalization, retirement, transfer, and manual depreciation documents
- Configure depreciation types, areas, and account determinations
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.fixedassets connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
import ballerinax/sap.businessone.fixedassets;
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 = ?; fixedassets:Client b1Client = check new ( {companyDb, username, password}, serviceUrl = serviceUrl );
Step 3: Invoke the connector operation
fixedassets:AssetClasses_CollectionResponse response = check b1Client->assetClassesList();
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.fixedassets: 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
listAssetCapitalization
function listAssetCapitalization(ListAssetCapitalizationHeaders headers, *ListAssetCapitalizationQueries queries) returns AssetCapitalizationCollectionResponse|errorQuery the AssetCapitalization collection
Parameters
- headers ListAssetCapitalizationHeaders (default {}) - Headers to be sent with the request
- queries *ListAssetCapitalizationQueries - Queries to be sent with the request
Return Type
- AssetCapitalizationCollectionResponse|error - A page of entities
createAssetCapitalization
function createAssetCapitalization(AssetDocument payload, map<string|string[]> headers) returns AssetDocument|errorCreate a new AssetDocument
Parameters
- payload AssetDocument - Request payload
Return Type
- AssetDocument|error - The created entity
getAssetCapitalization
function getAssetCapitalization(Signed32 docEntry, map<string|string[]> headers, *GetAssetCapitalizationQueries queries) returns AssetDocument|errorGet a single AssetDocument by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetAssetCapitalizationQueries - Queries to be sent with the request
Return Type
- AssetDocument|error - The requested entity
deleteAssetCapitalization
Delete a AssetDocument
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateAssetCapitalization
function updateAssetCapitalization(Signed32 docEntry, AssetDocument payload, map<string|string[]> headers) returns error?Partially update a AssetDocument (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload AssetDocument - Request payload
Return Type
- error? - Updated. No content returned
listAssetCapitalizationCreditMemo
function listAssetCapitalizationCreditMemo(ListAssetCapitalizationCreditMemoHeaders headers, *ListAssetCapitalizationCreditMemoQueries queries) returns AssetCapitalizationCreditMemoCollectionResponse|errorQuery the AssetCapitalizationCreditMemo collection
Parameters
- headers ListAssetCapitalizationCreditMemoHeaders (default {}) - Headers to be sent with the request
- queries *ListAssetCapitalizationCreditMemoQueries - Queries to be sent with the request
Return Type
- AssetCapitalizationCreditMemoCollectionResponse|error - A page of entities
createAssetCapitalizationCreditMemo
function createAssetCapitalizationCreditMemo(AssetDocument payload, map<string|string[]> headers) returns AssetDocument|errorCreate a new AssetDocument
Parameters
- payload AssetDocument - Request payload
Return Type
- AssetDocument|error - The created entity
getAssetCapitalizationCreditMemo
function getAssetCapitalizationCreditMemo(Signed32 docEntry, map<string|string[]> headers, *GetAssetCapitalizationCreditMemoQueries queries) returns AssetDocument|errorGet a single AssetDocument by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetAssetCapitalizationCreditMemoQueries - Queries to be sent with the request
Return Type
- AssetDocument|error - The requested entity
deleteAssetCapitalizationCreditMemo
function deleteAssetCapitalizationCreditMemo(Signed32 docEntry, map<string|string[]> headers) returns error?Delete a AssetDocument
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateAssetCapitalizationCreditMemo
function updateAssetCapitalizationCreditMemo(Signed32 docEntry, AssetDocument payload, map<string|string[]> headers) returns error?Partially update a AssetDocument (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload AssetDocument - Request payload
Return Type
- error? - Updated. No content returned
assetCapitalizationCreditMemoServiceCancel
function assetCapitalizationCreditMemoServiceCancel(AssetCapitalizationCreditMemoService_Cancel_body payload, map<string|string[]> headers) returns error?Cancel
Parameters
- payload AssetCapitalizationCreditMemoService_Cancel_body - Request payload
Return Type
- error? - Success. No content returned
assetCapitalizationCreditMemoServiceGetList
function assetCapitalizationCreditMemoServiceGetList(map<string|string[]> headers) returns inline_response_200|errorGet list
Return Type
- inline_response_200|error - Function result
assetCapitalizationServiceCancel
function assetCapitalizationServiceCancel(AssetCapitalizationService_Cancel_body payload, map<string|string[]> headers) returns error?Cancel
Parameters
- payload AssetCapitalizationService_Cancel_body - Request payload
Return Type
- error? - Success. No content returned
assetCapitalizationServiceGetList
function assetCapitalizationServiceGetList(map<string|string[]> headers) returns inline_response_200_1|errorGet list
Return Type
- inline_response_200_1|error - Function result
listAssetClasses
function listAssetClasses(ListAssetClassesHeaders headers, *ListAssetClassesQueries queries) returns AssetClassesCollectionResponse|errorQuery the AssetClasses collection
Parameters
- headers ListAssetClassesHeaders (default {}) - Headers to be sent with the request
- queries *ListAssetClassesQueries - Queries to be sent with the request
Return Type
- AssetClassesCollectionResponse|error - A page of entities
createAssetClasses
function createAssetClasses(AssetClass payload, map<string|string[]> headers) returns AssetClass|errorCreate a new AssetClass
Parameters
- payload AssetClass - Request payload
Return Type
- AssetClass|error - The created entity
getAssetClasses
function getAssetClasses(string code, map<string|string[]> headers, *GetAssetClassesQueries queries) returns AssetClass|errorGet a single AssetClass by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetAssetClassesQueries - Queries to be sent with the request
Return Type
- AssetClass|error - The requested entity
deleteAssetClasses
Delete a AssetClass
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateAssetClasses
function updateAssetClasses(string code, AssetClass payload, map<string|string[]> headers) returns error?Partially update a AssetClass (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
assetClassesServiceGetList
function assetClassesServiceGetList(map<string|string[]> headers) returns inline_response_200_2|errorGet list
Return Type
- inline_response_200_2|error - Function result
listAssetDepreciationGroups
function listAssetDepreciationGroups(ListAssetDepreciationGroupsHeaders headers, *ListAssetDepreciationGroupsQueries queries) returns AssetDepreciationGroupsCollectionResponse|errorQuery the AssetDepreciationGroups collection
Parameters
- headers ListAssetDepreciationGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListAssetDepreciationGroupsQueries - Queries to be sent with the request
Return Type
- AssetDepreciationGroupsCollectionResponse|error - A page of entities
createAssetDepreciationGroups
function createAssetDepreciationGroups(AssetDepreciationGroup payload, map<string|string[]> headers) returns AssetDepreciationGroup|errorCreate a new AssetDepreciationGroup
Parameters
- payload AssetDepreciationGroup - Request payload
Return Type
- AssetDepreciationGroup|error - The created entity
getAssetDepreciationGroups
function getAssetDepreciationGroups(string code, map<string|string[]> headers, *GetAssetDepreciationGroupsQueries queries) returns AssetDepreciationGroup|errorGet a single AssetDepreciationGroup by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetAssetDepreciationGroupsQueries - Queries to be sent with the request
Return Type
- AssetDepreciationGroup|error - The requested entity
deleteAssetDepreciationGroups
Delete a AssetDepreciationGroup
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateAssetDepreciationGroups
function updateAssetDepreciationGroups(string code, AssetDepreciationGroup payload, map<string|string[]> headers) returns error?Partially update a AssetDepreciationGroup (PATCH/MERGE semantics)
Parameters
- code string - Key property 'Code' (Edm.String)
- payload AssetDepreciationGroup - Request payload
Return Type
- error? - Updated. No content returned
assetDepreciationGroupsServiceGetList
function assetDepreciationGroupsServiceGetList(map<string|string[]> headers) returns inline_response_200_3|errorGet list
Return Type
- inline_response_200_3|error - Function result
listAssetGroups
function listAssetGroups(ListAssetGroupsHeaders headers, *ListAssetGroupsQueries queries) returns AssetGroupsCollectionResponse|errorQuery the AssetGroups collection
Parameters
- headers ListAssetGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListAssetGroupsQueries - Queries to be sent with the request
Return Type
- AssetGroupsCollectionResponse|error - A page of entities
createAssetGroups
function createAssetGroups(AssetGroup payload, map<string|string[]> headers) returns AssetGroup|errorCreate a new AssetGroup
Parameters
- payload AssetGroup - Request payload
Return Type
- AssetGroup|error - The created entity
getAssetGroups
function getAssetGroups(string code, map<string|string[]> headers, *GetAssetGroupsQueries queries) returns AssetGroup|errorGet a single AssetGroup by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetAssetGroupsQueries - Queries to be sent with the request
Return Type
- AssetGroup|error - The requested entity
deleteAssetGroups
Delete a AssetGroup
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateAssetGroups
function updateAssetGroups(string code, AssetGroup payload, map<string|string[]> headers) returns error?Partially update a AssetGroup (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
assetGroupsServiceGetList
function assetGroupsServiceGetList(map<string|string[]> headers) returns inline_response_200_4|errorGet list
Return Type
- inline_response_200_4|error - Function result
listAssetManualDepreciation
function listAssetManualDepreciation(ListAssetManualDepreciationHeaders headers, *ListAssetManualDepreciationQueries queries) returns AssetManualDepreciationCollectionResponse|errorQuery the AssetManualDepreciation collection
Parameters
- headers ListAssetManualDepreciationHeaders (default {}) - Headers to be sent with the request
- queries *ListAssetManualDepreciationQueries - Queries to be sent with the request
Return Type
- AssetManualDepreciationCollectionResponse|error - A page of entities
createAssetManualDepreciation
function createAssetManualDepreciation(AssetDocument payload, map<string|string[]> headers) returns AssetDocument|errorCreate a new AssetDocument
Parameters
- payload AssetDocument - Request payload
Return Type
- AssetDocument|error - The created entity
getAssetManualDepreciation
function getAssetManualDepreciation(Signed32 docEntry, map<string|string[]> headers, *GetAssetManualDepreciationQueries queries) returns AssetDocument|errorGet a single AssetDocument by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetAssetManualDepreciationQueries - Queries to be sent with the request
Return Type
- AssetDocument|error - The requested entity
deleteAssetManualDepreciation
function deleteAssetManualDepreciation(Signed32 docEntry, map<string|string[]> headers) returns error?Delete a AssetDocument
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateAssetManualDepreciation
function updateAssetManualDepreciation(Signed32 docEntry, AssetDocument payload, map<string|string[]> headers) returns error?Partially update a AssetDocument (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload AssetDocument - Request payload
Return Type
- error? - Updated. No content returned
assetManualDepreciationServiceCancel
function assetManualDepreciationServiceCancel(AssetManualDepreciationService_Cancel_body payload, map<string|string[]> headers) returns error?Cancel
Parameters
- payload AssetManualDepreciationService_Cancel_body - Request payload
Return Type
- error? - Success. No content returned
assetManualDepreciationServiceGetList
function assetManualDepreciationServiceGetList(map<string|string[]> headers) returns inline_response_200_5|errorGet list
Return Type
- inline_response_200_5|error - Function result
listAssetRetirement
function listAssetRetirement(ListAssetRetirementHeaders headers, *ListAssetRetirementQueries queries) returns AssetRetirementCollectionResponse|errorQuery the AssetRetirement collection
Parameters
- headers ListAssetRetirementHeaders (default {}) - Headers to be sent with the request
- queries *ListAssetRetirementQueries - Queries to be sent with the request
Return Type
- AssetRetirementCollectionResponse|error - A page of entities
createAssetRetirement
function createAssetRetirement(AssetDocument payload, map<string|string[]> headers) returns AssetDocument|errorCreate a new AssetDocument
Parameters
- payload AssetDocument - Request payload
Return Type
- AssetDocument|error - The created entity
getAssetRetirement
function getAssetRetirement(Signed32 docEntry, map<string|string[]> headers, *GetAssetRetirementQueries queries) returns AssetDocument|errorGet a single AssetDocument by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetAssetRetirementQueries - Queries to be sent with the request
Return Type
- AssetDocument|error - The requested entity
deleteAssetRetirement
Delete a AssetDocument
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateAssetRetirement
function updateAssetRetirement(Signed32 docEntry, AssetDocument payload, map<string|string[]> headers) returns error?Partially update a AssetDocument (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload AssetDocument - Request payload
Return Type
- error? - Updated. No content returned
assetRetirementServiceCancel
function assetRetirementServiceCancel(AssetRetirementService_Cancel_body payload, map<string|string[]> headers) returns error?Cancel
Parameters
- payload AssetRetirementService_Cancel_body - Request payload
Return Type
- error? - Success. No content returned
assetRetirementServiceGetList
function assetRetirementServiceGetList(map<string|string[]> headers) returns inline_response_200_6|errorGet list
Return Type
- inline_response_200_6|error - Function result
assetRevaluationServiceGetList
function assetRevaluationServiceGetList(map<string|string[]> headers) returns inline_response_200_7|errorGet list
Return Type
- inline_response_200_7|error - Function result
listAssetRevaluations
function listAssetRevaluations(ListAssetRevaluationsHeaders headers, *ListAssetRevaluationsQueries queries) returns AssetRevaluationsCollectionResponse|errorQuery the AssetRevaluations collection
Parameters
- headers ListAssetRevaluationsHeaders (default {}) - Headers to be sent with the request
- queries *ListAssetRevaluationsQueries - Queries to be sent with the request
Return Type
- AssetRevaluationsCollectionResponse|error - A page of entities
createAssetRevaluations
function createAssetRevaluations(AssetRevaluation payload, map<string|string[]> headers) returns AssetRevaluation|errorCreate a new AssetRevaluation
Parameters
- payload AssetRevaluation - Request payload
Return Type
- AssetRevaluation|error - The created entity
getAssetRevaluations
function getAssetRevaluations(Signed32 docEntry, map<string|string[]> headers, *GetAssetRevaluationsQueries queries) returns AssetRevaluation|errorGet a single AssetRevaluation by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetAssetRevaluationsQueries - Queries to be sent with the request
Return Type
- AssetRevaluation|error - The requested entity
deleteAssetRevaluations
Delete a AssetRevaluation
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateAssetRevaluations
function updateAssetRevaluations(Signed32 docEntry, AssetRevaluation payload, map<string|string[]> headers) returns error?Partially update a AssetRevaluation (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload AssetRevaluation - Request payload
Return Type
- error? - Updated. No content returned
listAssetTransfer
function listAssetTransfer(ListAssetTransferHeaders headers, *ListAssetTransferQueries queries) returns AssetTransferCollectionResponse|errorQuery the AssetTransfer collection
Parameters
- headers ListAssetTransferHeaders (default {}) - Headers to be sent with the request
- queries *ListAssetTransferQueries - Queries to be sent with the request
Return Type
- AssetTransferCollectionResponse|error - A page of entities
createAssetTransfer
function createAssetTransfer(AssetDocument payload, map<string|string[]> headers) returns AssetDocument|errorCreate a new AssetDocument
Parameters
- payload AssetDocument - Request payload
Return Type
- AssetDocument|error - The created entity
getAssetTransfer
function getAssetTransfer(Signed32 docEntry, map<string|string[]> headers, *GetAssetTransferQueries queries) returns AssetDocument|errorGet a single AssetDocument by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetAssetTransferQueries - Queries to be sent with the request
Return Type
- AssetDocument|error - The requested entity
deleteAssetTransfer
Delete a AssetDocument
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateAssetTransfer
function updateAssetTransfer(Signed32 docEntry, AssetDocument payload, map<string|string[]> headers) returns error?Partially update a AssetDocument (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload AssetDocument - Request payload
Return Type
- error? - Updated. No content returned
assetTransferServiceCancel
function assetTransferServiceCancel(AssetTransferService_Cancel_body payload, map<string|string[]> headers) returns error?Cancel
Parameters
- payload AssetTransferService_Cancel_body - Request payload
Return Type
- error? - Success. No content returned
assetTransferServiceGetList
function assetTransferServiceGetList(map<string|string[]> headers) returns inline_response_200_8|errorGet list
Return Type
- inline_response_200_8|error - Function result
listDepreciationAreas
function listDepreciationAreas(ListDepreciationAreasHeaders headers, *ListDepreciationAreasQueries queries) returns DepreciationAreasCollectionResponse|errorQuery the DepreciationAreas collection
Parameters
- headers ListDepreciationAreasHeaders (default {}) - Headers to be sent with the request
- queries *ListDepreciationAreasQueries - Queries to be sent with the request
Return Type
- DepreciationAreasCollectionResponse|error - A page of entities
createDepreciationAreas
function createDepreciationAreas(DepreciationArea payload, map<string|string[]> headers) returns DepreciationArea|errorCreate a new DepreciationArea
Parameters
- payload DepreciationArea - Request payload
Return Type
- DepreciationArea|error - The created entity
getDepreciationAreas
function getDepreciationAreas(string code, map<string|string[]> headers, *GetDepreciationAreasQueries queries) returns DepreciationArea|errorGet a single DepreciationArea by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetDepreciationAreasQueries - Queries to be sent with the request
Return Type
- DepreciationArea|error - The requested entity
deleteDepreciationAreas
Delete a DepreciationArea
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateDepreciationAreas
function updateDepreciationAreas(string code, DepreciationArea payload, map<string|string[]> headers) returns error?Partially update a DepreciationArea (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
depreciationAreasServiceGetList
function depreciationAreasServiceGetList(map<string|string[]> headers) returns inline_response_200_9|errorGet list
Return Type
- inline_response_200_9|error - Function result
listDepreciationTypePools
function listDepreciationTypePools(ListDepreciationTypePoolsHeaders headers, *ListDepreciationTypePoolsQueries queries) returns DepreciationTypePoolsCollectionResponse|errorQuery the DepreciationTypePools collection
Parameters
- headers ListDepreciationTypePoolsHeaders (default {}) - Headers to be sent with the request
- queries *ListDepreciationTypePoolsQueries - Queries to be sent with the request
Return Type
- DepreciationTypePoolsCollectionResponse|error - A page of entities
createDepreciationTypePools
function createDepreciationTypePools(DepreciationTypePool payload, map<string|string[]> headers) returns DepreciationTypePool|errorCreate a new DepreciationTypePool
Parameters
- payload DepreciationTypePool - Request payload
Return Type
- DepreciationTypePool|error - The created entity
getDepreciationTypePools
function getDepreciationTypePools(string code, map<string|string[]> headers, *GetDepreciationTypePoolsQueries queries) returns DepreciationTypePool|errorGet a single DepreciationTypePool by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetDepreciationTypePoolsQueries - Queries to be sent with the request
Return Type
- DepreciationTypePool|error - The requested entity
deleteDepreciationTypePools
Delete a DepreciationTypePool
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateDepreciationTypePools
function updateDepreciationTypePools(string code, DepreciationTypePool payload, map<string|string[]> headers) returns error?Partially update a DepreciationTypePool (PATCH/MERGE semantics)
Parameters
- code string - Key property 'Code' (Edm.String)
- payload DepreciationTypePool - Request payload
Return Type
- error? - Updated. No content returned
depreciationTypePoolsServiceGetList
function depreciationTypePoolsServiceGetList(map<string|string[]> headers) returns inline_response_200_10|errorGet list
Return Type
- inline_response_200_10|error - Function result
listDepreciationTypes
function listDepreciationTypes(ListDepreciationTypesHeaders headers, *ListDepreciationTypesQueries queries) returns DepreciationTypesCollectionResponse|errorQuery the DepreciationTypes collection
Parameters
- headers ListDepreciationTypesHeaders (default {}) - Headers to be sent with the request
- queries *ListDepreciationTypesQueries - Queries to be sent with the request
Return Type
- DepreciationTypesCollectionResponse|error - A page of entities
createDepreciationTypes
function createDepreciationTypes(DepreciationType payload, map<string|string[]> headers) returns DepreciationType|errorCreate a new DepreciationType
Parameters
- payload DepreciationType - Request payload
Return Type
- DepreciationType|error - The created entity
getDepreciationTypes
function getDepreciationTypes(string code, map<string|string[]> headers, *GetDepreciationTypesQueries queries) returns DepreciationType|errorGet a single DepreciationType by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetDepreciationTypesQueries - Queries to be sent with the request
Return Type
- DepreciationType|error - The requested entity
deleteDepreciationTypes
Delete a DepreciationType
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateDepreciationTypes
function updateDepreciationTypes(string code, DepreciationType payload, map<string|string[]> headers) returns error?Partially update a DepreciationType (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
depreciationTypesServiceGetList
function depreciationTypesServiceGetList(map<string|string[]> headers) returns inline_response_200_11|errorGet list
Return Type
- inline_response_200_11|error - Function result
listFAAccountDeterminations
function listFAAccountDeterminations(ListFAAccountDeterminationsHeaders headers, *ListFAAccountDeterminationsQueries queries) returns FAAccountDeterminationsCollectionResponse|errorQuery the FAAccountDeterminations collection
Parameters
- headers ListFAAccountDeterminationsHeaders (default {}) - Headers to be sent with the request
- queries *ListFAAccountDeterminationsQueries - Queries to be sent with the request
Return Type
- FAAccountDeterminationsCollectionResponse|error - A page of entities
createFAAccountDeterminations
function createFAAccountDeterminations(FAAccountDetermination payload, map<string|string[]> headers) returns FAAccountDetermination|errorCreate a new FAAccountDetermination
Parameters
- payload FAAccountDetermination - Request payload
Return Type
- FAAccountDetermination|error - The created entity
getFAAccountDeterminations
function getFAAccountDeterminations(string code, map<string|string[]> headers, *GetFAAccountDeterminationsQueries queries) returns FAAccountDetermination|errorGet a single FAAccountDetermination by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetFAAccountDeterminationsQueries - Queries to be sent with the request
Return Type
- FAAccountDetermination|error - The requested entity
deleteFAAccountDeterminations
Delete a FAAccountDetermination
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateFAAccountDeterminations
function updateFAAccountDeterminations(string code, FAAccountDetermination payload, map<string|string[]> headers) returns error?Partially update a FAAccountDetermination (PATCH/MERGE semantics)
Parameters
- code string - Key property 'Code' (Edm.String)
- payload FAAccountDetermination - Request payload
Return Type
- error? - Updated. No content returned
fAAccountDeterminationsServiceGetList
function fAAccountDeterminationsServiceGetList(map<string|string[]> headers) returns inline_response_200_12|errorGet list
Return Type
- inline_response_200_12|error - Function result
fixedAssetItemsServiceGetAssetEndBalance
function fixedAssetItemsServiceGetAssetEndBalance(FixedAssetItemsService_GetAssetEndBalance_body payload, map<string|string[]> headers) returns FixedAssetEndBalance|errorGet asset end balance
Parameters
- payload FixedAssetItemsService_GetAssetEndBalance_body - Request payload
Return Type
- FixedAssetEndBalance|error - Function result
fixedAssetItemsServiceGetAssetValuesList
function fixedAssetItemsServiceGetAssetValuesList(FixedAssetItemsService_GetAssetValuesList_body payload, map<string|string[]> headers) returns inline_response_200_13|errorGet asset values list
Parameters
- payload FixedAssetItemsService_GetAssetValuesList_body - Request payload
Return Type
- inline_response_200_13|error - Function result
fixedAssetItemsServiceUpdateAssetEndBalance
function fixedAssetItemsServiceUpdateAssetEndBalance(FixedAssetItemsService_UpdateAssetEndBalance_body payload, map<string|string[]> headers) returns error?Update asset end balance
Parameters
- payload FixedAssetItemsService_UpdateAssetEndBalance_body - Request payload
Return Type
- error? - Success. 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.fixedassets: AssetCapitalizationCollectionResponse
A paged collection of AssetCapitalization entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetDocument[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: AssetCapitalizationCreditMemoCollectionResponse
A paged collection of AssetCapitalizationCreditMemo entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetDocument[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: AssetCapitalizationCreditMemoService_Cancel_body
Represents the request payload for the AssetCapitalizationCreditMemoService_Cancel operation of the SAP Business One Service Layer
Fields
- assetDocumentParams? AssetDocumentParams - Asset document params field
sap.businessone.fixedassets: AssetCapitalizationService_Cancel_body
Represents the request payload for the AssetCapitalizationService_Cancel operation of the SAP Business One Service Layer
Fields
- assetDocumentParams? AssetDocumentParams - Asset document params field
sap.businessone.fixedassets: AssetClass
The AssetClass entity of the SAP Business One Service Layer
Fields
- assetType? AssetTypeEnum - Asset type field
- description? string - Description field
- valueLimitTo? decimal - Value limit to field
- valueLimitFrom? decimal - Value limit from field
- attributeGroup? Signed32 - Attribute group field
- code? string - Code field
- assetClassCollection? AssetClassLine[] - Asset class collection field
- bPLID? Signed32 - B PLID field
sap.businessone.fixedassets: AssetClassesCollectionResponse
A paged collection of AssetClasses entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetClass[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: AssetClassLine
The AssetClassLine complex type of the SAP Business One Service Layer
Fields
- depreciationAreaID? string - Depreciation area ID field
- accountDetermination? string - Account determination field
- useLife? Signed32 - Use life field
- depreciationTypeID? string - Depreciation type ID field
- code? string - Code field
- lineNumber? Signed32 - Line number field
- activeStatus? BoYesNoEnum - Active status field
sap.businessone.fixedassets: AssetClassParams
The AssetClassParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.fixedassets: AssetDepreciationGroup
The AssetDepreciationGroup entity of the SAP Business One Service Layer
Fields
- group? string - Group field
- description? string - Description field
- code? string - Code field
sap.businessone.fixedassets: AssetDepreciationGroupParams
The AssetDepreciationGroupParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.fixedassets: AssetDepreciationGroupsCollectionResponse
A paged collection of AssetDepreciationGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetDepreciationGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: AssetDocument
The AssetDocument entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- DocNum? Signed32 - Document number field
- Series? Signed32 - Series field
- PostingDate? string - Posting date field
- DocumentDate? string - Document date field
- Status? AssetDocumentStatusEnum - OData EnumType 'AssetDocumentStatusEnum'. Serialised by the Service Layer as the member name
- Remarks? string - Remarks field
- Reference? string - Reference field
- Currency? string - Currency field
- DocumentRate? decimal - Document rate field
- DocumentTotal? decimal - Document total field
- DocumentTotalFC? decimal - Document total foreign currency field
- DocumentTotalSC? decimal - Document total system currency field
- AssetValueDate? string - Asset value date field
- DocumentType? AssetDocumentTypeEnum - OData EnumType 'AssetDocumentTypeEnum'. Serialised by the Service Layer as the member name
- SummerizeByProjects? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SummerizeByDistributionRules? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ManualDepreciationType? string - Manual depreciation type field
- HandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CancellationDate? string - Cancellation date field
- DepreciationArea? string - Depreciation area field
- BPLId? Signed32 - BPL ID field
- Origin? Signed32 - Origin field
- LowValueAssetRetirement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CancellationOption? ClosingOptionEnum - OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
- OriginalType? AssetOriginalTypeEnum - OData EnumType 'AssetOriginalTypeEnum'. Serialised by the Service Layer as the member name
- BaseReference? string - Base reference field
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- AssetDocumentLineCollection? AssetDocumentLine[] - Asset document line collection field
- AssetDocumentAreaJournalCollection? AssetDocumentAreaJournal[] - Asset document area journal collection field
- PTICode? string - PTI code field
- Letter? string - Letter field
- FolNumFrom? Signed32 - Fol number from field
- FolNumTo? Signed32 - Fol number to field
- AssetDocumentNewLocCollection? AssetDocumentNewLoc[] - Asset document new loc collection field
- DepreciationType? DepreciationType - The
DepreciationTypeentity of the SAP Business One Service Layer
- DepreciationArea2? DepreciationArea - The
DepreciationAreaentity of the SAP Business One Service Layer
sap.businessone.fixedassets: AssetDocumentAreaJournal
The AssetDocumentAreaJournal complex type of the SAP Business One Service Layer
Fields
- transactionNumber? Signed32 - Transaction number field
- cancellationTransactionNumber? Signed32 - Cancellation transaction number field
- cancellationJournalRemarks? string - Cancellation journal remarks field
- docEntry? Signed32 - Document entry field
- depreciationArea? string - Depreciation area field
- journalRemarks? string - Journal remarks field
- lineNumber? Signed32 - Line number field
sap.businessone.fixedassets: AssetDocumentLine
The AssetDocumentLine complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- AssetNumber? string - Asset number field
- GLAccount? string - General ledger account field
- Quantity? decimal - Quantity field
- TotalLC? decimal - Total local currency field
- TotalFC? decimal - Total foreign currency field
- TotalSC? decimal - Total system currency field
- DepreciationArea? string - Depreciation area field
- Remarks? string - Remarks field
- NewAssetNumber? string - New asset number field
- Partial? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- APC? decimal - APC field
- NewAssetClass? string - New asset class 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
- Project? string - Project field
sap.businessone.fixedassets: AssetDocumentNewLoc
The AssetDocumentNewLoc complex type of the SAP Business One Service Layer
Fields
- nBV? decimal - N BV field
- newLocation? Signed32 - New location field
- docEntry? Signed32 - Document entry field
- quantity? decimal - Quantity field
- curLocation? Signed32 - Cur location field
- assetNumber? string - Asset number field
- lineNumber? Signed32 - Line number field
sap.businessone.fixedassets: AssetDocumentParams
The AssetDocumentParams complex type of the SAP Business One Service Layer
Fields
- cancellationOption? ClosingOptionEnum - Cancellation option field
- cancellationDate? string - Cancellation date field
- docEntry? Signed32 - Document entry field
sap.businessone.fixedassets: AssetGroup
The AssetGroup entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.fixedassets: AssetGroupParams
The AssetGroupParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.fixedassets: AssetGroupsCollectionResponse
A paged collection of AssetGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: AssetManualDepreciationCollectionResponse
A paged collection of AssetManualDepreciation entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetDocument[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: AssetManualDepreciationService_Cancel_body
Represents the request payload for the AssetManualDepreciationService_Cancel operation of the SAP Business One Service Layer
Fields
- assetDocumentParams? AssetDocumentParams - Asset document params field
sap.businessone.fixedassets: AssetRetirementCollectionResponse
A paged collection of AssetRetirement entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetDocument[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: AssetRetirementService_Cancel_body
Represents the request payload for the AssetRetirementService_Cancel operation of the SAP Business One Service Layer
Fields
- assetDocumentParams? AssetDocumentParams - Asset document params field
sap.businessone.fixedassets: AssetRevaluation
The AssetRevaluation entity of the SAP Business One Service Layer
Fields
- handWritten? BoYesNoEnum - Hand written field
- ifrsPosting? BoYesNoEnum - Ifrs posting field
- reference? string - Reference field
- revaluationPercent? decimal - Revaluation percent field
- docEntry? Signed32 - Document entry field
- depreciationArea? string - Depreciation area field
- journalRemarks? string - Journal remarks field
- assetRevaluationLineCollection? AssetRevaluationLine[] - Asset revaluation line collection field
- assetValueDate? string - Asset value date field
- periodIndicator? string - Period indicator field
- series? Signed32 - Series field
- postingDate? string - Posting date field
- remarks? string - Remarks field
- summerizeByDistributionRules? BoYesNoEnum - Summerize by distribution rules field
- vATRegNum? string - V AT reg number field
- bPLName? string - B PL name field
- depreciationArea2? DepreciationArea - Depreciation area2 field
- docNum? Signed32 - Document number field
- transId? Signed32 - Trans ID field
- documentDate? string - Document date field
- bPLId? Signed32 - B PL ID field
- summerizeByProjects? BoYesNoEnum - Summerize by projects field
sap.businessone.fixedassets: AssetRevaluationLine
The AssetRevaluationLine complex type of the SAP Business One Service Layer
Fields
- currentNBV? decimal - Current NBV field
- distributionRule? string - Distribution rule field
- newNBV? decimal - New NBV field
- distributionRule4? string - Distribution rule4 field
- distributionRule5? string - Distribution rule5 field
- distributionRule2? string - Distribution rule2 field
- distributionRule3? string - Distribution rule3 field
- revaluationPercent? decimal - Revaluation percent field
- docEntry? Signed32 - Document entry field
- assetNumber? string - Asset number field
- lineNumber? Signed32 - Line number field
- project? string - Project field
- remarks? string - Remarks field
sap.businessone.fixedassets: AssetRevaluationParams
The AssetRevaluationParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 - Document entry field
sap.businessone.fixedassets: AssetRevaluationsCollectionResponse
A paged collection of AssetRevaluations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetRevaluation[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: AssetTransferCollectionResponse
A paged collection of AssetTransfer entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetDocument[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: AssetTransferService_Cancel_body
Represents the request payload for the AssetTransferService_Cancel operation of the SAP Business One Service Layer
Fields
- assetDocumentParams? AssetDocumentParams - Asset document params field
sap.businessone.fixedassets: 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.fixedassets: DepreciationArea
The DepreciationArea entity of the SAP Business One Service Layer
Fields
- usageForTaxCorrection? Signed32 - Usage for tax correction field
- assetRevaluations? AssetRevaluation[] - Asset revaluations field
- description? string - Description field
- assetCapitalization? AssetDocument[] - Asset capitalization field
- postingOfDepreciation? PostingOfDepreciationEnum - Posting of depreciation field
- assetTransfer? AssetDocument[] - Asset transfer field
- taxCreditControl? BoYesNoEnum - Tax credit control field
- itemForTaxCorrection? string - Item for tax correction field
- areaType? AreaTypeEnum - Area type field
- mainBookingArea? BoYesNoEnum - Main booking area field
- code? string - Code field
- derivedArea? string - Derived area field
- taxType? Signed32 - Tax type field
- assetManualDepreciation? AssetDocument[] - Asset manual depreciation field
- directRevenuePosting? BoYesNoEnum - Direct revenue posting field
- retirementMethod? RetirementMethodEnum - Retirement method field
- assetRetirement? AssetDocument[] - Asset retirement field
- assetCapitalizationCreditMemo? AssetDocument[] - Asset capitalization credit memo field
- bPForTaxCorrection? string - B p for tax correction field
sap.businessone.fixedassets: DepreciationAreaParams
The DepreciationAreaParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.fixedassets: DepreciationAreasCollectionResponse
A paged collection of DepreciationAreas entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DepreciationArea[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: DepreciationLevel
The DepreciationLevel complex type of the SAP Business One Service Layer
Fields
- depreciationCalculationBase? DepreciationCalculationBaseEnum - Depreciation calculation base field
- percentage? decimal - Percentage field
- amount? decimal - Amount field
- numberOfYears? Signed32 - Number of years field
- level? Signed32 - Level field
sap.businessone.fixedassets: DepreciationType
The DepreciationType entity of the SAP Business One Service Layer
Fields
- depreciationTypePool? string - Depreciation type pool field
- percentageOfDepreciationReversedInRetirementYear? decimal - Percentage of depreciation reversed in retirement year field
- straightLineCalculationMethod? StraightLineCalculationMethodEnum - Straight line calculation method field
- transferTargetProRataType? TransferTargetProRataTypeEnum - Transfer target pro rata type field
- includePreviousDepreciationInCapitalizationPeriod? BoYesNoEnum - Include previous depreciation in capitalization period field
- validFrom? string - Valid from field
- specialDepreciationMaximumAmount? decimal - Special depreciation maximum amount field
- transferSourcePeriodControl? TransferSourcePeriodControlEnum - Transfer source period control field
- assetTransfer? AssetDocument[] - Asset transfer field
- depreciationLevelCollection? DepreciationLevel[] - Depreciation level collection field
- subsequentAcquisitionPeriodControl? SubsequentAcquisitionPeriodControlEnum - Subsequent acquisition period control field
- roundingMethod? DepreciationRoundingMethodEnum - Rounding method field
- code? string - Code field
- factorOnlyRelevantToFirstFiscalYear? BoYesNoEnum - Factor only relevant to first fiscal year field
- includeSalvageInDepreciation? BoYesNoEnum - Include salvage in depreciation field
- decliningChangeTo? string - Declining change to field
- retirementPeriodControl? RetirementPeriodControlEnum - Retirement period control field
- specialDepreciationNormalDepreciation? string - Special depreciation normal depreciation field
- transferTargetPeriodControl? TransferTargetPeriodControlEnum - Transfer target period control field
- depreciationTypePool2? DepreciationTypePool - Depreciation type pool2 field
- minimumDepreciatedValue? decimal - Minimum depreciated value field
- specialDepreciationMaximumFlag? SpecialDepreciationMaximumFlagEnum - Special depreciation maximum flag field
- decliningPercentage? decimal - Declining percentage field
- description? string - Description field
- straightLinePercentage? decimal - Straight line percentage field
- assetCapitalization? AssetDocument[] - Asset capitalization field
- acquisitionProRataType? AcquisitionProRataTypeEnum - Acquisition pro rata type field
- specialDepreciationAlternativeDepreciation? string - Special depreciation alternative depreciation field
- depreciationEndAtLastFullYear? BoYesNoEnum - Depreciation end at last full year field
- specialDepreciationMaximumPercentage? decimal - Special depreciation maximum percentage field
- retirementProRataType? RetirementProRataTypeEnum - Retirement pro rata type field
- assetRetirement? AssetDocument[] - Asset retirement field
- salvagePercentage? decimal - Salvage percentage field
- depreciationMethod? DepreciationMethodEnum - Depreciation method field
- manualDepreciationReduceDepreciationBase? BoYesNoEnum - Manual depreciation reduce depreciation base field
- decliningFactor? decimal - Declining factor field
- transferSourceProRataType? TransferSourceProRataTypeEnum - Transfer source pro rata type field
- specialDepreciationConcessionPeriodYears? Signed32 - Special depreciation concession period years field
- assetManualDepreciation? AssetDocument[] - Asset manual depreciation field
- roundYearEndBookValue? BoYesNoEnum - Round year end book value field
- subsequentAcquisitionProRataType? SubsequentAcquisitionProRataTypeEnum - Subsequent acquisition pro rata type field
- validTo? string - Valid to field
- calculationBase? CalculationBaseEnum - Calculation base field
- straightLinePeriodControlFactor? decimal - Straight line period control factor field
- straightLinePeriodControlDepreciationPeriods? StraightLinePeriodControlDepreciationPeriodsEnum - Straight line period control depreciation periods field
- deltaCoefficient? Signed32 - Delta coefficient field
- maximumDepreciableValue? decimal - Maximum depreciable value field
- assetCapitalizationCreditMemo? AssetDocument[] - Asset capitalization credit memo field
- specialDepreciationCalculationMethod? SpecialDepreciationCalculationMethodEnum - Special depreciation calculation method field
- acquisitionPeriodControl? AcquisitionPeriodControlEnum - Acquisition period control field
sap.businessone.fixedassets: DepreciationTypeParams
The DepreciationTypeParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.fixedassets: DepreciationTypePool
The DepreciationTypePool entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
- depreciationTypes? DepreciationType[] - Depreciation types field
sap.businessone.fixedassets: DepreciationTypePoolParams
The DepreciationTypePoolParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.fixedassets: DepreciationTypePoolsCollectionResponse
A paged collection of DepreciationTypePools entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DepreciationTypePool[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: DepreciationTypesCollectionResponse
A paged collection of DepreciationTypes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DepreciationType[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: FAAccountDetermination
The FAAccountDetermination entity of the SAP Business One Service Layer
Fields
- revaluationReserveAccount? string - Revaluation reserve account field
- leavewithRevenueNBVGross? string - Leavewith revenue NBV gross field
- description? string - Description field
- retirementwithRevenueNet? string - Retirementwith revenue net field
- revenueAccountforRetirement? string - Revenue accountfor retirement field
- revaluationAccount? string - Revaluation account field
- assetBalanceSheetAccount? string - Asset balance sheet account field
- revenuefromAssetSalesNet? string - Revenuefrom asset sales net field
- accumulatedUnplannedDepr? string - Accumulated unplanned depr field
- code? string - Code field
- accumulatedOrdinaryDepr? string - Accumulated ordinary depr field
- specialDepreciation? string - Special depreciation field
- clearingAccountAcquisition? string - Clearing account acquisition field
- accumulatedSpecialDepr? string - Accumulated special depr field
- revaluationReserveClearing? string - Revaluation reserve clearing field
- leavewithExpenseNBVGross? string - Leavewith expense NBV gross field
- unplannedDepreciation? string - Unplanned depreciation field
- revaluationLossAcct? string - Revaluation loss account field
- ordinaryDepreciation? string - Ordinary depreciation field
- revenueClearingAccount? string - Revenue clearing account field
- retirementwithExpenseNet? string - Retirementwith expense net field
sap.businessone.fixedassets: FAAccountDeterminationParams
The FAAccountDeterminationParams complex type of the SAP Business One Service Layer
Fields
- description? string - Description field
- code? string - Code field
sap.businessone.fixedassets: FAAccountDeterminationsCollectionResponse
A paged collection of FAAccountDeterminations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? FAAccountDetermination[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.fixedassets: FixedAssetEndBalance
The FixedAssetEndBalance complex type of the SAP Business One Service Layer
Fields
- salvageValue? decimal - Salvage value field
- acquisitionCost? decimal - Acquisition cost field
- netBookValue? decimal - Net book value field
- ordinaryDepreciationValue? decimal - Ordinary depreciation value field
- specialDepreciationValue? decimal - Special depreciation value field
- historicalAPC? decimal - Historical APC field
- unplanedDepreciationValue? decimal - Unplaned depreciation value field
- quantity? decimal - Quantity field
- historicalNBV? decimal - Historical NBV field
- writeUp? decimal - Write up field
sap.businessone.fixedassets: FixedAssetItemsService_GetAssetEndBalance_body
Represents the request payload for the FixedAssetItemsService_GetAssetEndBalance operation of the SAP Business One Service Layer
Fields
- fixedAssetValuesParams? FixedAssetValuesParams - Fixed asset values params field
sap.businessone.fixedassets: FixedAssetItemsService_GetAssetValuesList_body
Represents the request payload for the FixedAssetItemsService_GetAssetValuesList operation of the SAP Business One Service Layer
Fields
- fixedAssetValuesParams? FixedAssetValuesParams - Fixed asset values params field
sap.businessone.fixedassets: FixedAssetItemsService_UpdateAssetEndBalance_body
Represents the request payload for the FixedAssetItemsService_UpdateAssetEndBalance operation of the SAP Business One Service Layer
Fields
- fixedAssetEndBalance? FixedAssetEndBalance - Fixed asset end balance field
- fixedAssetValuesParams? FixedAssetValuesParams - Fixed asset values params field
sap.businessone.fixedassets: FixedAssetValues
The FixedAssetValues complex type of the SAP Business One Service Layer
Fields
- transactionType? AssetTransactionTypeEnum - Transaction type field
- acquisitionCost? decimal - Acquisition cost field
- netBookValue? decimal - Net book value field
- appreciation? decimal - Appreciation field
- depreciationValue? decimal - Depreciation value field
- ordinaryDepreciationValue? decimal - Ordinary depreciation value field
- specialDepreciationValue? decimal - Special depreciation value field
- quantity? decimal - Quantity field
- unplanedDepreciationValue? decimal - Unplaned depreciation value field
- writeUp? decimal - Write up field
sap.businessone.fixedassets: FixedAssetValuesParams
The FixedAssetValuesParams complex type of the SAP Business One Service Layer
Fields
- itemCode? string - Item code field
- fiscalYear? string - Fiscal year field
- depreciationArea? string - Depreciation area field
sap.businessone.fixedassets: GetAssetCapitalizationCreditMemoQueries
Represents the Queries record for the operation: getAssetCapitalizationCreditMemo
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: GetAssetCapitalizationQueries
Represents the Queries record for the operation: getAssetCapitalization
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: GetAssetClassesQueries
Represents the Queries record for the operation: getAssetClasses
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: GetAssetDepreciationGroupsQueries
Represents the Queries record for the operation: getAssetDepreciationGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: GetAssetGroupsQueries
Represents the Queries record for the operation: getAssetGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: GetAssetManualDepreciationQueries
Represents the Queries record for the operation: getAssetManualDepreciation
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: GetAssetRetirementQueries
Represents the Queries record for the operation: getAssetRetirement
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: GetAssetRevaluationsQueries
Represents the Queries record for the operation: getAssetRevaluations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: GetAssetTransferQueries
Represents the Queries record for the operation: getAssetTransfer
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: GetDepreciationAreasQueries
Represents the Queries record for the operation: getDepreciationAreas
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: GetDepreciationTypePoolsQueries
Represents the Queries record for the operation: getDepreciationTypePools
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: GetDepreciationTypesQueries
Represents the Queries record for the operation: getDepreciationTypes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: GetFAAccountDeterminationsQueries
Represents the Queries record for the operation: getFAAccountDeterminations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.fixedassets: inline_response_200
Represents the response payload for the AssetCapitalizationCreditMemoService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetDocumentParams[] - Value field
sap.businessone.fixedassets: inline_response_200_1
Represents the response payload for the AssetCapitalizationService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetDocumentParams[] - Value field
sap.businessone.fixedassets: inline_response_200_10
Represents the response payload for the DepreciationTypePoolsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DepreciationTypePoolParams[] - Value field
sap.businessone.fixedassets: inline_response_200_11
Represents the response payload for the DepreciationTypesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DepreciationTypeParams[] - Value field
sap.businessone.fixedassets: inline_response_200_12
Represents the response payload for the FAAccountDeterminationsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? FAAccountDeterminationParams[] - Value field
sap.businessone.fixedassets: inline_response_200_13
Represents the response payload for the FixedAssetItemsService_GetAssetValuesList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? FixedAssetValues[] - Value field
sap.businessone.fixedassets: inline_response_200_2
Represents the response payload for the AssetClassesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetClassParams[] - Value field
sap.businessone.fixedassets: inline_response_200_3
Represents the response payload for the AssetDepreciationGroupsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetDepreciationGroupParams[] - Value field
sap.businessone.fixedassets: inline_response_200_4
Represents the response payload for the AssetGroupsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetGroupParams[] - Value field
sap.businessone.fixedassets: inline_response_200_5
Represents the response payload for the AssetManualDepreciationService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetDocumentParams[] - Value field
sap.businessone.fixedassets: inline_response_200_6
Represents the response payload for the AssetRetirementService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetDocumentParams[] - Value field
sap.businessone.fixedassets: inline_response_200_7
Represents the response payload for the AssetRevaluationService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetRevaluationParams[] - Value field
sap.businessone.fixedassets: inline_response_200_8
Represents the response payload for the AssetTransferService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AssetDocumentParams[] - Value field
sap.businessone.fixedassets: inline_response_200_9
Represents the response payload for the DepreciationAreasService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? DepreciationAreaParams[] - Value field
sap.businessone.fixedassets: ListAssetCapitalizationCreditMemoHeaders
Represents the Headers record for the operation: listAssetCapitalizationCreditMemo
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListAssetCapitalizationCreditMemoQueries
Represents the Queries record for the operation: listAssetCapitalizationCreditMemo
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.fixedassets: ListAssetCapitalizationHeaders
Represents the Headers record for the operation: listAssetCapitalization
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListAssetCapitalizationQueries
Represents the Queries record for the operation: listAssetCapitalization
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.fixedassets: ListAssetClassesHeaders
Represents the Headers record for the operation: listAssetClasses
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListAssetClassesQueries
Represents the Queries record for the operation: listAssetClasses
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.fixedassets: ListAssetDepreciationGroupsHeaders
Represents the Headers record for the operation: listAssetDepreciationGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListAssetDepreciationGroupsQueries
Represents the Queries record for the operation: listAssetDepreciationGroups
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.fixedassets: ListAssetGroupsHeaders
Represents the Headers record for the operation: listAssetGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListAssetGroupsQueries
Represents the Queries record for the operation: listAssetGroups
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.fixedassets: ListAssetManualDepreciationHeaders
Represents the Headers record for the operation: listAssetManualDepreciation
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListAssetManualDepreciationQueries
Represents the Queries record for the operation: listAssetManualDepreciation
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.fixedassets: ListAssetRetirementHeaders
Represents the Headers record for the operation: listAssetRetirement
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListAssetRetirementQueries
Represents the Queries record for the operation: listAssetRetirement
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.fixedassets: ListAssetRevaluationsHeaders
Represents the Headers record for the operation: listAssetRevaluations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListAssetRevaluationsQueries
Represents the Queries record for the operation: listAssetRevaluations
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.fixedassets: ListAssetTransferHeaders
Represents the Headers record for the operation: listAssetTransfer
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListAssetTransferQueries
Represents the Queries record for the operation: listAssetTransfer
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.fixedassets: ListDepreciationAreasHeaders
Represents the Headers record for the operation: listDepreciationAreas
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListDepreciationAreasQueries
Represents the Queries record for the operation: listDepreciationAreas
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.fixedassets: ListDepreciationTypePoolsHeaders
Represents the Headers record for the operation: listDepreciationTypePools
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListDepreciationTypePoolsQueries
Represents the Queries record for the operation: listDepreciationTypePools
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.fixedassets: ListDepreciationTypesHeaders
Represents the Headers record for the operation: listDepreciationTypes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListDepreciationTypesQueries
Represents the Queries record for the operation: listDepreciationTypes
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.fixedassets: ListFAAccountDeterminationsHeaders
Represents the Headers record for the operation: listFAAccountDeterminations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.fixedassets: ListFAAccountDeterminationsQueries
Represents the Queries record for the operation: listFAAccountDeterminations
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
Union types
sap.businessone.fixedassets: AssetTypeEnum
AssetTypeEnum
OData EnumType 'AssetTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: CalculationBaseEnum
CalculationBaseEnum
OData EnumType 'CalculationBaseEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: BoYesNoEnum
BoYesNoEnum
OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: ClosingOptionEnum
ClosingOptionEnum
OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: SubsequentAcquisitionPeriodControlEnum
SubsequentAcquisitionPeriodControlEnum
OData EnumType 'SubsequentAcquisitionPeriodControlEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: SubsequentAcquisitionProRataTypeEnum
SubsequentAcquisitionProRataTypeEnum
OData EnumType 'SubsequentAcquisitionProRataTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: SpecialDepreciationMaximumFlagEnum
SpecialDepreciationMaximumFlagEnum
OData EnumType 'SpecialDepreciationMaximumFlagEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: AssetDocumentStatusEnum
AssetDocumentStatusEnum
OData EnumType 'AssetDocumentStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: RetirementMethodEnum
RetirementMethodEnum
OData EnumType 'RetirementMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: PostingOfDepreciationEnum
PostingOfDepreciationEnum
OData EnumType 'PostingOfDepreciationEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: AssetOriginalTypeEnum
AssetOriginalTypeEnum
OData EnumType 'AssetOriginalTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: RetirementPeriodControlEnum
RetirementPeriodControlEnum
OData EnumType 'RetirementPeriodControlEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: AreaTypeEnum
AreaTypeEnum
OData EnumType 'AreaTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: DepreciationRoundingMethodEnum
DepreciationRoundingMethodEnum
OData EnumType 'DepreciationRoundingMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: AcquisitionProRataTypeEnum
AcquisitionProRataTypeEnum
OData EnumType 'AcquisitionProRataTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: AcquisitionPeriodControlEnum
AcquisitionPeriodControlEnum
OData EnumType 'AcquisitionPeriodControlEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: AssetDocumentTypeEnum
AssetDocumentTypeEnum
OData EnumType 'AssetDocumentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: StraightLinePeriodControlDepreciationPeriodsEnum
StraightLinePeriodControlDepreciationPeriodsEnum
OData EnumType 'StraightLinePeriodControlDepreciationPeriodsEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: DepreciationCalculationBaseEnum
DepreciationCalculationBaseEnum
OData EnumType 'DepreciationCalculationBaseEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: TransferSourceProRataTypeEnum
TransferSourceProRataTypeEnum
OData EnumType 'TransferSourceProRataTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: RetirementProRataTypeEnum
RetirementProRataTypeEnum
OData EnumType 'RetirementProRataTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: AssetTransactionTypeEnum
AssetTransactionTypeEnum
OData EnumType 'AssetTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: SpecialDepreciationCalculationMethodEnum
SpecialDepreciationCalculationMethodEnum
OData EnumType 'SpecialDepreciationCalculationMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: DepreciationMethodEnum
DepreciationMethodEnum
OData EnumType 'DepreciationMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: StraightLineCalculationMethodEnum
StraightLineCalculationMethodEnum
OData EnumType 'StraightLineCalculationMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.fixedassets: TransferTargetProRataTypeEnum
TransferTargetProRataTypeEnum
OData EnumType 'TransferTargetProRataTypeEnum'. Serialised by the Service Layer as the member name
Import
import ballerinax/sap.businessone.fixedassets;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 Fixed Assets
Area/ERP & Business Operations
Vendor/SAP
Cost/Paid
Type/Connector
SAP Business One
Fixed Assets
ERP
Contributors