UnitCostObjectsModificationRequest¶
Example Json Object
1{
2 "unitId": 10000001,
3 "effectiveDate": "2024-02-01",
4 "allocations": [
5 {
6 "id": 10001,
7 "mainCostCenter": true,
8 "allocationPercentage": 75,
9 "costCenter": {
10 "id": 14001,
11 "displayId": "CC-001",
12 "status": {
13 "name": "ACTIVE",
14 "captionKey": "enum.objectStatus.active",
15 "active": true,
16 "caption": "Active"
17 },
18 "name": "Cost Center A"
19 },
20 "profitCenter": {
21 "id": 9001,
22 "displayId": "PC-001",
23 "status": {
24 "name": "ACTIVE",
25 "captionKey": "enum.objectStatus.active",
26 "active": true,
27 "caption": "Active"
28 },
29 "name": "North Region Profit Center",
30 "validTo": "2025-12-31",
31 "erpSystemId": 101,
32 "erpSystemDisplayId": "SAP-01"
33 }
34 }
35 ],
36 "workBreakdownStructure": {
37 "id": 1001,
38 "displayId": "WBS-2025-001",
39 "status": {
40 "name": "ACTIVE",
41 "captionKey": "enum.objectStatus.active",
42 "active": true,
43 "caption": "Active"
44 },
45 "name": "Main Project WBS"
46 },
47 "profitCenter": {
48 "id": 9001,
49 "displayId": "PC-001",
50 "status": {
51 "name": "ACTIVE",
52 "captionKey": "enum.objectStatus.active",
53 "active": true,
54 "caption": "Active"
55 },
56 "name": "North Region Profit Center",
57 "validTo": "2025-12-31",
58 "erpSystemId": 101,
59 "erpSystemDisplayId": "SAP-01"
60 },
61 "costCenter": {
62 "id": 14001,
63 "displayId": "CC-001",
64 "status": {
65 "name": "ACTIVE",
66 "captionKey": "enum.objectStatus.active",
67 "active": true,
68 "caption": "Active"
69 },
70 "name": "Cost Center A"
71 },
72 "responsibleCostCenter": {
73 "id": 14001,
74 "displayId": "CC-001",
75 "status": {
76 "name": "ACTIVE",
77 "captionKey": "enum.objectStatus.active",
78 "active": true,
79 "caption": "Active"
80 },
81 "name": "Cost Center A"
82 }
83}
📄 Description: Request payload for modifying cost object allocations of a unit.
Properties
Name |
Type |
Required |
Restrictions |
Description |
|---|---|---|---|---|
unitId |
integer(int64) |
false |
none |
Unique identifier of the unit to be modified. |
effectiveDate |
string(date) |
false |
none |
Date when the cost object modification becomes effective. |
allocations |
false |
none |
List of cost center allocation items associated with the unit. |
|
workBreakdownStructure |
false |
none |
Represents a simplified Work Breakdown Structure (WBS) entity with basic identifiers and status. |
|
profitCenter |
false |
none |
Represents a simplified Profit Center entity. |
|
costCenter |
false |
none |
Represents a simplified Cost Center entity. |
|
responsibleCostCenter |
false |
none |
Represents a simplified Cost Center entity. |