API

Sales APIs

POST sales/project-orders

Resource for creating new project order

HTTP method POST
URI https://api.rambase.net/sales/project-orders
Supported formats Xml, Html, Json (ex. $format=json)
Custom fields Custom fields supported
Successful HTTP status code 201
API resource identifier 4029, version 11

The following body must be added to the request. Mouse over fieldnames for description and other useful information about the fields. Note that fields in bold are required/mandatory.

Format:
1
<ProjectOrder>
2
     <Name
Name

Name of the project order

This field is optional.

>
{String}</Name>
3
     <PricingModel
PricingModel

Required/mandatory field

States if there are a fixed price for the project order, or if price will be based on time and material

Applicable domain values can be found here

>
{String}</PricingModel>
4
     <IsInternal
IsInternal

True if this is an internal project order

Default value: False

This field is optional.

>
{Boolean}</IsInternal>
5
     <CalculateMarkupByDefault
CalculateMarkupByDefault

If "True" it means that new PODITEMs that are created will have markup calculated. If "False" it means that they will not have markup calculated, -means markup is disabled

This field is optional.

>
{Boolean}</CalculateMarkupByDefault>
6
     <Currency
Currency

Three character code following the ISO 4217 standard

Applicable domain values can be found here

Input must match the following regular expression pattern: ^[A-Z]{3}$

This field is optional.

>
{String}</Currency>
7
     <Location>
8
          <LocationId
LocationId

Required/mandatory field

Location identifier

Minimum value: 10000

>
{Integer}</LocationId>
9
     </Location>
10
     <Customer
Customer

This field is optional.

>
11
          <CustomerId
CustomerId

Customer identifier

Minimum value: 10000

This field is optional.

>
{Integer}</CustomerId>
12
     </Customer>
13
     <ShippingAddress
ShippingAddress

This field is optional.

>
14
          <AddressId
AddressId

Address identifier

Minimum value: 1

This field is optional.

>
{Integer}</AddressId>
15
     </ShippingAddress>
16
</ProjectOrder>
1
{
2
     "projectOrder": {
3
          "name
Name

Name of the project order

This field is optional.

":
"{String}",
4
          "pricingModel
PricingModel

Required/mandatory field

States if there are a fixed price for the project order, or if price will be based on time and material

Applicable domain values can be found here

":
"{String}",
5
          "isInternal
IsInternal

True if this is an internal project order

Default value: False

This field is optional.

":
"{Boolean}",
6
          "calculateMarkupByDefault
CalculateMarkupByDefault

If "True" it means that new PODITEMs that are created will have markup calculated. If "False" it means that they will not have markup calculated, -means markup is disabled

This field is optional.

":
"{Boolean}",
7
          "currency
Currency

Three character code following the ISO 4217 standard

Applicable domain values can be found here

Input must match the following regular expression pattern: ^[A-Z]{3}$

This field is optional.

":
"{String}",
8
          "location": {
9
               "locationId
LocationId

Required/mandatory field

Location identifier

Minimum value: 10000

":
"{Integer}"
10
          },
11
          "customer
Customer

This field is optional.

":
{
12
               "customerId
CustomerId

Customer identifier

Minimum value: 10000

This field is optional.

":
"{Integer}"
13
          },
14
          "shippingAddress
ShippingAddress

This field is optional.

":
{
15
               "addressId
AddressId

Address identifier

Minimum value: 1

This field is optional.

":
"{Integer}"
16
          }
17
     }
18
}

The query string is placed after the resource URL, seperated with a questionmark (?). The query string is composed of a series of query parameters with values. See the page about query parameters on how to use these parameters.

$access_token String, optional After successful login you get an access token which needs to be provided in all API requests. Even though it is possible to pass this token as query parameter, we recommended passing it using the HTTP request header as described in Authorization. Note that all access tokens have an expiration time.
$db String, optional Set the database/company for the request
$useMinimumVersion Integer, optional Used to run a new version of an API resource when your API client is running a deprecated API resource. See the Breaking changes page for more information.
$showDomainDescriptions Boolean, optional Set to "true" to include domain descriptions for fields using domain values. See the Domain values page for more information. Default value is false.
$lang String, optional Specifies the language used in the response, following the 3-letter ISO-639-1 [lll]
$showCustomFields Boolean, optional Set to "true" to include custom fields. Default value is false.

Read more about filters and sorting on how to use filter parameters and named filters.

Read more about filters and sorting on how to use sortable parameters

Requesting this resource will yield the following response. Mouse over fieldnames (or fieldgroups) for descriptions and other useful information about the fields.

Please note that some fields may be removed from the response, based on user roles/duties/permissions.

Format:
1
<ProjectOrder>
2
     <ProjectOrderId
ProjectOrderId

Project order identifier

>
{Integer}</ProjectOrderId>
3
     <CreatedAt
CreatedAt

Date and time of creation

>
{Datetime}</CreatedAt>
4
     <Status
Status

Status of project order

Possible domain values can be found here

>
{Integer}</Status>
5
     <Name
Name

Name of the project order

>
{String}</Name>
6
     <Description
Description

Description of the project order

>
{String}</Description>
7
     <PricingModel
PricingModel

States if there are a fixed price for the project order, or if price will be based on time and material

Possible domain values can be found here

>
{String}</PricingModel>
8
     <IsInternal
IsInternal

True if this is an internal project order

>
{Boolean}</IsInternal>
9
     <Note
Note

A note to be added to the project order. Will typically be printed.

>
{String}</Note>
10
     <InternalNote
InternalNote

An internal note to be added to the project order

>
{String}</InternalNote>
11
     <CustomersReference
CustomersReference

Customers reference. Typically a person.

>
{String}</CustomersReference>
12
     <CustomersReferenceNumber
CustomersReferenceNumber

Customers reference number. E.g. the internal sales order id the customer use in their own system.

>
{String}</CustomersReferenceNumber>
13
     <RegistrationDate
RegistrationDate

Date of registration

>
{Date}</RegistrationDate>
14
     <Currency
Currency

Three character code following the ISO 4217 standard

Possible domain values can be found here

>
{String}</Currency>
15
     <InitialEstimatedGrossMargin
InitialEstimatedGrossMargin

Initial estimated gross margin when a project order is registered. This is calculated as ((InitialEstimatedSaleTotal - InitialEstimatedCostTotal) * 100) / InitialEstimatedSaleTotal

>
{Decimal}</InitialEstimatedGrossMargin>
16
     <ForecastGrossMargin
ForecastGrossMargin

Forecasted gross margin. This is calculated as ((CForecastSaleTotal - CForecastCostTotal) * 100) / CForecastSaleTotal

>
{Decimal}</ForecastGrossMargin>
17
     <ExternalReference
ExternalReference

External identifier

>
{String}</ExternalReference>
18
     <EstimatedStartAt
EstimatedStartAt

Estimated start date and time

>
{Datetime}</EstimatedStartAt>
19
     <EstimatedCompleteAt
EstimatedCompleteAt

Estimated end date and time

>
{Datetime}</EstimatedCompleteAt>
20
     <PercentWorkComplete
PercentWorkComplete

Work done in percentage, to be manually updated by responsible user

>
{Decimal}</PercentWorkComplete>
21
     <LastCalculatedAt
LastCalculatedAt

Date of last calculation of sales and cost numbers

>
{Datetime}</LastCalculatedAt>
22
     <CalculateMarkupByDefault
CalculateMarkupByDefault

If "True" it means that new PODITEMs that are created will have markup calculated. If "False" it means that they will not have markup calculated, -means markup is disabled

>
23
          <SalesInvoiceItemId
SalesInvoiceItemId

Reference to the item id of the object

>
{Integer}</SalesInvoiceItemId>
24
          <SalesInvoice>
25
               <SalesInvoiceId
SalesInvoiceId

Identifier of the object

>
{Integer}</SalesInvoiceId>
26
               <SalesInvoiceLink
SalesInvoiceLink

Document reference

>
{String}</SalesInvoiceLink>
27
          </SalesInvoice>
28
          <SalesInvoiceItemLink
SalesInvoiceItemLink

Document item reference

>
{String}</SalesInvoiceItemLink>
29
     </CalculateMarkupByDefault>
30
     <SalesItem>
31
          <ItemId
ItemId

Item-number of the object

>
{Integer}</ItemId>
32
          <Status
Status

Status of the item/object.

>
33
               <PaymentTerms
PaymentTerms

Terms of payment. Defaut value is retrieved from the customer. The due date of the sales order and sales invoice is calculated based on this field.

Possible domain values can be found here

>
{String}</PaymentTerms>
34
          </Status>
35
          <Object>
36
               <ObjectId
ObjectId

Identifier of the object

>
{Integer}</ObjectId>
37
               <ObjectType
ObjectType

Type of object

>
{String}</ObjectType>
38
               <ObjectLink
ObjectLink

API reference to the object

>
{String}</ObjectLink>
39
          </Object>
40
          <ItemLink
ItemLink

API reference to the item

>
{String}</ItemLink>
41
          <RamBaseKey
RamBaseKey

Internal RamBase identifier of the object/item

>
{String}</RamBaseKey>
42
     </SalesItem>
43
     <Accounting>
44
          <Department
Department

Accounting department to be used as a default for items that are created for project order

>
45
               <DepartmentId
DepartmentId

Department identifier

>
{Integer}</DepartmentId>
46
               <DepartmentLink
DepartmentLink

Finance department reference

>
{String}</DepartmentLink>
47
          </Department>
48
          <FinanceProject
FinanceProject

The finance project related to the project order. One of the system/fixed account dimensions.

>
49
               <FinanceProjectId
FinanceProjectId

Finance project identifier

>
{Integer}</FinanceProjectId>
50
               <FinanceProjectLink
FinanceProjectLink

Finance project reference

>
{String}</FinanceProjectLink>
51
          </FinanceProject>
52
     </Accounting>
53
     <Customer>
54
          <CustomerId
CustomerId

Customer identifier

>
{Integer}</CustomerId>
55
          <Name
Name

Name of customer (name of company or surname/familyname/lastname of a person)

>
{String}</Name>
56
          <FirstName
FirstName

Secondary name of a company or firstname of a person

>
{String}</FirstName>
57
          <CustomerLink
CustomerLink

Customer reference

>
{String}</CustomerLink>
58
          <AddressId
AddressId

Address identifier

>
{Integer}</AddressId>
59
          <Name
Name

Name of receiver (Name of company or last name of a person). Note that default invoice address must have the same name as the customer.

>
{String}</Name>
60
          <Firstname
Firstname

Firstname if the receiver is a person. Note that default invoice address must have the same firstname as the customer.

>
{String}</Firstname>
61
          <AddressLine1
AddressLine1

First address line

>
{String}</AddressLine1>
62
          <AddressLine2
AddressLine2

Second address line

>
{String}</AddressLine2>
63
          <PostalCode
PostalCode

Postalcode/Postcode/ZIP

>
{String}</PostalCode>
64
          <City
City

City/town/village

>
{String}</City>
65
          <Region
Region

Region/province/state

>
{String}</Region>
66
          <CountryCode
CountryCode

Two-character code (ISO 3166) identifying the country.

>
{String}</CountryCode>
67
          <Country
Country

English name of country.

>
{String}</Country>
68
          <Phone
Phone

Shipping address phone number

>
{String}</Phone>
69
          <AddressLink
AddressLink

Address reference

>
{String}</AddressLink>
70
          <AddressId
AddressId

Address identifier

>
{Integer}</AddressId>
71
          <Name
Name

Name of receiver (Name of company or last name of a person). Note that default invoice address must have the same name as the customer.

>
{String}</Name>
72
          <Firstname
Firstname

Firstname if the receiver is a person. Note that default invoice address must have the same firstname as the customer.

>
{String}</Firstname>
73
          <AddressLine1
AddressLine1

First address line

>
{String}</AddressLine1>
74
          <AddressLine2
AddressLine2

Second address line

>
{String}</AddressLine2>
75
          <PostalCode
PostalCode

Postalcode/Postcode/ZIP

>
{String}</PostalCode>
76
          <City
City

City/town/village

>
{String}</City>
77
          <Region
Region

Region/province/state

>
{String}</Region>
78
          <Country
Country

English name of country.

>
{String}</Country>
79
          <AddressLink
AddressLink

Address reference

>
{String}</AddressLink>
80
     </Customer>
81
     <Location>
82
          <LocationId
LocationId

Location identifier

>
{Integer}</LocationId>
83
          <ShortName
ShortName

Unique abbreviation/short name of the location

>
{String}</ShortName>
84
          <LocationLink
LocationLink

Location reference

>
{String}</LocationLink>
85
     </Location>
86
     <Responsible
Responsible

Reference to the user who is responsible project manger for this project order

>
87
          <EmployeeId
EmployeeId

Employee identifier

>
{Integer}</EmployeeId>
88
          <LastName
LastName

Last name of employee

>
{String}</LastName>
89
          <FirstName
FirstName

First name of employee

>
{String}</FirstName>
90
          <EmployeeLink
EmployeeLink

Employee reference

>
{String}</EmployeeLink>
91
     </Responsible>
92
     <Sales>
93
          <Currency
Currency

Three character code following the ISO 4217 standard

Possible domain values can be found here

>
{String}</Currency>
94
          <Hours>
95
               <InitialEstimatedHours
InitialEstimatedHours

The number of hours that are initial estimated to be used on this project order.

>
{Decimal}</InitialEstimatedHours>
96
               <InitialEstimatedAmount
InitialEstimatedAmount

Total Intial estimated revenues for hours at the time the project order is started. In sales currency.

>
{Decimal}</InitialEstimatedAmount>
97
               <RemainingEstimatedHours
RemainingEstimatedHours

Sum of all remaining estimated hours.

>
{Decimal}</RemainingEstimatedHours>
98
               <RemainingEstimatedAmount
RemainingEstimatedAmount

Total remaining estimated revenues for hours, in sales currency

>
{Decimal}</RemainingEstimatedAmount>
99
               <PendingHours
PendingHours

Sum of all hours that are logged, but not yet approved by manager (status 3)

>
{Decimal}</PendingHours>
100
               <PendingAmount
PendingAmount

Total pending revenues for hours, in sales currency. Revenues for hours are to be understood as pending when they are logged, but not yet approved by manager (status 3)

>
{Decimal}</PendingAmount>
101
               <AccruedHours
AccruedHours

Sum of all logged hours that have been approved by manager (status 4)

>
{Decimal}</AccruedHours>
102
               <AccruedAmount
AccruedAmount

Total accrued revenues for hours, in sales currency.

>
{Decimal}</AccruedAmount>
103
               <ForecastHours
ForecastHours

Sum of all forecasted hours to be used in this project order

>
{Decimal}</ForecastHours>
104
               <ForecastAmount
ForecastAmount

Total forecasted revenues for hours, in sales currency.

>
{Decimal}</ForecastAmount>
105
               <InvoicedAmount
InvoicedAmount

Total invoiced revenues for hours. In sales currency.

>
{Decimal}</InvoicedAmount>
106
          </Hours>
107
          <Materials>
108
               <InitialEstimatedAmount
InitialEstimatedAmount

Total Intial estimated revenues for material at the time the project order is started. In sales currency.

>
{Decimal}</InitialEstimatedAmount>
109
               <RemainingEstimatedAmount
RemainingEstimatedAmount

Total remaining estimated revenues for material, in sales currency.

>
{Decimal}</RemainingEstimatedAmount>
110
               <PendingAmount
PendingAmount

Total pending revenues for material, in sales currency. Revenues for material are to be understood as pending when the internal sales order for "Material to project order" has been created, but material is not confirmed as consumed yet.

>
{Decimal}</PendingAmount>
111
               <AccruedAmount
AccruedAmount

Total accrued revenues for material, in sales currency.

>
{Decimal}</AccruedAmount>
112
               <ForecastAmount
ForecastAmount

Total forecasted revenues for material, in sales currency.

>
{Decimal}</ForecastAmount>
113
               <InvoicedAmount
InvoicedAmount

Total invoiced revenues for material. In sales currency.

>
{Decimal}</InvoicedAmount>
114
          </Materials>
115
          <Expenses>
116
               <InitialEstimatedAmount
InitialEstimatedAmount

Total initial estimated revenues for expenses at the time the project order is started. In sales currency.

>
{Decimal}</InitialEstimatedAmount>
117
               <RemainingEstimatedAmount
RemainingEstimatedAmount

Total remaining estimated revenues for expenses. In sales currency.

>
{Decimal}</RemainingEstimatedAmount>
118
               <PendingAmount
PendingAmount

Total pending revenues for expenses. In sales currency.|

>
{Decimal}</PendingAmount>
119
               <AccruedAmount
AccruedAmount

Total accrued revenues for expenses, in sales currency.

>
{Decimal}</AccruedAmount>
120
               <ForecastAmount
ForecastAmount

Total forecasted revenues for expenses, in sales currency.

>
{Decimal}</ForecastAmount>
121
               <InvoicedAmount
InvoicedAmount

Total invoiced revenues for expenses. In sales currency

>
{Decimal}</InvoicedAmount>
122
          </Expenses>
123
          <Totals>
124
               <InitialEstimatedAmount
InitialEstimatedAmount

Total initial estimated revenues at the time the project order is registered, in sales currency. Includes initial estimated revenues for both hours, material and expenses.

>
{Decimal}</InitialEstimatedAmount>
125
               <RemainingEstimatedAmount
RemainingEstimatedAmount

Total remaining estimated revenues, in sales currency. Includes revenues for both hours, material and expenses.

>
{Decimal}</RemainingEstimatedAmount>
126
               <PendingAmount
PendingAmount

Total pending revenues, in sales currency. Includes pending revenues for both hours, material and expenses.

>
{Decimal}</PendingAmount>
127
               <AccruedAmount
AccruedAmount

Total accrued revenues, in sales currency. Includes accrued revenues for both hours, material and expenses.

>
{Decimal}</AccruedAmount>
128
               <ForecastAmount
ForecastAmount

Total forecast revenues for the project order, in sales currency. Includes forecast revenue for both hour, material and expenses for a project order with price model 'Time & material'. For price model 'Fixed price' it's equal to the sales price that is given to the customer in the belonging sales transaction.

>
{Decimal}</ForecastAmount>
129
               <InvoicedAmount
InvoicedAmount

Total invoiced revenues, in sales currency. Includes invoiced revenues for both hours, material and expenses.

>
{Decimal}</InvoicedAmount>
130
          </Totals>
131
          <Currency
Currency

Three character code following the ISO 4217 standard

Possible domain values can be found here

>
{String}</Currency>
132
          <ExchangeRate
ExchangeRate

The exchange rate used in convertion

>
{Decimal}</ExchangeRate>
133
          <Hours>
134
               <InitialEstimatedAmount
InitialEstimatedAmount

Total initial estimated revenues for hours at the time the project order is started, in local currency

>
{Decimal}</InitialEstimatedAmount>
135
               <RemainingEstimatedAmount
RemainingEstimatedAmount

Total remaining revenues for hours, in local currency.

>
{Decimal}</RemainingEstimatedAmount>
136
               <PendingAmount
PendingAmount

Total pending revenues for hours, in local currency. Revenues for hours are to be understood as pending if hours are logged, but not yet approved by manager (status 3)

>
{Decimal}</PendingAmount>
137
               <AccruedAmount
AccruedAmount

Total accrued revenues for hours, in local currency. Revenues for hours are to be understood as accrued when logged hours has been approved by manager (status 4)

>
{Decimal}</AccruedAmount>
138
               <ForecastAmount
ForecastAmount

Total forecasted revenues for hours, in local currency

>
{Decimal}</ForecastAmount>
139
               <InvoicedAmount
InvoicedAmount

Total invoiced revenues for hours, in local currency

>
{Decimal}</InvoicedAmount>
140
          </Hours>
141
          <Materials>
142
               <InitialEstimatedAmount
InitialEstimatedAmount

Total initial estimated revenues for material at the time the project order is started, in local currency

>
{Decimal}</InitialEstimatedAmount>
143
               <RemainingEstimatedAmount
RemainingEstimatedAmount

Total remaining revenues for material, in local currency.

>
{Decimal}</RemainingEstimatedAmount>
144
               <PendingAmount
PendingAmount

Total pending revenues for material, in local currency. Revenues for material are to be understood as pending when the internal sales order for "Material to project order" has been created, but material is not confirmed as consumed yet.

>
{Decimal}</PendingAmount>
145
               <AccruedAmount
AccruedAmount

Total accrued revenues for material, in local currency. Revenues for material are to be understood as accrued when material have been shipped out the warehouse.

>
{Decimal}</AccruedAmount>
146
               <ForecastAmount
ForecastAmount

Total forecasted revenues for material, in local currency

>
{Decimal}</ForecastAmount>
147
               <InvoicedAmount
InvoicedAmount

Total invoiced revenues for material, in local currency

>
{Decimal}</InvoicedAmount>
148
          </Materials>
149
          <Expenses>
150
               <InitialEstimatedAmount
InitialEstimatedAmount

Total initial estimated revenues for expenses at the time the project order is started, in local currency

>
{Decimal}</InitialEstimatedAmount>
151
               <RemainingEstimatedAmount
RemainingEstimatedAmount

Total remaining revenues for expenses, in local currency.

>
{Decimal}</RemainingEstimatedAmount>
152
               <PendingAmount
PendingAmount

Total pending revenues for expenses, in local currency. Revenues are understood as pending when purchaser order for expenses are registered.

>
{Decimal}</PendingAmount>
153
               <AccruedAmount
AccruedAmount

Total accrued revenues for expenses, in local currency. Revenues for expenses are normally understood as accrued when supplier invoice is registered. Eventually can accrued revenues be set manually.

>
{Decimal}</AccruedAmount>
154
               <ForecastAmount
ForecastAmount

Total forecasted revenues for expenses, in local currency.

>
{Decimal}</ForecastAmount>
155
               <InvoicedAmount
InvoicedAmount

Total invoiced revenues for expenses, in local currency

>
{Decimal}</InvoicedAmount>
156
          </Expenses>
157
          <Totals>
158
               <InitialEstimatedAmount
InitialEstimatedAmount

Total initial estimated revenues at the time the project order is registered, in local currency. Includes initial estimated revenues for both material, hours and expenses.

>
{Decimal}</InitialEstimatedAmount>
159
               <RemainingEstimatedAmount
RemainingEstimatedAmount

Total remaining estimated revenues, in local currency. Includes remaining estimated revenues for both hours, material and expenses.

>
{Decimal}</RemainingEstimatedAmount>
160
               <PendingAmount
PendingAmount

Total pending revenues, in local currency. Includes pending revenues for both hours, material and expenses

>
{Decimal}</PendingAmount>
161
               <AccruedAmount
AccruedAmount

Total accrued revenues, in local currency. Includes accrued revenues for both hours, material and expenses.

>
{Decimal}</AccruedAmount>
162
               <ForecastAmount
ForecastAmount

Total forecasted revenues, in local currency, for both hours, material and expenses. Forecasted revenues are a sum of remaining, pending and accrued revenues for a project order with price model 'Time & material'. For price model 'Fixed price' it's equal to the sales price that is given to the customer in the belonging sales transaction.

>
{Decimal}</ForecastAmount>
163
               <InvoicedAmount
InvoicedAmount

Total invoiced revenues, in local currency. Includes invoiced revenues for both hours, material and expenses.

>
{Decimal}</InvoicedAmount>
164
          </Totals>
165
          <Currency
Currency

Three character code following the ISO 4217 standard

Possible domain values can be found here

>
{String}</Currency>
166
          <ExchangeRate
ExchangeRate

The exchange rate used in convertion

>
{Decimal}</ExchangeRate>
167
          <Hours>
168
               <InitialEstimatedAmount
InitialEstimatedAmount

Total initial estimated cost of hours at the time the project order is started, in local currency.

>
{Decimal}</InitialEstimatedAmount>
169
               <RemainingEstimatedAmount
RemainingEstimatedAmount

Total remaining cost of hours, in local currency.

>
{Decimal}</RemainingEstimatedAmount>
170
               <PendingAmount
PendingAmount

Total pending cost of hours, in local currency. Cost for hours are to be understood as pending if hours are logged, but not yet approved by manager (status 3)

>
{Decimal}</PendingAmount>
171
               <AccruedAmount
AccruedAmount

Total accrued cost of hours, in local currency. Cost for hours are to be understood as accrued when logged hours has been approved by manager (status 4)

>
{Decimal}</AccruedAmount>
172
               <ForecastAmount
ForecastAmount

Total forecasted cost of hours, in local currency

>
{Decimal}</ForecastAmount>
173
          </Hours>
174
          <Materials>
175
               <InitialEstimatedAmount
InitialEstimatedAmount

Total initial estimated cost of material at the time the project order is started, in local currency

>
{Decimal}</InitialEstimatedAmount>
176
               <RemainingEstimatedAmount
RemainingEstimatedAmount

Total remaining cost of material, in local currency.

>
{Decimal}</RemainingEstimatedAmount>
177
               <PendingAmount
PendingAmount

Total pending cost of material, in local currency. Cost for material are to be understood as pending if the internal sales order for "Material to project order" has been created, but material is not confirmed as consumed yet.

>
{Decimal}</PendingAmount>
178
               <AccruedAmount
AccruedAmount

Total accrued cost of material, in local currency. Cost are to be understood as accrued for material when it has been shipped out of the warehouse.

>
{Decimal}</AccruedAmount>
179
               <ForecastAmount
ForecastAmount

Total forecasted cost of material, in local currency

>
{Decimal}</ForecastAmount>
180
          </Materials>
181
          <Expenses>
182
               <InitialEstimatedAmount
InitialEstimatedAmount

Total initial estimated cost of expenses at the time the project order is started, in local currency

>
{Decimal}</InitialEstimatedAmount>
183
               <RemainingEstimatedAmount
RemainingEstimatedAmount

Total remaining cost of expenses, in local currency.

>
{Decimal}</RemainingEstimatedAmount>
184
               <PendingAmount
PendingAmount

Total pending cost of expenses, in local currency. Expenses are understood as pending when a purchase order for expenses are registered.

>
{Decimal}</PendingAmount>
185
               <AccruedAmount
AccruedAmount

Total accrued cost of expenses, in local currency

>
{Decimal}</AccruedAmount>
186
               <ForecastAmount
ForecastAmount

Total forecasted cost of expenses, in local currency

>
{Decimal}</ForecastAmount>
187
          </Expenses>
188
          <Totals>
189
               <InitialEstimatedAmount
InitialEstimatedAmount

Total initial estimated cost at the time the project order is registered, in local currency. Includes initial estimated cost for both material, hours and expenses.

>
{Decimal}</InitialEstimatedAmount>
190
               <RemainingEstimatedAmount
RemainingEstimatedAmount

Total remaining estimated cost, in local currency. Includes remaining cost from both hours, material and expenses.

>
{Decimal}</RemainingEstimatedAmount>
191
               <PendingAmount
PendingAmount

Total pending cost, in local currency. Includes pending cost for both hours, material and expenses.

>
{Decimal}</PendingAmount>
192
               <AccruedAmount
AccruedAmount

Total accrued cost, in local currency. Includes accrued cost for both hours, material and expenses.

>
{Decimal}</AccruedAmount>
193
               <ForecastAmount
ForecastAmount

Total forecasted cost, in local currency, for both hours, material and expenses. Forecasted cost is a sum of remaining, pending and accrued cost.

>
{Decimal}</ForecastAmount>
194
          </Totals>
195
     </Sales>
196
     <VATDetails>
197
          <VATType
VATType

Type of value added tax

>
{String}</VATType>
198
          <NotificationId
NotificationId

Notification identifier

>
{Integer}</NotificationId>
199
          <Status
Status

Status of the notification

Possible domain values can be found here

>
{Integer}</Status>
200
          <CreatedAt
CreatedAt

Date and time of creation

>
{Datetime}</CreatedAt>
201
          <Message
Message

The message from the notification definition, expanded with parameters.

>
{String}</Message>
202
          <TranslatedMessage
TranslatedMessage

The translated message from the notification definition, expanded with parameters.

>
{String}</TranslatedMessage>
203
          <NotificationType>
204
               <NotificationTypeId
NotificationTypeId

Notification type identifier

>
{String}</NotificationTypeId>
205
               <Category
Category

Category of notification type (warning, information etc)

Possible domain values can be found here

>
{String}</Category>
206
               <NotificationTypeLink
NotificationTypeLink

Notification type reference

>
{String}</NotificationTypeLink>
207
          </NotificationType>
208
          <NotificationLink
NotificationLink

Notification reference

>
{String}</NotificationLink>
209
     </VATDetails>
210
</ProjectOrder>
1
{
2
     "projectOrder": {
3
          "projectOrderId
ProjectOrderId

Project order identifier

":
"{Integer}",
4
          "createdAt
CreatedAt

Date and time of creation

":
"{Datetime}",
5
          "status
Status

Status of project order

Possible domain values can be found here

":
"{Integer}",
6
          "name
Name

Name of the project order

":
"{String}",
7
          "description
Description

Description of the project order

":
"{String}",
8
          "pricingModel
PricingModel

States if there are a fixed price for the project order, or if price will be based on time and material

Possible domain values can be found here

":
"{String}",
9
          "isInternal
IsInternal

True if this is an internal project order

":
"{Boolean}",
10
          "note
Note

A note to be added to the project order. Will typically be printed.

":
"{String}",
11
          "internalNote
InternalNote

An internal note to be added to the project order

":
"{String}",
12
          "customersReference
CustomersReference

Customers reference. Typically a person.

":
"{String}",
13
          "customersReferenceNumber
CustomersReferenceNumber

Customers reference number. E.g. the internal sales order id the customer use in their own system.

":
"{String}",
14
          "registrationDate
RegistrationDate

Date of registration

":
"{Date}",
15
          "currency
Currency

Three character code following the ISO 4217 standard

Possible domain values can be found here

":
"{String}",
16
          "initialEstimatedGrossMargin
InitialEstimatedGrossMargin

Initial estimated gross margin when a project order is registered. This is calculated as ((InitialEstimatedSaleTotal - InitialEstimatedCostTotal) * 100) / InitialEstimatedSaleTotal

":
"{Decimal}",
17
          "forecastGrossMargin
ForecastGrossMargin

Forecasted gross margin. This is calculated as ((CForecastSaleTotal - CForecastCostTotal) * 100) / CForecastSaleTotal

":
"{Decimal}",
18
          "externalReference
ExternalReference

External identifier

":
"{String}",
19
          "estimatedStartAt
EstimatedStartAt

Estimated start date and time

":
"{Datetime}",
20
          "estimatedCompleteAt
EstimatedCompleteAt

Estimated end date and time

":
"{Datetime}",
21
          "percentWorkComplete
PercentWorkComplete

Work done in percentage, to be manually updated by responsible user

":
"{Decimal}",
22
          "lastCalculatedAt
LastCalculatedAt

Date of last calculation of sales and cost numbers

":
"{Datetime}",
23
          "calculateMarkupByDefault
CalculateMarkupByDefault

If "True" it means that new PODITEMs that are created will have markup calculated. If "False" it means that they will not have markup calculated, -means markup is disabled

":
{
24
               "salesInvoiceItemId
SalesInvoiceItemId

Reference to the item id of the object

":
"{Integer}",
25
               "salesInvoice": {
26
                    "salesInvoiceId
SalesInvoiceId

Identifier of the object

":
"{Integer}",
27
                    "salesInvoiceLink
SalesInvoiceLink

Document reference

":
"{String}"
28
               },
29
               "salesInvoiceItemLink
SalesInvoiceItemLink

Document item reference

":
"{String}"
30
          },
31
          "salesItem": {
32
               "itemId
ItemId

Item-number of the object

":
"{Integer}",
33
               "status
Status

Status of the item/object.

":
{
34
                    "paymentTerms
PaymentTerms

Terms of payment. Defaut value is retrieved from the customer. The due date of the sales order and sales invoice is calculated based on this field.

Possible domain values can be found here

":
"{String}"
35
               },
36
               "object": {
37
                    "objectId
ObjectId

Identifier of the object

":
"{Integer}",
38
                    "objectType
ObjectType

Type of object

":
"{String}",
39
                    "objectLink
ObjectLink

API reference to the object

":
"{String}"
40
               },
41
               "itemLink
ItemLink

API reference to the item

":
"{String}",
42
               "ramBaseKey
RamBaseKey

Internal RamBase identifier of the object/item

":
"{String}"
43
          },
44
          "accounting": {
45
               "department
Department

Accounting department to be used as a default for items that are created for project order

":
{
46
                    "departmentId
DepartmentId

Department identifier

":
"{Integer}",
47
                    "departmentLink
DepartmentLink

Finance department reference

":
"{String}"
48
               },
49
               "financeProject
FinanceProject

The finance project related to the project order. One of the system/fixed account dimensions.

":
{
50
                    "financeProjectId
FinanceProjectId

Finance project identifier

":
"{Integer}",
51
                    "financeProjectLink
FinanceProjectLink

Finance project reference

":
"{String}"
52
               }
53
          },
54
          "customer": {
55
               "customerId
CustomerId

Customer identifier

":
"{Integer}",
56
               "name
Name

Name of customer (name of company or surname/familyname/lastname of a person)

":
"{String}",
57
               "firstName
FirstName

Secondary name of a company or firstname of a person

":
"{String}",
58
               "customerLink
CustomerLink

Customer reference

":
"{String}",
59
               "addressId
AddressId

Address identifier

":
"{Integer}",
60
               "name
Name

Name of receiver (Name of company or last name of a person). Note that default invoice address must have the same name as the customer.

":
"{String}",
61
               "firstname
Firstname

Firstname if the receiver is a person. Note that default invoice address must have the same firstname as the customer.

":
"{String}",
62
               "addressLine1
AddressLine1

First address line

":
"{String}",
63
               "addressLine2
AddressLine2

Second address line

":
"{String}",
64
               "postalCode
PostalCode

Postalcode/Postcode/ZIP

":
"{String}",
65
               "city
City

City/town/village

":
"{String}",
66
               "region
Region

Region/province/state

":
"{String}",
67
               "countryCode
CountryCode

Two-character code (ISO 3166) identifying the country.

":
"{String}",
68
               "country
Country

English name of country.

":
"{String}",
69
               "phone
Phone

Shipping address phone number

":
"{String}",
70
               "addressLink
AddressLink

Address reference

":
"{String}",
71
               "addressId
AddressId

Address identifier

":
"{Integer}",
72
               "name
Name

Name of receiver (Name of company or last name of a person). Note that default invoice address must have the same name as the customer.

":
"{String}",
73
               "firstname
Firstname

Firstname if the receiver is a person. Note that default invoice address must have the same firstname as the customer.

":
"{String}",
74
               "addressLine1
AddressLine1

First address line

":
"{String}",
75
               "addressLine2
AddressLine2

Second address line

":
"{String}",
76
               "postalCode
PostalCode

Postalcode/Postcode/ZIP

":
"{String}",
77
               "city
City

City/town/village

":
"{String}",
78
               "region
Region

Region/province/state

":
"{String}",
79
               "country
Country

English name of country.

":
"{String}",
80
               "addressLink
AddressLink

Address reference

":
"{String}"
81
          },
82
          "location": {
83
               "locationId
LocationId

Location identifier

":
"{Integer}",
84
               "shortName
ShortName

Unique abbreviation/short name of the location

":
"{String}",
85
               "locationLink
LocationLink

Location reference

":
"{String}"
86
          },
87
          "responsible
Responsible

Reference to the user who is responsible project manger for this project order

":
{
88
               "employeeId
EmployeeId

Employee identifier

":
"{Integer}",
89
               "lastName
LastName

Last name of employee

":
"{String}",
90
               "firstName
FirstName

First name of employee

":
"{String}",
91
               "employeeLink
EmployeeLink

Employee reference

":
"{String}"
92
          },
93
          "sales": {
94
               "currency
Currency

Three character code following the ISO 4217 standard

Possible domain values can be found here

":
"{String}",
95
               "hours": {
96
                    "initialEstimatedHours
InitialEstimatedHours

The number of hours that are initial estimated to be used on this project order.

":
"{Decimal}",
97
                    "initialEstimatedAmount
InitialEstimatedAmount

Total Intial estimated revenues for hours at the time the project order is started. In sales currency.

":
"{Decimal}",
98
                    "remainingEstimatedHours
RemainingEstimatedHours

Sum of all remaining estimated hours.

":
"{Decimal}",
99
                    "remainingEstimatedAmount
RemainingEstimatedAmount

Total remaining estimated revenues for hours, in sales currency

":
"{Decimal}",
100
                    "pendingHours
PendingHours

Sum of all hours that are logged, but not yet approved by manager (status 3)

":
"{Decimal}",
101
                    "pendingAmount
PendingAmount

Total pending revenues for hours, in sales currency. Revenues for hours are to be understood as pending when they are logged, but not yet approved by manager (status 3)

":
"{Decimal}",
102
                    "accruedHours
AccruedHours

Sum of all logged hours that have been approved by manager (status 4)

":
"{Decimal}",
103
                    "accruedAmount
AccruedAmount

Total accrued revenues for hours, in sales currency.

":
"{Decimal}",
104
                    "forecastHours
ForecastHours

Sum of all forecasted hours to be used in this project order

":
"{Decimal}",
105
                    "forecastAmount
ForecastAmount

Total forecasted revenues for hours, in sales currency.

":
"{Decimal}",
106
                    "invoicedAmount
InvoicedAmount

Total invoiced revenues for hours. In sales currency.

":
"{Decimal}"
107
               },
108
               "materials": {
109
                    "initialEstimatedAmount
InitialEstimatedAmount

Total Intial estimated revenues for material at the time the project order is started. In sales currency.

":
"{Decimal}",
110
                    "remainingEstimatedAmount
RemainingEstimatedAmount

Total remaining estimated revenues for material, in sales currency.

":
"{Decimal}",
111
                    "pendingAmount
PendingAmount

Total pending revenues for material, in sales currency. Revenues for material are to be understood as pending when the internal sales order for "Material to project order" has been created, but material is not confirmed as consumed yet.

":
"{Decimal}",
112
                    "accruedAmount
AccruedAmount

Total accrued revenues for material, in sales currency.

":
"{Decimal}",
113
                    "forecastAmount
ForecastAmount

Total forecasted revenues for material, in sales currency.

":
"{Decimal}",
114
                    "invoicedAmount
InvoicedAmount

Total invoiced revenues for material. In sales currency.

":
"{Decimal}"
115
               },
116
               "expenses": {
117
                    "initialEstimatedAmount
InitialEstimatedAmount

Total initial estimated revenues for expenses at the time the project order is started. In sales currency.

":
"{Decimal}",
118
                    "remainingEstimatedAmount
RemainingEstimatedAmount

Total remaining estimated revenues for expenses. In sales currency.

":
"{Decimal}",
119
                    "pendingAmount
PendingAmount

Total pending revenues for expenses. In sales currency.|

":
"{Decimal}",
120
                    "accruedAmount
AccruedAmount

Total accrued revenues for expenses, in sales currency.

":
"{Decimal}",
121
                    "forecastAmount
ForecastAmount

Total forecasted revenues for expenses, in sales currency.

":
"{Decimal}",
122
                    "invoicedAmount
InvoicedAmount

Total invoiced revenues for expenses. In sales currency

":
"{Decimal}"
123
               },
124
               "totals": {
125
                    "initialEstimatedAmount
InitialEstimatedAmount

Total initial estimated revenues at the time the project order is registered, in sales currency. Includes initial estimated revenues for both hours, material and expenses.

":
"{Decimal}",
126
                    "remainingEstimatedAmount
RemainingEstimatedAmount

Total remaining estimated revenues, in sales currency. Includes revenues for both hours, material and expenses.

":
"{Decimal}",
127
                    "pendingAmount
PendingAmount

Total pending revenues, in sales currency. Includes pending revenues for both hours, material and expenses.

":
"{Decimal}",
128
                    "accruedAmount
AccruedAmount

Total accrued revenues, in sales currency. Includes accrued revenues for both hours, material and expenses.

":
"{Decimal}",
129
                    "forecastAmount
ForecastAmount

Total forecast revenues for the project order, in sales currency. Includes forecast revenue for both hour, material and expenses for a project order with price model 'Time & material'. For price model 'Fixed price' it's equal to the sales price that is given to the customer in the belonging sales transaction.

":
"{Decimal}",
130
                    "invoicedAmount
InvoicedAmount

Total invoiced revenues, in sales currency. Includes invoiced revenues for both hours, material and expenses.

":
"{Decimal}"
131
               },
132
               "currency
Currency

Three character code following the ISO 4217 standard

Possible domain values can be found here

":
"{String}",
133
               "exchangeRate
ExchangeRate

The exchange rate used in convertion

":
"{Decimal}",
134
               "hours": {
135
                    "initialEstimatedAmount
InitialEstimatedAmount

Total initial estimated revenues for hours at the time the project order is started, in local currency

":
"{Decimal}",
136
                    "remainingEstimatedAmount
RemainingEstimatedAmount

Total remaining revenues for hours, in local currency.

":
"{Decimal}",
137
                    "pendingAmount
PendingAmount

Total pending revenues for hours, in local currency. Revenues for hours are to be understood as pending if hours are logged, but not yet approved by manager (status 3)

":
"{Decimal}",
138
                    "accruedAmount
AccruedAmount

Total accrued revenues for hours, in local currency. Revenues for hours are to be understood as accrued when logged hours has been approved by manager (status 4)

":
"{Decimal}",
139
                    "forecastAmount
ForecastAmount

Total forecasted revenues for hours, in local currency

":
"{Decimal}",
140
                    "invoicedAmount
InvoicedAmount

Total invoiced revenues for hours, in local currency

":
"{Decimal}"
141
               },
142
               "materials": {
143
                    "initialEstimatedAmount
InitialEstimatedAmount

Total initial estimated revenues for material at the time the project order is started, in local currency

":
"{Decimal}",
144
                    "remainingEstimatedAmount
RemainingEstimatedAmount

Total remaining revenues for material, in local currency.

":
"{Decimal}",
145
                    "pendingAmount
PendingAmount

Total pending revenues for material, in local currency. Revenues for material are to be understood as pending when the internal sales order for "Material to project order" has been created, but material is not confirmed as consumed yet.

":
"{Decimal}",
146
                    "accruedAmount
AccruedAmount

Total accrued revenues for material, in local currency. Revenues for material are to be understood as accrued when material have been shipped out the warehouse.

":
"{Decimal}",
147
                    "forecastAmount
ForecastAmount

Total forecasted revenues for material, in local currency

":
"{Decimal}",
148
                    "invoicedAmount
InvoicedAmount

Total invoiced revenues for material, in local currency

":
"{Decimal}"
149
               },
150
               "expenses": {
151
                    "initialEstimatedAmount
InitialEstimatedAmount

Total initial estimated revenues for expenses at the time the project order is started, in local currency

":
"{Decimal}",
152
                    "remainingEstimatedAmount
RemainingEstimatedAmount

Total remaining revenues for expenses, in local currency.

":
"{Decimal}",
153
                    "pendingAmount
PendingAmount

Total pending revenues for expenses, in local currency. Revenues are understood as pending when purchaser order for expenses are registered.

":
"{Decimal}",
154
                    "accruedAmount
AccruedAmount

Total accrued revenues for expenses, in local currency. Revenues for expenses are normally understood as accrued when supplier invoice is registered. Eventually can accrued revenues be set manually.

":
"{Decimal}",
155
                    "forecastAmount
ForecastAmount

Total forecasted revenues for expenses, in local currency.

":
"{Decimal}",
156
                    "invoicedAmount
InvoicedAmount

Total invoiced revenues for expenses, in local currency

":
"{Decimal}"
157
               },
158
               "totals": {
159
                    "initialEstimatedAmount
InitialEstimatedAmount

Total initial estimated revenues at the time the project order is registered, in local currency. Includes initial estimated revenues for both material, hours and expenses.

":
"{Decimal}",
160
                    "remainingEstimatedAmount
RemainingEstimatedAmount

Total remaining estimated revenues, in local currency. Includes remaining estimated revenues for both hours, material and expenses.

":
"{Decimal}",
161
                    "pendingAmount
PendingAmount

Total pending revenues, in local currency. Includes pending revenues for both hours, material and expenses

":
"{Decimal}",
162
                    "accruedAmount
AccruedAmount

Total accrued revenues, in local currency. Includes accrued revenues for both hours, material and expenses.

":
"{Decimal}",
163
                    "forecastAmount
ForecastAmount

Total forecasted revenues, in local currency, for both hours, material and expenses. Forecasted revenues are a sum of remaining, pending and accrued revenues for a project order with price model 'Time & material'. For price model 'Fixed price' it's equal to the sales price that is given to the customer in the belonging sales transaction.

":
"{Decimal}",
164
                    "invoicedAmount
InvoicedAmount

Total invoiced revenues, in local currency. Includes invoiced revenues for both hours, material and expenses.

":
"{Decimal}"
165
               },
166
               "currency
Currency

Three character code following the ISO 4217 standard

Possible domain values can be found here

":
"{String}",
167
               "exchangeRate
ExchangeRate

The exchange rate used in convertion

":
"{Decimal}",
168
               "hours": {
169
                    "initialEstimatedAmount
InitialEstimatedAmount

Total initial estimated cost of hours at the time the project order is started, in local currency.

":
"{Decimal}",
170
                    "remainingEstimatedAmount
RemainingEstimatedAmount

Total remaining cost of hours, in local currency.

":
"{Decimal}",
171
                    "pendingAmount
PendingAmount

Total pending cost of hours, in local currency. Cost for hours are to be understood as pending if hours are logged, but not yet approved by manager (status 3)

":
"{Decimal}",
172
                    "accruedAmount
AccruedAmount

Total accrued cost of hours, in local currency. Cost for hours are to be understood as accrued when logged hours has been approved by manager (status 4)

":
"{Decimal}",
173
                    "forecastAmount
ForecastAmount

Total forecasted cost of hours, in local currency

":
"{Decimal}"
174
               },
175
               "materials": {
176
                    "initialEstimatedAmount
InitialEstimatedAmount

Total initial estimated cost of material at the time the project order is started, in local currency

":
"{Decimal}",
177
                    "remainingEstimatedAmount
RemainingEstimatedAmount

Total remaining cost of material, in local currency.

":
"{Decimal}",
178
                    "pendingAmount
PendingAmount

Total pending cost of material, in local currency. Cost for material are to be understood as pending if the internal sales order for "Material to project order" has been created, but material is not confirmed as consumed yet.

":
"{Decimal}",
179
                    "accruedAmount
AccruedAmount

Total accrued cost of material, in local currency. Cost are to be understood as accrued for material when it has been shipped out of the warehouse.

":
"{Decimal}",
180
                    "forecastAmount
ForecastAmount

Total forecasted cost of material, in local currency

":
"{Decimal}"
181
               },
182
               "expenses": {
183
                    "initialEstimatedAmount
InitialEstimatedAmount

Total initial estimated cost of expenses at the time the project order is started, in local currency

":
"{Decimal}",
184
                    "remainingEstimatedAmount
RemainingEstimatedAmount

Total remaining cost of expenses, in local currency.

":
"{Decimal}",
185
                    "pendingAmount
PendingAmount

Total pending cost of expenses, in local currency. Expenses are understood as pending when a purchase order for expenses are registered.

":
"{Decimal}",
186
                    "accruedAmount
AccruedAmount

Total accrued cost of expenses, in local currency

":
"{Decimal}",
187
                    "forecastAmount
ForecastAmount

Total forecasted cost of expenses, in local currency

":
"{Decimal}"
188
               },
189
               "totals": {
190
                    "initialEstimatedAmount
InitialEstimatedAmount

Total initial estimated cost at the time the project order is registered, in local currency. Includes initial estimated cost for both material, hours and expenses.

":
"{Decimal}",
191
                    "remainingEstimatedAmount
RemainingEstimatedAmount

Total remaining estimated cost, in local currency. Includes remaining cost from both hours, material and expenses.

":
"{Decimal}",
192
                    "pendingAmount
PendingAmount

Total pending cost, in local currency. Includes pending cost for both hours, material and expenses.

":
"{Decimal}",
193
                    "accruedAmount
AccruedAmount

Total accrued cost, in local currency. Includes accrued cost for both hours, material and expenses.

":
"{Decimal}",
194
                    "forecastAmount
ForecastAmount

Total forecasted cost, in local currency, for both hours, material and expenses. Forecasted cost is a sum of remaining, pending and accrued cost.

":
"{Decimal}"
195
               }
196
          },
197
          "vATDetails": {
198
               "vATType
VATType

Type of value added tax

":
"{String}",
199
               "notificationId
NotificationId

Notification identifier

":
"{Integer}",
200
               "status
Status

Status of the notification

Possible domain values can be found here

":
"{Integer}",
201
               "createdAt
CreatedAt

Date and time of creation

":
"{Datetime}",
202
               "message
Message

The message from the notification definition, expanded with parameters.

":
"{String}",
203
               "translatedMessage
TranslatedMessage

The translated message from the notification definition, expanded with parameters.

":
"{String}",
204
               "notificationType": {
205
                    "notificationTypeId
NotificationTypeId

Notification type identifier

":
"{String}",
206
                    "category
Category

Category of notification type (warning, information etc)

Possible domain values can be found here

":
"{String}",
207
                    "notificationTypeLink
NotificationTypeLink

Notification type reference

":
"{String}"
208
               },
209
               "notificationLink
NotificationLink

Notification reference

":
"{String}"
210
          }
211
     }
212
}

List of available operations/actions for this resource.
See the operations documentation for more information about API operations.

Possible error codes the response might return:

Error 103158 HTTP 400 It is not allowed to change product in a shipping advice item
Error 107812 HTTP 400 End customer not found
Error 107813 HTTP 400 The end customer is not active
Error 101396 HTTP 400 Maximum number of lines exceeded
Error 106448 HTTP 400 A sales order item for product of type project order (WP) cannot be splitted into several items
Error 106476 HTTP 400 This type of product (WP) can only be changed into a product of the same type
Error 106408 HTTP 403 You have no permission to create subscription item in sales order
Error 106957 HTTP 400 Only rental or subscription products can be used in recurring contract's lines
Error 106962 HTTP 400 Product of this type (WP) cannot be added to this type of sales order
Error 107055 HTTP 400 The rental date can only be set back {0} days
Error 102485 HTTP 400 Dimension {0} ({1}) is required for general ledger account {2}
Error 101313 HTTP 400 Department number is not valid: {0}
Error 101320 HTTP 400 The project number is not valid: {0}
Error 101500 HTTP 400 Project {0} could not be used : Check project FromPeriod and ToPeriod.
Error 101501 HTTP 400 Asset is not allowed on general ledger account {0}
Error 101326 HTTP 400 The asset number is not valid : {0}
Error 109539 HTTP 400 Dimension value {0} could not be used : Check its FromPeriod and ToPeriod.
Error 102486 HTTP 400 Invalid value for dimension {0}