Documentation
Show / Hide Table of Contents

Connect by API

WinServ Connecy by API is a GrahpQL server that exposes CRUD operations for handling WinServ data records.

Introduction

Learn GraphQL

Before you start developing with WinServ Connect By API, you need to get acquainted with GraphQL. A good place to start is the official GraphQL documentation.

Use the GraphiQL Browser

WinServ Connect By API comes with a built-in GraphiQL Browser. This guide assumes that you already have a valid API token, provided by your client.

  1. Use a web browser to navigate to client-api-url/graphql
  2. When promped for login please enter enter username api and use the API token as the password

Examples

Get all products

Query

{
  artiklar {
    artnr
    ben
    utpris
    giltighetsdatum
  }
}

Response

{
    "data": {
        "artiklar": [{
                "artnr": "AS432FDX",
                "ben": "Repair Kit 32 pcs",
                "utpris": 450,
        "giltighetsdatum": "2019-12-24"
            },
            {
                "artnr": "BKZ3400",
                "ben": "Replacement Toner, Yellow",
                "utpris": 29,
        "giltighetsdatum": "2019-12-01"
            }
        ]
    }
}

Get a single product by ID

Query

{
  artiklar(artnr: "AS432FDX") {
    artnr
    ben
  }
}

Response

{
    "data": {
        "artiklar": [{
            "artnr": "AS432FDX",
            "ben": "Repair Kit 32 pcs"
        }]
    }
}

Get pricing information

Get pricing information of a product using WinServ's business rules

Query

{
  getProductPrice(productId: "0120") {
    cost
    price
  }
}

Response

{
  "data": {
    "getProductPrice": {
      "cost": 100,
      "price": 200
    }
  }
}

Get pricing information of a product for a specific customer using WinServ's business rules

Query

{
  getProductPrice(productId: "0120", options: {customerId: "1"}) {
    cost
    price
    discount
    priceWithDiscount
  }
}

Response

This customer has 50% discount on this specific product

{
  "data": {
    "getProductPrice": {
      "cost": 100,
      "price": 200,
      "discount": 50,
      "priceWithDiscount": 100
    }
  }
}

Get pricing information, including information check if product should be included on service or consumption orders

Query

{
  getProductPrice(productId: "0120", options: {customerId: "1", machineId: "1"}) {
    cost
    price
    discount
    priceWithDiscount
    includedInService
    includedInConsumption
  }
}

Response

This product should be included without charge on service orders according to the contract on the machine in WinServ

{
  "data": {
    "getProductPrice": {
      "cost": 100,
      "price": 200,
      "discount": 50,
      "priceWithDiscount": 100,
      "includedInService": true,
      "includedInConsumption": false
    }
  }
}

Create a new product

Mutation

mutation CreateProduct($data: artiklarCreateObject!) {
  createArtiklar(data: $data) {
    artnr
    ben
    utpris
  }
}

Variables

{
  "data": {
    "artnr": "NEW-1",
    "ben": "My New Product",
    "utpris": 99
  }
}

Response

{
  "data": {
    "createArtiklar": {
      "artnr": "NEW-1",
      "ben": "My New Product",
      "utpris": 99
    }
  }
}

Update an existing product

Mutation

mutation UpdateProduct($artnr: String!, $data: artiklarUpdateObject!) {
  updateArtiklar(artnr: $artnr, data: $data) {
    artnr
    ben
    utpris
  }
}

Variables

{
  "artnr": "NEW-1",
  "data": {
    "ben": "My Modified Product",
    "utpris": 150
  }
}

Response

{
  "data": {
    "updateArtiklar": {
      "artnr": "NEW-1",
      "ben": "My Modified Product",
      "utpris": 150
    }
  }
}

Schema Types

Table of Contents

  • Queries
  • Mutations
  • Objects

Queries

Operations for reading WinServ data

Field Argument Type Description
artenh [artenh] Get a list of product specific pricing per sales unit from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by [artnr] using the selected [findMode]
enhet String Search by Unit [enhet] using the selected [findMode]
artgrupp [artgrupp] Get a list of product groups from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
artiklar [artiklar] Get a list of product data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Product id [artnr] using the selected [findMode]
artgrupp String Search by Product group [artgrupp] using the selected [findMode]
ben String Search by Description [ben] using the selected [findMode]
ben2 String Search by Descr. 2 [ben2] using the selected [findMode]
ean String Search by SKU [ean] using the selected [findMode]
enr String Search by E-No. [enr] using the selected [findMode]
hylla String Search by Shelf [hylla] using the selected [findMode]
konto String Search by Account [konto] using the selected [findMode]
kortnr String Search by Card id [kortnr] using the selected [findMode]
lagerplats String Search by Location [lagerplats] using the selected [findMode]
lev String Search by Vendor [lev] using the selected [findMode]
levart String Search by Product id [levart] using the selected [findMode]
avbokn1 [avbokn1] Get a list of system defined action codes from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Code [nr] using the selected [findMode]
grupp String Search by Group [grupp] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
betvillk [betvillk] Get a list of system defined payment terms from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
delar [delar] Get a list of service order row data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by S-order id [jobbnr] using the selected [findMode]
radnr Int Search by Row no. [radnr] using the selected [findMode]
artnr String Search by Product id [artnr] using the selected [findMode]
kundnr String Search by Customer id [kundnr] using the selected [findMode]
lagerplats String Search by [lagerplats] using the selected [findMode]
mnr String Search by Object id [mnr] using the selected [findMode]
tekn_lager String Search by Inventory [tekn_lager] using the selected [findMode]
delars [delars] Get a list of service order row history data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
rad_nr Int Search by Row [rad_nr] using the selected [findMode]
artnr String Search by Product id [artnr] using the selected [findMode]
datum Date Search by Date [datum] using the selected [findMode]
kundnr String Search by [kundnr] using the selected [findMode]
mnr String Search by [mnr] using the selected [findMode]
mtyp String Search by [mtyp] using the selected [findMode]
tekn_lager String Search by Inventory [tekn_lager] using the selected [findMode]
enhet [enhet] Get a list of product sales units from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
kod String Search by Code [kod] using the selected [findMode]
faktura [faktura] Get a list of vendor invoices for projects from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
fakturanr String Search by Invoice id [fakturanr] using the selected [findMode]
kundnr String Search by Vend Id [kundnr] using the selected [findMode]
lopnr Int Search by Number series [lopnr] using the selected [findMode]
projekt String Search by Project [projekt] using the selected [findMode]
faktdat Date Search by Inv date [faktdat] using the selected [findMode]
wsorderid Decimal Search by Order id >> [wsorderid] using the selected [findMode]
wsordertype String Search by Order type [wsordertype] using the selected [findMode]
felkod1 [felkod1] Get a list of system defined problem codes from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
grupp String Search by Group [grupp] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
getProductPrice GetProductPrice Get pricing information of a product using WinServ's business rules.
productId String! ID of a product in WinServ
options GetProductPriceOptions Optional context
intern [intern] Get a list of system defined division codes from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
kod String Search by Code [kod] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
intevent [intevent] Get a list of recurring events
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
intmallnr Int Search by INTMALLNR [intmallnr] using the selected [findMode]
jobbmallnr String Search by JOBBMALLNR [jobbmallnr] using the selected [findMode]
mnr String Search by MNR [mnr] using the selected [findMode]
schedule_date Date Search by SCHEDULE_DATE [schedule_date] using the selected [findMode]
trigger_date Date Search by TRIGGER_DATE [trigger_date] using the selected [findMode]
intmall [intmall] Get a list of recurring events
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
mnr String Search by MNR [mnr] using the selected [findMode]
namn String Search by Templates [namn] using the selected [findMode]
jobb [jobb] Get a list of service order data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by Order id [jobbnr] using the selected [findMode]
deldat Date Search by Assigned [deldat] using the selected [findMode]
deltid Decimal Search by Time [deltid] using the selected [findMode]
distrikt String Search by District [distrikt] using the selected [findMode]
gata String Search by Visiting address [gata] using the selected [findMode]
hpordernr String Search by Foreign order [hpordernr] using the selected [findMode]
indat Date Search by Called in [indat] using the selected [findMode]
install String Search by Customer [install] using the selected [findMode]
intid Decimal Search by Time [intid] using the selected [findMode]
jobbprio String Search by Priority [jobbprio] using the selected [findMode]
kundnr String Search by [kundnr] using the selected [findMode]
mnr String Search by Object id [mnr] using the selected [findMode]
modell String Search by Name [modell] using the selected [findMode]
ort String Search by City [ort] using the selected [findMode]
plandat Date Search by Planned [plandat] using the selected [findMode]
plantid Decimal Search by Time [plantid] using the selected [findMode]
routenr Int Search by Route no. [routenr] using the selected [findMode]
startdat Date Search by Start date [startdat] using the selected [findMode]
starttid Decimal Search by Time [starttid] using the selected [findMode]
tekn String Search by Technician [tekn] using the selected [findMode]
jobbat [jobbat] Get a list of service order action codes data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
rad Int Search by Row index [rad] using the selected [findMode]
jobbatg [jobbatg] Get a list of service order action description data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
jobbatgh [jobbatgh] Get a list of service order action description history data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
jobbath [jobbath] Get a list of service order action codes history data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
rad Int Search by Row index [rad] using the selected [findMode]
jobbfel [jobbfel] Get a list of service order problem code data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
jobbfelh [jobbfelh] Get a list of service order problem code history data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
jobbft [jobbft] Get a list of service order problem description data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
rad Int Search by Row index [rad] using the selected [findMode]
jobbfth [jobbfth] Get a list of service order problem description history data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
rad Int Search by Row index [rad] using the selected [findMode]
jobbhist [jobbhist] Get a list of service order history data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by Order id [jobbnr] using the selected [findMode]
distrikt String Search by District [distrikt] using the selected [findMode]
faktnr Int Search by Inv.no [faktnr] using the selected [findMode]
hpordernr String Search by Foreign id [hpordernr] using the selected [findMode]
indat Date Search by Called in [indat] using the selected [findMode]
intid Decimal Search by Time [intid] using the selected [findMode]
jobbtyp String Search by Job type [jobbtyp] using the selected [findMode]
kundnr String Search by Customer id [kundnr] using the selected [findMode]
mnr String Search by Object id [mnr] using the selected [findMode]
modell String Search by Object type [modell] using the selected [findMode]
mtyp String Search by Object type [mtyp] using the selected [findMode]
prodkod String Search by Prod [prodkod] using the selected [findMode]
segment String Search by Segm [segment] using the selected [findMode]
slutdat Date Search by End date [slutdat] using the selected [findMode]
sluttid Decimal Search by Time [sluttid] using the selected [findMode]
tekn String Search by Tech [tekn] using the selected [findMode]
jobbtekn [jobbtekn] Get a list of service order time sheet history data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
kundnr String Search by [kundnr] using the selected [findMode]
slutdat Date Search by End dat. [slutdat] using the selected [findMode]
sluttid Decimal Search by Time [sluttid] using the selected [findMode]
startdat Date Search by Start dat. [startdat] using the selected [findMode]
starttid Decimal Search by Time [starttid] using the selected [findMode]
tekn String Search by Tech [tekn] using the selected [findMode]
jobbtyp [jobbtyp] Get a list of system defined job types from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
ka_hist [ka_hist] Get a list of contract history from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
regnr Int Search by Reg. id [regnr] using the selected [findMode]
datum Date Search by Date [datum] using the selected [findMode]
debper String Search by Billing cycle [debper] using the selected [findMode]
distrikt String Search by District [distrikt] using the selected [findMode]
faktnr Int Search by Invoice id [faktnr] using the selected [findMode]
kundnr String Search by Customer id [kundnr] using the selected [findMode]
mnr String Search by Object id [mnr] using the selected [findMode]
modell String Search by Object type [modell] using the selected [findMode]
mtyp String Search by Object type [mtyp] using the selected [findMode]
prodkod String Search by Product area [prodkod] using the selected [findMode]
segment String Search by Segment [segment] using the selected [findMode]
tekn String Search by Seller [tekn] using the selected [findMode]
kampart [kampart] Get a list of special webshop offer pricing from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Product id [artnr] using the selected [findMode]
nr String Search by [nr] using the selected [findMode]
kundnr String Search by [kundnr] using the selected [findMode]
kbar [kbar] Get a list of system defined cost units from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
kordhuv [kordhuv] Get a list of customer order data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
ordernr Decimal Search by Order id [ordernr] using the selected [findMode]
best_dat Date Search by Ordered [best_dat] using the selected [findMode]
externordernr String Search by Foreign id [externordernr] using the selected [findMode]
forf_datum Date Search by Due date [forf_datum] using the selected [findMode]
kundnr String Search by Customer id [kundnr] using the selected [findMode]
levadrnamn String Search by Name [levadrnamn] using the selected [findMode]
plandat Date Search by Desired [plandat] using the selected [findMode]
saljare String Search by Seller [saljare] using the selected [findMode]
kordhuvs [kordhuvs] Get a list of customer order history from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
ordernr Decimal Search by Order id [ordernr] using the selected [findMode]
best_av String Search by Caller [best_av] using the selected [findMode]
best_dat Date Search by Order date [best_dat] using the selected [findMode]
externordernr String Search by Extern order id [externordernr] using the selected [findMode]
faktnr Int Search by Invoice id [faktnr] using the selected [findMode]
kundnr String Search by Customer id [kundnr] using the selected [findMode]
levadrnamn String Search by Shipping address descr [levadrnamn] using the selected [findMode]
saljare String Search by Seller [saljare] using the selected [findMode]
saljare_namn String Search by Seller [saljare_namn] using the selected [findMode]
totfakt Decimal Search by Total [totfakt] using the selected [findMode]
kordrad [kordrad] Get a list of customer order rows from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
ord_nr Decimal Search by [ord_nr] using the selected [findMode]
radnr Int Search by Row no. [radnr] using the selected [findMode]
artnr String Search by [artnr] using the selected [findMode]
kundnr String Search by Customer id [kundnr] using the selected [findMode]
lager String Search by Inventory [lager] using the selected [findMode]
lagerplats String Search by [lagerplats] using the selected [findMode]
kordrads [kordrads] Get a list of customer order history rows from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
ord_nr Decimal Search by [ord_nr] using the selected [findMode]
radnr Int Search by Row no. [radnr] using the selected [findMode]
artnr String Search by Product id [artnr] using the selected [findMode]
datum Date Search by Date [datum] using the selected [findMode]
kundnr String Search by [kundnr] using the selected [findMode]
lager String Search by Inventory [lager] using the selected [findMode]
kst [kst] Get a list of system defined cost centers from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
kstaff [kstaff] Get a list of customer specific tiered pricing from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Product id [artnr] using the selected [findMode]
kundnr String Search by [kundnr] using the selected [findMode]
kund_art [kund_art] Get a list of customer contract pricing per product from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Product id [artnr] using the selected [findMode]
enhet String Search by Unit [enhet] using the selected [findMode]
nr String Search by [nr] using the selected [findMode]
kund_grp [kund_grp] Get a list of customer contract pricing per product group from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by [nr] using the selected [findMode]
varugrp String Search by Commodity group [varugrp] using the selected [findMode]
kund_rk [kund_rk] Get a list of customer contract pricing per supplier discount class from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
lev String Search by Vendor [lev] using the selected [findMode]
nr String Search by [nr] using the selected [findMode]
rklass String Search by Discount class [rklass] using the selected [findMode]
kundavt [kundavt] Get a list of customer contract pricing from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
kunder [kunder] Get a list of customer data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
kundnr String Search by Customer id [kundnr] using the selected [findMode]
avd String Search by Department [avd] using the selected [findMode]
b_port String Search by City [b_port] using the selected [findMode]
badress String Search by Visiting address [badress] using the selected [findMode]
distrikt String Search by District [distrikt] using the selected [findMode]
ean String Search by SKU [ean] using the selected [findMode]
kategori String Search by Category [kategori] using the selected [findMode]
namn String Search by Legal name [namn] using the selected [findMode]
orgnr String Search by EIN [orgnr] using the selected [findMode]
pnr String Search by Zip code [pnr] using the selected [findMode]
pop_namn String Search by Customer name [pop_namn] using the selected [findMode]
port String Search by City [port] using the selected [findMode]
saljare String Search by Seller [saljare] using the selected [findMode]
soknamn String Search by Own id [soknamn] using the selected [findMode]
tel String Search by Phone [tel] using the selected [findMode]
kundpl [kundpl] Get a list of customer price lists from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
kundpl_a [kundpl_a] Get a list of customer price list pricing per product from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Product id [artnr] using the selected [findMode]
enhet String Search by Unit [enhet] using the selected [findMode]
nr String Search by [nr] using the selected [findMode]
kundpl_g [kundpl_g] Get a list of customer price list pricing per product group from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by [nr] using the selected [findMode]
varugrupp String Search by Commodity group [varugrupp] using the selected [findMode]
kundpl_r [kundpl_r] Get a list of customer price list pricing per supplier discount class from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
lev String Search by Vendor [lev] using the selected [findMode]
nr String Search by [nr] using the selected [findMode]
rklass String Search by Discount class [rklass] using the selected [findMode]
kundrab [kundrab] Get a list of customer specific pricing per product group from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artgr String Search by Product group [artgr] using the selected [findMode]
kundnr String Search by [kundnr] using the selected [findMode]
lev [lev] Get a list of vendors from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
ean String Search by SKU [ean] using the selected [findMode]
kundnr String Search by Customer id by vendor. [kundnr] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
teknik String Search by Tech. [teknik] using the selected [findMode]
levadr [levadr] Get a list of customer delivery addresses from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
kundnr String Search by Customer id [kundnr] using the selected [findMode]
nr String Search by Id [nr] using the selected [findMode]
avd String Search by Dept. [avd] using the selected [findMode]
gata String Search by Visiting address [gata] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
ort String Search by City [ort] using the selected [findMode]
levart [levart] Get a list of supplier discount class per product and supplier from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artikelnr String Search by [artikelnr] using the selected [findMode]
levnr String Search by Vendor id [levnr] using the selected [findMode]
levsatt [levsatt] Get a list of system defined shipping methods from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
text String Search by Text [text] using the selected [findMode]
levvillk [levvillk] Get a list of system defined shipping terms from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
text String Search by Text [text] using the selected [findMode]
mask1 [mask1] Get a list of object data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
mnr String Search by [mnr] using the selected [findMode]
mask3 [mask3] Get a list of object data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
mnr String Search by [mnr] using the selected [findMode]
hyrabar Int Search by Rentable [hyrabar] using the selected [findMode]
maskiner [maskiner] Get a list of object data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
mnr String Search by Object id [mnr] using the selected [findMode]
avtalnr String Search by Contract id [avtalnr] using the selected [findMode]
gatuadr String Search by Visiting address [gatuadr] using the selected [findMode]
install String Search by Name [install] using the selected [findMode]
kundnr String Search by [kundnr] using the selected [findMode]
masktyp String Search by Object type [masktyp] using the selected [findMode]
modell String Search by Name [modell] using the selected [findMode]
op String Search by Technical ref [op] using the selected [findMode]
ort String Search by City [ort] using the selected [findMode]
plac String Search by Location [plac] using the selected [findMode]
postnr String Search by Zip code [postnr] using the selected [findMode]
sok_nr String Search by Own id [sok_nr] using the selected [findMode]
tel String Search by Phone [tel] using the selected [findMode]
maskinty [maskinty] Get a list of object type data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Object type [artnr] using the selected [findMode]
artgrupp String Search by Product group [artgrupp] using the selected [findMode]
lev String Search by Vendor [lev] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
pkod String Search by Product area [pkod] using the selected [findMode]
segment String Search by Segment [segment] using the selected [findMode]
tillv String Search by Manufacturer [tillv] using the selected [findMode]
mod_bas [mod_bas] Get a list of suggested base supplies for a given object type/model from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Product id [artnr] using the selected [findMode]
modell String Search by [modell] using the selected [findMode]
mod_till [mod_till] Get a list of accessories for a given object type/model from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Product id [artnr] using the selected [findMode]
modell String Search by [modell] using the selected [findMode]
mvisible [mvisible] Get a list of machine permissions per contact from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
kontaktnr Int Search by [kontaktnr] using the selected [findMode]
mnr String Search by Object id [mnr] using the selected [findMode]
ord_hist [ord_hist] Get a list of supply order history from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
ordernr Decimal Search by Ord id [ordernr] using the selected [findMode]
best_av String Search by Caller [best_av] using the selected [findMode]
best_dat Date Search by Order date [best_dat] using the selected [findMode]
distrikt String Search by District [distrikt] using the selected [findMode]
externordernr String Search by Foreign id [externordernr] using the selected [findMode]
faktnr Int Search by Inv.no [faktnr] using the selected [findMode]
install String Search by Name [install] using the selected [findMode]
kundnr String Search by Customer id [kundnr] using the selected [findMode]
mnr String Search by [mnr] using the selected [findMode]
mtyp String Search by Object type [mtyp] using the selected [findMode]
saljare String Search by Seller [saljare] using the selected [findMode]
segment String Search by Segment [segment] using the selected [findMode]
ord_huv [ord_huv] Get a list of supply order data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
ordernr Decimal Search by Order id [ordernr] using the selected [findMode]
best_dat Date Search by Ordered [best_dat] using the selected [findMode]
externordernr String Search by Foreign id [externordernr] using the selected [findMode]
install String Search by Installed [install] using the selected [findMode]
kundnr String Search by Customer id [kundnr] using the selected [findMode]
mnr String Search by [mnr] using the selected [findMode]
modell String Search by Name [modell] using the selected [findMode]
mtyp String Search by Object type [mtyp] using the selected [findMode]
plandat Date Search by Desired [plandat] using the selected [findMode]
saljare String Search by Seller [saljare] using the selected [findMode]
ord_rad [ord_rad] Get a list of supply order rows from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
ord_nr Decimal Search by [ord_nr] using the selected [findMode]
radnr Int Search by Row no. [radnr] using the selected [findMode]
artnr String Search by Product id [artnr] using the selected [findMode]
kundnr String Search by Customer id [kundnr] using the selected [findMode]
lagerplats String Search by [lagerplats] using the selected [findMode]
mnr String Search by Object id [mnr] using the selected [findMode]
tekn_lager String Search by Inventory [tekn_lager] using the selected [findMode]
ord_rads [ord_rads] Get a list of supply order history rows from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
ord_nr Decimal Search by [ord_nr] using the selected [findMode]
radnr Int Search by Row no. [radnr] using the selected [findMode]
artnr String Search by Product id [artnr] using the selected [findMode]
datum Date Search by Date [datum] using the selected [findMode]
kundnr String Search by [kundnr] using the selected [findMode]
mnr String Search by [mnr] using the selected [findMode]
mtyp String Search by [mtyp] using the selected [findMode]
tekn_lager String Search by Inventory [tekn_lager] using the selected [findMode]
ordtext [ordtext] Get a list of customer order text rows from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
ordernr Decimal Search by [ordernr] using the selected [findMode]
rad Int Search by Row index [rad] using the selected [findMode]
person [person] Get a list of customer contacts from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
kontaktnr Int Search by Contact id [kontaktnr] using the selected [findMode]
avd String Search by Department [avd] using the selected [findMode]
avd_namn String Search by Dept. [avd_namn] using the selected [findMode]
befattning String Search by Function [befattning] using the selected [findMode]
email String Search by E-mail [email] using the selected [findMode]
foretag String Search by Customer id [foretag] using the selected [findMode]
foretag_namn String Search by Company [foretag_namn] using the selected [findMode]
foretag_ort String Search by City [foretag_ort] using the selected [findMode]
foretag_pnr String Search by Zip code [foretag_pnr] using the selected [findMode]
kategori String Search by Contact category [kategori] using the selected [findMode]
mobil String Search by Mobile [mobil] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
saljare String Search by Seller [saljare] using the selected [findMode]
tel_arbete String Search by Direct tel [tel_arbete] using the selected [findMode]
priskund [priskund] Get a list of customer specific pricing per product from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Product id [artnr] using the selected [findMode]
kundnr String Search by [kundnr] using the selected [findMode]
prismat [prismat] Get a list of object specific pricing per product from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artikelnr String Search by Product id [artikelnr] using the selected [findMode]
mnr String Search by [mnr] using the selected [findMode]
kundnr String Search by [kundnr] using the selected [findMode]
pristekn [pristekn] Get a list of technician specific pricing per product from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Product id [artnr] using the selected [findMode]
tekn String Search by [tekn] using the selected [findMode]
tidtyp String Search by Job time type [tidtyp] using the selected [findMode]
projekt [projekt] Get a list of projects from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
kundnr String Search by Customer id [kundnr] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
projgrp String Search by Group [projgrp] using the selected [findMode]
projtyp String Search by Type [projtyp] using the selected [findMode]
saljare String Search by Seller [saljare] using the selected [findMode]
slutdatum Date Search by End date [slutdatum] using the selected [findMode]
startdatum Date Search by Start date [startdatum] using the selected [findMode]
reservd [reservd] Get a list of spare parts for a given object type/model from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Product id [artnr] using the selected [findMode]
modell String Search by [modell] using the selected [findMode]
serienr String Search by Serial [serienr] using the selected [findMode]
antal Decimal Search by Quantity [antal] using the selected [findMode]
artben String Search by Description [artben] using the selected [findMode]
position String Search by Position [position] using the selected [findMode]
reszon [reszon] Get a list of travel zone specific pricing per product from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
sa_gmat [sa_gmat] Get a list of servuce contract pricing per product group from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artgr String Search by Product group [artgr] using the selected [findMode]
nr String Search by [nr] using the selected [findMode]
sa_mat [sa_mat] Get a list of service contract pricing per product from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Product id [artnr] using the selected [findMode]
nr String Search by [nr] using the selected [findMode]
saljare [saljare] Get a list of system defined sellers from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
team String Search by Team [team] using the selected [findMode]
status [status] Get a list of available service order statuses from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Id [nr] using the selected [findMode]
sort Int Search by Ordering [sort] using the selected [findMode]
sublager [sublager] Get a list of stock balance from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by [artnr] using the selected [findMode]
sublager String Search by Inventory [sublager] using the selected [findMode]
hylla String Search by Shelf [hylla] using the selected [findMode]
lagerantal Decimal Search by Quantity [lagerantal] using the selected [findMode]
lagerplats String Search by Inventory [lagerplats] using the selected [findMode]
levnr String Search by Vendor id [levnr] using the selected [findMode]
teknbok [teknbok] Get a list of service order technian booking data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by Order id [jobbnr] using the selected [findMode]
startdat Date Search by Start date [startdat] using the selected [findMode]
starttid Decimal Search by Time [starttid] using the selected [findMode]
tekn String Search by Technician [tekn] using the selected [findMode]
teknboks [teknboks] Get a list of service order technian booking history data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
slutdat Date Search by End dat. [slutdat] using the selected [findMode]
sluttid Decimal Search by End Time [sluttid] using the selected [findMode]
tekn String Search by Tech [tekn] using the selected [findMode]
vecka String Search by Week [vecka] using the selected [findMode]
tekniker [tekniker] Get a list of system defined technicians from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
nr String Search by Tech [nr] using the selected [findMode]
namn String Search by Name [namn] using the selected [findMode]
sublager String Search by Inventory [sublager] using the selected [findMode]
teknjobb [teknjobb] Get a list of service order time sheet data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
startdat Date Search by Arrival [startdat] using the selected [findMode]
starttid Decimal Search by Start time [starttid] using the selected [findMode]
kundnr String Search by [kundnr] using the selected [findMode]
tekn String Search by Technician [tekn] using the selected [findMode]
toner [toner] Get a list of supplies for a given object type/model from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
artnr String Search by Product id [artnr] using the selected [findMode]
modell String Search by [modell] using the selected [findMode]
artben String Search by Description [artben] using the selected [findMode]
mask2 [mask2] Get a list of object data from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
mnr String Search by [mnr] using the selected [findMode]
forecast [forecast] Get a list of forecasted costs from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
recnum Int Search by ID [recnum] using the selected [findMode]
datum Date Search by Date [datum] using the selected [findMode]
kalender [kalender] Get a list of kalender posts from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
datum Date Search by Date [datum] using the selected [findMode]
veckonr Int Search by Week [veckonr] using the selected [findMode]
to_do [to_do] Get a list of to_do from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
datum Date Search by Date [datum] using the selected [findMode]
kl Decimal Search by Hr [kl] using the selected [findMode]
ready Int Search by Completed [ready] using the selected [findMode]
recnum Int Search by ID [recnum] using the selected [findMode]
user String Search by User [user] using the selected [findMode]
group String Search by User group [group] using the selected [findMode]
kund String Search by Customer id [kund] using the selected [findMode]
kund_namn String Search by Customer [kund_namn] using the selected [findMode]
person String Search by Contact [person] using the selected [findMode]
saljare String Search by Seller [saljare] using the selected [findMode]
team String Search by Sales team [team] using the selected [findMode]
todotyp String Search by [todotyp] using the selected [findMode]
rvservs [rvservs] Get a list of rvservs from WinServ
limit Int Limit the number of rows returned
findMode FindMode Specifies the find behaviour of the search arguments.
jobbnr Decimal Search by [jobbnr] using the selected [findMode]
rad Decimal Search by Row [rad] using the selected [findMode]
tekn String Search by [tekn] using the selected [findMode]

Mutations

Operations for mutating WinServ data

Field Argument Type Description
createArtgrupp artgrupp Create new product groups in WinServ
data artgruppCreateObject! The input data object for the mutation
createArtiklar artiklar Create new product data in WinServ
data artiklarCreateObject! The input data object for the mutation
createDelar delar Create new service order row data in WinServ
data delarCreateObject! The input data object for the mutation
createEnhet enhet Create new product sales units in WinServ
data enhetCreateObject! The input data object for the mutation
createFaktura faktura Create new vendor invoices for projects in WinServ
data fakturaCreateObject! The input data object for the mutation
createJobb jobb Create new service order data in WinServ
data jobbCreateObject! The input data object for the mutation
createJobbat jobbat Create new service order action codes data in WinServ
data jobbatCreateObject! The input data object for the mutation
createJobbatg jobbatg Create new service order action description data in WinServ
data jobbatgCreateObject! The input data object for the mutation
createJobbfel jobbfel Create new service order problem code data in WinServ
data jobbfelCreateObject! The input data object for the mutation
createJobbft jobbft Create new service order problem description data in WinServ
data jobbftCreateObject! The input data object for the mutation
createKa_hist ka_hist Create new contract history in WinServ
data ka_histCreateObject! The input data object for the mutation
createKalender kalender Create new kalender post in WinServ
data kalenderCreateObject! The input data object for the mutation
createKordhuv kordhuv Create new customer order data in WinServ
data kordhuvCreateObject! The input data object for the mutation
createKordhuvs kordhuvs Create new customer order history in WinServ
data kordhuvsCreateObject! The input data object for the mutation
createKordrad kordrad Create new customer order rows in WinServ
data kordradCreateObject! The input data object for the mutation
createKordrads kordrads Create new customer order history rows in WinServ
data kordradsCreateObject! The input data object for the mutation
createKunder kunder Create new customer data in WinServ
data kunderCreateObject! The input data object for the mutation
createKundpl kundpl Create new customer price lists in WinServ
data kundplCreateObject! The input data object for the mutation
createKundpl_a kundpl_a Create new customer price list pricing per product in WinServ
data kundpl_aCreateObject! The input data object for the mutation
createLev lev Create new vendors in WinServ
data levCreateObject! The input data object for the mutation
createLevadr levadr Create new customer delivery addresses in WinServ
data levadrCreateObject! The input data object for the mutation
createMaskiner maskiner Create new object data in WinServ
data maskinerCreateObject! The input data object for the mutation
createMaskinty maskinty Create new object type data in WinServ
data maskintyCreateObject! The input data object for the mutation
createMod_bas mod_bas Create new suggested base supplies for a given object type/model in WinServ
data mod_basCreateObject! The input data object for the mutation
createMod_till mod_till Create new accessories for a given object type/model in WinServ
data mod_tillCreateObject! The input data object for the mutation
createOrd_hist ord_hist Create new supply order history in WinServ
data ord_histCreateObject! The input data object for the mutation
createOrd_huv ord_huv Create new supply order data in WinServ
data ord_huvCreateObject! The input data object for the mutation
createOrd_rad ord_rad Create new supply order rows in WinServ
data ord_radCreateObject! The input data object for the mutation
createOrd_rads ord_rads Create new supply order history rows in WinServ
data ord_radsCreateObject! The input data object for the mutation
createOrdtext ordtext Create new customer order text rows in WinServ
data ordtextCreateObject! The input data object for the mutation
createPerson person Create new customer contacts in WinServ
data personCreateObject! The input data object for the mutation
createProjekt projekt Create new projects in WinServ
data projektCreateObject! The input data object for the mutation
createReservd reservd Create new spare parts for a given object type/model in WinServ
data reservdCreateObject! The input data object for the mutation
createSublager sublager Create new stock balance in WinServ
data sublagerCreateObject! The input data object for the mutation
createTeknbok teknbok Create new service order technian booking data in WinServ
data teknbokCreateObject! The input data object for the mutation
createTeknjobb teknjobb Create new service order time sheet data in WinServ
data teknjobbCreateObject! The input data object for the mutation
createToner toner Create new supplies for a given object type/model in WinServ
data tonerCreateObject! The input data object for the mutation
createTo_do_ to_do Create new todo appointment in WinServ
data to_doCreateObject! The input data object for the mutation
updateArtgrupp artgrupp Update existing product groups in WinServ
nr String! Description: Id - Primary Key: Yes - Max length: 10.0
data artgruppUpdateObject! The input data object for the mutation
updateArtiklar artiklar Update existing product data in WinServ
artnr String! Description: Product id - Primary Key: Yes - Max length: 20.0
data artiklarUpdateObject! The input data object for the mutation
updateDelar delar Update existing service order row data in WinServ
jobbnr Decimal! Description: S-order id - Inherits from: [jobb.jobbnr] - Primary Key: Yes - Max length: 12.2
radnr Int! Description: Row no. - Primary Key: Yes - Max length: 12.0
data delarUpdateObject! The input data object for the mutation
updateEnhet enhet Update existing product sales units in WinServ
kod String! Description: Code - Primary Key: Yes - Max length: 10.0
data enhetUpdateObject! The input data object for the mutation
updateFaktura faktura Update existing vendor invoices for projects in WinServ
fakturanr String! Description: Invoice id - Primary Key: Yes - Max length: 16.0
kundnr String! Description: Vend Id - Inherits from: [kunder.kundnr] - Primary Key: Yes - Max length: 14.0
lopnr Int! Description: Number series - Primary Key: Yes - Max length: 12.0
projekt String! Description: Project - Inherits from: [projekt.nr] - Primary Key: Yes - Max length: 12.0
data fakturaUpdateObject! The input data object for the mutation
updateJobb jobb Update existing service order data in WinServ
jobbnr Decimal! Description: Order id - Primary Key: Yes - Auto Incremented: Yes - Max length: 12.2
data jobbUpdateObject! The input data object for the mutation
updateJobbhist jobbhist Update existing service order history data in WinServ
jobbnr Decimal! Description: Order id - Primary Key: Yes - Max length: 12.2
data jobbhistUpdateObject! The input data object for the mutation
updateKa_hist ka_hist Update existing contract history in WinServ
regnr Int! Description: Reg. id - Primary Key: Yes - Auto Incremented: Yes - Max length: 12.0
data ka_histUpdateObject! The input data object for the mutation
updateKalender kalender Update existing kalender posts in WinServ
datum Date! Description: Date - Primary Key: Yes - Max length: 10.0
data kalenderUpdateObject! The input data object for the mutation
updateKordhuv kordhuv Update existing customer order data in WinServ
ordernr Decimal! Description: Order id - Primary Key: Yes - Auto Incremented: Yes - Max length: 12.2
data kordhuvUpdateObject! The input data object for the mutation
updateKordhuvs kordhuvs Update existing customer order history in WinServ
ordernr Decimal! Description: Order id - Primary Key: Yes - Auto Incremented: Yes - Max length: 12.2
data kordhuvsUpdateObject! The input data object for the mutation
updateKordrad kordrad Update existing customer order rows in WinServ
ord_nr Decimal! Inherits from: [kordhuv.ordernr] - Primary Key: Yes - Max length: 12.2
radnr Int! Description: Row no. - Primary Key: Yes - Max length: 12.0
data kordradUpdateObject! The input data object for the mutation
updateKordrads kordrads Update existing customer order history rows in WinServ
ord_nr Decimal! Inherits from: [kordhuvs.ordernr] - Primary Key: Yes - Max length: 12.2
radnr Int! Description: Row no. - Primary Key: Yes - Max length: 12.0
data kordradsUpdateObject! The input data object for the mutation
updateKunder kunder Update existing customer data in WinServ
kundnr String! Description: Customer id - Primary Key: Yes - Max length: 14.0
data kunderUpdateObject! The input data object for the mutation
updateKundpl kundpl Update existing customer price lists in WinServ
nr String! Description: Id - Primary Key: Yes - Max length: 10.0
data kundplUpdateObject! The input data object for the mutation
updateKundpl_a kundpl_a Update existing customer price list pricing per product in WinServ
artnr String! Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Max length: 25.0
enhet String! Description: Unit - Inherits from: [enhet.kod] - Primary Key: Yes - Max length: 10.0
nr String! Inherits from: [kundpl.nr] - Primary Key: Yes - Max length: 10.0
data kundpl_aUpdateObject! The input data object for the mutation
updateLev lev Update existing vendors in WinServ
nr String! Description: Id - Primary Key: Yes - Max length: 20.0
data levUpdateObject! The input data object for the mutation
updateLevadr levadr Update existing customer delivery addresses in WinServ
kundnr String! Description: Customer id - Inherits from: [kunder.kundnr] - Primary Key: Yes - Max length: 14.0
nr String! Description: Id - Primary Key: Yes - Max length: 14.0
data levadrUpdateObject! The input data object for the mutation
updateMaskiner maskiner Update existing object data in WinServ
mnr String! Description: Object id - Primary Key: Yes - Max length: 25.0
data maskinerUpdateObject! The input data object for the mutation
updateMaskinty maskinty Update existing object type data in WinServ
artnr String! Description: Object type - Primary Key: Yes - Max length: 25.0
data maskintyUpdateObject! The input data object for the mutation
updateMod_bas mod_bas Update existing suggested base supplies for a given object type/model in WinServ
artnr String! Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Max length: 20.0
modell String! Inherits from: [maskinty.artnr] - Primary Key: Yes - Max length: 25.0
data mod_basUpdateObject! The input data object for the mutation
updateMod_till mod_till Update existing accessories for a given object type/model in WinServ
artnr String! Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Max length: 20.0
modell String! Inherits from: [maskinty.artnr] - Primary Key: Yes - Max length: 25.0
data mod_tillUpdateObject! The input data object for the mutation
updateOrd_hist ord_hist Update existing supply order history in WinServ
ordernr Decimal! Description: Ord id - Primary Key: Yes - Auto Incremented: Yes - Max length: 12.2
data ord_histUpdateObject! The input data object for the mutation
updateOrd_huv ord_huv Update existing supply order data in WinServ
ordernr Decimal! Description: Order id - Primary Key: Yes - Auto Incremented: Yes - Max length: 12.2
data ord_huvUpdateObject! The input data object for the mutation
updateOrd_rad ord_rad Update existing supply order rows in WinServ
ord_nr Decimal! Inherits from: [ord_huv.ordernr] - Primary Key: Yes - Max length: 12.2
radnr Int! Description: Row no. - Primary Key: Yes - Max length: 12.0
data ord_radUpdateObject! The input data object for the mutation
updateOrd_rads ord_rads Update existing supply order history rows in WinServ
ord_nr Decimal! Inherits from: [ord_hist.ordernr] - Primary Key: Yes - Max length: 12.2
radnr Int! Description: Row no. - Primary Key: Yes - Max length: 12.0
data ord_radsUpdateObject! The input data object for the mutation
updateOrdtext ordtext Update existing customer order text rows in WinServ
ordernr Decimal! Inherits from: [kordhuv.ordernr] - Primary Key: Yes - Max length: 12.2
rad Int! Description: Row index - Primary Key: Yes - Max length: 12.0
data ordtextUpdateObject! The input data object for the mutation
updatePerson person Update existing customer contacts in WinServ
kontaktnr Int! Description: Contact id - Primary Key: Yes - Auto Incremented: Yes - Max length: 12.0
data personUpdateObject! The input data object for the mutation
updateProjekt projekt Update existing projects in WinServ
nr String! Description: Id - Primary Key: Yes - Auto Incremented: Yes - Max length: 12.0
data projektUpdateObject! The input data object for the mutation
updateReservd reservd Update existing spare parts for a given object type/model in WinServ
artnr String! Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Max length: 20.0
modell String! Inherits from: [maskinty.artnr] - Primary Key: Yes - Max length: 25.0
serienr String! Description: Serial - Primary Key: Yes - Max length: 20.0
data reservdUpdateObject! The input data object for the mutation
updateSublager sublager Update existing stock balance in WinServ
artnr String! Inherits from: [artiklar.artnr] - Primary Key: Yes - Max length: 20.0
sublager String! Description: Inventory - Inherits from: [tekniker.nr] - Primary Key: Yes - Max length: 8.0
data sublagerUpdateObject! The input data object for the mutation
updateToner toner Update existing supplies for a given object type/model in WinServ
artnr String! Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Max length: 20.0
modell String! Inherits from: [maskinty.artnr] - Primary Key: Yes - Max length: 25.0
data tonerUpdateObject! The input data object for the mutation
updateTo_do to_do Update existing todo appointment in WinServ
datum Date! Description: Date - Primary Key: Yes - Max length: 10.0
kl Decimal! Description: Hr - Primary Key: Yes - Max length: 2.2
ready Int! Description: Completed - Primary Key: Yes - Max length: 2.0
recnum Int! Description: ID - Primary Key: Yes - Max length: 10.0
user String! Description: User - Inherits from: [user.nr] - Primary Key: Yes - Max length: 30.0
data to_doUpdateObject! The input data object for the mutation

Objects

GetProductPrice

Price information

Field Argument Type Description
cost Decimal! The cost of the product, e.g. price from vendor
discount Decimal! Product discount for the given context
includedInConsumption Boolean! Indicates if the product is free-of-charge on consumption (supply) orders
includedInService Boolean! Indicates if the product is free-of-charge on service orders
price Decimal! The (sales) price of the product
priceWithDiscount Decimal! Calculated price including discount

artenh

Product specific pricing per sales unit

Field Argument Type Description
antal Decimal Description: Inventory reduction factor - Max length: 12.4
artnr String Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
ben String Description: Text - Max length: 60.0
datum Date Description: Date - Max length: 10.0
enhet String Description: Unit - Inherits from: [enhet.kod] - Primary Key: Yes - Searchable: Yes - Max length: 4.0
inpris Decimal Description: Cost - Max length: 12.2
pris Decimal Description: Price - Max length: 12.2
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0

artgrupp

Product Groups

Field Argument Type Description
el_avg Decimal Description: Environment / return fee% - Max length: 12.2
hgrupp String Description: Main group - Max length: 10.0
inpris Decimal Description: Cost - Max length: 12.2
internet Int Description: Web Access - Max length: 2.0
kod String Description: Code - Max length: 6.0
namn String Description: Name - Searchable: Yes - Max length: 30.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 10.0
paslag Decimal Description: Add. charge - Max length: 12.2
sign String Inherits from: [user.nr] - Max length: 30.0
utpris Decimal Description: Price - Max length: 12.2

artiklar

Product data

Field Argument Type Description
amp Int Description: Power outlet (mA) - Max length: 8.0
arbtid Decimal Description: Work hours - Max length: 12.2
art_typ String Description: Product type - Max length: 1.0
artgrupp String Description: Product group - Searchable: Yes - Max length: 10.0
artikeltyp String Description: Product type (custom) - Max length: 4.0
artnr String Description: Product id - Primary Key: Yes - Searchable: Yes - Max length: 20.0
baspris Decimal Description: Base price - Max length: 12.2
ben String Description: Description - Searchable: Yes - Max length: 60.0
ben2 String Description: Descr. 2 - Searchable: Yes - Max length: 60.0
bitmap String Description: Path - Max length: 254.0
certifikatnr String Description: Certificate id - Max length: 20.0
dolj_utrustn Int Description: Ignore in equipment list - Max length: 2.0
ean String Description: SKU - Searchable: Yes - Max length: 20.0
ej_tb_paverkan Int Description: Excluded from sales reports - Max length: 2.0
el_avg Decimal Description: Return fee - Max length: 12.2
enhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
enr String Description: E-No. - Searchable: Yes - Max length: 15.0
ersatt String Description: Replaced by - Max length: 40.0
forp Int Description: Package sales - Max length: 12.0
forp_inkop Int Description: Package amt. - Max length: 12.0
giltighetsdatum Date Description: Valid until - Max length: 10.0
huvudartikel Int Description: Product bundle - Max length: 2.0
hylla String Description: Shelf - Searchable: Yes - Max length: 10.0
inpris Decimal Description: Cost - Max length: 10.4
inpris_utl Decimal Description: Foreign cost - Max length: 12.2
internet Int Description: Service - Max length: 2.0
internet_cust Int Description: Customer - Max length: 2.0
internet_sales Int Description: Sales - Max length: 2.0
kapacitet Decimal Description: Capacity (mA) - Max length: 12.4
karaktar String Description: Character - Max length: 10.0
karaktarstyp String Description: Type - Max length: 20.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
konto String Description: Account - Searchable: Yes - Max length: 6.0
konto_inkop String Description: Purchase account - Max length: 6.0
konto_lager String Description: Inventory account - Inherits from: [tekniker.nr] - Max length: 8.0
kortnr String Description: Card id - Searchable: Yes - Max length: 20.0
krav_enhet Int Description: Require sales unit - Max length: 2.0
krav_orsakskod Int Description: Requires reason code - Max length: 2.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lagerantal Decimal Description: Inventory - Max length: 10.2
lagerartikel String Description: Stock-kept - Inherits from: [tekniker.nr] - Max length: 1.0
lagerplats String Description: Location - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 10.0
larm_arttyp Int Description: Product type - Max length: 2.0
larm_godkand Int Description: Certification status - Max length: 2.0
larm_huvudtyp Int Description: Alarm main type - Max length: 2.0
larm_sektioner Int Description: No. of sections - Max length: 12.0
larmklass String Description: Alarm class - Max length: 1.0
lev String Description: Vendor - Searchable: Yes - Max length: 20.0
lev_avg Int Description: Shipping fee - Max length: 2.0
lev_lagersaldo Decimal Description: Vend inv. bal - Max length: 12.2
lev_namn String Description: Name - Max length: 30.0
levart String Description: Product id - Searchable: Yes - Max length: 20.0
miljo_markt Int Description: Eco-labeled - Max length: 2.0
momskod String Description: Tax code - Max length: 4.0
objekt String Description: Object - Max length: 10.0
omr_fakt Int Description: Exclude from contracts - Max length: 6.0
pris_and_sign String Inherits from: [user.nr] - Max length: 30.0
produktinfo String Description: Path - Max length: 254.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: Discount - Max length: 4.2
rabattklass String Description: Discount class - Max length: 6.0
rot_avdrag Int Description: Deduction - Max length: 2.0
senast_fakt Date Description: Last invoiced - Max length: 10.0
slutdatum Date Description: End date - Max length: 10.0
statistik Int Description: No result calc. impact - Max length: 2.0
status Int Description: Status - Max length: 2.0
strom_larm Decimal Description: Power, alarm (mA) - Max length: 12.4
strom_vila Decimal Description: Power, sleep (mA) - Max length: 12.4
tillv String Description: Manufacturer - Max length: 20.0
tillverk Int Description: Requires manufacturing - Max length: 2.0
toner_racker Int Description: No. of pages - Max length: 12.0
toner_type Int Description: Type - Max length: 2.0
underartkel Int Description: Product bundle member - Max length: 2.0
unr String Description: Prefix - equipment id - Max length: 10.0
upd_enhet Int Description: Don't change unit upon import - Max length: 2.0
utpris Decimal Description: Price - Max length: 10.2
utpris_2 Decimal Description: Price 2 - Max length: 12.2
utpris_3 Decimal Description: Price 3 - Max length: 12.2
utpris_4 Decimal Description: Price 4 - Max length: 12.2
utpris_5 Decimal Description: Price 5 - Max length: 12.2
vagt_inpris Decimal Description: Average cost - Max length: 12.4
valutakod String Description: Currency - Max length: 3.0
vikt Decimal Description: Weight - Max length: 12.4
volt Int Description: Volts - Max length: 8.0
volym Decimal Description: Volume - Max length: 12.4
web_bmp String Description: Path - Max length: 254.0
webinfo String Description: Information - Max length: 1024.0

avbokn1

System defined action codes

Field Argument Type Description
antal Decimal Description: Quantity - Max length: 12.2
artikelnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
backjobb String Description: Rejected work - Max length: 1.0
ben String Description: Description - Max length: 40.0
ej_resultat Int Description: No result summary - Max length: 2.0
ers_points Decimal Description: Job points - Max length: 2.2
faktura Int Description: Always create an invoice (eg customer error) - Max length: 2.0
grupp String Description: Group - Searchable: Yes - Max length: 4.0
internet Int Description: Web Access - Max length: 2.0
iris String Description: Iris code - Max length: 20.0
namn String Description: Name - Searchable: Yes - Max length: 50.0
nr String Description: Code - Primary Key: Yes - Searchable: Yes - Max length: 8.0
omr Decimal Description: Conversion factor - Max length: 2.2
points Decimal Description: Job points - Max length: 2.2
sign String Inherits from: [user.nr] - Max length: 30.0
tid_minuter Int Description: Minutes - Max length: 12.0
utpris Decimal Description: Price - Max length: 12.2

betvillk

System defined payment terms

Field Argument Type Description
dagar Int Description: Days - Max length: 4.0
namn String Description: Name - Searchable: Yes - Max length: 40.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 4.0
sign String Inherits from: [user.nr] - Max length: 30.0

delar

Service order row data

Field Argument Type Description
antal Decimal Description: Quantity - Max length: 12.2
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Searchable: Yes - Max length: 20.0
avv_sign String Inherits from: [user.nr] - Max length: 30.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
datum Date Description: Date - Max length: 10.0
failurecode String Description: Cause - Max length: 10.0
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.4
jobbnr Decimal Description: S-order id - Inherits from: [jobb.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: K-ställe") + " >> - Inherits from: [kst.nr] - Max length: 10.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
lagerplats String Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Ship - Max length: 12.2
lev_datum Date Description: Date - Max length: 10.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Searchable: Yes - Max length: 25.0
mtyp String Inherits from: [maskinty.artnr] - Max length: 25.0
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Controller>> - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: % - Max length: 4.2
rad_total_in Decimal Description: Total - Max length: 12.2
rad_total_ut Decimal Description: Total - Max length: 12.2
radnr Int Description: Row no. - Primary Key: Yes - Searchable: Yes - Max length: 12.0
rest_antal Decimal Description: Remaining - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
tekn_lager String Description: Inventory - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 8.0
text String Description: Description - Max length: 80.0
utpris Decimal Description: Price - Max length: 12.2

delars

Service order row history data

Field Argument Type Description
antal Decimal Description: Shipped qty - Max length: 12.2
art_ben String Description: Description - Max length: 60.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Searchable: Yes - Max length: 20.0
avv_sign String Inherits from: [user.nr] - Max length: 30.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
datum Date Description: Date - Searchable: Yes - Max length: 10.0
failurecode String Description: Cause - Max length: 4.0
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.4
jobbnr Decimal Inherits from: [jobbhist.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Inherits from: [kst.nr] - Max length: 10.0
kundnr String Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
lev String Description: Vendor - Max length: 20.0
lev_datum Date Description: Shpt date - Max length: 10.0
mnr String Inherits from: [maskiner.mnr] - Searchable: Yes - Max length: 25.0
mtyp String Inherits from: [maskinty.artnr] - Searchable: Yes - Max length: 25.0
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Guiding - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: % - Max length: 4.2
rad_nr Int Description: Row - Primary Key: Yes - Searchable: Yes - Max length: 4.0
rad_total_in Decimal Description: Total - Max length: 12.2
rad_total_ut Decimal Description: Total - Max length: 12.2
rest_antal Decimal Description: Remain. Qty - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
tekn_lager String Description: Inventory - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 8.0
text String Description: Text - Max length: 80.0
utpris Decimal Description: Price - Max length: 12.2

enhet

Product sales units

Field Argument Type Description
antal Decimal Description: Inventory reduction factor - Max length: 12.4
datum Date Description: Date - Max length: 10.0
kod String Description: Code - Primary Key: Yes - Searchable: Yes - Max length: 10.0
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
text String Description: Text - Max length: 30.0

faktura

Vendor invoices for projects

Field Argument Type Description
belopp Decimal Description: Amount - Max length: 12.2
belopp_ex_moms Decimal Description: Ex tax - Max length: 12.2
faktdat Date Description: Inv date - Searchable: Yes - Max length: 10.0
fakturanr String Description: Invoice id - Primary Key: Yes - Searchable: Yes - Max length: 16.0
forfdat Date Description: Due date - Max length: 10.0
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Inherits from: [kst.nr] - Max length: 10.0
kundnr String Description: Vend Id - Inherits from: [kunder.kundnr] - Primary Key: Yes - Searchable: Yes - Max length: 14.0
lopnr Int Description: Number series - Primary Key: Yes - Searchable: Yes - Max length: 12.0
moms Decimal Description: Tax - Max length: 12.2
pdf String Description: Path - Max length: 254.0
projekt String Description: Project - Inherits from: [projekt.nr] - Primary Key: Yes - Searchable: Yes - Max length: 12.0
user String Inherits from: [user.nr] - Max length: 30.0
utl_belopp Decimal Description: Foreign amount - Max length: 12.2
valuta String Description: Currency - Max length: 3.0
wsorderid Decimal Description: Order id >> - Searchable: Yes - Max length: 14.2
wsordertype String Description: Order type - Searchable: Yes - Max length: 1.0

felkod1

System defined problem codes

Field Argument Type Description
antal Decimal Description: Quantity - Max length: 12.2
artben String Description: Description - Max length: 30.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 25.0
grupp String Description: Group - Searchable: Yes - Max length: 2.0
internet Int Description: Web Access - Max length: 2.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
namn String Description: Name - Searchable: Yes - Max length: 50.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 10.0
prio String Description: Priority - Max length: 1.0
sign String Inherits from: [user.nr] - Max length: 30.0
tid_minuter Int Description: Minutes - Max length: 12.0
utpris Decimal Description: Price - Max length: 12.2
worddoc String Description: Document - Max length: 254.0

intern

System defined division codes

Field Argument Type Description
bri_backup_dir String Description: Order file backup folder - Max length: 128.0
bri_client_nr String Description: Client number - Max length: 32.0
bri_enable Int Description: Activate - Max length: 2.0
bri_enable_stoc Int Description: Enable stock management - Max length: 2.0
bri_exp_as_inv Int Description: Export as invoice - Max length: 2.0
bri_exp_cust Int Description: Export customers - Max length: 2.0
bri_exp_items Int Description: Export items - Max length: 2.0
bri_exp_orders Int Description: Export orders - Max length: 2.0
bri_exp_supp Int Description: Export suppliers - Max length: 2.0
bri_output_dir String Description: Order file export folder - Max length: 128.0
bri_registr_dir String Description: Register file export folder - Max length: 128.0
f_adress String Description: Visiting address - Max length: 40.0
f_bank String Description: Bank - Max length: 33.0
f_bg String Description: Routing # - Max length: 20.0
f_box String Description: Box - Max length: 40.0
f_email String Description: E-mail - Max length: 100.0
f_faktnr Int Description: Invoice id - Max length: 12.0
f_fax String Description: Fax - Max length: 40.0
f_internet String Description: URL - Max length: 40.0
f_logga String Description: Login - Max length: 254.0
f_logga_web String Description: Web Logo - Max length: 254.0
f_namn String Description: Company - Max length: 40.0
f_org String Description: EIN - Max length: 40.0
f_ort String Description: City - Max length: 40.0
f_pg String Description: Account # - Max length: 20.0
f_pnr String Description: Zip code - Max length: 40.0
f_tel String Description: Phone - Max length: 40.0
f_vat String Description: Tax code - Max length: 40.0
fnx_activated Int Description: Enable fortnox sync for division - Max length: 2.0
fnx_def_ret_pl String Description: Default pricelist for retail price - Max length: 10.0
fnx_ordbak_dir String Description: Order file backup folder - Max length: 254.0
kod String Description: Code - Primary Key: Yes - Searchable: Yes - Max length: 10.0
kundnr_prefix String Description: Customer id prefix - Inherits from: [kunder.kundnr] - Max length: 1.0
msnav_domain String Description: Domain - Max length: 128.0
msnav_enable Int Description: Activate - Max length: 2.0
msnav_prefix String Description: Prefix - Max length: 1.0
msnav_url String Description: URL - Max length: 128.0
namn String Description: Name - Searchable: Yes - Max length: 40.0
nav_activated Int Description: Activate - Max length: 2.0
nav_backup_dir String Description: Backup folder - Max length: 254.0
nav_cust_prefix String Description: Customer prefix - Max length: 10.0
nav_input_dir String Description: Input folder Kunder.txt - Max length: 254.0
nav_output_dir String Description: Output folder Nav .ORD - Max length: 254.0
order_prefix String Description: Order prefix - Max length: 10.0
ordernr Int Description: Order id - Max length: 12.0
sokvag String Description: Folder path - Max length: 60.0
sokvag_txtfiler String Description: Folder (text files) - Max length: 60.0

intevent

Generated events from intmall that has not yet been turned into items

Field Argument Type Description
intmallnr Int Description: Intmallnr - Primary Key: Yes - Searchable: Yes - Max length: 14.0
jobbmallnr String Description: Jobbmallnr - Primary Key: Yes - Searchable: Yes - Max length: 8.0
mnr String Description: Mnr - Inherits from: [maskiner.mnr] - Primary Key: Yes - Searchable: Yes - Max length: 25.0
schedule_date Date Description: Schedule date - Searchable: Yes - Max length: 10.0
trigger_date Date Description: Trigger date - Searchable: Yes - Max length: 10.0

intmall

Recurrence pattern used to create recurring event

Field Argument Type Description
ar_dag Int

Description: Ar dag - Max length: 2.0

ar_man Int

Description: Ar man - Max length: 2.0

create_dat Date

Description: Create dat - Max length: 10.0

dagar_innan Int

Description: Dagar innan - Max length: 2.0

forborder Int

Description: Supply order - Max length: 2.0

fre Int

Description: Fre - Max length: 2.0

jprofil String

Description: Job profile - Max length: 8.0

kod String

Description: Recurrence pattern - Max length: 250.0

last_checked Date

Description: Last inspection date - Max length: 10.0

lor Int

Description: Lor - Max length: 2.0

mnr String

Description: Mnr - Inherits from: [maskiner.mnr] - Primary Key: Yes - Searchable: Yes - Max length: 25.0

mon Int

Description: Mon - Max length: 2.0

namn String

Description: Templates - Searchable: Yes - Max length: 50.0

ons Int

Description: Wed - Max length: 2.0

periodicet Int

Description: Periodicet - Max length: 2.0

recnum Int

Description: INTMALLNR - Primary Key: Yes - Max length: 10.0

serviceorder Int

Description: Service order - Max length: 2.0

slutdat Date

Description: Slutdat - Max length: 10.0

sluttid Decimal

Description: Sluttid - Max length: 2.2

son Int

Description: Son - Max length: 2.0

startdat Date

Description: Startdat - Max length: 10.0

starttid Decimal

Description: Starttid - Max length: 2.2

tis Int

Description: Tis - Max length: 2.0

todo Int

Description: Todo - Max length: 2.0

tor Int

Description: Tor - Max length: 2.0

und_kod String

Description: Und kod - Max length: 250.0

und_namn String

Description: Exception - Max length: 30.0

upprepa Int

Description: Upprepa - Max length: 2.0

upprepa_period Int

Description: Upprepa period - Max length: 2.0

jobb

Service order data

Field Argument Type Description
arbtid Decimal Description: Worked time - Max length: 12.2
avbk1_n String Description: Swap Object - Max length: 30.0
avbk2_n String Description: Product code - Max length: 30.0
avbk3_n String Description: W2W - Max length: 30.0
avbokn4 String Description: Shelf - Max length: 5.0
avv_atg String Description: Deviation action - Max length: 4.0
avv_kat String Description: Deviation category - Max length: 4.0
avv_kod String Description: Deviation code - Max length: 4.0
avv_lev String Description: Deviation vendor - Max length: 20.0
ber_arbtid Decimal Description: Estimated work time - Max length: 12.2
ber_fakt Decimal Description: Invoice total - Max length: 12.2
ber_fakt_ink Decimal Description: Total w tax - Max length: 12.2
ber_kostn Decimal Description: Total cost - Max length: 12.2
ber_reskm Decimal Description: Tvl dist - Max length: 12.2
ber_restid Decimal Description: Tvl time - Max length: 12.2
best_nr Decimal Description: Purchase order - Max length: 12.2
bestordernr String Description: Purch order id - Max length: 20.0
betvillk String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Technician bonus - Max length: 2.0
byggmoms Int Description: Revesed tax - Max length: 2.0
deldat Date Description: Assigned - Searchable: Yes - Max length: 10.0
deltid Decimal Description: Time - Searchable: Yes - Max length: 2.2
distrikt String Description: District - Searchable: Yes - Max length: 4.0
doc String Description: Document - Max length: 254.0
down Int Description: Out of order - Max length: 2.0
ds_active Int Description: Use this order for draw scheduling - Max length: 2.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Your order - Max length: 30.0
fastighetsbet String Description: Description of property - Max length: 25.0
fax String Description: Fax - Max length: 30.0
fkod1 String Description: Code - Max length: 5.0
fkod2_n String Description: Warranty reference - Max length: 30.0
fkod3_n String Description: Old version - Max length: 30.0
fkod4_n String Description: Swap version - Max length: 30.0
gan_nr String Description: Waybill id - Max length: 30.0
gar_fritext String Description: Text - Max length: 1024.0
gar_inkop String Description: Purchased - Max length: 20.0
gar_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
gar_kvitto String Description: Receipt / invoice - Max length: 20.0
garanti Int Description: Warranty - Max length: 2.0
gata String Description: Visiting address - Searchable: Yes - Max length: 40.0
gata2 String Description: Visiting addr 2 - Max length: 30.0
hpordernr String Description: Foreign order - Searchable: Yes - Max length: 20.0
hyres_cb Int Description: Rental - Max length: 2.0
hyres_mnr String Description: Loan - Max length: 20.0
imei_ut String Description: Object type - Max length: 20.0
indat Date Description: Called in - Searchable: Yes - Max length: 10.0
install String Description: Customer - Searchable: Yes - Max length: 50.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
intid Decimal Description: Time - Searchable: Yes - Max length: 2.2
jobbnr Decimal Description: Order id - Primary Key: Yes - Searchable: Yes - Auto Incremented: Yes - Max length: 12.2
jobbprio String Description: Priority - Searchable: Yes - Max length: 1.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kf Int Description: Cost proposal - Max length: 2.0
kfkr Decimal Description: Cost limit - Max length: 12.2
kontakt Int Description: Contact - Max length: 2.0
kontakta String Description: Contact - Max length: 60.0
kontakta_email String Description: E-mail - Max length: 100.0
kontakta_mobil String Description: Mobile - Max length: 20.0
kontakta_tel String Description: Phone - Max length: 20.0
kopplad Int Description: Connected - Max length: 2.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kundnr String Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
lev_nr String Description: Shipping address - Inherits from: [levadr.nr] - Max length: 10.0
levadrkund String Inherits from: [levadr.nr] - Max length: 10.0
levadrnr String Inherits from: [levadr.nr] - Max length: 10.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Searchable: Yes - Max length: 25.0
mobil String Description: Mobile - Max length: 20.0
modell String Description: Name - Searchable: Yes - Max length: 30.0
momskod String Description: Tax code - Max length: 4.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
offertnr Decimal Description: Quote id - Max length: 12.2
offertordernr Decimal Description: Order id - Max length: 12.2
orgjobbnr Decimal Description: Original order - Max length: 12.2
ort String Description: City - Searchable: Yes - Max length: 30.0
personnr String Description: SSN - Max length: 15.0
plac String Description: Location - Max length: 40.0
plandat Date Description: Planned - Searchable: Yes - Max length: 10.0
plansdat Date Description: Planned end - Max length: 10.0
planstid Decimal Description: Time end - Max length: 2.2
plantid Decimal Description: Time - Searchable: Yes - Max length: 2.2
pnr String Description: Zip/city - Max length: 10.0
prislista String Description: Product price list - Max length: 20.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
projtyp String Description: Project type - Max length: 4.0
qualcode String Description: Swap code - Max length: 4.0
ref String Description: Caller - Max length: 60.0
reg_av String Description: Reg. by - Max length: 30.0
region String Description: State - Max length: 4.0
reskm Decimal Description: Tvl dist - Max length: 12.2
responst Decimal Description: Response time - Max length: 12.2
restid Decimal Description: Tvl time - Max length: 12.2
retur_dat Date Description: Date - Max length: 10.0
retur_lev String Description: Vendor - Max length: 20.0
retur_nr String Description: RMA no. - Max length: 20.0
retur_ref String Description: Parcel no./Ref - Max length: 20.0
retur_status String Description: Status - Max length: 4.0
retur_text String Description: Text - Max length: 512.0
rot_avdrag Int Description: Deduction - Max length: 2.0
routenr Int Description: Route no. - Searchable: Yes - Max length: 12.0
rv1 Int Description: Current - Max length: 12.0
rv1_kopior Int Description: Quantity - Max length: 12.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
slutdat Date Description: End date - Max length: 10.0
sluttid Decimal Description: Time - Max length: 2.2
startdat Date Description: Start date - Searchable: Yes - Max length: 10.0
starttid Decimal Description: Time - Searchable: Yes - Max length: 2.2
status String Description: Status - Inherits from: [status.nr] - Max length: 20.0
tb_minuter Int Description: Minutes - Max length: 12.0
tb_res_minuter Int Description: Minutes - Max length: 12.0
team String Description: Team - Inherits from: [team.nr] - Max length: 4.0
tekn String Description: Technician - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 8.0
tekn_delar String Inherits from: [tekniker.nr] - Max length: 8.0
tekn2 String Inherits from: [tekniker.nr] - Max length: 8.0
tekn3 String Inherits from: [tekniker.nr] - Max length: 8.0
tekn4 String Inherits from: [tekniker.nr] - Max length: 8.0
tel String Description: Phone - Max length: 60.0
tillb_cb Int Description: Extras - Max length: 2.0
tillb_text String Description: Accessories - Max length: 30.0
totfakt Decimal Description: Total - Max length: 12.2
totkostn Decimal Description: Cost - Max length: 12.2
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
vikt Decimal Description: Weight - Max length: 12.4
volym Decimal Description: Volume - Max length: 12.4
weborder Int Description: Web order - Max length: 2.0

jobbat

Service order action codes data

Field Argument Type Description
jobbnr Decimal Inherits from: [jobb.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
rad Int Description: Row index - Primary Key: Yes - Searchable: Yes - Max length: 12.0
textrad String Description: Text row - Max length: 200.0

jobbatg

Service order action description data

Field Argument Type Description
jobbnr Decimal Inherits from: [jobb.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
kod String Description: Code - Max length: 8.0
textrad String Description: Text row - Max length: 80.0

jobbatgh

Service order action description history data

Field Argument Type Description
jobbnr Decimal Inherits from: [jobbhist.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
kod String Description: Code - Max length: 8.0
textrad String Description: Actions - Max length: 80.0

jobbath

Service order action codes history data

Field Argument Type Description
jobbnr Decimal Inherits from: [jobbhist.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
rad Int Description: Row index - Primary Key: Yes - Searchable: Yes - Max length: 12.0
textrad String Description: Text row - Max length: 200.0

jobbfel

Service order problem code data

Field Argument Type Description
jobbnr Decimal Inherits from: [jobb.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
kod String Description: Code - Max length: 8.0
textrad String Description: Code Description - Max length: 80.0

jobbfelh

Service order problem code history data

Field Argument Type Description
jobbnr Decimal Inherits from: [jobbhist.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
kod String Description: Code - Max length: 8.0
textrad String Description: Job description - Max length: 80.0

jobbft

Service order problem description data

Field Argument Type Description
jobbnr Decimal Inherits from: [jobb.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
rad Int Description: Row index - Primary Key: Yes - Searchable: Yes - Max length: 12.0
textrad String Description: Text row - Max length: 200.0

jobbfth

Service order problem description history data

Field Argument Type Description
jobbnr Decimal Inherits from: [jobbhist.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
rad Int Description: Row index - Primary Key: Yes - Searchable: Yes - Max length: 12.0
textrad String Description: Text row - Max length: 200.0

jobbhist

Service order history data

Field Argument Type Description
arbkostn Decimal Description: Work cost - Max length: 12.2
arbtid Decimal Description: Work hours - Max length: 12.2
avbk1_n String Description: Swap Object - Max length: 30.0
avbk2_n String Description: Product code - Max length: 30.0
avbk3_n String Description: W2W - Max length: 30.0
avbokdat Date Description: Finished date. - Max length: 10.0
avbokn1 String Description: Action code 1 - Max length: 5.0
avbokn2 String Description: Action code 2 - Max length: 5.0
avbokn3 String Description: Action code 3 - Max length: 5.0
avbokuser String Description: Finished by - Max length: 30.0
avd String Description: Department - Max length: 30.0
avtalnr String Description: Contract id - Max length: 20.0
avv_analys String Description: Analysis - Max length: 50.0
avv_atg String Description: Deviation action - Max length: 4.0
avv_beslut String Description: Decisions - Max length: 50.0
avv_efter String Description: Post analysis - Max length: 50.0
avv_kat String Description: Deviation category - Max length: 4.0
avv_kod String Description: Deviation code - Max length: 4.0
avv_lev String Description: Deviation vend. - Max length: 20.0
ber_arbtid Decimal Description: Work hours - Max length: 12.2
ber_delar Decimal Description: Parts - Max length: 12.2
ber_fakt Decimal Description: Invoice total - Max length: 12.2
ber_kostn Decimal Description: Costs - Max length: 12.2
ber_reskm Decimal Description: Tvl dist - Max length: 12.2
ber_restid Decimal Description: Tvl time - Max length: 12.2
best_nr Decimal Description: Purch. order - Max length: 12.2
betvillk String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
byggmoms Int Description: Revesed tax - Max length: 2.0
deldat Date Description: Assigned - Max length: 10.0
distrikt String Description: District - Searchable: Yes - Max length: 4.0
doc String Description: Document - Max length: 100.0
dolj_web Int Description: Hide web - Max length: 2.0
down Int Description: Out of order - Max length: 2.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Tag - Max length: 30.0
fakt_belopp Decimal Description: Invoice amount - Max length: 12.2
faktdatum Date Description: Date - Max length: 10.0
faktnr Int Description: Inv.no - Searchable: Yes - Max length: 12.0
faktura String Description: Invoice - Max length: 1.0
fakturerat String Description: Invoice Basis - Max length: 1.0
fax String Description: Fax - Max length: 30.0
fkod1 String Description: Code - Max length: 5.0
fkod2_n String Description: Warranty reference - Max length: 30.0
fkod3_n String Description: Old version - Max length: 30.0
fkod4_n String Description: Swap version - Max length: 30.0
fritext String Description: Text - Max length: 1024.0
gan_nr String Description: Waybill id - Max length: 30.0
gar_fritext String Description: Internal notes - Max length: 1024.0
gar_inkop String Description: Warranty - Max length: 20.0
gar_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
gar_kvitto String Description: Receipt - Max length: 20.0
garanti Int Description: Warranty - Max length: 2.0
gata String Description: Visiting address - Max length: 30.0
gata2 String Description: Visiting addr 2 - Max length: 30.0
hpordernr String Description: Foreign id - Searchable: Yes - Max length: 20.0
hyres_mnr String Description: Loan - Max length: 20.0
indat Date Description: Called in - Searchable: Yes - Max length: 10.0
install String Description: Installed - Max length: 50.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
intid Decimal Description: Time - Searchable: Yes - Max length: 2.2
jobbnr Decimal Description: Order id - Primary Key: Yes - Searchable: Yes - Max length: 12.2
jobbprio String Description: Priority - Max length: 1.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Searchable: Yes - Max length: 2.0
kategori String Description: Category - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kontakta String Description: Contact - Max length: 30.0
kontakta_email String Description: Contact e-mail - Max length: 100.0
kontakta_mobil String Description: Contact mobile - Max length: 20.0
kontakta_tel String Description: Contact tel - Max length: 20.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
land String Description: Country - Max length: 30.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Searchable: Yes - Max length: 25.0
mobil String Description: Mobile - Max length: 20.0
modell String Description: Object type - Searchable: Yes - Max length: 30.0
momskod String Description: Tax code - Max length: 4.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Searchable: Yes - Max length: 25.0
offertnr Decimal Description: Quote id - Max length: 12.2
offertordernr Decimal Description: Quote id - Max length: 12.2
orgjobbnr Decimal Description: Original id - Max length: 12.2
ort String Description: City - Max length: 30.0
plac String Description: Location - Max length: 30.0
plandat Date Description: Planned - Max length: 10.0
platskod String Description: Location code - Max length: 4.0
pnr String Description: Zip/city - Max length: 10.0
prodkod String Description: Prod - Searchable: Yes - Max length: 4.0
projekt String Description: Project id - Inherits from: [projekt.nr] - Max length: 12.0
projtyp String Description: Project type - Max length: 4.0
qualcode String Description: Swap code - Max length: 4.0
ref String Description: Caller - Max length: 60.0
reg_av String Description: Received - Max length: 30.0
resdelkostn Decimal Description: Parts costs - Max length: 12.2
reskm Decimal Description: Tvl dist - Max length: 12.2
reskostn Decimal Description: Traveling costs - Max length: 12.2
responst Decimal Description: Response time - Max length: 12.2
restid Decimal Description: Tvl time - Max length: 12.2
rot_avdrag Int Description: Deduction - Max length: 2.0
rv1 Int Description: Meter1 - Max length: 12.0
rv1_kopior Int Description: Quantity - Max length: 12.0
rv2 Int Description: Meter2 - Max length: 12.0
rv2_kopior Int Description: Quantity - Max length: 12.0
rv3 Int Description: Meter3 - Max length: 12.0
rv4 Int Description: Meter4 - Max length: 12.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
segment String Description: Segm - Searchable: Yes - Max length: 4.0
servicedag Int Description: Service day - Max length: 2.0
servtyp String Description: Service type - Max length: 4.0
slutdat Date Description: End date - Searchable: Yes - Max length: 10.0
sluttid Decimal Description: Time - Searchable: Yes - Max length: 2.2
startdat Date Description: Start date - Max length: 10.0
startt Decimal Description: Start time - Max length: 12.2
starttid Decimal Description: Time - Max length: 2.2
tb_minuter Int Description: Min - Max length: 12.0
tb_saldo Int Description: Time-bank - Max length: 12.0
team String Description: Team - Inherits from: [team.nr] - Max length: 4.0
tekn String Description: Tech - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 8.0
tel String Description: Phone - Max length: 60.0
tillb_text String Description: Accessories - Max length: 30.0
totfakt Decimal Description: Total - Max length: 12.2
totkostn Decimal Description: Total cost - Max length: 12.2
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
weborder Int Description: Web order - Max length: 2.0

jobbtekn

Service order time sheet history data

Field Argument Type Description
arbtid Decimal Description: Work time - Max length: 12.2
avv_kod String Description: DEV code - Max length: 10.0
delaycode String Description: Time type - Max length: 10.0
jobbnr Decimal Inherits from: [jobbhist.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
jobbstatus String Inherits from: [status.nr] - Max length: 20.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kommentar String Description: Text - Max length: 100.0
kundnr String Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 10.0
plandat Date Description: Departure - Max length: 10.0
plantid Decimal Description: Time - Max length: 2.2
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
repaircode String Description: Cause - Max length: 10.0
reskm Decimal Description: Distance - Max length: 12.2
restid Decimal Description: Tvl time - Max length: 12.2
restid_min Int Description: Tvl min - Max length: 12.0
slutdat Date Description: End dat. - Searchable: Yes - Max length: 10.0
sluttid Decimal Description: Time - Searchable: Yes - Max length: 2.2
startdat Date Description: Start dat. - Searchable: Yes - Max length: 10.0
starttid Decimal Description: Time - Searchable: Yes - Max length: 2.2
tb_minuter Int Description: Min - Max length: 12.0
tb_resminuter Int Description: Min - Max length: 12.0
tekn String Description: Tech - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 8.0
trakt Decimal Description: Subs. - Max length: 12.2
travel_end Date Description: Homecoming - Max length: 10.0
travel_end_time Decimal Description: Time - Max length: 2.2
utlagg Decimal Description: Expense - Max length: 12.2

jobbtyp

System defined job types

Field Argument Type Description
antal Decimal Description: Quantity - Max length: 12.2
artikelnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
back Int Description: Include rejected work - Max length: 2.0
color String Description: Color - Max length: 20.0
dagar_innan Int Description: Create service order - Max length: 12.0
ej_anmdat_fakt Int Description: Don't show called in date on invoice - Max length: 2.0
ej_faktura Int Description: Warranty, No invoice - Max length: 2.0
ej_krav_anm Int Description: Caller not required at registration - Max length: 2.0
ej_krav_tel_anm Int Description: Phone not required at registration - Max length: 2.0
ej_rv_statistik Int Description: Ignore meter reading - Max length: 2.0
ej_statistik Int Description: Exclude in statistics - Max length: 2.0
ej_tb_paverkan Int Description: No update of time-bank - Max length: 2.0
ej_upd_estim Int Description: No update of amount/day - Max length: 2.0
email Int Description: Send e-mail - Max length: 2.0
email_dgr_efter Int Description: Days - Max length: 2.0
email_dgr_innan Int Description: Days - Max length: 2.0
email_efter Int Description: Send e-mail - Max length: 2.0
email_jstatus String Description: Job status - Inherits from: [status.nr] - Max length: 20.0
ig_kalender Int Description: Ignore calendar (emergency work) - Max length: 2.0
jobb_del Int Description: Send e-mail when assigning jobs. Send to customer or to > - Max length: 2.0
jobb_slut Int Description: Send e-mail when finished orders to customer or to > - Max length: 2.0
jobb_slut_todo Int Description: Send to-do to caller after finished service order - Max length: 2.0
jobb_ut Int Description: Send e-mail when completed orders to customer or to > - Max length: 2.0
jobb_ut_todo Int Description: Send to-do to caller after service order is completed - Max length: 2.0
jobbprio String Description: Priority - Max length: 1.0
kalender_bild String Description: Calendar Icon - Max length: 100.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
krav_kontakta Int Description: Require a contact when changing status from called in - Max length: 2.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
namn String Description: Name - Searchable: Yes - Max length: 40.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 2.0
ny_jobbtyp String Description: New job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
nytt_status String Description: New status - Max length: 20.0
pm Int Description: Preventive maintenance (PM) - Max length: 2.0
protokoll String Description: Checklist - Max length: 10.0
rt String Description: Calculate the response time - Max length: 1.0
rt_avtal Decimal Description: During contract - Max length: 12.2
rt_ej_avtal Decimal Description: After expiration - Max length: 12.2
skapa_email_fil Int Description: Create log file when finished, YYYYMMDD-Order.txt - Max length: 2.0
sms Int Description: Send SMS - Max length: 2.0
sms_dgr_efter Int Description: Days - Max length: 2.0
sms_dgr_innan Int Description: Days - Max length: 2.0
sms_efter Int Description: Send SMS - Max length: 2.0
sms_jstatus String Description: Job status - Inherits from: [status.nr] - Max length: 20.0
st String Description: Calculate the starting time - Max length: 1.0
st_avtal Decimal Description: Start time contr. - Max length: 12.2
st_ej_avtal Decimal Description: Start time no contr. - Max length: 12.2
tb_faktor Decimal Description: Time-bank factor - Max length: 2.2
tillf Int Description: Calculate reliability - Max length: 2.0
uppd_nasta_serv Int Description: Update date for next service - Max length: 2.0
utpris Decimal Description: Price - Max length: 12.2
utskr_so_hist Int Description: Always print service order history on service order - Max length: 2.0
varna_ej_anm Int Description: Don't warn if object called in earlier - Max length: 2.0
visa_dagar Int Description: Days before changing status - Max length: 12.0
visa_faktura Int Description: Show contract info on invoices - Max length: 2.0
visa_salj_kal Int Description: Show in sales calendar - Max length: 2.0

ka_hist

Contract history

Field Argument Type Description
ack_kop_kr Decimal Description: Total - Max length: 12.2
ack_over_cb String Description: Meter rule - Max length: 1.0
ack_rv1 Int Description: Accum - Max length: 12.0
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
avtalnr String Description: Contract id - Max length: 20.0
block_antal Int Description: Quantity - Max length: 12.0
block_from Int Description: From - Max length: 12.0
block_tom Int Description: To - Max length: 12.0
dagar Int Description: Days - Max length: 12.0
datum Date Description: Date - Searchable: Yes - Max length: 10.0
datum_fgreg Date Description: Previous reading - Max length: 10.0
datum_reg Date Description: Registered - Max length: 10.0
debper String Description: Billing cycle - Searchable: Yes - Max length: 4.0
debtyp String Description: Bill type - Max length: 1.0
distrikt String Description: District - Searchable: Yes - Max length: 4.0
dolj_web Int Description: Hide web - Max length: 2.0
erorder String Description: Tag - Max length: 30.0
erorder2 String Description: Tag 2 - Max length: 30.0
erref String Description: Registered by - Max length: 30.0
fakt_dat_rv1 Date Description: Last inv. date - Max length: 10.0
faktbelopp Decimal Description: Invoice amount - Max length: 12.2
faktdatum Date Description: Invoice date - Max length: 10.0
faktnr Int Description: Invoice id - Searchable: Yes - Max length: 12.0
fakturerat String Description: Invoice Basis - Max length: 1.0
finansierad Int Description: Service Contract not billed - Max length: 2.0
from_datum Date Description: From date - Max length: 10.0
grundkopior Decimal Description: Included number - Max length: 12.2
grundpris Decimal Description: Service - Max length: 12.2
index_rad Decimal Description: Index - Max length: 12.2
inpris_grundavg Decimal Description: Cost - Max length: 12.2
inpris_rv1 Decimal Description: Cost - Max length: 12.4
install String Description: Customer - Max length: 50.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
jour Decimal Description: Emergency - Max length: 12.2
kategori String Description: Category - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
koptyp String Description: Financing type - Max length: 4.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Searchable: Yes - Max length: 25.0
modell String Description: Object type - Searchable: Yes - Max length: 30.0
momskod String Description: Tax code - Max length: 4.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Searchable: Yes - Max length: 25.0
platskod String Description: Location code - Max length: 4.0
prodkod String Description: Product area - Searchable: Yes - Max length: 6.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
projektnr_javg String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r1 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r10 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r2 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r3 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r4 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r5 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r6 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r7 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r8 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r9 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_savg String Description: Project - Inherits from: [projekt.nr] - Max length: 15.0
rad10pris Decimal Description: Row 10 price - Max length: 12.2
rad1pris Decimal Description: Row 1 price - Max length: 12.2
rad2pris Decimal Description: Row 2 price - Max length: 12.2
rad3pris Decimal Description: Row 3 price - Max length: 12.2
rad4pris Decimal Description: Row 4 price - Max length: 12.2
rad5pris Decimal Description: Row 5 price - Max length: 12.2
rad6pris Decimal Description: Row 6 price - Max length: 12.2
rad7pris Decimal Description: Row 7 price - Max length: 12.2
rad8pris Decimal Description: Row 8 price - Max length: 12.2
rad9pris Decimal Description: Row 9 price - Max length: 12.2
regnr Int Description: Reg. id - Primary Key: Yes - Searchable: Yes - Auto Incremented: Yes - Max length: 12.0
rv1 Int Description: Meter1 - Max length: 12.0
rv1apris Decimal Description: Price per pc - Max length: 12.4
rv1kopior Int Description: Quantity - Max length: 12.0
rv1kr Decimal Description: Price - Max length: 12.2
rv1over Int Description: Over - Max length: 12.0
rv1staff1 Int Description: Tier limit - Max length: 12.0
rv1staffkr1 Decimal Description: Tier pricing - Max length: 12.2
rv2 Int Description: Meter2 - Max length: 12.0
rv2kopior Int Description: Quantity - Max length: 12.0
rv2kr Decimal Description: Meter2 amount - Max length: 12.2
rv2over Int Description: Over - Max length: 12.0
rv3 Int Description: Meter3 - Max length: 12.0
rv4 Int Description: Meter4 - Max length: 12.0
segment String Description: Segment - Searchable: Yes - Max length: 6.0
serv_typ String Description: Service type - Max length: 4.0
status String Description: Status - Max length: 1.0
sum_kop_avg Decimal Description: Total - Max length: 12.2
tb_avgift Decimal Description: TB fee - Max length: 12.2
tb_avgift_over Decimal Description: TB over min. - Max length: 12.2
tb_overtimmar Decimal Description: TB over - Max length: 12.2
tekn String Description: Seller - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 8.0
text String Description: Text - Max length: 30.0
tom_datum Date Description: To date - Max length: 10.0
typ String Description: Type - Max length: 1.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
valuta_kurs Decimal Description: Training - Max length: 12.2
var_ref String Description: Our reference - Max length: 30.0
varav_hyra_rv1 Decimal Description: Rental part - Max length: 12.4
varav_hyra_serv Decimal Description: Rental part - Max length: 12.2

kampart

Special webshop offer pricing

Field Argument Type Description
artben String Description: Description - Max length: 60.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
datum Date Description: Date - Max length: 10.0
fritext String Description: Text - Max length: 200.0
kundnr String Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
nr String Inherits from: [kampanj.nr] - Primary Key: Yes - Searchable: Yes - Max length: 4.0
pris Decimal Description: Price - Max length: 12.2

kbar

System defined cost units

Field Argument Type Description
namn String Description: Name - Searchable: Yes - Max length: 30.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 10.0

kordhuv

Customer order data

Field Argument Type Description
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
anledning String Description: Reason - Max length: 4.0
arbtid Decimal Description: Work hours - Max length: 12.2
avd String Description: Dept. - Max length: 30.0
bekraft_ut Date Description: Confirmation - Max length: 10.0
best_av String Description: Caller - Max length: 30.0
best_dat Date Description: Ordered - Searchable: Yes - Max length: 10.0
best_nr Decimal Description: Purchases - Max length: 12.2
best_ut Date Description: Purchase order - Max length: 10.0
betvillkor String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
chans String Description: Order chance - Max length: 4.0
chans_tb Decimal Description: MI chance - Max length: 12.2
doc String Description: Document - Max length: 200.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Tag - Max length: 30.0
erreferens String Description: Your reference - Max length: 30.0
externordernr String Description: Foreign id - Searchable: Yes - Max length: 20.0
fax String Description: Fax - Max length: 20.0
forf_datum Date Description: Due date - Searchable: Yes - Max length: 10.0
frakts_ut Date Description: Waybill - Max length: 10.0
fritext String Description: Text - Max length: 100.0
fritext2 String Description: Internal notes - Max length: 1024.0
gan_nr String Description: Shipping no. - Max length: 30.0
hideinvoicetext Int Description: Hide this text on invoice - Max length: 2.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kampanj String Description: Special offer - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
knota_ut Date Description: Cash note - Max length: 10.0
konkurrent String Description: Competitor - Max length: 4.0
kontant_in Decimal Description: Received - Max length: 10.2
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
lev_dat Date Description: Shpt date - Max length: 10.0
levadravd String Description: Dept. - Max length: 50.0
levadrgata String Description: Visiting address - Max length: 50.0
levadrnamn String Description: Name - Searchable: Yes - Max length: 50.0
levadrnr String Description: Id - Inherits from: [levadr.nr] - Max length: 14.0
levadrort String Description: City - Max length: 50.0
levadrpnr String Description: Zip code - Max length: 20.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
marke2 String Description: Tag 2 - Max length: 30.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Max length: 25.0
mobil String Description: Mobile - Max length: 20.0
momskod String Description: Tax code - Max length: 4.0
namn String Description: Name - Max length: 50.0
objekt String Description: Object - Max length: 10.0
offert_ut Date Description: Quote - Max length: 10.0
offertnr Decimal Description: Quote id - Max length: 12.2
order_ut Date Description: Shpt note printed - Max length: 10.0
ordernr Decimal Description: Order id - Primary Key: Yes - Searchable: Yes - Auto Incremented: Yes - Max length: 12.2
plandat Date Description: Desired - Searchable: Yes - Max length: 10.0
pnr String Description: Zip/city - Max length: 10.0
postadress String Description: Billing address - Max length: 30.0
prel_del Int Description: Assign - Max length: 2.0
prislista String Description: Price list - Max length: 20.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
prosp_kalla String Description: Source - Max length: 4.0
prosp_typ String Description: Business - Max length: 4.0
reg_av String Description: Reg. by - Max length: 30.0
reg_datum Date Description: Date - Max length: 10.0
reg_kl Decimal Description: Hr - Max length: 2.2
reskm Decimal Description: Tvl dist - Max length: 12.2
restid Decimal Description: Tvl time - Max length: 12.2
resultat String Description: Result - Max length: 4.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Searchable: Yes - Max length: 4.0
status String Description: Status - Max length: 1.0
tb Decimal Description: Margin - Max length: 12.2
team String Description: Team - Inherits from: [team.nr] - Max length: 4.0
tel String Description: Phone - Max length: 20.0
tg Decimal Description: MIR % - Max length: 12.2
tot_ink_round Decimal Description: To pay - Max length: 12.2
totfakt Decimal Description: Total - Max length: 12.2
totfaktink Decimal Description: With tax - Max length: 12.2
totkostn Decimal Description: Exp - Max length: 12.2
typ Int Description: Type - Max length: 2.0
upptagen Int Description: Lock - Max length: 2.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
vikt Decimal Description: Weight - Max length: 12.4
volym Decimal Description: Volume - Max length: 12.4
weborder Int Description: Web order - Max length: 2.0

kordhuvs

Customer order history

Field Argument Type Description
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
anledning String Description: Reason - Max length: 4.0
avbokdat Date Description: Finished - Max length: 10.0
avboktid Decimal Description: Time - Max length: 2.2
avbokuser String Description: Finished by - Max length: 4.0
best_av String Description: Caller - Searchable: Yes - Max length: 30.0
best_dat Date Description: Order date - Searchable: Yes - Max length: 10.0
best_nr Decimal Description: Order id - Max length: 12.2
betvillkor String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
distrikt String Description: District - Max length: 4.0
doc String Description: Document - Max length: 200.0
dolj_web Int Description: Hide web - Max length: 2.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Tag - Max length: 30.0
erreferens String Description: Your reference - Max length: 30.0
externordernr String Description: Extern order id - Searchable: Yes - Max length: 20.0
faktbelopp Decimal Description: Invoice amount - Max length: 12.2
faktdatum Date Description: Invoice date - Max length: 10.0
faktnr Int Description: Invoice id - Searchable: Yes - Max length: 14.0
faktura String Description: Invoice - Max length: 1.0
fakturerat String Description: Invoice Basis - Max length: 1.0
fritext String Description: Text - Max length: 100.0
fritext2 String Description: Text - Max length: 1024.0
gan_nr String Description: Waybill id - Max length: 30.0
hideinvoicetext Int Description: Hide this text on invoice - Max length: 2.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kampanj String Description: Special offer - Max length: 4.0
kassanr Int Description: Cash register id - Max length: 4.0
kategori String Description: Category - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
knota_ut Date Description: Date - Max length: 10.0
knota_ut_kl Decimal Description: Hr - Max length: 2.2
konkurrent String Description: Competitor - Max length: 4.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
lev_dat Date Description: Shpt date - Max length: 10.0
levadravd String Description: Department - Max length: 50.0
levadrgata String Description: Visiting address - Max length: 50.0
levadrnamn String Description: Shipping address descr - Searchable: Yes - Max length: 50.0
levadrnr String Description: Shpt addr id - Inherits from: [levadr.nr] - Max length: 14.0
levadrpnr String Description: Zip/city - Max length: 20.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
mnr String Inherits from: [maskiner.mnr] - Max length: 25.0
mobil String Description: Mobile - Max length: 20.0
momskod String Description: Tax code - Max length: 4.0
objekt String Description: Object - Max length: 10.0
offertnr Decimal Description: Quote id - Max length: 12.2
ordernr Decimal Description: Order id - Primary Key: Yes - Searchable: Yes - Auto Incremented: Yes - Max length: 12.2
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
reg_av String Description: Reg. by - Max length: 30.0
resultat String Description: Result - Max length: 4.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Searchable: Yes - Max length: 4.0
saljare_namn String Description: Seller - Searchable: Yes - Max length: 30.0
team String Inherits from: [team.nr] - Max length: 4.0
tel String Description: Phone - Max length: 20.0
tot_ink_round Decimal Description: Total w tax - Max length: 12.2
totfakt Decimal Description: Total - Searchable: Yes - Max length: 12.2
totkostn Decimal Description: Total - Max length: 12.2
typ Int Description: Type - Max length: 2.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
valuta_kurs Decimal Description: Training - Max length: 12.4
vikt Decimal Description: Weight - Max length: 12.4
weborder Int Description: Web order - Max length: 2.0

kordrad

Customer order rows

Field Argument Type Description
antal Decimal Description: Quantity - Max length: 12.2
artnr String Inherits from: [artiklar.artnr] - Searchable: Yes - Max length: 20.0
ben String Description: Description - Max length: 60.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
datum Date Description: Date - Max length: 10.0
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: K-ställe") + " >> - Inherits from: [kst.nr] - Max length: 10.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
lager String Description: Inventory - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 8.0
lagerplats String Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Ship - Max length: 12.2
lev_datum Date Description: Date - Max length: 10.0
momskod String Description: MK - Max length: 4.0
ord_nr Decimal Inherits from: [kordhuv.ordernr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Controller>> - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 20.0
rabatt Decimal Description: Discount - Max length: 4.2
rad_total_in Decimal Description: Total - Max length: 12.2
rad_total_ut Decimal Description: Total - Max length: 12.2
radnr Int Description: Row no. - Primary Key: Yes - Searchable: Yes - Max length: 12.0
rest_antal Decimal Description: Remaining - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
utpris Decimal Description: Price - Max length: 12.2
utprisink Decimal Description: With tax - Max length: 12.2

kordrads

Customer order history rows

Field Argument Type Description
antal Decimal Description: Shipped - Max length: 12.2
art_ben String Description: Description - Max length: 60.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Searchable: Yes - Max length: 20.0
ben String Description: Description - Max length: 60.0
best_antal Decimal Description: Ordered - Max length: 12.2
datum Date Description: Date - Searchable: Yes - Max length: 10.0
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Inherits from: [kst.nr] - Max length: 10.0
kundnr String Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
lager String Description: Inventory - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 8.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Shpt - Max length: 12.2
lev_datum Date Description: Shpt date - Max length: 10.0
ord_nr Decimal Inherits from: [kordhuvs.ordernr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Guiding - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: Discount - Max length: 4.2
rad_total_in Decimal Description: Total - Max length: 12.2
rad_total_ut Decimal Description: Total - Max length: 12.2
radnr Int Description: Row no. - Primary Key: Yes - Searchable: Yes - Max length: 12.0
rest_antal Decimal Description: Remaining - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
utpris Decimal Description: Price - Max length: 12.2

kst

System defined cost centers

Field Argument Type Description
namn String Description: Name - Searchable: Yes - Max length: 30.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 10.0

kstaff

Customer specific tiered pricing

Field Argument Type Description
artben String Description: Description - Max length: 60.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
datum Date Description: Date - Max length: 10.0
fom1 Int Description: From - Max length: 12.0
fom2 Int Description: From - Max length: 12.0
fom3 Int Description: From - Max length: 12.0
kundnr String Inherits from: [kunder.kundnr] - Primary Key: Yes - Searchable: Yes - Max length: 14.0
pris1 Decimal Description: Price - Max length: 12.2
pris2 Decimal Description: Price - Max length: 12.2
pris3 Decimal Description: Price - Max length: 12.2
sign String Inherits from: [user.nr] - Max length: 30.0
tom1 Int Description: To - Max length: 12.0
tom2 Int Description: To - Max length: 12.0
tom3 Int Description: To - Max length: 12.0

kund_art

Customer contract pricing per product

Field Argument Type Description
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 25.0
baserat Int Description: Based on - Max length: 2.0
ben String Description: Description - Max length: 60.0
datum Date Description: Date - Max length: 10.0
enhet String Description: Unit - Inherits from: [enhet.kod] - Primary Key: Yes - Searchable: Yes - Max length: 10.0
fom_datum Date Description: From date - Max length: 10.0
inpris Decimal Description: Cost - Max length: 12.2
nr String Inherits from: [kundavt.nr] - Primary Key: Yes - Searchable: Yes - Max length: 10.0
pris Decimal Description: Price - Max length: 12.2
rabatt Decimal Description: Discount% - Max length: 12.2
serienr String Description: Serial - Max length: 20.0
sign String Inherits from: [user.nr] - Max length: 30.0
tom_datum Date Description: To date - Max length: 10.0
typ String Description: Type - Max length: 1.0

kund_grp

Customer contract pricing per product group

Field Argument Type Description
baserat Int Description: Based on - Max length: 2.0
ben String Description: Description - Max length: 30.0
datum Date Description: Date - Max length: 10.0
fom_datum Date Description: From date - Max length: 10.0
nr String Inherits from: [kundavt.nr] - Primary Key: Yes - Searchable: Yes - Max length: 10.0
pris Decimal Description: Price - Max length: 12.2
rabatt Decimal Description: Discount% - Max length: 12.2
sign String Inherits from: [user.nr] - Max length: 30.0
tom_datum Date Description: To date - Max length: 10.0
typ String Description: Type - Max length: 1.0
varugrp String Description: Commodity group - Primary Key: Yes - Searchable: Yes - Max length: 10.0

kund_rk

Customer contract pricing per supplier discount class

Field Argument Type Description
datum Date Description: Date - Max length: 10.0
fom_datum Date Description: From date - Max length: 10.0
lev String Description: Vendor - Primary Key: Yes - Searchable: Yes - Max length: 20.0
nr String Inherits from: [kundavt.nr] - Primary Key: Yes - Searchable: Yes - Max length: 10.0
rabatt Decimal Description: Discount% - Max length: 12.2
rklass String Description: Discount class - Primary Key: Yes - Searchable: Yes - Max length: 6.0
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
text String Description: Description - Max length: 60.0
tom_datum Date Description: To date - Max length: 10.0

kundavt

Customer contract pricing

Field Argument Type Description
datum Date Description: Date - Max length: 10.0
galler_tom Date Description: Expires - Max length: 10.0
namn String Description: Name - Max length: 50.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 10.0
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0

kunder

Customer data

Field Argument Type Description
a_region String Description: A-state - Max length: 4.0
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
aterforsaljare Int Description: Dealer - Max length: 2.0
avd String Description: Department - Searchable: Yes - Max length: 50.0
b_avd String Description: Department - Max length: 50.0
b_pnr String Description: Zip code - Max length: 20.0
b_port String Description: City - Searchable: Yes - Max length: 50.0
badress String Description: Visiting address - Searchable: Yes - Max length: 50.0
badress2 String Description: Visiting addr 2 - Max length: 50.0
bankgiro String Description: Routing # - Max length: 50.0
baskundnr String Description: Basic cust. id - Inherits from: [kunder.kundnr] - Max length: 25.0
bet_villkor String Description: Payment terms - Max length: 4.0
bitmap String Description: Path - Max length: 254.0
bokslut String Description: Final accounts month - Max length: 10.0
byggmoms Int Description: Revesed tax - Max length: 2.0
cfar String Description: CFAR - Max length: 10.0
countrycode String Description: Country code - Max length: 10.0
def_kont_avd String Description: Department - Max length: 4.0
def_kont_kat String Description: Contact category - Max length: 4.0
distrikt String Description: District - Searchable: Yes - Max length: 4.0
div_mnr Int Description: Misc. object id - Max length: 12.0
ean String Description: SKU - Searchable: Yes - Max length: 20.0
eget_kapital Int Description: Equity - Max length: 12.0
ej_email Int Description: Unsubscribed, E-mail - Max length: 2.0
ej_etikett Int Description: Don't print on labels - Max length: 2.0
ej_reg_kontakt Int Description: Don't send contacts - Max length: 2.0
ej_skicka_order Int Description: Don't send order - Max length: 2.0
ej_sms Int Description: Unsubscribed, SMS - Max length: 2.0
elreturavgift Int Description: Return fee - Max length: 2.0
email String Description: E-mail - Max length: 100.0
eu Int Description: EU customer - Max length: 2.0
export Int Description: Export customer - Max length: 2.0
fakt_avg Int Description: Invoice fee - Max length: 2.0
fax String Description: Fax - Max length: 20.0
foretagform Int Description: Company type - Max length: 2.0
forfallet Decimal Description: Lapsed - Max length: 12.2
fri_text String Description: Notes - Max length: 512.0
fritext String Description: Notes - Max length: 512.0
gan_nr String Description: Shipping no. - Max length: 30.0
gatunr String Description: Id. - Max length: 4.0
ignorera_kredit Int Description: All contacts can always shop - Max length: 2.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kategori String Description: Category - Searchable: Yes - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 6.0
kommun_kod String Description: Municipality - Max length: 4.0
kontakt Int Description: Contact - Max length: 2.0
kontakt_den Date Description: Date - Max length: 10.0
kontakt_sign String Description: Signature - Inherits from: [user.nr] - Max length: 30.0
konto String Description: Account - Max length: 6.0
krav_marke Int Description: Tag required - Max length: 2.0
krav_marke2 Int Description: Tag 2 required - Max length: 2.0
krav_referens Int Description: Financial reference required - Max length: 2.0
kredit_beslut Int Description: Credit decision - Max length: 2.0
kredit_over Int Description: Upper credit - Max length: 12.0
kredit_under Int Description: Lower credit - Max length: 12.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kund Int Description: Customer - Max length: 2.0
kund_doc String Description: Folder structure - Max length: 220.0
kundavtal String Description: Customer contract - Max length: 10.0
kundmed String Description: Customer message (displayed upon order registration) - Max length: 1024.0
kundnr String Description: Customer id - Primary Key: Yes - Searchable: Yes - Max length: 14.0
kundnr_rabatt String Description: Discount contract - Inherits from: [kunder.kundnr] - Max length: 14.0
kundprio String Description: Priority - Max length: 4.0
kundprislista String Description: Customer price list - Max length: 10.0
kundtyp String Description: Contr. type - Max length: 4.0
lagerplats String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
lan_kod String Description: County id - Max length: 4.0
land String Description: Country - Max length: 50.0
lev Int Description: Vendor - Max length: 2.0
lev_avg Int Description: Shipping not included - Max length: 2.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 4.0
levvillkor String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 4.0
limit Decimal Description: Credit limit - Max length: 12.2
marke2 String Description: Tag 2 - Max length: 30.0
mobil String Description: Mobile - Max length: 30.0
momskod String Description: Tax code - Max length: 4.0
namn String Description: Legal name - Searchable: Yes - Max length: 50.0
no_contract_inv Int Description: Contract invoice - Max length: 2.0
no_meter_regs Int Description: Meter readings - Max length: 2.0
no_service_regs Int Description: Service order - Max length: 2.0
no_supply_regs Int Description: Supply order - Max length: 2.0
objekt String Description: Object - Max length: 10.0
omsattning Int Description: Turnover - Max length: 12.0
ordernr String Description: Tag - Max length: 30.0
orgnr String Description: EIN - Searchable: Yes - Max length: 20.0
padress String Description: Billing address - Max length: 50.0
padress2 String Description: Billing addr 2 - Max length: 50.0
parnr String Description: PAR - Max length: 10.0
pnr String Description: Zip code - Searchable: Yes - Max length: 20.0
pop_namn String Description: Customer name - Searchable: Yes - Max length: 50.0
port String Description: City - Searchable: Yes - Max length: 50.0
postgiro String Description: Account # - Max length: 50.0
prislista String Description: Price list - Max length: 1.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
prosp_kalla String Description: Source - Max length: 4.0
prosp_typ String Description: Business - Max length: 4.0
prospect Int Description: Prospect - Max length: 4.0
rabatt Decimal Description: Discount% - Max length: 12.2
rating String Description: Rating - Max length: 10.0
referens String Description: Financial ref - Max length: 30.0
reg_ny_obj_web Int Description: Create new objects - Max length: 2.0
region String Description: Reg. - Max length: 4.0
respons_avtal Decimal Description: During contract - Max length: 12.2
respons_ejavtal Decimal Description: After expiration - Max length: 12.2
rot_avdrag Int Description: Deduction - Max length: 2.0
saldo Decimal Description: Credit balance - Max length: 12.2
salj2prio String Description: Priority - Max length: 1.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Searchable: Yes - Max length: 4.0
saljare2 String Description: Seller 2 - Inherits from: [saljare.nr] - Max length: 4.0
saljprio String Description: Priority - Max length: 1.0
samfakt String Description: Consolidated invoice - Max length: 1.0
samfakt_jobb Int Description: Consolidated invoice service - Max length: 2.0
skapa_ej_order Int Description: Do not create invoice basis - Max length: 2.0
sni String Description: Code - Max length: 10.0
sni_b String Description: SIC #2 - Max length: 10.0
soknamn String Description: Own id - Searchable: Yes - Max length: 30.0
sparr Int Description: Blocked - Max length: 2.0
sprak String Description: Language - Max length: 3.0
startar String Description: Start year - Max length: 4.0
startavgift Int Description: Entry fee service order - Max length: 2.0
startt_avtal Decimal Description: Start time contr. - Max length: 12.2
startt_ejavtal Decimal Description: Start time no contr. - Max length: 12.2
status Int Description: Passive - Max length: 2.0
steam String Description: Sales team - Inherits from: [team.nr] - Max length: 4.0
storlek String Description: Employees - Max length: 10.0
tekn String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
tekn_namn String Inherits from: [tekniker.nr] - Max length: 30.0
tel String Description: Phone - Searchable: Yes - Max length: 30.0
use_ordtyp_def Int Description: Activate - Max length: 2.0
valuta String Description: Currency - Max length: 3.0
vaning String Description: Floor - Max length: 4.0
vatcode String Description: Tax number - Max length: 20.0
visa_avgifter Int Description: Show charges - Max length: 2.0
visa_avtalkostn Int Description: Show costs - Max length: 2.0
visa_lagerstat Int Description: Show inventory status - Max length: 2.0
visa_med_sorder Int Description: Show on service order printout - Max length: 2.0
web String Description: Web - Max length: 100.0
web_arenden Int Description: Cases - Max length: 2.0
web_artiklar Int Description: Products - Max length: 2.0
web_bas Int Description: Base order - Max length: 2.0
web_dokument Int Description: Show document - Max length: 2.0
web_dokument_ny Int Description: Upload document - Max length: 2.0
web_ej_enhet Int Description: Sales unit locked - Max length: 2.0
web_forder Int Description: Supply order - Max length: 2.0
web_hide_prices Int Description: Don't show prices in order history - Max length: 2.0
web_jobb Int Description: Service registration - Max length: 2.0
web_kampanj Int Description: Webshop - Max length: 2.0
web_kurser Int Description: Trainings - Max length: 2.0
web_mlista Int Description: Objects - Max length: 2.0
web_multiforb Int Description: Multi-order - Max length: 2.0
web_order Int Description: Customer order - Max length: 2.0
web_rv Int Description: Meter readings - Max length: 2.0

kundpl

Customer price lists

Field Argument Type Description
datum Date Description: Date - Max length: 10.0
galler_tom Date Description: Expires - Max length: 10.0
namn String Description: Name - Max length: 30.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 10.0
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0

kundpl_a

Customer price list pricing per product

Field Argument Type Description
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 25.0
baserat Int Description: Based on - Max length: 2.0
ben String Description: Description - Max length: 60.0
datum Date Description: Date - Max length: 10.0
enhet String Description: Unit - Inherits from: [enhet.kod] - Primary Key: Yes - Searchable: Yes - Max length: 10.0
fom_datum Date Description: From date - Max length: 10.0
inpris Decimal Description: Cost - Max length: 12.2
nr String Inherits from: [kundpl.nr] - Primary Key: Yes - Searchable: Yes - Max length: 10.0
pris Decimal Description: Price - Max length: 12.2
rabatt Decimal Description: Discount% - Max length: 12.2
serienr String Description: Serial - Max length: 20.0
sign String Inherits from: [user.nr] - Max length: 30.0
tom_datum Date Description: To date - Max length: 10.0
typ String Description: Type - Max length: 1.0

kundpl_g

Customer price list pricing per product group

Field Argument Type Description
baserat Int Description: Based on - Max length: 2.0
ben String Description: Description - Max length: 30.0
datum Date Description: Date - Max length: 10.0
fom_datum Date Description: From date - Max length: 10.0
nr String Inherits from: [kundpl.nr] - Primary Key: Yes - Searchable: Yes - Max length: 10.0
pris Decimal Description: Price - Max length: 12.2
rabatt Decimal Description: Discount% - Max length: 12.2
sign String Inherits from: [user.nr] - Max length: 30.0
tom_datum Date Description: To date - Max length: 10.0
typ String Description: Type - Max length: 1.0
varugrupp String Description: Commodity group - Primary Key: Yes - Searchable: Yes - Max length: 10.0

kundpl_r

Customer price list pricing per supplier discount class

Field Argument Type Description
datum Date Description: Date - Max length: 10.0
fom_datum Date Description: From date - Max length: 10.0
lev String Description: Vendor - Primary Key: Yes - Searchable: Yes - Max length: 20.0
nr String Inherits from: [kundpl.nr] - Primary Key: Yes - Searchable: Yes - Max length: 10.0
rabatt Decimal Description: Discount% - Max length: 12.2
rklass String Description: Discount class - Primary Key: Yes - Searchable: Yes - Max length: 6.0
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
text String Description: Description - Max length: 60.0
tom_datum Date Description: To date - Max length: 10.0

kundrab

Customer specific pricing per product group

Field Argument Type Description
artgr String Description: Product group - Primary Key: Yes - Searchable: Yes - Max length: 10.0
artgr_namn String Description: Name - Max length: 30.0
datum Date Description: Date - Max length: 10.0
fom Date Description: From date - Max length: 10.0
krav_servavtal Int Description: Service contract only - Max length: 2.0
kundnr String Inherits from: [kunder.kundnr] - Primary Key: Yes - Searchable: Yes - Max length: 14.0
rab Decimal Description: Discount% - Max length: 12.2
tom Date Description: To date - Max length: 10.0

lev

Vendors

Field Argument Type Description
avd String Description: Department - Max length: 50.0
b_ort String Description: City - Max length: 20.0
b_postnr String Description: Zip code - Max length: 10.0
bet_villkor String Description: Payment terms - Max length: 4.0
bg String Description: Routing # - Max length: 50.0
bitmap String Description: Path - Max length: 254.0
box String Description: Billing address - Max length: 50.0
bv Int Description: Guarding companies - Max length: 2.0
countrycode String Description: Country code - Max length: 10.0
ean String Description: SKU - Searchable: Yes - Max length: 20.0
email String Description: E-mail - Max length: 100.0
fax String Description: Fax - Max length: 20.0
gatuadress String Description: Visiting address - Max length: 50.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
iso String Description: ISO code - Max length: 4.0
iso_comment String Description: Comment - Max length: 1024.0
iso_date Date Description: Date - Max length: 10.0
iso_grad Int Description: Rating - Max length: 2.0
iso_ok Int Description: Approved - Max length: 2.0
iso_sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
kundnr String Description: Customer id by vendor. - Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 15.0
kval String Description: Quality - Max length: 4.0
land String Description: Country - Max length: 50.0
larm_bord String Description: Phone alarm table - Max length: 20.0
larm_fax String Description: Alarm fax - Max length: 20.0
larm_mail String Description: Alarm e-mail - Max length: 100.0
larm_teletj String Description: Customer service - Max length: 20.0
lc Int Description: Emergency dispatch - Max length: 2.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 4.0
mobil String Description: Mobile - Max length: 30.0
namn String Description: Name - Searchable: Yes - Max length: 50.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 20.0
orgnr String Description: EIN - Max length: 20.0
ort String Description: City - Max length: 20.0
pg String Description: Account # - Max length: 50.0
postnr String Description: Zip code - Max length: 10.0
prefix_epl String Description: Prefix external price list - Max length: 10.0
referens String Description: Reference - Max length: 30.0
solid String Description: Solidity - Max length: 4.0
ssf1063 Int Description: Approved SSF 1063 - Max length: 2.0
ssf136 Int Description: Approved SSF 136 - Max length: 2.0
status Int Description: Status - Max length: 2.0
teknik String Description: Tech. - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 8.0
tel String Description: Phone - Max length: 30.0
valuta String Description: Currency - Max length: 4.0
web String Description: Web - Max length: 100.0

levadr

Customer delivery addresses

Field Argument Type Description
avd String Description: Dept. - Searchable: Yes - Max length: 50.0
box String Description: Box - Max length: 50.0
gata String Description: Visiting address - Searchable: Yes - Max length: 50.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Primary Key: Yes - Searchable: Yes - Max length: 14.0
land String Description: Country - Max length: 30.0
namn String Description: Name - Searchable: Yes - Max length: 50.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 14.0
ort String Description: City - Searchable: Yes - Max length: 50.0
postnr String Description: Zip code - Max length: 20.0
ref String Description: Tag - Max length: 30.0
tel String Description: Phone - Max length: 20.0

levart

Supplier discount class per product and supplier

Field Argument Type Description
artikelnr String Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
baspris Decimal Description: Discount - Max length: 12.2
grupp String Description: Group - Max length: 10.0
huvudlev Int Description: Main vendor - Max length: 2.0
levartnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
levnr String Description: Vendor id - Primary Key: Yes - Searchable: Yes - Max length: 10.0
rklass String Description: Discount class - Max length: 6.0

levsatt

System defined shipping methods

Field Argument Type Description
ej_order Int Description: Do not create order - Max length: 2.0
inlev_levantal Int Description: Receive remaining quantity - Max length: 2.0
internet Int Description: Web Access - Max length: 2.0
levavgift Int Description: Shipping fee - Max length: 2.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 10.0
senderid String Description: Customer id - Max length: 14.0
sign String Inherits from: [user.nr] - Max length: 30.0
text String Description: Text - Searchable: Yes - Max length: 40.0
tjanst String Description: Service - Max length: 10.0
typ Int Description: Forwarder - Max length: 2.0

levvillk

System defined shipping terms

Field Argument Type Description
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 10.0
sign String Inherits from: [user.nr] - Max length: 30.0
text String Description: Text - Searchable: Yes - Max length: 40.0

mask1

Object data

Field Argument Type Description
ack_avskrivn Decimal Description: Accumulated depreciation - Max length: 12.2
aktuell_kpi Decimal Description: Current CPI - Max length: 12.4
ansv_tekn String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
ant_avskrivn Int Description: Depreciated - Max length: 12.0
ant_isdn String Description: No. of ISDN conn. - Max length: 20.0
ant_kan String Description: Batch count - Max length: 10.0
antal_par String Description: PAR - Max length: 30.0
arbetsschema Int Description: Work schedule - Max length: 2.0
auto_fakt Int Description: Automatic invoice when completing jobs - Max length: 2.0
avt_pris_tom Date Description: Contract prices locked untill - Max length: 10.0
avtal_datum Date Description: Contract signed on - Max length: 10.0
avtal_fom Date Description: Last contract invoice - Max length: 10.0
avtal_man_r1 Int Description: Mon - Max length: 2.0
avtal_text String Description: Special conditions - Max length: 512.0
avtal_vem String Description: Contract signed by - Max length: 40.0
barbar_larm Int Description: OFK notebook - Max length: 2.0
basorder Int Description: Base order - Max length: 2.0
baspris Decimal Description: Base price - Max length: 12.2
ber_kop_ar Int Description: Amount per year - Max length: 12.0
ber_tim_ar Int Description: Hours per year - Max length: 12.0
bitmap String Description: Path - Max length: 254.0
broadcast String Description: Broadcast - Max length: 20.0
cctv_fjarr Int Description: Remote control - Max length: 2.0
cctv_insp Int Description: Recording - Max length: 2.0
cctv_ljud Int Description: Sound absorption - Max length: 2.0
cctv_lokal Int Description: Local view - Max length: 2.0
cctv_overf Int Description: Transfer - Max length: 2.0
contex String Description: Contex - Max length: 20.0
data_usb Int Description: SiteAudit - Max length: 2.0
duo String Description: Number duo - Max length: 10.0
dv String Description: Id - Max length: 30.0
ej_ord_serv Int Description: Not billed - Max length: 2.0
email String Description: E-mail - Max length: 100.0
finans_avtal String Description: Finance contract nr - Max length: 20.0
forsat Int Description: Tripwire - Max length: 2.0
forsen_rapp Int Description: Late fee - Max length: 2.0
frametype String Description: Frametype - Max length: 20.0
fsg_faktura String Description: Invoice id - Max length: 10.0
gata_pnr String Description: Zip code - Max length: 10.0
gateway String Description: Gateway - Max length: 20.0
huvudm_cb Int Description: Parent object - Max length: 2.0
ink_email String Description: E-mail - Max length: 100.0
ink_tel String Description: Phone - Max length: 30.0
inst_natverk String Description: Network inst. - Max length: 30.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
jour_artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
jour_ben String Description: Description - Max length: 60.0
jour_dp String Description: Bill cycl - Max length: 4.0
jour_pris Decimal Description: Emergency fee - Max length: 12.2
jour_slut Date Description: End date - Max length: 10.0
jour_start Date Description: Start date - Max length: 10.0
jourdatum Date Description: Emg contr exp - Max length: 10.0
kalkylpris Decimal Description: Est value - Max length: 12.2
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
koord String Description: GPS position - Max length: 60.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
larm_ned_mont Date Description: Dismantling date - Max length: 10.0
larm_punkt Int Description: Point protection - Max length: 2.0
larm_skal Int Description: Perimeter protection - Max length: 2.0
larm_till Int Description: On / off control - Max length: 2.0
larm_uthus Int Description: Outdoor det. - Max length: 2.0
larm_volym Int Description: Vol prot - Max length: 2.0
larmklass_brand Int Description: Alarm class - Max length: 2.0
larmklass_ib Int Description: Alarm class - Max length: 2.0
larmklass_of Int Description: Alarm class - Max length: 2.0
las_forlaning Int Description: Lock - Max length: 2.0
lcr_yn Int Description: Lcr - Max length: 2.0
ld_inre_ib Int Description: Internal sounders - Max length: 2.0
ld_yttre_ib Int Description: External sounders - Max length: 2.0
lev_tekn String Description: Shpt tech - Inherits from: [tekniker.nr] - Max length: 8.0
lev_tekn2 String Description: Shpt tech - Inherits from: [tekniker.nr] - Max length: 8.0
lev_tekn3 String Description: Shpt tech - Inherits from: [tekniker.nr] - Max length: 8.0
lev_tekn4 String Description: Shpt tech - Inherits from: [tekniker.nr] - Max length: 8.0
leveransperiod String Description: Period - Max length: 4.0
leveransperiod2 String Description: Period - Max length: 4.0
leveransperiod3 String Description: Period - Max length: 4.0
leveransperiod4 String Description: Period - Max length: 4.0
maskdoc Int Description: Web Access - Max length: 2.0
min_ingar Int Description: Minutes included - Max length: 12.0
mnr String Inherits from: [maskiner.mnr] - Primary Key: Yes - Searchable: Yes - Max length: 25.0
natmask String Description: Netmask - Max length: 20.0
natoperator String Description: Carrier - Max length: 30.0
natverk Int Description: Connected - Max length: 2.0
objekt String Description: Object - Max length: 10.0
of_larm Int Description: OFK stationary - Max length: 2.0
op_email String Description: E-mail - Max length: 100.0
op_tel String Description: Phone - Max length: 30.0
overvak_ib Int Description: Monitored transf. - Max length: 2.0
pmd Int Description: Days - Max length: 12.0
pmk Int Description: Quantity - Max length: 12.0
prim_fserver String Description: Prim Fserver - Max length: 20.0
pris_kol_toner String Description: Customer price list - Max length: 10.0
prog_sys String Description: Software system, version - Max length: 30.0
prog_vaxel String Description: Program switch, version - Max length: 30.0
pservername String Description: Pservername - Max length: 20.0
rappk_from Date Description: Print from - Max length: 10.0
rappk_tom Date Description: Print to - Max length: 10.0
recond_cb Int Description: Completed - Max length: 2.0
recond_datum Date Description: Date - Max length: 10.0
recond_sign String Description: Technician - Inherits from: [user.nr] - Max length: 30.0
ref_email String Description: E-mail - Max length: 100.0
ref_tel String Description: Phone - Max length: 30.0
region String Description: State - Max length: 4.0
resa_timbank Int Description: Include travel time in time bank - Max length: 2.0
responst Decimal Description: Response time - Max length: 12.2
restvarde Decimal Description: Net book value - Max length: 12.2
rev_apr Int Description: Apr - Max length: 2.0
rev_aug Int Description: Aug - Max length: 2.0
rev_dec Int Description: Dec - Max length: 2.0
rev_feb Int Description: Feb - Max length: 2.0
rev_jan Int Description: Jan - Max length: 2.0
rev_jul Int Description: Jul - Max length: 2.0
rev_jun Int Description: Jun - Max length: 2.0
rev_maj Int Description: May - Max length: 2.0
rev_mar Int Description: Mar - Max length: 2.0
rev_nov Int Description: Nov - Max length: 2.0
rev_okt Int Description: Oct - Max length: 2.0
rev_sep Int Description: Sep - Max length: 2.0
rk_email Int Description: Meter cards via e-mail - Max length: 2.0
rv1_ber Int Description: Number / day - Max length: 12.0
rv1_gar Int Description: Guaranteed - Max length: 12.0
rv1from1 Int Description: From - Max length: 12.0
rv1pris1 Decimal Description: Price - Max length: 12.4
rv1tom1 Int Description: To - Max length: 12.0
sen_jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
sen_pm Date Description: Last PM - Max length: 10.0
sen_rapp_kort Date Description: Last send-out - Max length: 10.0
serv_doc String Description: Path - Max length: 254.0
servicedag Int Description: Service day 1 - Max length: 4.0
servicedag2 Int Description: Service day 2 - Max length: 4.0
servicedag3 Int Description: Service day 3 - Max length: 4.0
servicedag4 Int Description: Service day 4 - Max length: 4.0
slutdeb Date Description: Billing ended - Max length: 10.0
slutdeb_av String Description: Billing ended by - Max length: 40.0
ssf_delvis Int Description: Partially - Max length: 2.0
ssf_helt Int Description: Completely - Max length: 2.0
ssf_klass_ib Int Description: UDC - Max length: 2.0
ssf_klass_of Int Description: UDC - Max length: 2.0
ssf_utan Int Description: Without - Max length: 2.0
staff_rv1 Int Description: Tiered pricing - Max length: 2.0
start_kpi Decimal Description: Begin CPI - Max length: 12.4
startt Decimal Description: Start time - Max length: 12.2
status Int Description: Status - Max length: 2.0
tb_ack Int Description: Roll over included minutes to time bank balance upon billing - Max length: 2.0
tb_art_over String Description: Product id - Max length: 20.0
tb_art_over_ben String Description: Description - Max length: 30.0
tb_artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
tb_avgift Decimal Description: Fee - Max length: 12.2
tb_avrper String Description: Transfer period - Max length: 4.0
tb_ben String Description: Description - Max length: 60.0
tb_debper String Description: Bill cycl - Max length: 4.0
tb_mnr String Description: Object id - Max length: 25.0
tb_niva Int Description: Limit minutes - Max length: 12.0
tb_res_min Int Description: Tvl minutes - Max length: 12.0
tb_sen Date Description: Last change date - Max length: 10.0
tb_slut Date Description: End date - Max length: 10.0
tb_start Date Description: Start date - Max length: 10.0
tb_upd Int Description: Number of contract invoices - Max length: 2.0
tele_ana_ank String Description: Number of analog con - Max length: 20.0
tele_ant_anv String Inherits from: [user.nr] - Max length: 30.0
tele_bas String Description: Base station, number - Max length: 30.0
tele_dect String Description: Dect - Max length: 30.0
tele_fjarr String Description: Modem number - Max length: 30.0
tele_rk String Description: Voice card - Max length: 30.0
tele_sys_ank String Description: No. of digital conn. - Max length: 20.0
tele_t_antal String Description: Number of users - Max length: 30.0
tele_t_typ String Description: Type of phone - Max length: 30.0
tele_tekn String Description: Technician - Inherits from: [tekniker.nr] - Max length: 30.0
tele_typ String Description: Phone type, number - Max length: 30.0
text_rk String Description: Meter card text - Max length: 256.0
tillaggsranta Decimal Description: Additional interest % - Max length: 12.2
timbankssaldo Int Description: Time-bank - Max length: 12.0
toner_frakt Int Description: No supply summary - Max length: 2.0
toner_saldo Int Description: Quantity manually received - Max length: 12.0
tree String Description: Tree - Max length: 20.0
typ_plintbox String Description: Box - Max length: 30.0
typ_uttag String Description: Withdrawal - Max length: 30.0
uppsagd_av String Description: Terminated by - Max length: 40.0
uppsagd_dat Date Description: Terminated - Max length: 10.0
uppsagt_fri String Description: Comments - Max length: 256.0
val_nat_op String Description: Network operator selection - Max length: 1.0
visa_anteckn Int Description: Visible on service orders - Max length: 2.0
visa_ej_rv Int Description: Don't show prev meter - Max length: 2.0
worddoc String Description: Path - Max length: 254.0
zonnamn String Description: Travel zone - Max length: 30.0
zonnr String Description: Zone id - Max length: 4.0

mask3

Object data

Field Argument Type Description
alt_forb_kund String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
alt_kundnr_serv String Description: Customer id service order - Inherits from: [kunder.kundnr] - Max length: 14.0
anl_skot1 String Description: Contact 1 - Max length: 30.0
anl_skot1_tfn String Description: Phone - Max length: 15.0
anl_skot2 String Description: Contact 2 - Max length: 30.0
anl_skot2_tfn String Description: Phone - Max length: 15.0
anled_upps String Description: Termination code - Max length: 10.0
ant_batt_pass Int Description: Batteries - Max length: 4.0
ant_ip_pass Int Description: IP modules - Max length: 4.0
ant_kortl_pass Int Description: Card reader - Max length: 4.0
ant_strom_pass Int Description: Power units - Max length: 4.0
ant_uc_pass Int Description: Sub centrals - Max length: 4.0
arbtid_brand Decimal Description: Time - Max length: 12.2
arbtid_cctv_utr Decimal Description: Time - Max length: 12.2
arbtid_el_utr Decimal Description: Time - Max length: 12.2
arbtid_pas_utr Decimal Description: Time - Max length: 12.2
arbtid_utr_br Decimal Description: Time - Max length: 12.2
avskriv_kvar Int Description: Remaining - Max length: 4.0
avskriv_total Int Description: Depreciations - Max length: 4.0
avskriv_value Decimal Description: Depreciation value - Max length: 12.2
block_antal Int Description: Quantity - Max length: 12.0
block_apris Decimal Description: Price - Max length: 12.6
block_limit Int Description: Limit - Max length: 12.0
block_total Int Description: Units - Max length: 12.0
block_uppdeb Int Description: Billed - Max length: 12.0
boc_faktura_dat Date Description: Date - Max length: 10.0
coverage Int Description: Coverage % - Max length: 4.0
date_over_cons Date Description: Date limit - overconsumption - Max length: 10.0
dolj_underm Int Description: Hide child objects on invoice - Max length: 2.0
dolj_web Int Description: Hide in web - Max length: 2.0
driftsatt_br Date Description: Deployed - Max length: 10.0
ean String Description: SKU - Max length: 25.0
ej_email Int Description: Unsubscribed, E-mail - Max length: 2.0
ej_etikett Int Description: Don't print on labels - Max length: 2.0
ej_forbrukning Int Description: Supply orders cannot be registered on this object - Max length: 2.0
ej_ord_jour Int Description: Not billed - Max length: 2.0
email_kod_gar String Description: E-mail code - Max length: 11.0
email_kod_jour String Description: E-mail code - Max length: 11.0
email_kod_rad1 String Description: E-mail code - Max length: 11.0
email_kod_serv String Description: E-mail code - Max length: 11.0
erorder_2 String Description: Tag 2 - Max length: 30.0
extern_brand String Description: Other notes - Max length: 512.0
finans_upps String Description: Text - Max length: 256.0
fsg_datum Date Description: Sales date - Max length: 10.0
hiss_behorighet String Description: Authorization - Max length: 10.0
hiss_bes_fore String Description: Company - Max length: 20.0
hiss_bes_nr String Description: Id - Max length: 20.0
hiss_dorr String Description: Number of doors - Max length: 10.0
hiss_dorrtyp String Description: Door type - Max length: 30.0
hiss_fabr String Description: Make - Max length: 20.0
hiss_forf_m String Description: Month - Max length: 2.0
hiss_gsm_avtal String Description: GSM contract - Max length: 20.0
hiss_hastighet Decimal Description: Speed - Max length: 2.2
hiss_larmmot String Description: Alarm receiver - Max length: 20.0
hiss_larmtel String Description: Alarm receiver, phone - Max length: 20.0
hiss_linantal Int Description: No. of rows - Max length: 4.0
hiss_lyfthojd Int Description: Lift height - Max length: 12.0
hiss_nodtel String Description: Emergeny phone - Max length: 25.0
hiss_p100kod String Description: Alarm code - Max length: 20.0
hiss_primkod String Description: Code primary - Max length: 20.0
hiss_primnr String Description: Primary id - Max length: 20.0
hiss_provkod String Description: Code sample alarm - Max length: 20.0
hiss_provlarm String Description: Test alarm id - Max length: 20.0
hiss_seckod String Description: Code secondary - Max length: 20.0
hiss_secnr String Description: Secondary id - Max length: 20.0
hiss_status String Description: Elevator status - Max length: 40.0
hiss_tel String Description: Elevator direct phone - Max length: 20.0
hiss_telnr String Description: Elevator phone - Max length: 20.0
hiss_tillv_nr String Description: Manufacturing Id - Max length: 20.0
hyrabar Int Description: Rentable - Searchable: Yes - Max length: 2.0
import_act Int Description: Import of meter readings - Max length: 2.0
import_c_act Int Description: Import of supply orders - Max length: 2.0
import_s_act Int Description: Import of service orders - Max length: 2.0
inbyte_datum Date Description: Trade-in date - Max length: 10.0
indexkod String Description: Index - Max length: 4.0
inst_utf String Description: Installation of utf - Max length: 50.0
intern_brand String Description: Internal notes - Max length: 512.0
intervall_typ String Description: Recurrence type - Max length: 4.0
intyg_br Date Description: Certificates - Max length: 10.0
invent_nr String Description: Individual - Max length: 20.0
invoice_over_c Int Description: Bill overconsumption - Max length: 2.0
jour_br String Description: First responder - Max length: 30.0
jour_tel_br String Description: Phone - Max length: 15.0
klass_brand Int Description: Class - Max length: 2.0
kroknr String Description: Hook id - Max length: 11.0
kvitt_tid Int Description: Check time - Max length: 6.0
lager_basorder String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
larm_over_br String Description: Type - Max length: 50.0
larm_sand_br String Description: Transmitter - Max length: 50.0
larmc_br String Description: Emergency dispatch - Max length: 20.0
larmtyp_br Int Description: Alarm transmission - Max length: 2.0
leas_period String Description: Bill cycl - Max length: 4.0
leas_row Int Description: Fee row - Max length: 2.0
leas_type Int Description: Payment type - Max length: 2.0
levs_basorder String Description: Shipping method - Max length: 4.0
levv_basorder String Description: Shpt terms - Max length: 4.0
mnr String Inherits from: [maskiner.mnr] - Primary Key: Yes - Searchable: Yes - Max length: 25.0
mobil String Description: Mobile - Max length: 20.0
neg_kopiedeb Int Description: Allow negative amounts - Max length: 2.0
no_boc_est Int Description: Disable estimation - Max length: 2.0
objtyp_brand String Description: Type - Max length: 30.0
objtyp_cctv String Description: Type - Max length: 30.0
objtyp_el String Description: Type - Max length: 30.0
objtyp_pass String Description: Type - Max length: 30.0
overv_yta_br Int Description: Monitored surface - Max length: 12.0
plint_andrad Date Description: Rev - Max length: 10.0
plint_anm String Description: Note - Max length: 130.0
plint_dcc String Description: Document name (DCC) - Max length: 15.0
plint_dokumentb String Description: Document name (facility owner) - Max length: 15.0
plint_rev String Description: Rev. - Max length: 2.0
plint_ritad String Description: Made by - Max length: 21.0
plint_skapad Date Description: Date - Max length: 10.0
plint_standard Int Description: Standard - Max length: 2.0
plint_status String Description: Status - Max length: 19.0
proj_utf String Description: Design of utf - Max length: 50.0
projektnr_javg String Description: Project - Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r1 String Description: Project - Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r10 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r2 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r3 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r4 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r5 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r6 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r7 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r8 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r9 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_savg String Description: Project - Inherits from: [projekt.nr] - Max length: 15.0
routenr Int Description: Route no. - Max length: 12.0
sen_jour_from Date Description: Last contract invoice - Max length: 10.0
startindex Decimal Description: Start Index - Max length: 12.4
startindex_jour Decimal Description: Start Index - Max length: 12.4
startindex_r1 Decimal Description: Start Index - Max length: 12.4
tb_inpris Decimal Description: Cost - Max length: 12.2
tb_invoice_hist Int Description: Show service order history upon contract invoice - Max length: 2.0
tb_max Int Description: Max minutes - Max length: 12.0
tb_over_inpris Decimal Description: Cost per minute - Max length: 12.2
tid_intyg_br Date Description: Previous certificate - Max length: 10.0
tillv String Description: Manufacturer - Max length: 20.0
tillv_ar String Description: Year - Max length: 4.0
unders_tid Int Description: Investigation time - Max length: 6.0
valuta String Description: Currency - Max length: 3.0
yield_black Int Description: Black - Max length: 2.0
yield_color Int Description: Color - Max length: 2.0

maskiner

Object data

Field Argument Type Description
ack_over_cb String Description: Accum - Max length: 1.0
ack_over_rv1 Int Description: Accum - Max length: 12.0
avtal_dagar Int Description: Extend. period - Max length: 12.0
avtal_ok Date Description: Start date - Max length: 10.0
avtal_ok_vem String Description: Approved by - Max length: 20.0
avtalnr String Description: Contract id - Searchable: Yes - Max length: 20.0
back_a_besk String Description: Description - Max length: 128.0
back_ansv String Description: Responsible - Max length: 30.0
back_ater Date Description: Date - Max length: 10.0
back_band String Description: Binding - Max length: 30.0
back_besk String Description: Description - Max length: 128.0
back_datum Date Description: Installation date - Max length: 10.0
back_kap String Description: Capacity - Max length: 30.0
back_kontr String Description: Checked by - Max length: 30.0
back_marke String Description: Object type - Max length: 30.0
back_ovr String Description: Other - Max length: 30.0
back_plac String Description: Location - Max length: 30.0
back_prog String Description: Programs - Max length: 30.0
back_ver String Description: Version - Max length: 30.0
betvillkor String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
box String Description: Billing address - Max length: 50.0
datum_service Date Description: Date - Max length: 10.0
deb_grundantal Int Description: Prepaid - Max length: 12.0
debtyp String Description: Bill tp - Max length: 1.0
delar_tom Date Description: Parts from - Max length: 10.0
distrikt String Description: District - Max length: 4.0
egen_avd String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Your order - Max length: 30.0
fax String Description: Fax - Max length: 15.0
forspris Decimal Description: Sales price - Max length: 12.2
garantidatum Date Description: Warranty expires - Max length: 10.0
gatuadr String Description: Visiting address - Searchable: Yes - Max length: 50.0
grundantal Int Description: Included - Max length: 12.0
grundart String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
grundben String Description: Description - Max length: 60.0
grunddp String Description: Bill cycl - Max length: 4.0
grundkr Decimal Description: Fee - Max length: 12.2
grundsdat Date Description: Start date - Max length: 10.0
grundudat Date Description: End date - Max length: 10.0
huvudmaskin String Description: Head id - Max length: 25.0
imsrv1 Int Description: Installation - Max length: 12.0
inar String Description: Purchased year - Max length: 4.0
inkop String Description: Vendor - Max length: 20.0
inkopare String Description: Buyer - Max length: 30.0
inkopdatum Date Description: Purchased - Max length: 10.0
inpris Decimal Description: Purchase price - Max length: 12.2
install String Description: Name - Searchable: Yes - Max length: 50.0
instdatum Date Description: Installation date - Max length: 10.0
ipadress String Description: IP - Max length: 20.0
jobb_service Decimal Description: Order id - Max length: 12.2
kab String Description: Team - Max length: 10.0
kab_ver String Description: Team - Max length: 10.0
kablage_besk String Description: Description - Max length: 128.0
kablage_dat Date Description: Date - Max length: 10.0
kablage_hast Int Description: Speed - Max length: 2.0
kablage_inst String Description: Installed by - Max length: 30.0
kablage_typ Int Description: Cabling Type - Max length: 2.0
kategori String Description: Category - Max length: 4.0
kontakt String Description: Contact - Max length: 20.0
kontakt_tel String Description: Phone - Max length: 20.0
koptyp String Description: Financing Option - Max length: 4.0
kundansv String Description: Customer manager - Max length: 20.0
kundnr String Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
land String Description: Country - Max length: 50.0
laserfax String Description: Meter cards by fax - Max length: 1.0
leas_slut Date Description: Expiry date - Max length: 10.0
leasbolag String Description: Finance company - Max length: 50.0
lev_fakt String Description: Invoice id - Max length: 25.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 4.0
levvillkor String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 4.0
masktyp String Description: Object type - Inherits from: [maskinty.artnr] - Searchable: Yes - Max length: 25.0
mnr String Description: Object id - Primary Key: Yes - Searchable: Yes - Max length: 25.0
modell String Description: Name - Searchable: Yes - Max length: 40.0
mpassword String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 10.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
nib String Description: Network card - Max length: 10.0
nib_ver String Description: Ver - Max length: 10.0
nos String Description: Network OS - Max length: 10.0
nos_ver String Description: Ver - Max length: 10.0
nosansv String Description: Network resp. - Max length: 20.0
nosansv_tel String Description: Phone - Max length: 20.0
ok1 String Description: Misc. cards 1 - Max length: 10.0
ok1_ver String Description: Ver - Max length: 10.0
ok2 String Description: Misc. cards 2 - Max length: 10.0
ok2_ver String Description: Ver - Max length: 10.0
ok3 String Description: Misc. cards 3 - Max length: 10.0
ok3_ver String Description: Ver - Max length: 10.0
op String Description: Technical ref - Searchable: Yes - Max length: 50.0
open String Description: Open - Max length: 50.0
ort String Description: City - Searchable: Yes - Max length: 50.0
pdl String Description: PDL - Max length: 10.0
pdl_ver String Description: Ver - Max length: 10.0
plac String Description: Location - Searchable: Yes - Max length: 50.0
platskod String Description: Location code - Max length: 4.0
portkod String Description: Door code - Max length: 30.0
postnr String Description: Zip code - Searchable: Yes - Max length: 10.0
pro String Description: Checklist - Max length: 10.0
pro_ver String Description: Ver - Max length: 10.0
prom_ver String Description: Prom ver - Max length: 10.0
rad10art String Description: Row 10 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad1art String Description: Row 1 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad1ben String Description: Description - Max length: 60.0
rad1dp String Description: Bill cycl - Max length: 4.0
rad1pris Decimal Description: Price - Max length: 12.2
rad1sdat Date Description: Start date - Max length: 10.0
rad1udat Date Description: End date - Max length: 10.0
rad2art String Description: Row 2 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad3art String Description: Row 3 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad4art String Description: Row 4 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad5art String Description: Row 5 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad6art String Description: Row 6 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad7art String Description: Row 7 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad8art String Description: Row 8 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad9art String Description: Row 9 - Inherits from: [artiklar.artnr] - Max length: 20.0
rappkort String Description: Meter card - Max length: 1.0
ref String Description: Reference - Max length: 40.0
restv Decimal Description: Residual value - Max length: 12.2
rip String Description: RIP - Max length: 10.0
rip_instdag Date Description: RIP Inst. day - Max length: 10.0
rip_kaldag Date Description: RIP calibr. day - Max length: 10.0
rip_mnr String Description: RIP Object id - Max length: 10.0
rip_ver String Description: Ver - Max length: 10.0
rk_period String Description: Period - Max length: 4.0
rkstatus String Description: Status report card - Max length: 1.0
rv1_serv Int Description: Previous - Max length: 12.0
rv1art String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
rv1ben String Description: Description - Max length: 60.0
rv1count Int Description: Previous - Max length: 12.0
rv1dat Date Description: Previous date - Max length: 10.0
rv1pris Decimal Description: Price per pc - Max length: 12.4
rv2_serv Int Description: Meter 2 - Max length: 12.0
rv2art String Description: Meter - Inherits from: [artiklar.artnr] - Max length: 20.0
rv3_serv Int Description: Meter 3 - Max length: 12.0
rv3art String Inherits from: [artiklar.artnr] - Max length: 20.0
rv4_serv Int Description: Meter 4 - Max length: 12.0
rv4art String Inherits from: [artiklar.artnr] - Max length: 20.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
sen_avskriv Date Description: Last depreciation - Max length: 10.0
serv_besk String Description: Description - Max length: 128.0
serv_buss String Description: Bus type - Max length: 30.0
serv_cache Int Description: Status - Max length: 2.0
serv_gen String Description: Ref. - Max length: 30.0
serv_i_dat Date Description: Next service - Max length: 10.0
serv_marke String Description: Object type - Max length: 30.0
serv_minne String Description: Internal memory - Max length: 30.0
serv_namn String Description: Name - Max length: 30.0
serv_nyck String Description: Keys - Max length: 30.0
serv_os String Description: OS - Max length: 30.0
serv_os_adm String Description: Admin - Max length: 30.0
serv_os_ver String Description: Version - Max length: 30.0
serv_plac String Description: Location - Max length: 30.0
serv_proc String Description: Processors - Max length: 30.0
serv_tel String Description: Modem number - Max length: 30.0
serv_upp String Description: Main purpose - Max length: 30.0
servdatum Date Description: Service contract - Max length: 10.0
servtyp String Description: Serv type - Max length: 4.0
servtyp_namn String Description: Service type - Max length: 40.0
sok_nr String Description: Own id - Searchable: Yes - Max length: 20.0
tekn_service String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
tel String Description: Phone - Searchable: Yes - Max length: 30.0
toner String Description: Included in contract - Max length: 1.0

maskinty

Object type data

Field Argument Type Description
amp Int Description: Power outlet (mA) - Max length: 12.0
arbete String Description: Work included - Max length: 1.0
arbkostnad String Description: Work cost - Inherits from: [artiklar.artnr] - Max length: 20.0
artgrupp String Description: Product group - Searchable: Yes - Max length: 10.0
artnr String Description: Object type - Primary Key: Yes - Searchable: Yes - Max length: 25.0
bitmap String Description: Path - Max length: 254.0
bitmap_rk String Description: Path - Max length: 254.0
block_artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 25.0
bredd Decimal Description: Width - Max length: 12.2
delar String Description: Parts included - Max length: 1.0
faxbilaga String Description: Fax enclosure - Max length: 30.0
gar_artnr String Description: Warranty product id - Inherits from: [artiklar.artnr] - Max length: 20.0
gar_instruk String Description: Return instructions - Max length: 1024.0
garanti Int Description: Days - Max length: 8.0
garanti_ers Decimal Description: Warranty refund - Max length: 12.2
garanti_knr String Description: Warranty per cust. Id - Max length: 14.0
help String Description: Path - Max length: 254.0
hojd Decimal Description: Height - Max length: 12.2
hyr_artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 25.0
inpris Decimal Description: Cost - Max length: 12.2
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kop_faktor Int Description: Factor color - Max length: 8.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
langd Decimal Description: Length - Max length: 12.2
lev String Description: Vendor - Searchable: Yes - Max length: 20.0
lev_namn String Description: Name - Max length: 30.0
maskin_poang Decimal Description: Points - Max length: 2.2
meddelande String Description: Notes - Max length: 1024.0
namn String Description: Name - Searchable: Yes - Max length: 60.0
namn_kund String Description: Custom name - Max length: 60.0
objekt String Description: Object - Max length: 6.0
pkod String Description: Product area - Searchable: Yes - Max length: 6.0
pkod_namn String Description: Name - Max length: 30.0
pmdagar Int Description: Days - Max length: 8.0
pmkopior Int Description: Quantity - Max length: 8.0
pointsf Decimal Description: F - Max length: 8.2
pointsl Decimal Description: L - Max length: 8.2
pointsp Decimal Description: P - Max length: 8.2
pointsr Decimal Description: R/Å - Max length: 8.2
pointst Decimal Description: T - Max length: 8.2
pointsu Decimal Description: U - Max length: 8.2
pointsv Decimal Description: V - Max length: 8.2
prodblad String Description: Path - Max length: 254.0
prodblad_web String Description: Path to web - Max length: 254.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
rdagar Int Description: Days - Max length: 12.0
resa String Description: Transportation included - Max length: 1.0
resp_nasta_dag Decimal Description: Response next day at - Max length: 12.2
resptid Decimal Description: With contract - Max length: 8.2
resptide Decimal Description: Without contract - Max length: 8.2
rkopior Int Description: Quantity - Max length: 12.0
rma String Description: Return form - Max length: 254.0
rma_web String Description: Web return form - Max length: 254.0
rv1_text String Description: Meter - Max length: 20.0
segment String Description: Segment - Searchable: Yes - Max length: 6.0
segment_namn String Description: Name - Max length: 30.0
startt Decimal Description: With contract - Max length: 8.2
startte Decimal Description: Without contract - Max length: 8.2
strom Int Description: Power (mA) - Max length: 12.0
text_1 String Description: Text 1 - Max length: 100.0
text_10 String Description: Text 10 - Max length: 100.0
text_2 String Description: Text 2 - Max length: 100.0
text_3 String Description: Text 3 - Max length: 100.0
text_4 String Description: Text 4 - Max length: 100.0
text_5 String Description: Text 5 - Max length: 100.0
text_6 String Description: Text 6 - Max length: 100.0
text_7 String Description: Text 7 - Max length: 100.0
text_8 String Description: Text 8 - Max length: 100.0
text_9 String Description: Text 9 - Max length: 100.0
tfdagar Int Description: Days - Max length: 8.0
tfkopior Int Description: Quantity - Max length: 8.0
tid_minuter Int Description: Time minutes - Max length: 12.0
tillv String Description: Manufacturer - Searchable: Yes - Max length: 20.0
tillv_namn String Description: Name - Max length: 30.0
typ_rv1 Int Description: Type of meter - Max length: 2.0
varn_rv_dgr_ho Int Description: Maximum days - Max length: 12.0
varn_rv_dgr_lo Int Description: Min. days - Max length: 12.0
varn_rv_kop_ho Int Description: Max qty. - Max length: 12.0
varn_rv_kop_lo Int Description: Min. qty. - Max length: 12.0
varn_se_dgr_ho Int Description: Maximum days - Max length: 12.0
varn_se_dgr_lo Int Description: Min. days - Max length: 12.0
varn_se_kop_ho Int Description: Max qty. - Max length: 12.0
varn_se_kop_lo Int Description: Min. qty. - Max length: 12.0
vikt Decimal Description: Weight - Max length: 12.4
volt Decimal Description: Current (Volt) - Max length: 12.2
volym Decimal Description: Volume - Max length: 12.4

mod_bas

Suggested base supplies for a given object type/model

Field Argument Type Description
artben String Description: Description - Max length: 60.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
modell String Inherits from: [maskinty.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 25.0

mod_till

Accessories for a given object type/model

Field Argument Type Description
artben String Description: Description - Max length: 60.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
datum Date Description: Date - Max length: 10.0
modell String Inherits from: [maskinty.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 25.0
text String Description: Text - Max length: 60.0
tillsats Int Description: Mounting additive - Max length: 2.0

mvisible

Machine permissions per contact

Field Argument Type Description
kontaktnr Int Inherits from: [person.kontaktnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Primary Key: Yes - Searchable: Yes - Max length: 25.0
modell String Description: Object type - Max length: 50.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0

ord_hist

Supply order history

Field Argument Type Description
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
avbokdat Date Description: Finished - Max length: 10.0
avboktid Decimal Description: Time - Max length: 2.2
avbokuser String Description: Finished by - Max length: 4.0
avtalnr String Description: Contract id - Max length: 20.0
best_av String Description: Caller - Searchable: Yes - Max length: 30.0
best_dat Date Description: Order date - Searchable: Yes - Max length: 10.0
best_nr Decimal Description: Purchase order id - Max length: 12.2
betvillk String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
distrikt String Description: District - Searchable: Yes - Max length: 4.0
dolj_web Int Description: Hide web - Max length: 2.0
email String Description: E-mail - Max length: 100.0
er_order String Description: Tag - Max length: 30.0
externordernr String Description: Foreign id - Searchable: Yes - Max length: 20.0
faktbelopp Decimal Description: Invoice amount - Max length: 12.2
faktdatum Date Description: Invoice date - Max length: 10.0
faktnr Int Description: Inv.no - Searchable: Yes - Max length: 12.0
faktura String Description: Invoice - Max length: 1.0
fakturerat String Description: Invoice Basis - Max length: 1.0
fax String Description: Fax - Max length: 30.0
gan_nr String Description: Waybill id - Max length: 30.0
install String Description: Name - Searchable: Yes - Max length: 40.0
internkod String Description: Internal - Inherits from: [intern.kod] - Max length: 10.0
kategori String Description: Category - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
lev_avd String Description: Dept. - Max length: 50.0
lev_dat Date Description: Shpt date - Max length: 10.0
lev_gata String Description: Visiting address - Max length: 50.0
lev_namn String Description: Customer name - Max length: 50.0
lev_pnr String Description: Zip code - Max length: 20.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
mnr String Inherits from: [maskiner.mnr] - Searchable: Yes - Max length: 25.0
modell String Description: Object type - Max length: 30.0
momskod String Description: Tax code - Max length: 4.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Searchable: Yes - Max length: 25.0
ordernr Decimal Description: Ord id - Primary Key: Yes - Searchable: Yes - Auto Incremented: Yes - Max length: 12.2
platskod String Description: Location code - Max length: 4.0
prodkod String Description: Product area - Max length: 4.0
projekt String Description: Project: - Inherits from: [projekt.nr] - Max length: 12.0
projtyp String Description: Technician - Max length: 8.0
reg_av String Description: Reg. by - Max length: 30.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Searchable: Yes - Max length: 4.0
sandningsnr String Description: Shipping no. - Max length: 100.0
segment String Description: Segment - Searchable: Yes - Max length: 4.0
servtyp String Description: Serv type - Max length: 4.0
tel String Description: Phone - Max length: 30.0
totfakt Decimal Description: Invo. - Max length: 12.2
totkostn Decimal Description: Exp - Max length: 12.2
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
valuta_kurs Decimal Description: Training - Max length: 12.4
vikt Decimal Description: Weight - Max length: 12.4
weborder Int Description: Web order - Max length: 2.0

ord_huv

Supply order data

Field Argument Type Description
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
bekraft_ut Date Description: Confirmation - Max length: 10.0
best_av String Description: Caller - Max length: 30.0
best_dat Date Description: Ordered - Searchable: Yes - Max length: 10.0
best_nr Decimal Description: Purchases - Max length: 12.2
best_ut Date Description: Purchase order - Max length: 10.0
betvillk String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
email String Description: E-mail - Max length: 100.0
er_order String Description: Your order - Max length: 30.0
erreferens String Description: Your reference - Max length: 30.0
externordernr String Description: Foreign id - Searchable: Yes - Max length: 20.0
fax String Description: Fax - Max length: 30.0
frakts_ut Date Description: Waybill - Max length: 10.0
fritext String Description: Text - Max length: 60.0
fritext2 String Description: Internal notes - Max length: 256.0
install String Description: Installed - Searchable: Yes - Max length: 40.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
knota_ut Date Description: Cash note - Max length: 10.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
lager String Inherits from: [tekniker.nr] - Max length: 8.0
lev_avd String Description: Dept. - Max length: 50.0
lev_dat Date Description: Shpt date - Max length: 10.0
lev_gata String Description: Address - Max length: 50.0
lev_namn String Description: Customer - Max length: 50.0
lev_nr String Description: Id - Inherits from: [levadr.nr] - Max length: 10.0
lev_ort String Description: City - Max length: 50.0
lev_pnr String Description: Zip code - Max length: 20.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
mnr String Inherits from: [maskiner.mnr] - Searchable: Yes - Max length: 25.0
mobil String Description: Mobile - Max length: 20.0
modell String Description: Name - Searchable: Yes - Max length: 30.0
momskod String Description: Tax code - Max length: 4.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Searchable: Yes - Max length: 25.0
objekt String Description: Object - Max length: 10.0
order_ut Date Description: Shpt note printed - Max length: 10.0
ordernr Decimal Description: Order id - Primary Key: Yes - Searchable: Yes - Auto Incremented: Yes - Max length: 12.2
plandat Date Description: Desired - Searchable: Yes - Max length: 10.0
prel_del Int Description: Assign - Max length: 2.0
prislista String Description: Price list - Max length: 20.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
projtyp String Description: Technician - Max length: 8.0
reg_av String Description: Reg. by - Max length: 30.0
reg_datum Date Description: Date - Max length: 10.0
reg_kl Decimal Description: Hr - Max length: 2.2
saljare String Description: Seller - Inherits from: [saljare.nr] - Searchable: Yes - Max length: 4.0
status String Description: Status - Max length: 1.0
tb Decimal Description: Margin - Max length: 12.2
team String Description: Team - Inherits from: [team.nr] - Max length: 4.0
tel String Description: Phone - Max length: 30.0
tg Decimal Description: MIR % - Max length: 12.2
totfakt Decimal Description: Total - Max length: 12.2
totfakt_ink Decimal Description: With tax - Max length: 12.2
totkostn Decimal Description: Cost - Max length: 12.2
upptagen Int Description: Lock - Max length: 2.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
weborder Int Description: Web order - Max length: 2.0

ord_rad

Supply order rows

Field Argument Type Description
antal Decimal Description: Quantity - Max length: 12.2
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Searchable: Yes - Max length: 20.0
ben String Description: Description - Max length: 60.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
datum Date Description: Date - Max length: 10.0
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: K-ställe") + " >> - Inherits from: [kst.nr] - Max length: 10.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
lagerplats String Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Ship - Max length: 12.2
lev_datum Date Description: Date - Max length: 10.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Searchable: Yes - Max length: 25.0
mtyp String Inherits from: [maskinty.artnr] - Max length: 25.0
ord_nr Decimal Inherits from: [ord_huv.ordernr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
prisenhet String Description: Unit>> - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Controller>> - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: % - Max length: 4.2
rad_total_in Decimal Description: Total cost - Max length: 12.2
rad_total_ut Decimal Description: Total price - Max length: 12.2
radnr Int Description: Row no. - Primary Key: Yes - Searchable: Yes - Max length: 12.0
rest_antal Decimal Description: Remaining - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
tekn_lager String Description: Inventory - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 8.0
utpris Decimal Description: Price - Max length: 12.2

ord_rads

Supply order history rows

Field Argument Type Description
antal Decimal Description: Quantity - Max length: 12.2
art_ben String Description: Description - Max length: 60.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Searchable: Yes - Max length: 20.0
ben String Description: Description - Max length: 60.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
datum Date Description: Date - Searchable: Yes - Max length: 10.0
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Inherits from: [kst.nr] - Max length: 10.0
kundnr String Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Shpt - Max length: 12.2
lev_datum Date Description: Shpt date - Max length: 10.0
mnr String Inherits from: [maskiner.mnr] - Searchable: Yes - Max length: 25.0
mtyp String Inherits from: [maskinty.artnr] - Searchable: Yes - Max length: 25.0
ord_nr Decimal Inherits from: [ord_hist.ordernr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Guiding - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 6.0
rabatt Decimal Description: % - Max length: 4.2
rad_total_in Decimal Description: Row total in - Max length: 12.2
rad_total_ut Decimal Description: Row total out - Max length: 12.2
radnr Int Description: Row no. - Primary Key: Yes - Searchable: Yes - Max length: 12.0
rest_antal Decimal Description: Remain. Qty - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
tekn_lager String Description: Inventory - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 8.0
utpris Decimal Description: Price - Max length: 12.2

ordtext

Customer order text rows

Field Argument Type Description
ordernr Decimal Inherits from: [kordhuv.ordernr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
rad Int Description: Row index - Primary Key: Yes - Searchable: Yes - Max length: 12.0
textrad String Description: Text - Max length: 200.0

person

Customer contacts

Field Argument Type Description
avd String Description: Department - Searchable: Yes - Max length: 4.0
avd_namn String Description: Dept. - Searchable: Yes - Max length: 40.0
befattning String Description: Function - Searchable: Yes - Max length: 4.0
beff_namn String Description: Function - Max length: 30.0
beslut Int Description: Decisions - Max length: 2.0
bitmap String Description: Bitmap - Max length: 100.0
ej_email Int Description: Unsubscribed, E-mail - Max length: 2.0
ej_etikett Int Description: Don't print on labels - Max length: 2.0
ej_sms Int Description: Unsubscribed, SMS - Max length: 2.0
email String Description: E-mail - Searchable: Yes - Max length: 100.0
fax_arbete String Description: Fax - Max length: 30.0
fodelsedag Date Description: Birthday - Max length: 10.0
foretag String Description: Customer id - Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
foretag_box String Description: Billing address - Max length: 30.0
foretag_gata String Description: Visiting address - Max length: 30.0
foretag_land String Description: Country - Max length: 30.0
foretag_namn String Description: Company - Searchable: Yes - Max length: 50.0
foretag_ort String Description: City - Searchable: Yes - Max length: 20.0
foretag_pnr String Description: Zip code - Searchable: Yes - Max length: 15.0
gata String Description: Visiting address - Max length: 40.0
kalla String Description: Source - Max length: 4.0
kat_namn String Description: Category - Max length: 30.0
kategori String Description: Contact category - Searchable: Yes - Max length: 4.0
kontakt Int Description: Contact - Max length: 2.0
kontakt_den Date Description: Date - Max length: 10.0
kontakt_sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
kontaktnr Int Description: Contact id - Primary Key: Yes - Searchable: Yes - Auto Incremented: Yes - Max length: 12.0
kort Int Description: Card - Max length: 2.0
kreditstatus String Description: Credit status - Max length: 2.0
land String Description: Country - Max length: 30.0
mobil String Description: Mobile - Searchable: Yes - Max length: 30.0
namn String Description: Name - Searchable: Yes - Max length: 40.0
ort String Description: City - Max length: 30.0
parnr String Description: Parid - Max length: 10.0
paverka Int Description: Partner - Max length: 2.0
person_dok String Description: Folder structure - Max length: 220.0
postnr String Description: Zip code - Max length: 20.0
rating String Description: Credit code - Max length: 10.0
referens String Description: Tag - Max length: 30.0
regdatum Date Description: Registered - Max length: 10.0
saldo Decimal Description: Balance - Max length: 12.2
saljare String Description: Seller - Inherits from: [saljare.nr] - Searchable: Yes - Max length: 4.0
saljare_namn String Description: Seller - Max length: 30.0
service_email Int Description: Service order e-mail - Max length: 2.0
sista_trans Date Description: Trans. date - Max length: 10.0
skype String Description: Skype name - Max length: 100.0
status Int Description: Passive - Max length: 2.0
steam String Description: Sales team - Inherits from: [team.nr] - Max length: 4.0
tel_arbete String Description: Direct tel - Searchable: Yes - Max length: 30.0
tel_hem String Description: Phone home - Max length: 30.0
text String Description: Notes - Max length: 1024.0
title String Description: Title - Max length: 5.0
upd_datum Date Description: Updated - Max length: 10.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0

priskund

Customer specific pricing per product

Field Argument Type Description
artben String Description: Description - Max length: 60.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
aven_grupprab Int Description: Even product group discount - Max length: 2.0
datum Date Description: Date - Max length: 10.0
krav_servavtal Int Description: Service contract only - Max length: 2.0
kundnr String Inherits from: [kunder.kundnr] - Primary Key: Yes - Searchable: Yes - Max length: 14.0
pris Decimal Description: Price - Max length: 12.2
pris_fom Date Description: From date - Max length: 10.0
pris_tom Date Description: To date - Max length: 10.0
rabatt Decimal Description: Discount% - Max length: 12.2

prismat

Object specific pricing per product

Field Argument Type Description
antal Decimal Description: Quantity - Max length: 12.2
artben String Description: Description - Max length: 60.0
artikelnr String Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
auto_bas Int Description: Base - Max length: 2.0
auto_jobb Int Description: Service order - Max length: 2.0
auto_order Int Description: Supply order - Max length: 2.0
auto_schema Int Description: Schedule - Max length: 2.0
datum Date Description: Date - Max length: 10.0
from_dat Date Description: From date - Max length: 10.0
ingar_ej Int Description: Not included - Max length: 2.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kundnr String Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
lagerantal Int Description: Inventory - Max length: 12.0
mnr String Inherits from: [maskiner.mnr] - Primary Key: Yes - Searchable: Yes - Max length: 25.0
next_order_qty Decimal Description: Qty next base order - Max length: 12.2
next_order_use Int Description: Activated - Max length: 2.0
pris Decimal Description: Customer price - Max length: 12.2
pris_euro Decimal Description: Price euro - Max length: 12.2
pris_kolumn String Description: Price list - Max length: 1.0
rabatt Decimal Description: % - Max length: 4.2
tom_dat Date Description: To date - Max length: 10.0

pristekn

Technician specific pricing per product

Field Argument Type Description
artben String Description: Description - Max length: 60.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
datum Date Description: Date - Max length: 10.0
inpris Decimal Description: Cost - Max length: 12.2
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
tekn String Inherits from: [tekniker.nr] - Primary Key: Yes - Searchable: Yes - Max length: 8.0
tidtyp String Description: Job time type - Primary Key: Yes - Searchable: Yes - Max length: 10.0
utpris Decimal Description: Price - Max length: 12.2

projekt

Projects

Field Argument Type Description
adm_intakter Decimal Description: Revenue (external) - Max length: 12.2
adm_kostnader Decimal Description: Costs (external) - Max length: 12.2
admin String Description: Administrator - Max length: 30.0
anbud Decimal Description: Contract Sum - Max length: 12.2
ansv String Description: Project manager - Max length: 30.0
ber_kostnader Decimal Description: Estimated costs - Max length: 12.2
ber_lon Decimal Description: Estimated salary - Max length: 12.2
datum Date Description: Date - Max length: 10.0
divmtrl Decimal Description: Div mtrl - Max length: 12.2
fritext String Description: Project description - Max length: 2048.0
installpris Decimal Description: Work cost / hr - Max length: 12.2
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kund_namn String Description: Name - Max length: 50.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 14.0
kundref String Description: Reference - Max length: 30.0
namn String Description: Name - Searchable: Yes - Max length: 100.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Auto Incremented: Yes - Max length: 12.0
prislista String Description: Price list - Max length: 1.0
projgrp String Description: Group - Searchable: Yes - Max length: 4.0
projgrp_namn String Description: Name - Max length: 50.0
projtyp String Description: Type - Searchable: Yes - Max length: 4.0
projtyp_namn String Description: Name - Max length: 50.0
salj_namn String Description: Name - Max length: 30.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Searchable: Yes - Max length: 4.0
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
slutdatum Date Description: End date - Searchable: Yes - Max length: 10.0
startdatum Date Description: Start date - Searchable: Yes - Max length: 10.0
status Int Description: Status - Max length: 2.0
summa_arbtid Decimal Description: Work time - Max length: 12.2
summa_divmtrl Decimal Description: Div mtrl - Max length: 12.2
summa_doktid Decimal Description: Doc time - Max length: 12.2
summa_in_total Decimal Description: Total cost - Max length: 12.2
summa_inpris Decimal Description: Costs mtrl - Max length: 12.2
summa_ut_total Decimal Description: Total price - Max length: 12.2
summa_utpris Decimal Description: Parts price - Max length: 12.2
tb Decimal Description: Margin - Max length: 12.2
tekn String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
tekn_namn String Description: Name - Max length: 30.0
tg Decimal Description: MIR % - Max length: 12.2
timmar Decimal Description: Estimated hours - Max length: 12.2
timpris Decimal Description: Price / h. - Max length: 12.2
valuta String Description: Currency - Max length: 3.0

reservd

Spare parts for a given object type/model

Field Argument Type Description
antal Decimal Description: Quantity - Searchable: Yes - Max length: 12.2
artben String Description: Description - Searchable: Yes - Max length: 60.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
dagar Int Description: Days - Max length: 12.0
datum Date Description: Date - Max length: 10.0
levart String Description: Vendors product id - Max length: 20.0
modell String Inherits from: [maskinty.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 25.0
position String Description: Position - Searchable: Yes - Max length: 20.0
serienr String Description: Serial - Primary Key: Yes - Searchable: Yes - Max length: 20.0
sidor Int Description: Pages - Max length: 12.0
sign String Inherits from: [user.nr] - Max length: 30.0

reszon

Travel zone specific pricing per product

Field Argument Type Description
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
inpris Decimal Description: Cost - Max length: 12.2
jobb Int Description: Service order - Max length: 2.0
km Decimal Description: Distance - Max length: 12.2
namn String Description: Name - Searchable: Yes - Max length: 30.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 4.0
tid Decimal Description: Time - Max length: 12.2
utpris Decimal Description: Price - Max length: 12.2

sa_gmat

Servuce contract pricing per product group

Field Argument Type Description
artgr String Description: Product group - Primary Key: Yes - Searchable: Yes - Max length: 10.0
datum Date Description: Date - Max length: 10.0
fom Date Description: From date - Max length: 10.0
jobbtyp String Inherits from: [jobbtyp.nr] - Max length: 2.0
nr String Inherits from: [servtyp.nr] - Primary Key: Yes - Searchable: Yes - Max length: 4.0
rab Decimal Description: Discount - Max length: 12.2
tom Date Description: To date - Max length: 10.0

sa_mat

Service contract pricing per product

Field Argument Type Description
artben String Description: Description - Max length: 60.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
datum Date Description: Date - Max length: 10.0
from_dat Date Description: From date - Max length: 10.0
jobb Int Description: Service order - Max length: 2.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
nr String Inherits from: [servtyp.nr] - Primary Key: Yes - Searchable: Yes - Max length: 4.0
pris Decimal Description: Price - Max length: 12.2
rabatt Decimal Description: Discount - Max length: 4.2
tom_dat Date Description: To date - Max length: 10.0

saljare

System defined sellers

Field Argument Type Description
distrikt String Description: District - Max length: 4.0
dolj_sstatus Int Description: Hide seller status - Max length: 2.0
email String Description: E-mail - Max length: 100.0
email_sms String Description: E-mail SMS - Max length: 100.0
fax String Description: Fax - Max length: 20.0
fritext String Description: Notes - Max length: 1024.0
gatuadress String Description: Visiting address - Max length: 30.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
jobb_anm Int Description: Job called in - Max length: 2.0
jobb_deleg Int Description: Job assigned - Max length: 2.0
jobb_slutf Int Description: Service order finished - Max length: 2.0
jobb_utf Int Description: Job completed - Max length: 2.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
mobil String Description: Mobile - Max length: 20.0
namn String Description: Name - Searchable: Yes - Max length: 30.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 4.0
objekt String Description: Object - Max length: 10.0
postnr String Description: Zip/city - Max length: 10.0
prod_omr String Description: Product area - Max length: 4.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
region String Description: State - Max length: 4.0
sign String Inherits from: [user.nr] - Max length: 30.0
skype String Description: Skype name - Max length: 50.0
soknamn String Description: Own id - Max length: 20.0
status Int Description: Status - Max length: 2.0
team String Description: Team - Inherits from: [team.nr] - Searchable: Yes - Max length: 4.0
team_namn String Inherits from: [team.nr] - Max length: 30.0
teamled Int Description: Team leader - Max length: 2.0
tel String Description: Phone - Max length: 20.0

status

Available service order statuses

Field Argument Type Description
ankomst Int Description: Arrival - Max length: 2.0
anm Int Description: Called in - Max length: 2.0
color String Description: Color>> - Max length: 20.0
def Int Description: Default - Max length: 2.0
del Int Description: Assigned - Max length: 2.0
kalender_bild String Description: Calendar Icon >> - Max length: 100.0
las_tab Int Description: Lock service order - Max length: 2.0
namn String Description: Name - Max length: 20.0
nr String Description: Id - Primary Key: Yes - Searchable: Yes - Max length: 20.0
plan Int Description: Planned - Max length: 2.0
retur Int Description: Revisit - Max length: 2.0
sign String Inherits from: [user.nr] - Max length: 30.0
slutf Int Description: Finished - Max length: 2.0
sort Int Description: Ordering - Searchable: Yes - Max length: 2.0
utf Int Description: Completed - Max length: 2.0

sublager

Stock balance

Field Argument Type Description
artnr String Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
bk Decimal Description: RoQ - Max length: 12.2
bp Decimal Description: RoP - Max length: 12.2
diff Decimal Description: Diff - Max length: 12.2
hylla String Description: Shelf - Searchable: Yes - Max length: 10.0
inv Decimal Description: Inv - Max length: 12.2
lagerantal Decimal Description: Quantity - Searchable: Yes - Max length: 12.2
lagerplats String Description: Inventory - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 10.0
levnr String Description: Vendor id - Searchable: Yes - Max length: 20.0
max Decimal Description: Max - Max length: 12.2
sublager String Description: Inventory - Inherits from: [tekniker.nr] - Primary Key: Yes - Searchable: Yes - Max length: 8.0

teknbok

Service order technian booking data

Field Argument Type Description
arbtid Decimal Description: Hrs. - Max length: 12.2
delaycode String Description: Time type - Max length: 10.0
jobbnr Decimal Description: Order id - Inherits from: [jobb.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
jobbstatus String Description: Status - Inherits from: [status.nr] - Max length: 20.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kommentar String Description: Text - Max length: 100.0
slutdat Date Description: End date - Max length: 10.0
sluttid Decimal Description: Time - Max length: 2.2
startdat Date Description: Start date - Primary Key: Yes - Searchable: Yes - Max length: 10.0
starttid Decimal Description: Time - Primary Key: Yes - Searchable: Yes - Max length: 2.2
tekn String Description: Technician - Inherits from: [tekniker.nr] - Primary Key: Yes - Searchable: Yes - Max length: 8.0

teknboks

Service order technian booking history data

Field Argument Type Description
arbtid Decimal Description: Work time - Max length: 12.2
delaycode String Description: Time type - Max length: 10.0
jobbnr Decimal Inherits from: [jobbhist.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
jobbstatus String Inherits from: [status.nr] - Max length: 20.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kommentar String Description: Text - Max length: 100.0
slutdat Date Description: End dat. - Primary Key: Yes - Searchable: Yes - Max length: 10.0
sluttid Decimal Description: End Time - Primary Key: Yes - Searchable: Yes - Max length: 2.2
startdat Date Description: Start dat. - Max length: 10.0
starttid Decimal Description: Start time - Max length: 2.2
tekn String Description: Tech - Inherits from: [tekniker.nr] - Primary Key: Yes - Searchable: Yes - Max length: 8.0
vecka String Description: Week - Searchable: Yes - Max length: 6.0

tekniker

System defined technicians

Field Argument Type Description
andra_tider Int Description: Allowed to edit other users' time sheets - Max length: 2.0
anst_datum Date Description: Date of hire - Max length: 10.0
arbkostn Decimal Description: Work cost per hour - Max length: 12.2
arbtim Decimal Description: Hrs./day - Max length: 2.2
art_km String Description: Product dist - Inherits from: [artiklar.artnr] - Max length: 20.0
art_resa String Description: Product travel - Inherits from: [artiklar.artnr] - Max length: 20.0
artikel_arb String Description: Product work - Inherits from: [artiklar.artnr] - Max length: 24.0
avg_datum Date Description: Departure date - Max length: 10.0
bitmap String Description: Path - Max length: 254.0
bonus Decimal Description: Bonus - Max length: 12.2
color String Description: Color - Max length: 20.0
distrikt String Description: District - Max length: 4.0
dolj_tstatus Int Description: Hide technician status - Max length: 2.0
email String Description: E-mail - Max length: 100.0
email_sms String Description: E-mail SMS - Max length: 100.0
fax String Description: Fax - Max length: 20.0
fritext String Description: Notes - Max length: 256.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 4.0
jourtelefon String Description: Emergency phone - Max length: 20.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
land String Description: Country - Max length: 30.0
lev_adress String Description: Name - Max length: 30.0
lev_marke String Description: Tag - Max length: 30.0
lev_ort String Description: City - Max length: 30.0
lev_postadress String Description: Visiting address - Max length: 30.0
lev_postnr String Description: Zip code - Max length: 10.0
mobil String Description: Mobile - Max length: 20.0
namn String Description: Name - Searchable: Yes - Max length: 30.0
nr String Description: Tech - Primary Key: Yes - Searchable: Yes - Max length: 8.0
objekt String Description: Object - Max length: 10.0
ort String Description: City - Max length: 20.0
postadress String Description: Visiting address - Max length: 30.0
postnr String Description: Zip code - Max length: 10.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
region String Description: State - Max length: 4.0
resk_km Decimal Description: Travel costs per distance - Max length: 12.2
reskostn Decimal Description: Travel costs per hour - Max length: 12.2
round_work Int Description: Invoice - Max length: 2.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
soknamn String Description: Own id - Max length: 20.0
status Int Description: Status - Max length: 2.0
sublager String Description: Inventory - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 10.0
team String Description: Team - Inherits from: [team.nr] - Max length: 4.0
team_namn String Inherits from: [team.nr] - Max length: 30.0
teknmed String Description: Message - Max length: 256.0
telefon String Description: Phone - Max length: 20.0
web_ko_alla Int Description: WinServ to WinServ, create file when assigned - Max length: 2.0

teknjobb

Service order time sheet data

Field Argument Type Description
arbtid Decimal Description: Work hours - Max length: 12.2
avv_kod String Description: Deviation - Max length: 10.0
delaycode String Description: Time type - Max length: 10.0
jobbnr Decimal Inherits from: [jobb.jobbnr] - Primary Key: Yes - Searchable: Yes - Max length: 12.2
jobbstatus String Inherits from: [status.nr] - Max length: 20.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kommentar String Description: Comment - Max length: 100.0
kundnr String Inherits from: [kunder.kundnr] - Searchable: Yes - Max length: 10.0
matar_slut Int Description: End distance - Max length: 12.0
matar_start Int Description: Start distance - Max length: 12.0
plandat Date Description: Departure - Max length: 10.0
plantid Decimal Description: Hr - Max length: 2.2
projekt String Inherits from: [projekt.nr] - Max length: 12.0
repairclass String Description: Cause - Max length: 10.0
reskm Decimal Description: Distance - Max length: 12.2
restid Decimal Description: Tvl time - Max length: 12.2
restid_min Int Description: Tvl min - Max length: 12.0
slutdat Date Description: Finished - Max length: 10.0
sluttid Decimal Description: Time - Max length: 2.2
startdat Date Description: Arrival - Primary Key: Yes - Searchable: Yes - Max length: 10.0
starttid Decimal Description: Start time - Primary Key: Yes - Searchable: Yes - Max length: 2.2
tb_minuter Int Description: TB min. - Max length: 12.0
tb_resminuter Int Description: TB min. - Max length: 12.0
tekn String Description: Technician - Inherits from: [tekniker.nr] - Searchable: Yes - Max length: 8.0
trakt Decimal Description: Subsistence - Max length: 12.2
travel_end Date Description: Homecoming - Max length: 10.0
travel_end_time Decimal Description: Time - Max length: 2.2
utlagg Decimal Description: Expense - Max length: 12.2

toner

Supplies for a given object type/model

Field Argument Type Description
antal Decimal Description: Quantity - Max length: 12.2
artben String Description: Description - Searchable: Yes - Max length: 60.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 20.0
covers_black Int Description: Cov. B - Max length: 2.0
covers_color Int Description: Cov. C - Max length: 2.0
datum Date Description: Date - Max length: 10.0
forslag Int Description: Proposal - Max length: 2.0
modell String Inherits from: [maskinty.artnr] - Primary Key: Yes - Searchable: Yes - Max length: 25.0
pris_kopia Decimal Description: Cost / center - Max length: 12.4
racker Int Description: No. of pages - Max length: 12.0
tb Decimal Description: Margin - Max length: 12.2
tg Decimal Description: MIR % - Max length: 12.2
toner_type Int Description: Type - Max length: 2.0

Inputs

GetProductPriceOptions

Provides additional context to the price calculation

Field Type Description
customerId String Get customer specific prices
machineId String Get machine or contract specific prices
unit String Get price for a specific unit, e.g. PCS. The unit must exist in WinServ.
vendorId String Get vendor specific prices
orderType OrderType Get price in the context of a specific order type
priceListId String Get price from a specific customer price list
quantity Decimal Get price for a specific quantity based price tier
technicianId String Get price for a specific technician
jobTimeType String Get price for a specific time registration type code

artgruppCreateObject

Product Groups

Field Type Description
nr String! Description: Id - Primary Key: Yes - Max length: 10.0
namn String Description: Name - Max length: 30.0
el_avg Decimal Description: Environment / return fee% - Max length: 12.2
hgrupp String Description: Main group - Max length: 10.0
inpris Decimal Description: Cost - Max length: 12.2
internet Int Description: Web Access - Max length: 2.0
kod String Description: Code - Max length: 6.0
paslag Decimal Description: Add. charge - Max length: 12.2
sign String Inherits from: [user.nr] - Max length: 30.0
utpris Decimal Description: Price - Max length: 12.2

artgruppUpdateObject

Product Groups

Field Type Description
namn String Description: Name - Max length: 30.0
el_avg Decimal Description: Environment / return fee% - Max length: 12.2
hgrupp String Description: Main group - Max length: 10.0
inpris Decimal Description: Cost - Max length: 12.2
internet Int Description: Web Access - Max length: 2.0
kod String Description: Code - Max length: 6.0
paslag Decimal Description: Add. charge - Max length: 12.2
sign String Inherits from: [user.nr] - Max length: 30.0
utpris Decimal Description: Price - Max length: 12.2

artiklarCreateObject

Product data

Field Type Description
artnr String! Description: Product id - Primary Key: Yes - Max length: 20.0
artgrupp String Description: Product group - Max length: 10.0
ben String Description: Description - Max length: 60.0
ben2 String Description: Descr. 2 - Max length: 60.0
ean String Description: SKU - Max length: 20.0
enr String Description: E-No. - Max length: 15.0
hylla String Description: Shelf - Max length: 10.0
konto String Description: Account - Max length: 6.0
kortnr String Description: Card id - Max length: 20.0
lagerplats String Description: Location - Inherits from: [tekniker.nr] - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
levart String Description: Product id - Max length: 20.0
amp Int Description: Power outlet (mA) - Max length: 8.0
arbtid Decimal Description: Work hours - Max length: 12.2
art_typ String Description: Product type - Max length: 1.0
artikeltyp String Description: Product type (custom) - Max length: 4.0
baspris Decimal Description: Base price - Max length: 12.2
bitmap String Description: Path - Max length: 254.0
certifikatnr String Description: Certificate id - Max length: 20.0
dolj_utrustn Int Description: Ignore in equipment list - Max length: 2.0
ej_tb_paverkan Int Description: Excluded from sales reports - Max length: 2.0
el_avg Decimal Description: Return fee - Max length: 12.2
enhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
ersatt String Description: Replaced by - Max length: 40.0
forp Int Description: Package sales - Max length: 12.0
forp_inkop Int Description: Package amt. - Max length: 12.0
giltighetsdatum Date Description: Valid until - Max length: 10.0
huvudartikel Int Description: Product bundle - Max length: 2.0
inpris Decimal Description: Cost - Max length: 10.4
inpris_utl Decimal Description: Foreign cost - Max length: 12.2
internet Int Description: Service - Max length: 2.0
internet_cust Int Description: Customer - Max length: 2.0
internet_sales Int Description: Sales - Max length: 2.0
kapacitet Decimal Description: Capacity (mA) - Max length: 12.4
karaktar String Description: Character - Max length: 10.0
karaktarstyp String Description: Type - Max length: 20.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
konto_inkop String Description: Purchase account - Max length: 6.0
konto_lager String Description: Inventory account - Inherits from: [tekniker.nr] - Max length: 8.0
krav_enhet Int Description: Require sales unit - Max length: 2.0
krav_orsakskod Int Description: Requires reason code - Max length: 2.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lagerantal Decimal Description: Inventory - Max length: 10.2
lagerartikel String Description: Stock-kept - Inherits from: [tekniker.nr] - Max length: 1.0
larm_arttyp Int Description: Product type - Max length: 2.0
larm_godkand Int Description: Certification status - Max length: 2.0
larm_huvudtyp Int Description: Alarm main type - Max length: 2.0
larm_sektioner Int Description: No. of sections - Max length: 12.0
larmklass String Description: Alarm class - Max length: 1.0
lev_avg Int Description: Shipping fee - Max length: 2.0
lev_lagersaldo Decimal Description: Vend inv. bal - Max length: 12.2
lev_namn String Description: Name - Max length: 30.0
miljo_markt Int Description: Eco-labeled - Max length: 2.0
momskod String Description: Tax code - Max length: 4.0
objekt String Description: Object - Max length: 10.0
omr_fakt Int Description: Exclude from contracts - Max length: 6.0
pris_and_sign String Inherits from: [user.nr] - Max length: 30.0
produktinfo String Description: Path - Max length: 254.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: Discount - Max length: 4.2
rabattklass String Description: Discount class - Max length: 6.0
rot_avdrag Int Description: Deduction - Max length: 2.0
senast_fakt Date Description: Last invoiced - Max length: 10.0
slutdatum Date Description: End date - Max length: 10.0
statistik Int Description: No result calc. impact - Max length: 2.0
status Int Description: Status - Max length: 2.0
strom_larm Decimal Description: Power, alarm (mA) - Max length: 12.4
strom_vila Decimal Description: Power, sleep (mA) - Max length: 12.4
tillv String Description: Manufacturer - Max length: 20.0
tillverk Int Description: Requires manufacturing - Max length: 2.0
toner_racker Int Description: No. of pages - Max length: 12.0
toner_type Int Description: Type - Max length: 2.0
underartkel Int Description: Product bundle member - Max length: 2.0
unr String Description: Prefix - equipment id - Max length: 10.0
upd_enhet Int Description: Don't change unit upon import - Max length: 2.0
utpris Decimal Description: Price - Max length: 10.2
utpris_2 Decimal Description: Price 2 - Max length: 12.2
utpris_3 Decimal Description: Price 3 - Max length: 12.2
utpris_4 Decimal Description: Price 4 - Max length: 12.2
utpris_5 Decimal Description: Price 5 - Max length: 12.2
vagt_inpris Decimal Description: Average cost - Max length: 12.4
valutakod String Description: Currency - Max length: 3.0
vikt Decimal Description: Weight - Max length: 12.4
volt Int Description: Volts - Max length: 8.0
volym Decimal Description: Volume - Max length: 12.4
web_bmp String Description: Path - Max length: 254.0
webinfo String Description: Information - Max length: 1024.0

artiklarUpdateObject

Product data

Field Type Description
artgrupp String Description: Product group - Max length: 10.0
ben String Description: Description - Max length: 60.0
ben2 String Description: Descr. 2 - Max length: 60.0
ean String Description: SKU - Max length: 20.0
enr String Description: E-No. - Max length: 15.0
hylla String Description: Shelf - Max length: 10.0
konto String Description: Account - Max length: 6.0
kortnr String Description: Card id - Max length: 20.0
lagerplats String Description: Location - Inherits from: [tekniker.nr] - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
levart String Description: Product id - Max length: 20.0
amp Int Description: Power outlet (mA) - Max length: 8.0
arbtid Decimal Description: Work hours - Max length: 12.2
art_typ String Description: Product type - Max length: 1.0
artikeltyp String Description: Product type (custom) - Max length: 4.0
baspris Decimal Description: Base price - Max length: 12.2
bitmap String Description: Path - Max length: 254.0
certifikatnr String Description: Certificate id - Max length: 20.0
dolj_utrustn Int Description: Ignore in equipment list - Max length: 2.0
ej_tb_paverkan Int Description: Excluded from sales reports - Max length: 2.0
el_avg Decimal Description: Return fee - Max length: 12.2
enhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
ersatt String Description: Replaced by - Max length: 40.0
forp Int Description: Package sales - Max length: 12.0
forp_inkop Int Description: Package amt. - Max length: 12.0
giltighetsdatum Date Description: Valid until - Max length: 10.0
huvudartikel Int Description: Product bundle - Max length: 2.0
inpris Decimal Description: Cost - Max length: 10.4
inpris_utl Decimal Description: Foreign cost - Max length: 12.2
internet Int Description: Service - Max length: 2.0
internet_cust Int Description: Customer - Max length: 2.0
internet_sales Int Description: Sales - Max length: 2.0
kapacitet Decimal Description: Capacity (mA) - Max length: 12.4
karaktar String Description: Character - Max length: 10.0
karaktarstyp String Description: Type - Max length: 20.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
konto_inkop String Description: Purchase account - Max length: 6.0
konto_lager String Description: Inventory account - Inherits from: [tekniker.nr] - Max length: 8.0
krav_enhet Int Description: Require sales unit - Max length: 2.0
krav_orsakskod Int Description: Requires reason code - Max length: 2.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lagerantal Decimal Description: Inventory - Max length: 10.2
lagerartikel String Description: Stock-kept - Inherits from: [tekniker.nr] - Max length: 1.0
larm_arttyp Int Description: Product type - Max length: 2.0
larm_godkand Int Description: Certification status - Max length: 2.0
larm_huvudtyp Int Description: Alarm main type - Max length: 2.0
larm_sektioner Int Description: No. of sections - Max length: 12.0
larmklass String Description: Alarm class - Max length: 1.0
lev_avg Int Description: Shipping fee - Max length: 2.0
lev_lagersaldo Decimal Description: Vend inv. bal - Max length: 12.2
lev_namn String Description: Name - Max length: 30.0
miljo_markt Int Description: Eco-labeled - Max length: 2.0
momskod String Description: Tax code - Max length: 4.0
objekt String Description: Object - Max length: 10.0
omr_fakt Int Description: Exclude from contracts - Max length: 6.0
pris_and_sign String Inherits from: [user.nr] - Max length: 30.0
produktinfo String Description: Path - Max length: 254.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: Discount - Max length: 4.2
rabattklass String Description: Discount class - Max length: 6.0
rot_avdrag Int Description: Deduction - Max length: 2.0
senast_fakt Date Description: Last invoiced - Max length: 10.0
slutdatum Date Description: End date - Max length: 10.0
statistik Int Description: No result calc. impact - Max length: 2.0
status Int Description: Status - Max length: 2.0
strom_larm Decimal Description: Power, alarm (mA) - Max length: 12.4
strom_vila Decimal Description: Power, sleep (mA) - Max length: 12.4
tillv String Description: Manufacturer - Max length: 20.0
tillverk Int Description: Requires manufacturing - Max length: 2.0
toner_racker Int Description: No. of pages - Max length: 12.0
toner_type Int Description: Type - Max length: 2.0
underartkel Int Description: Product bundle member - Max length: 2.0
unr String Description: Prefix - equipment id - Max length: 10.0
upd_enhet Int Description: Don't change unit upon import - Max length: 2.0
utpris Decimal Description: Price - Max length: 10.2
utpris_2 Decimal Description: Price 2 - Max length: 12.2
utpris_3 Decimal Description: Price 3 - Max length: 12.2
utpris_4 Decimal Description: Price 4 - Max length: 12.2
utpris_5 Decimal Description: Price 5 - Max length: 12.2
vagt_inpris Decimal Description: Average cost - Max length: 12.4
valutakod String Description: Currency - Max length: 3.0
vikt Decimal Description: Weight - Max length: 12.4
volt Int Description: Volts - Max length: 8.0
volym Decimal Description: Volume - Max length: 12.4
web_bmp String Description: Path - Max length: 254.0
webinfo String Description: Information - Max length: 1024.0

delarCreateObject

Service order row data

Field Type Description
jobbnr Decimal! Description: S-order id - Inherits from: [jobb.jobbnr] - Primary Key: Yes - Max length: 12.2
radnr Int! Description: Row no. - Primary Key: Yes - Max length: 12.0
artnr String! Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
lagerplats String Inherits from: [tekniker.nr] - Max length: 10.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Max length: 25.0
tekn_lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
antal Decimal Description: Quantity - Max length: 12.2
avv_sign String Inherits from: [user.nr] - Max length: 30.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
datum Date Description: Date - Max length: 10.0
failurecode String Description: Cause - Max length: 10.0
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.4
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: K-ställe") + " >> - Inherits from: [kst.nr] - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Ship - Max length: 12.2
lev_datum Date Description: Date - Max length: 10.0
mtyp String Inherits from: [maskinty.artnr] - Max length: 25.0
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Controller>> - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: % - Max length: 4.2
rad_total_in Decimal Description: Total - Max length: 12.2
rad_total_ut Decimal Description: Total - Max length: 12.2
rest_antal Decimal Description: Remaining - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
text String Description: Description - Max length: 80.0
utpris Decimal Description: Price - Max length: 12.2

delarUpdateObject

Service order row data

Field Type Description
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
lagerplats String Inherits from: [tekniker.nr] - Max length: 10.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Max length: 25.0
tekn_lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
antal Decimal Description: Quantity - Max length: 12.2
avv_sign String Inherits from: [user.nr] - Max length: 30.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
datum Date Description: Date - Max length: 10.0
failurecode String Description: Cause - Max length: 10.0
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.4
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: K-ställe") + " >> - Inherits from: [kst.nr] - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Ship - Max length: 12.2
lev_datum Date Description: Date - Max length: 10.0
mtyp String Inherits from: [maskinty.artnr] - Max length: 25.0
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Controller>> - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: % - Max length: 4.2
rad_total_in Decimal Description: Total - Max length: 12.2
rad_total_ut Decimal Description: Total - Max length: 12.2
rest_antal Decimal Description: Remaining - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
text String Description: Description - Max length: 80.0
utpris Decimal Description: Price - Max length: 12.2

enhetCreateObject

Product sales units

Field Type Description
kod String! Description: Code - Primary Key: Yes - Max length: 10.0
antal Decimal Description: Inventory reduction factor - Max length: 12.4
datum Date Description: Date - Max length: 10.0
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
text String Description: Text - Max length: 30.0

enhetUpdateObject

Product sales units

Field Type Description
antal Decimal Description: Inventory reduction factor - Max length: 12.4
datum Date Description: Date - Max length: 10.0
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
text String Description: Text - Max length: 30.0

fakturaCreateObject

Vendor invoices for projects

Field Type Description
fakturanr String! Description: Invoice id - Primary Key: Yes - Max length: 16.0
kundnr String! Description: Vend Id - Inherits from: [kunder.kundnr] - Primary Key: Yes - Max length: 14.0
lopnr Int! Description: Number series - Primary Key: Yes - Max length: 12.0
projekt String! Description: Project - Inherits from: [projekt.nr] - Primary Key: Yes - Max length: 12.0
faktdat Date Description: Inv date - Max length: 10.0
wsorderid Decimal Description: Order id >> - Max length: 14.2
wsordertype String Description: Order type - Max length: 1.0
belopp Decimal Description: Amount - Max length: 12.2
belopp_ex_moms Decimal Description: Ex tax - Max length: 12.2
forfdat Date Description: Due date - Max length: 10.0
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Inherits from: [kst.nr] - Max length: 10.0
moms Decimal Description: Tax - Max length: 12.2
pdf String Description: Path - Max length: 254.0
user String Inherits from: [user.nr] - Max length: 30.0
utl_belopp Decimal Description: Foreign amount - Max length: 12.2
valuta String Description: Currency - Max length: 3.0

fakturaUpdateObject

Vendor invoices for projects

Field Type Description
faktdat Date Description: Inv date - Max length: 10.0
wsorderid Decimal Description: Order id >> - Max length: 14.2
wsordertype String Description: Order type - Max length: 1.0
belopp Decimal Description: Amount - Max length: 12.2
belopp_ex_moms Decimal Description: Ex tax - Max length: 12.2
forfdat Date Description: Due date - Max length: 10.0
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Inherits from: [kst.nr] - Max length: 10.0
moms Decimal Description: Tax - Max length: 12.2
pdf String Description: Path - Max length: 254.0
user String Inherits from: [user.nr] - Max length: 30.0
utl_belopp Decimal Description: Foreign amount - Max length: 12.2
valuta String Description: Currency - Max length: 3.0

jobbCreateObject

Service order data

Field Type Description
deldat Date Description: Assigned - Max length: 10.0
deltid Decimal Description: Time - Max length: 2.2
distrikt String Description: District - Max length: 4.0
gata String Description: Visiting address - Max length: 40.0
hpordernr String Description: Foreign order - Max length: 20.0
indat Date Description: Called in - Max length: 10.0
install String Description: Customer - Max length: 50.0
intid Decimal Description: Time - Max length: 2.2
jobbprio String Description: Priority - Max length: 1.0
kundnr String Inherits from: [kunder.kundnr] - Max length: 14.0
mnr String! Description: Object id - Inherits from: [maskiner.mnr] - Max length: 25.0
modell String Description: Name - Max length: 30.0
ort String Description: City - Max length: 30.0
plandat Date Description: Planned - Max length: 10.0
plantid Decimal Description: Time - Max length: 2.2
routenr Int Description: Route no. - Max length: 12.0
startdat Date Description: Start date - Max length: 10.0
starttid Decimal Description: Time - Max length: 2.2
tekn String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
arbtid Decimal Description: Worked time - Max length: 12.2
avbk1_n String Description: Swap Object - Max length: 30.0
avbk2_n String Description: Product code - Max length: 30.0
avbk3_n String Description: W2W - Max length: 30.0
avbokn4 String Description: Shelf - Max length: 5.0
avv_atg String Description: Deviation action - Max length: 4.0
avv_kat String Description: Deviation category - Max length: 4.0
avv_kod String Description: Deviation code - Max length: 4.0
avv_lev String Description: Deviation vendor - Max length: 20.0
ber_arbtid Decimal Description: Estimated work time - Max length: 12.2
ber_fakt Decimal Description: Invoice total - Max length: 12.2
ber_fakt_ink Decimal Description: Total w tax - Max length: 12.2
ber_kostn Decimal Description: Total cost - Max length: 12.2
ber_reskm Decimal Description: Tvl dist - Max length: 12.2
ber_restid Decimal Description: Tvl time - Max length: 12.2
best_nr Decimal Description: Purchase order - Max length: 12.2
bestordernr String Description: Purch order id - Max length: 20.0
betvillk String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Technician bonus - Max length: 2.0
byggmoms Int Description: Revesed tax - Max length: 2.0
doc String Description: Document - Max length: 254.0
down Int Description: Out of order - Max length: 2.0
ds_active Int Description: Use this order for draw scheduling - Max length: 2.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Your order - Max length: 30.0
fastighetsbet String Description: Description of property - Max length: 25.0
fax String Description: Fax - Max length: 30.0
fkod1 String Description: Code - Max length: 5.0
fkod2_n String Description: Warranty reference - Max length: 30.0
fkod3_n String Description: Old version - Max length: 30.0
fkod4_n String Description: Swap version - Max length: 30.0
gan_nr String Description: Waybill id - Max length: 30.0
gar_fritext String Description: Text - Max length: 1024.0
gar_inkop String Description: Purchased - Max length: 20.0
gar_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
gar_kvitto String Description: Receipt / invoice - Max length: 20.0
garanti Int Description: Warranty - Max length: 2.0
gata2 String Description: Visiting addr 2 - Max length: 30.0
hyres_cb Int Description: Rental - Max length: 2.0
hyres_mnr String Description: Loan - Max length: 20.0
imei_ut String Description: Object type - Max length: 20.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kf Int Description: Cost proposal - Max length: 2.0
kfkr Decimal Description: Cost limit - Max length: 12.2
kontakt Int Description: Contact - Max length: 2.0
kontakta String Description: Contact - Max length: 60.0
kontakta_email String Description: E-mail - Max length: 100.0
kontakta_mobil String Description: Mobile - Max length: 20.0
kontakta_tel String Description: Phone - Max length: 20.0
kopplad Int Description: Connected - Max length: 2.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lev_nr String Description: Shipping address - Inherits from: [levadr.nr] - Max length: 10.0
levadrkund String Inherits from: [levadr.nr] - Max length: 10.0
levadrnr String Inherits from: [levadr.nr] - Max length: 10.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
mobil String Description: Mobile - Max length: 20.0
momskod String Description: Tax code - Max length: 4.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
offertnr Decimal Description: Quote id - Max length: 12.2
offertordernr Decimal Description: Order id - Max length: 12.2
orgjobbnr Decimal Description: Original order - Max length: 12.2
personnr String Description: SSN - Max length: 15.0
plac String Description: Location - Max length: 40.0
plansdat Date Description: Planned end - Max length: 10.0
planstid Decimal Description: Time end - Max length: 2.2
pnr String Description: Zip/city - Max length: 10.0
prislista String Description: Product price list - Max length: 20.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
projtyp String Description: Project type - Max length: 4.0
qualcode String Description: Swap code - Max length: 4.0
ref String Description: Caller - Max length: 60.0
reg_av String Description: Reg. by - Max length: 30.0
region String Description: State - Max length: 4.0
reskm Decimal Description: Tvl dist - Max length: 12.2
responst Decimal Description: Response time - Max length: 12.2
restid Decimal Description: Tvl time - Max length: 12.2
retur_dat Date Description: Date - Max length: 10.0
retur_lev String Description: Vendor - Max length: 20.0
retur_nr String Description: RMA no. - Max length: 20.0
retur_ref String Description: Parcel no./Ref - Max length: 20.0
retur_status String Description: Status - Max length: 4.0
retur_text String Description: Text - Max length: 512.0
rot_avdrag Int Description: Deduction - Max length: 2.0
rv1 Int Description: Current - Max length: 12.0
rv1_kopior Int Description: Quantity - Max length: 12.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
slutdat Date Description: End date - Max length: 10.0
sluttid Decimal Description: Time - Max length: 2.2
status String Description: Status - Inherits from: [status.nr] - Max length: 20.0
tb_minuter Int Description: Minutes - Max length: 12.0
tb_res_minuter Int Description: Minutes - Max length: 12.0
team String Description: Team - Inherits from: [team.nr] - Max length: 4.0
tekn_delar String Inherits from: [tekniker.nr] - Max length: 8.0
tekn2 String Inherits from: [tekniker.nr] - Max length: 8.0
tekn3 String Inherits from: [tekniker.nr] - Max length: 8.0
tekn4 String Inherits from: [tekniker.nr] - Max length: 8.0
tel String Description: Phone - Max length: 60.0
tillb_cb Int Description: Extras - Max length: 2.0
tillb_text String Description: Accessories - Max length: 30.0
totfakt Decimal Description: Total - Max length: 12.2
totkostn Decimal Description: Cost - Max length: 12.2
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
vikt Decimal Description: Weight - Max length: 12.4
volym Decimal Description: Volume - Max length: 12.4
weborder Int Description: Web order - Max length: 2.0

jobbUpdateObject

Service order data

Field Type Description
deldat Date Description: Assigned - Max length: 10.0
deltid Decimal Description: Time - Max length: 2.2
distrikt String Description: District - Max length: 4.0
gata String Description: Visiting address - Max length: 40.0
hpordernr String Description: Foreign order - Max length: 20.0
indat Date Description: Called in - Max length: 10.0
install String Description: Customer - Max length: 50.0
intid Decimal Description: Time - Max length: 2.2
jobbprio String Description: Priority - Max length: 1.0
kundnr String Inherits from: [kunder.kundnr] - Max length: 14.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Max length: 25.0
modell String Description: Name - Max length: 30.0
ort String Description: City - Max length: 30.0
plandat Date Description: Planned - Max length: 10.0
plantid Decimal Description: Time - Max length: 2.2
routenr Int Description: Route no. - Max length: 12.0
startdat Date Description: Start date - Max length: 10.0
starttid Decimal Description: Time - Max length: 2.2
tekn String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
arbtid Decimal Description: Worked time - Max length: 12.2
avbk1_n String Description: Swap Object - Max length: 30.0
avbk2_n String Description: Product code - Max length: 30.0
avbk3_n String Description: W2W - Max length: 30.0
avbokn4 String Description: Shelf - Max length: 5.0
avv_atg String Description: Deviation action - Max length: 4.0
avv_kat String Description: Deviation category - Max length: 4.0
avv_kod String Description: Deviation code - Max length: 4.0
avv_lev String Description: Deviation vendor - Max length: 20.0
ber_arbtid Decimal Description: Estimated work time - Max length: 12.2
ber_fakt Decimal Description: Invoice total - Max length: 12.2
ber_fakt_ink Decimal Description: Total w tax - Max length: 12.2
ber_kostn Decimal Description: Total cost - Max length: 12.2
ber_reskm Decimal Description: Tvl dist - Max length: 12.2
ber_restid Decimal Description: Tvl time - Max length: 12.2
best_nr Decimal Description: Purchase order - Max length: 12.2
bestordernr String Description: Purch order id - Max length: 20.0
betvillk String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Technician bonus - Max length: 2.0
byggmoms Int Description: Revesed tax - Max length: 2.0
doc String Description: Document - Max length: 254.0
down Int Description: Out of order - Max length: 2.0
ds_active Int Description: Use this order for draw scheduling - Max length: 2.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Your order - Max length: 30.0
fastighetsbet String Description: Description of property - Max length: 25.0
fax String Description: Fax - Max length: 30.0
fkod1 String Description: Code - Max length: 5.0
fkod2_n String Description: Warranty reference - Max length: 30.0
fkod3_n String Description: Old version - Max length: 30.0
fkod4_n String Description: Swap version - Max length: 30.0
gan_nr String Description: Waybill id - Max length: 30.0
gar_fritext String Description: Text - Max length: 1024.0
gar_inkop String Description: Purchased - Max length: 20.0
gar_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
gar_kvitto String Description: Receipt / invoice - Max length: 20.0
garanti Int Description: Warranty - Max length: 2.0
gata2 String Description: Visiting addr 2 - Max length: 30.0
hyres_cb Int Description: Rental - Max length: 2.0
hyres_mnr String Description: Loan - Max length: 20.0
imei_ut String Description: Object type - Max length: 20.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kf Int Description: Cost proposal - Max length: 2.0
kfkr Decimal Description: Cost limit - Max length: 12.2
kontakt Int Description: Contact - Max length: 2.0
kontakta String Description: Contact - Max length: 60.0
kontakta_email String Description: E-mail - Max length: 100.0
kontakta_mobil String Description: Mobile - Max length: 20.0
kontakta_tel String Description: Phone - Max length: 20.0
kopplad Int Description: Connected - Max length: 2.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lev_nr String Description: Shipping address - Inherits from: [levadr.nr] - Max length: 10.0
levadrkund String Inherits from: [levadr.nr] - Max length: 10.0
levadrnr String Inherits from: [levadr.nr] - Max length: 10.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
mobil String Description: Mobile - Max length: 20.0
momskod String Description: Tax code - Max length: 4.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
offertnr Decimal Description: Quote id - Max length: 12.2
offertordernr Decimal Description: Order id - Max length: 12.2
orgjobbnr Decimal Description: Original order - Max length: 12.2
personnr String Description: SSN - Max length: 15.0
plac String Description: Location - Max length: 40.0
plansdat Date Description: Planned end - Max length: 10.0
planstid Decimal Description: Time end - Max length: 2.2
pnr String Description: Zip/city - Max length: 10.0
prislista String Description: Product price list - Max length: 20.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
projtyp String Description: Project type - Max length: 4.0
qualcode String Description: Swap code - Max length: 4.0
ref String Description: Caller - Max length: 60.0
reg_av String Description: Reg. by - Max length: 30.0
region String Description: State - Max length: 4.0
reskm Decimal Description: Tvl dist - Max length: 12.2
responst Decimal Description: Response time - Max length: 12.2
restid Decimal Description: Tvl time - Max length: 12.2
retur_dat Date Description: Date - Max length: 10.0
retur_lev String Description: Vendor - Max length: 20.0
retur_nr String Description: RMA no. - Max length: 20.0
retur_ref String Description: Parcel no./Ref - Max length: 20.0
retur_status String Description: Status - Max length: 4.0
retur_text String Description: Text - Max length: 512.0
rot_avdrag Int Description: Deduction - Max length: 2.0
rv1 Int Description: Current - Max length: 12.0
rv1_kopior Int Description: Quantity - Max length: 12.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
slutdat Date Description: End date - Max length: 10.0
sluttid Decimal Description: Time - Max length: 2.2
status String Description: Status - Inherits from: [status.nr] - Max length: 20.0
tb_minuter Int Description: Minutes - Max length: 12.0
tb_res_minuter Int Description: Minutes - Max length: 12.0
team String Description: Team - Inherits from: [team.nr] - Max length: 4.0
tekn_delar String Inherits from: [tekniker.nr] - Max length: 8.0
tekn2 String Inherits from: [tekniker.nr] - Max length: 8.0
tekn3 String Inherits from: [tekniker.nr] - Max length: 8.0
tekn4 String Inherits from: [tekniker.nr] - Max length: 8.0
tel String Description: Phone - Max length: 60.0
tillb_cb Int Description: Extras - Max length: 2.0
tillb_text String Description: Accessories - Max length: 30.0
totfakt Decimal Description: Total - Max length: 12.2
totkostn Decimal Description: Cost - Max length: 12.2
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
vikt Decimal Description: Weight - Max length: 12.4
volym Decimal Description: Volume - Max length: 12.4
weborder Int Description: Web order - Max length: 2.0

jobbatCreateObject

Service order action codes data

Field Type Description
jobbnr Decimal! Inherits from: [jobb.jobbnr] - Primary Key: Yes - Max length: 12.2
rad Int! Description: Row index - Primary Key: Yes - Max length: 12.0
textrad String Description: Text row - Max length: 200.0

jobbatgCreateObject

Service order action description data

Field Type Description
jobbnr Decimal! Inherits from: [jobb.jobbnr] - Primary Key: Yes - Max length: 12.2
kod String Description: Code - Max length: 8.0
textrad String Description: Text row - Max length: 80.0

jobbfelCreateObject

Service order problem code data

Field Type Description
jobbnr Decimal! Inherits from: [jobb.jobbnr] - Primary Key: Yes - Max length: 12.2
kod String Description: Code - Max length: 8.0
textrad String Description: Code Description - Max length: 80.0

jobbftCreateObject

Service order problem description data

Field Type Description
jobbnr Decimal! Inherits from: [jobb.jobbnr] - Primary Key: Yes - Max length: 12.2
rad Int! Description: Row index - Primary Key: Yes - Max length: 12.0
textrad String Description: Text row - Max length: 200.0

jobbhistUpdateObject

Service order history data

Field Type Description
distrikt String Description: District - Max length: 4.0
faktnr Int Description: Inv.no - Max length: 12.0
hpordernr String Description: Foreign id - Max length: 20.0
indat Date Description: Called in - Max length: 10.0
intid Decimal Description: Time - Max length: 2.2
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Max length: 25.0
modell String Description: Object type - Max length: 30.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
prodkod String Description: Prod - Max length: 4.0
segment String Description: Segm - Max length: 4.0
slutdat Date Description: End date - Max length: 10.0
sluttid Decimal Description: Time - Max length: 2.2
tekn String Description: Tech - Inherits from: [tekniker.nr] - Max length: 8.0
arbkostn Decimal Description: Work cost - Max length: 12.2
arbtid Decimal Description: Work hours - Max length: 12.2
avbk1_n String Description: Swap Object - Max length: 30.0
avbk2_n String Description: Product code - Max length: 30.0
avbk3_n String Description: W2W - Max length: 30.0
avbokdat Date Description: Finished date. - Max length: 10.0
avbokn1 String Description: Action code 1 - Max length: 5.0
avbokn2 String Description: Action code 2 - Max length: 5.0
avbokn3 String Description: Action code 3 - Max length: 5.0
avbokuser String Description: Finished by - Max length: 30.0
avd String Description: Department - Max length: 30.0
avtalnr String Description: Contract id - Max length: 20.0
avv_analys String Description: Analysis - Max length: 50.0
avv_atg String Description: Deviation action - Max length: 4.0
avv_beslut String Description: Decisions - Max length: 50.0
avv_efter String Description: Post analysis - Max length: 50.0
avv_kat String Description: Deviation category - Max length: 4.0
avv_kod String Description: Deviation code - Max length: 4.0
avv_lev String Description: Deviation vend. - Max length: 20.0
ber_arbtid Decimal Description: Work hours - Max length: 12.2
ber_delar Decimal Description: Parts - Max length: 12.2
ber_fakt Decimal Description: Invoice total - Max length: 12.2
ber_kostn Decimal Description: Costs - Max length: 12.2
ber_reskm Decimal Description: Tvl dist - Max length: 12.2
ber_restid Decimal Description: Tvl time - Max length: 12.2
best_nr Decimal Description: Purch. order - Max length: 12.2
betvillk String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
byggmoms Int Description: Revesed tax - Max length: 2.0
deldat Date Description: Assigned - Max length: 10.0
doc String Description: Document - Max length: 100.0
dolj_web Int Description: Hide web - Max length: 2.0
down Int Description: Out of order - Max length: 2.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Tag - Max length: 30.0
fakt_belopp Decimal Description: Invoice amount - Max length: 12.2
faktdatum Date Description: Date - Max length: 10.0
faktura String Description: Invoice - Max length: 1.0
fakturerat String Description: Invoice Basis - Max length: 1.0
fax String Description: Fax - Max length: 30.0
fkod1 String Description: Code - Max length: 5.0
fkod2_n String Description: Warranty reference - Max length: 30.0
fkod3_n String Description: Old version - Max length: 30.0
fkod4_n String Description: Swap version - Max length: 30.0
fritext String Description: Text - Max length: 1024.0
gan_nr String Description: Waybill id - Max length: 30.0
gar_fritext String Description: Internal notes - Max length: 1024.0
gar_inkop String Description: Warranty - Max length: 20.0
gar_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
gar_kvitto String Description: Receipt - Max length: 20.0
garanti Int Description: Warranty - Max length: 2.0
gata String Description: Visiting address - Max length: 30.0
gata2 String Description: Visiting addr 2 - Max length: 30.0
hyres_mnr String Description: Loan - Max length: 20.0
install String Description: Installed - Max length: 50.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
jobbprio String Description: Priority - Max length: 1.0
kategori String Description: Category - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kontakta String Description: Contact - Max length: 30.0
kontakta_email String Description: Contact e-mail - Max length: 100.0
kontakta_mobil String Description: Contact mobile - Max length: 20.0
kontakta_tel String Description: Contact tel - Max length: 20.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
land String Description: Country - Max length: 30.0
mobil String Description: Mobile - Max length: 20.0
momskod String Description: Tax code - Max length: 4.0
offertnr Decimal Description: Quote id - Max length: 12.2
offertordernr Decimal Description: Quote id - Max length: 12.2
orgjobbnr Decimal Description: Original id - Max length: 12.2
ort String Description: City - Max length: 30.0
plac String Description: Location - Max length: 30.0
plandat Date Description: Planned - Max length: 10.0
platskod String Description: Location code - Max length: 4.0
pnr String Description: Zip/city - Max length: 10.0
projekt String Description: Project id - Inherits from: [projekt.nr] - Max length: 12.0
projtyp String Description: Project type - Max length: 4.0
qualcode String Description: Swap code - Max length: 4.0
ref String Description: Caller - Max length: 60.0
reg_av String Description: Received - Max length: 30.0
resdelkostn Decimal Description: Parts costs - Max length: 12.2
reskm Decimal Description: Tvl dist - Max length: 12.2
reskostn Decimal Description: Traveling costs - Max length: 12.2
responst Decimal Description: Response time - Max length: 12.2
restid Decimal Description: Tvl time - Max length: 12.2
rot_avdrag Int Description: Deduction - Max length: 2.0
rv1 Int Description: Meter1 - Max length: 12.0
rv1_kopior Int Description: Quantity - Max length: 12.0
rv2 Int Description: Meter2 - Max length: 12.0
rv2_kopior Int Description: Quantity - Max length: 12.0
rv3 Int Description: Meter3 - Max length: 12.0
rv4 Int Description: Meter4 - Max length: 12.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
servicedag Int Description: Service day - Max length: 2.0
servtyp String Description: Service type - Max length: 4.0
startdat Date Description: Start date - Max length: 10.0
startt Decimal Description: Start time - Max length: 12.2
starttid Decimal Description: Time - Max length: 2.2
tb_minuter Int Description: Min - Max length: 12.0
tb_saldo Int Description: Time-bank - Max length: 12.0
team String Description: Team - Inherits from: [team.nr] - Max length: 4.0
tel String Description: Phone - Max length: 60.0
tillb_text String Description: Accessories - Max length: 30.0
totfakt Decimal Description: Total - Max length: 12.2
totkostn Decimal Description: Total cost - Max length: 12.2
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
weborder Int Description: Web order - Max length: 2.0

ka_histCreateObject

Contract history

Field Type Description
datum Date Description: Date - Max length: 10.0
debper String Description: Billing cycle - Max length: 4.0
distrikt String Description: District - Max length: 4.0
faktnr Int Description: Invoice id - Max length: 12.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
mnr String! Description: Object id - Inherits from: [maskiner.mnr] - Max length: 25.0
modell String Description: Object type - Max length: 30.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
prodkod String Description: Product area - Max length: 6.0
segment String Description: Segment - Max length: 6.0
tekn String Description: Seller - Inherits from: [tekniker.nr] - Max length: 8.0
ack_kop_kr Decimal Description: Total - Max length: 12.2
ack_over_cb String Description: Meter rule - Max length: 1.0
ack_rv1 Int Description: Accum - Max length: 12.0
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
avtalnr String Description: Contract id - Max length: 20.0
block_antal Int Description: Quantity - Max length: 12.0
block_from Int Description: From - Max length: 12.0
block_tom Int Description: To - Max length: 12.0
dagar Int Description: Days - Max length: 12.0
datum_fgreg Date Description: Previous reading - Max length: 10.0
datum_reg Date Description: Registered - Max length: 10.0
debtyp String Description: Bill type - Max length: 1.0
dolj_web Int Description: Hide web - Max length: 2.0
erorder String Description: Tag - Max length: 30.0
erorder2 String Description: Tag 2 - Max length: 30.0
erref String Description: Registered by - Max length: 30.0
fakt_dat_rv1 Date Description: Last inv. date - Max length: 10.0
faktbelopp Decimal Description: Invoice amount - Max length: 12.2
faktdatum Date Description: Invoice date - Max length: 10.0
fakturerat String Description: Invoice Basis - Max length: 1.0
finansierad Int Description: Service Contract not billed - Max length: 2.0
from_datum Date Description: From date - Max length: 10.0
grundkopior Decimal Description: Included number - Max length: 12.2
grundpris Decimal Description: Service - Max length: 12.2
index_rad Decimal Description: Index - Max length: 12.2
inpris_grundavg Decimal Description: Cost - Max length: 12.2
inpris_rv1 Decimal Description: Cost - Max length: 12.4
install String Description: Customer - Max length: 50.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
jour Decimal Description: Emergency - Max length: 12.2
kategori String Description: Category - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
koptyp String Description: Financing type - Max length: 4.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
momskod String Description: Tax code - Max length: 4.0
platskod String Description: Location code - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
projektnr_javg String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r1 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r10 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r2 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r3 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r4 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r5 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r6 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r7 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r8 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r9 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_savg String Description: Project - Inherits from: [projekt.nr] - Max length: 15.0
rad10pris Decimal Description: Row 10 price - Max length: 12.2
rad1pris Decimal Description: Row 1 price - Max length: 12.2
rad2pris Decimal Description: Row 2 price - Max length: 12.2
rad3pris Decimal Description: Row 3 price - Max length: 12.2
rad4pris Decimal Description: Row 4 price - Max length: 12.2
rad5pris Decimal Description: Row 5 price - Max length: 12.2
rad6pris Decimal Description: Row 6 price - Max length: 12.2
rad7pris Decimal Description: Row 7 price - Max length: 12.2
rad8pris Decimal Description: Row 8 price - Max length: 12.2
rad9pris Decimal Description: Row 9 price - Max length: 12.2
rv1 Int Description: Meter1 - Max length: 12.0
rv1apris Decimal Description: Price per pc - Max length: 12.4
rv1kopior Int Description: Quantity - Max length: 12.0
rv1kr Decimal Description: Price - Max length: 12.2
rv1over Int Description: Over - Max length: 12.0
rv1staff1 Int Description: Tier limit - Max length: 12.0
rv1staffkr1 Decimal Description: Tier pricing - Max length: 12.2
rv2 Int Description: Meter2 - Max length: 12.0
rv2kopior Int Description: Quantity - Max length: 12.0
rv2kr Decimal Description: Meter2 amount - Max length: 12.2
rv2over Int Description: Over - Max length: 12.0
rv3 Int Description: Meter3 - Max length: 12.0
rv4 Int Description: Meter4 - Max length: 12.0
serv_typ String Description: Service type - Max length: 4.0
status String Description: Status - Max length: 1.0
sum_kop_avg Decimal Description: Total - Max length: 12.2
tb_avgift Decimal Description: TB fee - Max length: 12.2
tb_avgift_over Decimal Description: TB over min. - Max length: 12.2
tb_overtimmar Decimal Description: TB over - Max length: 12.2
text String Description: Text - Max length: 30.0
tom_datum Date Description: To date - Max length: 10.0
typ String Description: Type - Max length: 1.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
valuta_kurs Decimal Description: Training - Max length: 12.2
var_ref String Description: Our reference - Max length: 30.0
varav_hyra_rv1 Decimal Description: Rental part - Max length: 12.4
varav_hyra_serv Decimal Description: Rental part - Max length: 12.2

ka_histUpdateObject

Contract history

Field Type Description
datum Date Description: Date - Max length: 10.0
debper String Description: Billing cycle - Max length: 4.0
distrikt String Description: District - Max length: 4.0
faktnr Int Description: Invoice id - Max length: 12.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Max length: 25.0
modell String Description: Object type - Max length: 30.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
prodkod String Description: Product area - Max length: 6.0
segment String Description: Segment - Max length: 6.0
tekn String Description: Seller - Inherits from: [tekniker.nr] - Max length: 8.0
ack_kop_kr Decimal Description: Total - Max length: 12.2
ack_over_cb String Description: Meter rule - Max length: 1.0
ack_rv1 Int Description: Accum - Max length: 12.0
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
avtalnr String Description: Contract id - Max length: 20.0
block_antal Int Description: Quantity - Max length: 12.0
block_from Int Description: From - Max length: 12.0
block_tom Int Description: To - Max length: 12.0
dagar Int Description: Days - Max length: 12.0
datum_fgreg Date Description: Previous reading - Max length: 10.0
datum_reg Date Description: Registered - Max length: 10.0
debtyp String Description: Bill type - Max length: 1.0
dolj_web Int Description: Hide web - Max length: 2.0
erorder String Description: Tag - Max length: 30.0
erorder2 String Description: Tag 2 - Max length: 30.0
erref String Description: Registered by - Max length: 30.0
fakt_dat_rv1 Date Description: Last inv. date - Max length: 10.0
faktbelopp Decimal Description: Invoice amount - Max length: 12.2
faktdatum Date Description: Invoice date - Max length: 10.0
fakturerat String Description: Invoice Basis - Max length: 1.0
finansierad Int Description: Service Contract not billed - Max length: 2.0
from_datum Date Description: From date - Max length: 10.0
grundkopior Decimal Description: Included number - Max length: 12.2
grundpris Decimal Description: Service - Max length: 12.2
index_rad Decimal Description: Index - Max length: 12.2
inpris_grundavg Decimal Description: Cost - Max length: 12.2
inpris_rv1 Decimal Description: Cost - Max length: 12.4
install String Description: Customer - Max length: 50.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
jour Decimal Description: Emergency - Max length: 12.2
kategori String Description: Category - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
koptyp String Description: Financing type - Max length: 4.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
momskod String Description: Tax code - Max length: 4.0
platskod String Description: Location code - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
projektnr_javg String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r1 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r10 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r2 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r3 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r4 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r5 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r6 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r7 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r8 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_r9 String Inherits from: [projekt.nr] - Max length: 15.0
projektnr_savg String Description: Project - Inherits from: [projekt.nr] - Max length: 15.0
rad10pris Decimal Description: Row 10 price - Max length: 12.2
rad1pris Decimal Description: Row 1 price - Max length: 12.2
rad2pris Decimal Description: Row 2 price - Max length: 12.2
rad3pris Decimal Description: Row 3 price - Max length: 12.2
rad4pris Decimal Description: Row 4 price - Max length: 12.2
rad5pris Decimal Description: Row 5 price - Max length: 12.2
rad6pris Decimal Description: Row 6 price - Max length: 12.2
rad7pris Decimal Description: Row 7 price - Max length: 12.2
rad8pris Decimal Description: Row 8 price - Max length: 12.2
rad9pris Decimal Description: Row 9 price - Max length: 12.2
rv1 Int Description: Meter1 - Max length: 12.0
rv1apris Decimal Description: Price per pc - Max length: 12.4
rv1kopior Int Description: Quantity - Max length: 12.0
rv1kr Decimal Description: Price - Max length: 12.2
rv1over Int Description: Over - Max length: 12.0
rv1staff1 Int Description: Tier limit - Max length: 12.0
rv1staffkr1 Decimal Description: Tier pricing - Max length: 12.2
rv2 Int Description: Meter2 - Max length: 12.0
rv2kopior Int Description: Quantity - Max length: 12.0
rv2kr Decimal Description: Meter2 amount - Max length: 12.2
rv2over Int Description: Over - Max length: 12.0
rv3 Int Description: Meter3 - Max length: 12.0
rv4 Int Description: Meter4 - Max length: 12.0
serv_typ String Description: Service type - Max length: 4.0
status String Description: Status - Max length: 1.0
sum_kop_avg Decimal Description: Total - Max length: 12.2
tb_avgift Decimal Description: TB fee - Max length: 12.2
tb_avgift_over Decimal Description: TB over min. - Max length: 12.2
tb_overtimmar Decimal Description: TB over - Max length: 12.2
text String Description: Text - Max length: 30.0
tom_datum Date Description: To date - Max length: 10.0
typ String Description: Type - Max length: 1.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
valuta_kurs Decimal Description: Training - Max length: 12.2
var_ref String Description: Our reference - Max length: 30.0
varav_hyra_rv1 Decimal Description: Rental part - Max length: 12.4
varav_hyra_serv Decimal Description: Rental part - Max length: 12.2

kalenderCreateObject

Field Type Description
dagnr Int Description: Day # - Max length: 2.0
datum Date Description: Date - Primary Key: Yes - Searchable: Yes - Max length: 10.0
fm String Description: Business day - Max length: 1.0
leveransdag String Description: Shipping date - Max length: 1.0
servicedag Int Description: Service day - Max length: 4.0
vecka String Description: Day - Max length: 4.0
veckonr Int Description: Week - Searchable: Yes - Max length: 12.0

kalenderUpdateObject

Field Type Description
dagnr Int Description: Day # - Max length: 2.0
datum Date Description: Date - Primary Key: Yes - Searchable: Yes - Max length: 10.0
fm String Description: Business day - Max length: 1.0
leveransdag String Description: Shipping date - Max length: 1.0
servicedag Int Description: Service day - Max length: 4.0
vecka String Description: Day - Max length: 4.0
veckonr Int Description: Week - Searchable: Yes - Max length: 12.0

kordhuvCreateObject

Customer order data

Field Type Description
best_dat Date Description: Ordered - Max length: 10.0
externordernr String Description: Foreign id - Max length: 20.0
forf_datum Date Description: Due date - Max length: 10.0
kundnr String! Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
levadrnamn String Description: Name - Max length: 50.0
plandat Date Description: Desired - Max length: 10.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
anledning String Description: Reason - Max length: 4.0
arbtid Decimal Description: Work hours - Max length: 12.2
avd String Description: Dept. - Max length: 30.0
bekraft_ut Date Description: Confirmation - Max length: 10.0
best_av String Description: Caller - Max length: 30.0
best_nr Decimal Description: Purchases - Max length: 12.2
best_ut Date Description: Purchase order - Max length: 10.0
betvillkor String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
chans String Description: Order chance - Max length: 4.0
chans_tb Decimal Description: MI chance - Max length: 12.2
doc String Description: Document - Max length: 200.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Tag - Max length: 30.0
erreferens String Description: Your reference - Max length: 30.0
fax String Description: Fax - Max length: 20.0
frakts_ut Date Description: Waybill - Max length: 10.0
fritext String Description: Text - Max length: 100.0
fritext2 String Description: Internal notes - Max length: 1024.0
gan_nr String Description: Shipping no. - Max length: 30.0
hideinvoicetext Int Description: Hide this text on invoice - Max length: 2.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kampanj String Description: Special offer - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
knota_ut Date Description: Cash note - Max length: 10.0
konkurrent String Description: Competitor - Max length: 4.0
kontant_in Decimal Description: Received - Max length: 10.2
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lev_dat Date Description: Shpt date - Max length: 10.0
levadravd String Description: Dept. - Max length: 50.0
levadrgata String Description: Visiting address - Max length: 50.0
levadrnr String Description: Id - Inherits from: [levadr.nr] - Max length: 14.0
levadrort String Description: City - Max length: 50.0
levadrpnr String Description: Zip code - Max length: 20.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
marke2 String Description: Tag 2 - Max length: 30.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Max length: 25.0
mobil String Description: Mobile - Max length: 20.0
momskod String Description: Tax code - Max length: 4.0
namn String Description: Name - Max length: 50.0
objekt String Description: Object - Max length: 10.0
offert_ut Date Description: Quote - Max length: 10.0
offertnr Decimal Description: Quote id - Max length: 12.2
order_ut Date Description: Shpt note printed - Max length: 10.0
pnr String Description: Zip/city - Max length: 10.0
postadress String Description: Billing address - Max length: 30.0
prel_del Int Description: Assign - Max length: 2.0
prislista String Description: Price list - Max length: 20.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
prosp_kalla String Description: Source - Max length: 4.0
prosp_typ String Description: Business - Max length: 4.0
reg_av String Description: Reg. by - Max length: 30.0
reg_datum Date Description: Date - Max length: 10.0
reg_kl Decimal Description: Hr - Max length: 2.2
reskm Decimal Description: Tvl dist - Max length: 12.2
restid Decimal Description: Tvl time - Max length: 12.2
resultat String Description: Result - Max length: 4.0
status String Description: Status - Max length: 1.0
tb Decimal Description: Margin - Max length: 12.2
team String Description: Team - Inherits from: [team.nr] - Max length: 4.0
tel String Description: Phone - Max length: 20.0
tg Decimal Description: MIR % - Max length: 12.2
tot_ink_round Decimal Description: To pay - Max length: 12.2
totfakt Decimal Description: Total - Max length: 12.2
totfaktink Decimal Description: With tax - Max length: 12.2
totkostn Decimal Description: Exp - Max length: 12.2
typ Int Description: Type - Max length: 2.0
upptagen Int Description: Lock - Max length: 2.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
vikt Decimal Description: Weight - Max length: 12.4
volym Decimal Description: Volume - Max length: 12.4
weborder Int Description: Web order - Max length: 2.0

kordhuvUpdateObject

Customer order data

Field Type Description
best_dat Date Description: Ordered - Max length: 10.0
externordernr String Description: Foreign id - Max length: 20.0
forf_datum Date Description: Due date - Max length: 10.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
levadrnamn String Description: Name - Max length: 50.0
plandat Date Description: Desired - Max length: 10.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
anledning String Description: Reason - Max length: 4.0
arbtid Decimal Description: Work hours - Max length: 12.2
avd String Description: Dept. - Max length: 30.0
bekraft_ut Date Description: Confirmation - Max length: 10.0
best_av String Description: Caller - Max length: 30.0
best_nr Decimal Description: Purchases - Max length: 12.2
best_ut Date Description: Purchase order - Max length: 10.0
betvillkor String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
chans String Description: Order chance - Max length: 4.0
chans_tb Decimal Description: MI chance - Max length: 12.2
doc String Description: Document - Max length: 200.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Tag - Max length: 30.0
erreferens String Description: Your reference - Max length: 30.0
fax String Description: Fax - Max length: 20.0
frakts_ut Date Description: Waybill - Max length: 10.0
fritext String Description: Text - Max length: 100.0
fritext2 String Description: Internal notes - Max length: 1024.0
gan_nr String Description: Shipping no. - Max length: 30.0
hideinvoicetext Int Description: Hide this text on invoice - Max length: 2.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kampanj String Description: Special offer - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
knota_ut Date Description: Cash note - Max length: 10.0
konkurrent String Description: Competitor - Max length: 4.0
kontant_in Decimal Description: Received - Max length: 10.2
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lev_dat Date Description: Shpt date - Max length: 10.0
levadravd String Description: Dept. - Max length: 50.0
levadrgata String Description: Visiting address - Max length: 50.0
levadrnr String Description: Id - Inherits from: [levadr.nr] - Max length: 14.0
levadrort String Description: City - Max length: 50.0
levadrpnr String Description: Zip code - Max length: 20.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
marke2 String Description: Tag 2 - Max length: 30.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Max length: 25.0
mobil String Description: Mobile - Max length: 20.0
momskod String Description: Tax code - Max length: 4.0
namn String Description: Name - Max length: 50.0
objekt String Description: Object - Max length: 10.0
offert_ut Date Description: Quote - Max length: 10.0
offertnr Decimal Description: Quote id - Max length: 12.2
order_ut Date Description: Shpt note printed - Max length: 10.0
pnr String Description: Zip/city - Max length: 10.0
postadress String Description: Billing address - Max length: 30.0
prel_del Int Description: Assign - Max length: 2.0
prislista String Description: Price list - Max length: 20.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
prosp_kalla String Description: Source - Max length: 4.0
prosp_typ String Description: Business - Max length: 4.0
reg_av String Description: Reg. by - Max length: 30.0
reg_datum Date Description: Date - Max length: 10.0
reg_kl Decimal Description: Hr - Max length: 2.2
reskm Decimal Description: Tvl dist - Max length: 12.2
restid Decimal Description: Tvl time - Max length: 12.2
resultat String Description: Result - Max length: 4.0
status String Description: Status - Max length: 1.0
tb Decimal Description: Margin - Max length: 12.2
team String Description: Team - Inherits from: [team.nr] - Max length: 4.0
tel String Description: Phone - Max length: 20.0
tg Decimal Description: MIR % - Max length: 12.2
tot_ink_round Decimal Description: To pay - Max length: 12.2
totfakt Decimal Description: Total - Max length: 12.2
totfaktink Decimal Description: With tax - Max length: 12.2
totkostn Decimal Description: Exp - Max length: 12.2
typ Int Description: Type - Max length: 2.0
upptagen Int Description: Lock - Max length: 2.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
vikt Decimal Description: Weight - Max length: 12.4
volym Decimal Description: Volume - Max length: 12.4
weborder Int Description: Web order - Max length: 2.0

kordhuvsCreateObject

Customer order history

Field Type Description
best_av String Description: Caller - Max length: 30.0
best_dat Date Description: Order date - Max length: 10.0
externordernr String Description: Extern order id - Max length: 20.0
faktnr Int Description: Invoice id - Max length: 14.0
kundnr String! Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
levadrnamn String Description: Shipping address descr - Max length: 50.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
saljare_namn String Description: Seller - Max length: 30.0
totfakt Decimal Description: Total - Max length: 12.2
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
anledning String Description: Reason - Max length: 4.0
avbokdat Date Description: Finished - Max length: 10.0
avboktid Decimal Description: Time - Max length: 2.2
avbokuser String Description: Finished by - Max length: 4.0
best_nr Decimal Description: Order id - Max length: 12.2
betvillkor String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
distrikt String Description: District - Max length: 4.0
doc String Description: Document - Max length: 200.0
dolj_web Int Description: Hide web - Max length: 2.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Tag - Max length: 30.0
erreferens String Description: Your reference - Max length: 30.0
faktbelopp Decimal Description: Invoice amount - Max length: 12.2
faktdatum Date Description: Invoice date - Max length: 10.0
faktura String Description: Invoice - Max length: 1.0
fakturerat String Description: Invoice Basis - Max length: 1.0
fritext String Description: Text - Max length: 100.0
fritext2 String Description: Text - Max length: 1024.0
gan_nr String Description: Waybill id - Max length: 30.0
hideinvoicetext Int Description: Hide this text on invoice - Max length: 2.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kampanj String Description: Special offer - Max length: 4.0
kassanr Int Description: Cash register id - Max length: 4.0
kategori String Description: Category - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
knota_ut Date Description: Date - Max length: 10.0
knota_ut_kl Decimal Description: Hr - Max length: 2.2
konkurrent String Description: Competitor - Max length: 4.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lev_dat Date Description: Shpt date - Max length: 10.0
levadravd String Description: Department - Max length: 50.0
levadrgata String Description: Visiting address - Max length: 50.0
levadrnr String Description: Shpt addr id - Inherits from: [levadr.nr] - Max length: 14.0
levadrpnr String Description: Zip/city - Max length: 20.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
mnr String Inherits from: [maskiner.mnr] - Max length: 25.0
mobil String Description: Mobile - Max length: 20.0
momskod String Description: Tax code - Max length: 4.0
objekt String Description: Object - Max length: 10.0
offertnr Decimal Description: Quote id - Max length: 12.2
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
reg_av String Description: Reg. by - Max length: 30.0
resultat String Description: Result - Max length: 4.0
team String Inherits from: [team.nr] - Max length: 4.0
tel String Description: Phone - Max length: 20.0
tot_ink_round Decimal Description: Total w tax - Max length: 12.2
totkostn Decimal Description: Total - Max length: 12.2
typ Int Description: Type - Max length: 2.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
valuta_kurs Decimal Description: Training - Max length: 12.4
vikt Decimal Description: Weight - Max length: 12.4
weborder Int Description: Web order - Max length: 2.0

kordhuvsUpdateObject

Customer order history

Field Type Description
best_av String Description: Caller - Max length: 30.0
best_dat Date Description: Order date - Max length: 10.0
externordernr String Description: Extern order id - Max length: 20.0
faktnr Int Description: Invoice id - Max length: 14.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
levadrnamn String Description: Shipping address descr - Max length: 50.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
saljare_namn String Description: Seller - Max length: 30.0
totfakt Decimal Description: Total - Max length: 12.2
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
anledning String Description: Reason - Max length: 4.0
avbokdat Date Description: Finished - Max length: 10.0
avboktid Decimal Description: Time - Max length: 2.2
avbokuser String Description: Finished by - Max length: 4.0
best_nr Decimal Description: Order id - Max length: 12.2
betvillkor String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
distrikt String Description: District - Max length: 4.0
doc String Description: Document - Max length: 200.0
dolj_web Int Description: Hide web - Max length: 2.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Tag - Max length: 30.0
erreferens String Description: Your reference - Max length: 30.0
faktbelopp Decimal Description: Invoice amount - Max length: 12.2
faktdatum Date Description: Invoice date - Max length: 10.0
faktura String Description: Invoice - Max length: 1.0
fakturerat String Description: Invoice Basis - Max length: 1.0
fritext String Description: Text - Max length: 100.0
fritext2 String Description: Text - Max length: 1024.0
gan_nr String Description: Waybill id - Max length: 30.0
hideinvoicetext Int Description: Hide this text on invoice - Max length: 2.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kampanj String Description: Special offer - Max length: 4.0
kassanr Int Description: Cash register id - Max length: 4.0
kategori String Description: Category - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
knota_ut Date Description: Date - Max length: 10.0
knota_ut_kl Decimal Description: Hr - Max length: 2.2
konkurrent String Description: Competitor - Max length: 4.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lev_dat Date Description: Shpt date - Max length: 10.0
levadravd String Description: Department - Max length: 50.0
levadrgata String Description: Visiting address - Max length: 50.0
levadrnr String Description: Shpt addr id - Inherits from: [levadr.nr] - Max length: 14.0
levadrpnr String Description: Zip/city - Max length: 20.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
mnr String Inherits from: [maskiner.mnr] - Max length: 25.0
mobil String Description: Mobile - Max length: 20.0
momskod String Description: Tax code - Max length: 4.0
objekt String Description: Object - Max length: 10.0
offertnr Decimal Description: Quote id - Max length: 12.2
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
reg_av String Description: Reg. by - Max length: 30.0
resultat String Description: Result - Max length: 4.0
team String Inherits from: [team.nr] - Max length: 4.0
tel String Description: Phone - Max length: 20.0
tot_ink_round Decimal Description: Total w tax - Max length: 12.2
totkostn Decimal Description: Total - Max length: 12.2
typ Int Description: Type - Max length: 2.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
valuta_kurs Decimal Description: Training - Max length: 12.4
vikt Decimal Description: Weight - Max length: 12.4
weborder Int Description: Web order - Max length: 2.0

kordradCreateObject

Customer order rows

Field Type Description
ord_nr Decimal! Inherits from: [kordhuv.ordernr] - Primary Key: Yes - Max length: 12.2
radnr Int! Description: Row no. - Primary Key: Yes - Max length: 12.0
artnr String! Inherits from: [artiklar.artnr] - Max length: 20.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
lagerplats String Inherits from: [tekniker.nr] - Max length: 10.0
antal Decimal Description: Quantity - Max length: 12.2
ben String Description: Description - Max length: 60.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
datum Date Description: Date - Max length: 10.0
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: K-ställe") + " >> - Inherits from: [kst.nr] - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Ship - Max length: 12.2
lev_datum Date Description: Date - Max length: 10.0
momskod String Description: MK - Max length: 4.0
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Controller>> - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 20.0
rabatt Decimal Description: Discount - Max length: 4.2
rad_total_in Decimal Description: Total - Max length: 12.2
rad_total_ut Decimal Description: Total - Max length: 12.2
rest_antal Decimal Description: Remaining - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
utpris Decimal Description: Price - Max length: 12.2
utprisink Decimal Description: With tax - Max length: 12.2

kordradUpdateObject

Customer order rows

Field Type Description
artnr String Inherits from: [artiklar.artnr] - Max length: 20.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
lagerplats String Inherits from: [tekniker.nr] - Max length: 10.0
antal Decimal Description: Quantity - Max length: 12.2
ben String Description: Description - Max length: 60.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
datum Date Description: Date - Max length: 10.0
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: K-ställe") + " >> - Inherits from: [kst.nr] - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Ship - Max length: 12.2
lev_datum Date Description: Date - Max length: 10.0
momskod String Description: MK - Max length: 4.0
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Controller>> - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 20.0
rabatt Decimal Description: Discount - Max length: 4.2
rad_total_in Decimal Description: Total - Max length: 12.2
rad_total_ut Decimal Description: Total - Max length: 12.2
rest_antal Decimal Description: Remaining - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
utpris Decimal Description: Price - Max length: 12.2
utprisink Decimal Description: With tax - Max length: 12.2

kordradsCreateObject

Customer order history rows

Field Type Description
ord_nr Decimal! Inherits from: [kordhuvs.ordernr] - Primary Key: Yes - Max length: 12.2
radnr Int! Description: Row no. - Primary Key: Yes - Max length: 12.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
datum Date Description: Date - Max length: 10.0
kundnr String Inherits from: [kunder.kundnr] - Max length: 14.0
lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
antal Decimal Description: Shipped - Max length: 12.2
art_ben String Description: Description - Max length: 60.0
ben String Description: Description - Max length: 60.0
best_antal Decimal Description: Ordered - Max length: 12.2
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Inherits from: [kst.nr] - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Shpt - Max length: 12.2
lev_datum Date Description: Shpt date - Max length: 10.0
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Guiding - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: Discount - Max length: 4.2
rad_total_in Decimal Description: Total - Max length: 12.2
rad_total_ut Decimal Description: Total - Max length: 12.2
rest_antal Decimal Description: Remaining - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
utpris Decimal Description: Price - Max length: 12.2

kordradsUpdateObject

Customer order history rows

Field Type Description
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
datum Date Description: Date - Max length: 10.0
kundnr String Inherits from: [kunder.kundnr] - Max length: 14.0
lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
antal Decimal Description: Shipped - Max length: 12.2
art_ben String Description: Description - Max length: 60.0
ben String Description: Description - Max length: 60.0
best_antal Decimal Description: Ordered - Max length: 12.2
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Inherits from: [kst.nr] - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Shpt - Max length: 12.2
lev_datum Date Description: Shpt date - Max length: 10.0
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Guiding - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: Discount - Max length: 4.2
rad_total_in Decimal Description: Total - Max length: 12.2
rad_total_ut Decimal Description: Total - Max length: 12.2
rest_antal Decimal Description: Remaining - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
utpris Decimal Description: Price - Max length: 12.2

kunderCreateObject

Customer data

Field Type Description
kundnr String! Description: Customer id - Primary Key: Yes - Max length: 14.0
avd String Description: Department - Max length: 50.0
b_port String Description: City - Max length: 50.0
badress String Description: Visiting address - Max length: 50.0
distrikt String Description: District - Max length: 4.0
ean String Description: SKU - Max length: 20.0
kategori String Description: Category - Max length: 4.0
namn String Description: Legal name - Max length: 50.0
orgnr String Description: EIN - Max length: 20.0
pnr String Description: Zip code - Max length: 20.0
pop_namn String Description: Customer name - Max length: 50.0
port String Description: City - Max length: 50.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
soknamn String Description: Own id - Max length: 30.0
tel String Description: Phone - Max length: 30.0
a_region String Description: A-state - Max length: 4.0
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
aterforsaljare Int Description: Dealer - Max length: 2.0
b_avd String Description: Department - Max length: 50.0
b_pnr String Description: Zip code - Max length: 20.0
badress2 String Description: Visiting addr 2 - Max length: 50.0
bankgiro String Description: Routing # - Max length: 50.0
baskundnr String Description: Basic cust. id - Inherits from: [kunder.kundnr] - Max length: 25.0
bet_villkor String Description: Payment terms - Max length: 4.0
bitmap String Description: Path - Max length: 254.0
bokslut String Description: Final accounts month - Max length: 10.0
byggmoms Int Description: Revesed tax - Max length: 2.0
cfar String Description: CFAR - Max length: 10.0
countrycode String Description: Country code - Max length: 10.0
def_kont_avd String Description: Department - Max length: 4.0
def_kont_kat String Description: Contact category - Max length: 4.0
div_mnr Int Description: Misc. object id - Max length: 12.0
eget_kapital Int Description: Equity - Max length: 12.0
ej_email Int Description: Unsubscribed, E-mail - Max length: 2.0
ej_etikett Int Description: Don't print on labels - Max length: 2.0
ej_reg_kontakt Int Description: Don't send contacts - Max length: 2.0
ej_skicka_order Int Description: Don't send order - Max length: 2.0
ej_sms Int Description: Unsubscribed, SMS - Max length: 2.0
elreturavgift Int Description: Return fee - Max length: 2.0
email String Description: E-mail - Max length: 100.0
eu Int Description: EU customer - Max length: 2.0
export Int Description: Export customer - Max length: 2.0
fakt_avg Int Description: Invoice fee - Max length: 2.0
fax String Description: Fax - Max length: 20.0
foretagform Int Description: Company type - Max length: 2.0
forfallet Decimal Description: Lapsed - Max length: 12.2
fri_text String Description: Notes - Max length: 512.0
fritext String Description: Notes - Max length: 512.0
gan_nr String Description: Shipping no. - Max length: 30.0
gatunr String Description: Id. - Max length: 4.0
ignorera_kredit Int Description: All contacts can always shop - Max length: 2.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 6.0
kommun_kod String Description: Municipality - Max length: 4.0
kontakt Int Description: Contact - Max length: 2.0
kontakt_den Date Description: Date - Max length: 10.0
kontakt_sign String Description: Signature - Inherits from: [user.nr] - Max length: 30.0
konto String Description: Account - Max length: 6.0
krav_marke Int Description: Tag required - Max length: 2.0
krav_marke2 Int Description: Tag 2 required - Max length: 2.0
krav_referens Int Description: Financial reference required - Max length: 2.0
kredit_beslut Int Description: Credit decision - Max length: 2.0
kredit_over Int Description: Upper credit - Max length: 12.0
kredit_under Int Description: Lower credit - Max length: 12.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kund Int Description: Customer - Max length: 2.0
kund_doc String Description: Folder structure - Max length: 220.0
kundavtal String Description: Customer contract - Max length: 10.0
kundmed String Description: Customer message (displayed upon order registration) - Max length: 1024.0
kundnr_rabatt String Description: Discount contract - Inherits from: [kunder.kundnr] - Max length: 14.0
kundprio String Description: Priority - Max length: 4.0
kundprislista String Description: Customer price list - Max length: 10.0
kundtyp String Description: Contr. type - Max length: 4.0
lagerplats String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
lan_kod String Description: County id - Max length: 4.0
land String Description: Country - Max length: 50.0
lev Int Description: Vendor - Max length: 2.0
lev_avg Int Description: Shipping not included - Max length: 2.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 4.0
levvillkor String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 4.0
limit Decimal Description: Credit limit - Max length: 12.2
marke2 String Description: Tag 2 - Max length: 30.0
mobil String Description: Mobile - Max length: 30.0
momskod String Description: Tax code - Max length: 4.0
no_contract_inv Int Description: Contract invoice - Max length: 2.0
no_meter_regs Int Description: Meter readings - Max length: 2.0
no_service_regs Int Description: Service order - Max length: 2.0
no_supply_regs Int Description: Supply order - Max length: 2.0
objekt String Description: Object - Max length: 10.0
omsattning Int Description: Turnover - Max length: 12.0
ordernr String Description: Tag - Max length: 30.0
padress String Description: Billing address - Max length: 50.0
padress2 String Description: Billing addr 2 - Max length: 50.0
parnr String Description: PAR - Max length: 10.0
postgiro String Description: Account # - Max length: 50.0
prislista String Description: Price list - Max length: 1.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
prosp_kalla String Description: Source - Max length: 4.0
prosp_typ String Description: Business - Max length: 4.0
prospect Int Description: Prospect - Max length: 4.0
rabatt Decimal Description: Discount% - Max length: 12.2
rating String Description: Rating - Max length: 10.0
referens String Description: Financial ref - Max length: 30.0
reg_ny_obj_web Int Description: Create new objects - Max length: 2.0
region String Description: Reg. - Max length: 4.0
respons_avtal Decimal Description: During contract - Max length: 12.2
respons_ejavtal Decimal Description: After expiration - Max length: 12.2
rot_avdrag Int Description: Deduction - Max length: 2.0
saldo Decimal Description: Credit balance - Max length: 12.2
salj2prio String Description: Priority - Max length: 1.0
saljare2 String Description: Seller 2 - Inherits from: [saljare.nr] - Max length: 4.0
saljprio String Description: Priority - Max length: 1.0
samfakt String Description: Consolidated invoice - Max length: 1.0
samfakt_jobb Int Description: Consolidated invoice service - Max length: 2.0
skapa_ej_order Int Description: Do not create invoice basis - Max length: 2.0
sni String Description: Code - Max length: 10.0
sni_b String Description: SIC #2 - Max length: 10.0
sparr Int Description: Blocked - Max length: 2.0
sprak String Description: Language - Max length: 3.0
startar String Description: Start year - Max length: 4.0
startavgift Int Description: Entry fee service order - Max length: 2.0
startt_avtal Decimal Description: Start time contr. - Max length: 12.2
startt_ejavtal Decimal Description: Start time no contr. - Max length: 12.2
status Int Description: Passive - Max length: 2.0
steam String Description: Sales team - Inherits from: [team.nr] - Max length: 4.0
storlek String Description: Employees - Max length: 10.0
tekn String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
tekn_namn String Inherits from: [tekniker.nr] - Max length: 30.0
use_ordtyp_def Int Description: Activate - Max length: 2.0
valuta String Description: Currency - Max length: 3.0
vaning String Description: Floor - Max length: 4.0
vatcode String Description: Tax number - Max length: 20.0
visa_avgifter Int Description: Show charges - Max length: 2.0
visa_avtalkostn Int Description: Show costs - Max length: 2.0
visa_lagerstat Int Description: Show inventory status - Max length: 2.0
visa_med_sorder Int Description: Show on service order printout - Max length: 2.0
web String Description: Web - Max length: 100.0
web_arenden Int Description: Cases - Max length: 2.0
web_artiklar Int Description: Products - Max length: 2.0
web_bas Int Description: Base order - Max length: 2.0
web_dokument Int Description: Show document - Max length: 2.0
web_dokument_ny Int Description: Upload document - Max length: 2.0
web_ej_enhet Int Description: Sales unit locked - Max length: 2.0
web_forder Int Description: Supply order - Max length: 2.0
web_hide_prices Int Description: Don't show prices in order history - Max length: 2.0
web_jobb Int Description: Service registration - Max length: 2.0
web_kampanj Int Description: Webshop - Max length: 2.0
web_kurser Int Description: Trainings - Max length: 2.0
web_mlista Int Description: Objects - Max length: 2.0
web_multiforb Int Description: Multi-order - Max length: 2.0
web_order Int Description: Customer order - Max length: 2.0
web_rv Int Description: Meter readings - Max length: 2.0

kunderUpdateObject

Customer data

Field Type Description
avd String Description: Department - Max length: 50.0
b_port String Description: City - Max length: 50.0
badress String Description: Visiting address - Max length: 50.0
distrikt String Description: District - Max length: 4.0
ean String Description: SKU - Max length: 20.0
kategori String Description: Category - Max length: 4.0
namn String Description: Legal name - Max length: 50.0
orgnr String Description: EIN - Max length: 20.0
pnr String Description: Zip code - Max length: 20.0
pop_namn String Description: Customer name - Max length: 50.0
port String Description: City - Max length: 50.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
soknamn String Description: Own id - Max length: 30.0
tel String Description: Phone - Max length: 30.0
a_region String Description: A-state - Max length: 4.0
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
aterforsaljare Int Description: Dealer - Max length: 2.0
b_avd String Description: Department - Max length: 50.0
b_pnr String Description: Zip code - Max length: 20.0
badress2 String Description: Visiting addr 2 - Max length: 50.0
bankgiro String Description: Routing # - Max length: 50.0
baskundnr String Description: Basic cust. id - Inherits from: [kunder.kundnr] - Max length: 25.0
bet_villkor String Description: Payment terms - Max length: 4.0
bitmap String Description: Path - Max length: 254.0
bokslut String Description: Final accounts month - Max length: 10.0
byggmoms Int Description: Revesed tax - Max length: 2.0
cfar String Description: CFAR - Max length: 10.0
countrycode String Description: Country code - Max length: 10.0
def_kont_avd String Description: Department - Max length: 4.0
def_kont_kat String Description: Contact category - Max length: 4.0
div_mnr Int Description: Misc. object id - Max length: 12.0
eget_kapital Int Description: Equity - Max length: 12.0
ej_email Int Description: Unsubscribed, E-mail - Max length: 2.0
ej_etikett Int Description: Don't print on labels - Max length: 2.0
ej_reg_kontakt Int Description: Don't send contacts - Max length: 2.0
ej_skicka_order Int Description: Don't send order - Max length: 2.0
ej_sms Int Description: Unsubscribed, SMS - Max length: 2.0
elreturavgift Int Description: Return fee - Max length: 2.0
email String Description: E-mail - Max length: 100.0
eu Int Description: EU customer - Max length: 2.0
export Int Description: Export customer - Max length: 2.0
fakt_avg Int Description: Invoice fee - Max length: 2.0
fax String Description: Fax - Max length: 20.0
foretagform Int Description: Company type - Max length: 2.0
forfallet Decimal Description: Lapsed - Max length: 12.2
fri_text String Description: Notes - Max length: 512.0
fritext String Description: Notes - Max length: 512.0
gan_nr String Description: Shipping no. - Max length: 30.0
gatunr String Description: Id. - Max length: 4.0
ignorera_kredit Int Description: All contacts can always shop - Max length: 2.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 6.0
kommun_kod String Description: Municipality - Max length: 4.0
kontakt Int Description: Contact - Max length: 2.0
kontakt_den Date Description: Date - Max length: 10.0
kontakt_sign String Description: Signature - Inherits from: [user.nr] - Max length: 30.0
konto String Description: Account - Max length: 6.0
krav_marke Int Description: Tag required - Max length: 2.0
krav_marke2 Int Description: Tag 2 required - Max length: 2.0
krav_referens Int Description: Financial reference required - Max length: 2.0
kredit_beslut Int Description: Credit decision - Max length: 2.0
kredit_over Int Description: Upper credit - Max length: 12.0
kredit_under Int Description: Lower credit - Max length: 12.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kund Int Description: Customer - Max length: 2.0
kund_doc String Description: Folder structure - Max length: 220.0
kundavtal String Description: Customer contract - Max length: 10.0
kundmed String Description: Customer message (displayed upon order registration) - Max length: 1024.0
kundnr_rabatt String Description: Discount contract - Inherits from: [kunder.kundnr] - Max length: 14.0
kundprio String Description: Priority - Max length: 4.0
kundprislista String Description: Customer price list - Max length: 10.0
kundtyp String Description: Contr. type - Max length: 4.0
lagerplats String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
lan_kod String Description: County id - Max length: 4.0
land String Description: Country - Max length: 50.0
lev Int Description: Vendor - Max length: 2.0
lev_avg Int Description: Shipping not included - Max length: 2.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 4.0
levvillkor String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 4.0
limit Decimal Description: Credit limit - Max length: 12.2
marke2 String Description: Tag 2 - Max length: 30.0
mobil String Description: Mobile - Max length: 30.0
momskod String Description: Tax code - Max length: 4.0
no_contract_inv Int Description: Contract invoice - Max length: 2.0
no_meter_regs Int Description: Meter readings - Max length: 2.0
no_service_regs Int Description: Service order - Max length: 2.0
no_supply_regs Int Description: Supply order - Max length: 2.0
objekt String Description: Object - Max length: 10.0
omsattning Int Description: Turnover - Max length: 12.0
ordernr String Description: Tag - Max length: 30.0
padress String Description: Billing address - Max length: 50.0
padress2 String Description: Billing addr 2 - Max length: 50.0
parnr String Description: PAR - Max length: 10.0
postgiro String Description: Account # - Max length: 50.0
prislista String Description: Price list - Max length: 1.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
prosp_kalla String Description: Source - Max length: 4.0
prosp_typ String Description: Business - Max length: 4.0
prospect Int Description: Prospect - Max length: 4.0
rabatt Decimal Description: Discount% - Max length: 12.2
rating String Description: Rating - Max length: 10.0
referens String Description: Financial ref - Max length: 30.0
reg_ny_obj_web Int Description: Create new objects - Max length: 2.0
region String Description: Reg. - Max length: 4.0
respons_avtal Decimal Description: During contract - Max length: 12.2
respons_ejavtal Decimal Description: After expiration - Max length: 12.2
rot_avdrag Int Description: Deduction - Max length: 2.0
saldo Decimal Description: Credit balance - Max length: 12.2
salj2prio String Description: Priority - Max length: 1.0
saljare2 String Description: Seller 2 - Inherits from: [saljare.nr] - Max length: 4.0
saljprio String Description: Priority - Max length: 1.0
samfakt String Description: Consolidated invoice - Max length: 1.0
samfakt_jobb Int Description: Consolidated invoice service - Max length: 2.0
skapa_ej_order Int Description: Do not create invoice basis - Max length: 2.0
sni String Description: Code - Max length: 10.0
sni_b String Description: SIC #2 - Max length: 10.0
sparr Int Description: Blocked - Max length: 2.0
sprak String Description: Language - Max length: 3.0
startar String Description: Start year - Max length: 4.0
startavgift Int Description: Entry fee service order - Max length: 2.0
startt_avtal Decimal Description: Start time contr. - Max length: 12.2
startt_ejavtal Decimal Description: Start time no contr. - Max length: 12.2
status Int Description: Passive - Max length: 2.0
steam String Description: Sales team - Inherits from: [team.nr] - Max length: 4.0
storlek String Description: Employees - Max length: 10.0
tekn String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
tekn_namn String Inherits from: [tekniker.nr] - Max length: 30.0
use_ordtyp_def Int Description: Activate - Max length: 2.0
valuta String Description: Currency - Max length: 3.0
vaning String Description: Floor - Max length: 4.0
vatcode String Description: Tax number - Max length: 20.0
visa_avgifter Int Description: Show charges - Max length: 2.0
visa_avtalkostn Int Description: Show costs - Max length: 2.0
visa_lagerstat Int Description: Show inventory status - Max length: 2.0
visa_med_sorder Int Description: Show on service order printout - Max length: 2.0
web String Description: Web - Max length: 100.0
web_arenden Int Description: Cases - Max length: 2.0
web_artiklar Int Description: Products - Max length: 2.0
web_bas Int Description: Base order - Max length: 2.0
web_dokument Int Description: Show document - Max length: 2.0
web_dokument_ny Int Description: Upload document - Max length: 2.0
web_ej_enhet Int Description: Sales unit locked - Max length: 2.0
web_forder Int Description: Supply order - Max length: 2.0
web_hide_prices Int Description: Don't show prices in order history - Max length: 2.0
web_jobb Int Description: Service registration - Max length: 2.0
web_kampanj Int Description: Webshop - Max length: 2.0
web_kurser Int Description: Trainings - Max length: 2.0
web_mlista Int Description: Objects - Max length: 2.0
web_multiforb Int Description: Multi-order - Max length: 2.0
web_order Int Description: Customer order - Max length: 2.0
web_rv Int Description: Meter readings - Max length: 2.0

kundplCreateObject

Customer price lists

Field Type Description
nr String! Description: Id - Primary Key: Yes - Max length: 10.0
datum Date Description: Date - Max length: 10.0
galler_tom Date Description: Expires - Max length: 10.0
namn String Description: Name - Max length: 30.0
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0

kundplUpdateObject

Customer price lists

Field Type Description
datum Date Description: Date - Max length: 10.0
galler_tom Date Description: Expires - Max length: 10.0
namn String Description: Name - Max length: 30.0
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0

kundpl_aCreateObject

Customer price list pricing per product

Field Type Description
artnr String! Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Max length: 25.0
enhet String! Description: Unit - Inherits from: [enhet.kod] - Primary Key: Yes - Max length: 10.0
nr String! Inherits from: [kundpl.nr] - Primary Key: Yes - Max length: 10.0
baserat Int Description: Based on - Max length: 2.0
ben String Description: Description - Max length: 60.0
datum Date Description: Date - Max length: 10.0
fom_datum Date Description: From date - Max length: 10.0
inpris Decimal Description: Cost - Max length: 12.2
pris Decimal Description: Price - Max length: 12.2
rabatt Decimal Description: Discount% - Max length: 12.2
serienr String Description: Serial - Max length: 20.0
sign String Inherits from: [user.nr] - Max length: 30.0
tom_datum Date Description: To date - Max length: 10.0
typ String Description: Type - Max length: 1.0

kundpl_aUpdateObject

Customer price list pricing per product

Field Type Description
baserat Int Description: Based on - Max length: 2.0
ben String Description: Description - Max length: 60.0
datum Date Description: Date - Max length: 10.0
fom_datum Date Description: From date - Max length: 10.0
inpris Decimal Description: Cost - Max length: 12.2
pris Decimal Description: Price - Max length: 12.2
rabatt Decimal Description: Discount% - Max length: 12.2
serienr String Description: Serial - Max length: 20.0
sign String Inherits from: [user.nr] - Max length: 30.0
tom_datum Date Description: To date - Max length: 10.0
typ String Description: Type - Max length: 1.0

levCreateObject

Vendors

Field Type Description
nr String! Description: Id - Primary Key: Yes - Max length: 20.0
ean String Description: SKU - Max length: 20.0
kundnr String Description: Customer id by vendor. - Inherits from: [kunder.kundnr] - Max length: 15.0
namn String Description: Name - Max length: 50.0
teknik String Description: Tech. - Inherits from: [tekniker.nr] - Max length: 8.0
avd String Description: Department - Max length: 50.0
b_ort String Description: City - Max length: 20.0
b_postnr String Description: Zip code - Max length: 10.0
bet_villkor String Description: Payment terms - Max length: 4.0
bg String Description: Routing # - Max length: 50.0
bitmap String Description: Path - Max length: 254.0
box String Description: Billing address - Max length: 50.0
bv Int Description: Guarding companies - Max length: 2.0
countrycode String Description: Country code - Max length: 10.0
email String Description: E-mail - Max length: 100.0
fax String Description: Fax - Max length: 20.0
gatuadress String Description: Visiting address - Max length: 50.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
iso String Description: ISO code - Max length: 4.0
iso_comment String Description: Comment - Max length: 1024.0
iso_date Date Description: Date - Max length: 10.0
iso_grad Int Description: Rating - Max length: 2.0
iso_ok Int Description: Approved - Max length: 2.0
iso_sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
kval String Description: Quality - Max length: 4.0
land String Description: Country - Max length: 50.0
larm_bord String Description: Phone alarm table - Max length: 20.0
larm_fax String Description: Alarm fax - Max length: 20.0
larm_mail String Description: Alarm e-mail - Max length: 100.0
larm_teletj String Description: Customer service - Max length: 20.0
lc Int Description: Emergency dispatch - Max length: 2.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 4.0
mobil String Description: Mobile - Max length: 30.0
orgnr String Description: EIN - Max length: 20.0
ort String Description: City - Max length: 20.0
pg String Description: Account # - Max length: 50.0
postnr String Description: Zip code - Max length: 10.0
prefix_epl String Description: Prefix external price list - Max length: 10.0
referens String Description: Reference - Max length: 30.0
solid String Description: Solidity - Max length: 4.0
ssf1063 Int Description: Approved SSF 1063 - Max length: 2.0
ssf136 Int Description: Approved SSF 136 - Max length: 2.0
status Int Description: Status - Max length: 2.0
tel String Description: Phone - Max length: 30.0
valuta String Description: Currency - Max length: 4.0
web String Description: Web - Max length: 100.0

levUpdateObject

Vendors

Field Type Description
ean String Description: SKU - Max length: 20.0
kundnr String Description: Customer id by vendor. - Inherits from: [kunder.kundnr] - Max length: 15.0
namn String Description: Name - Max length: 50.0
teknik String Description: Tech. - Inherits from: [tekniker.nr] - Max length: 8.0
avd String Description: Department - Max length: 50.0
b_ort String Description: City - Max length: 20.0
b_postnr String Description: Zip code - Max length: 10.0
bet_villkor String Description: Payment terms - Max length: 4.0
bg String Description: Routing # - Max length: 50.0
bitmap String Description: Path - Max length: 254.0
box String Description: Billing address - Max length: 50.0
bv Int Description: Guarding companies - Max length: 2.0
countrycode String Description: Country code - Max length: 10.0
email String Description: E-mail - Max length: 100.0
fax String Description: Fax - Max length: 20.0
gatuadress String Description: Visiting address - Max length: 50.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
iso String Description: ISO code - Max length: 4.0
iso_comment String Description: Comment - Max length: 1024.0
iso_date Date Description: Date - Max length: 10.0
iso_grad Int Description: Rating - Max length: 2.0
iso_ok Int Description: Approved - Max length: 2.0
iso_sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
kval String Description: Quality - Max length: 4.0
land String Description: Country - Max length: 50.0
larm_bord String Description: Phone alarm table - Max length: 20.0
larm_fax String Description: Alarm fax - Max length: 20.0
larm_mail String Description: Alarm e-mail - Max length: 100.0
larm_teletj String Description: Customer service - Max length: 20.0
lc Int Description: Emergency dispatch - Max length: 2.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 4.0
mobil String Description: Mobile - Max length: 30.0
orgnr String Description: EIN - Max length: 20.0
ort String Description: City - Max length: 20.0
pg String Description: Account # - Max length: 50.0
postnr String Description: Zip code - Max length: 10.0
prefix_epl String Description: Prefix external price list - Max length: 10.0
referens String Description: Reference - Max length: 30.0
solid String Description: Solidity - Max length: 4.0
ssf1063 Int Description: Approved SSF 1063 - Max length: 2.0
ssf136 Int Description: Approved SSF 136 - Max length: 2.0
status Int Description: Status - Max length: 2.0
tel String Description: Phone - Max length: 30.0
valuta String Description: Currency - Max length: 4.0
web String Description: Web - Max length: 100.0

levadrCreateObject

Customer delivery addresses

Field Type Description
kundnr String! Description: Customer id - Inherits from: [kunder.kundnr] - Primary Key: Yes - Max length: 14.0
nr String! Description: Id - Primary Key: Yes - Max length: 14.0
avd String Description: Dept. - Max length: 50.0
gata String Description: Visiting address - Max length: 50.0
namn String Description: Name - Max length: 50.0
ort String Description: City - Max length: 50.0
box String Description: Box - Max length: 50.0
land String Description: Country - Max length: 30.0
postnr String Description: Zip code - Max length: 20.0
ref String Description: Tag - Max length: 30.0
tel String Description: Phone - Max length: 20.0

levadrUpdateObject

Customer delivery addresses

Field Type Description
avd String Description: Dept. - Max length: 50.0
gata String Description: Visiting address - Max length: 50.0
namn String Description: Name - Max length: 50.0
ort String Description: City - Max length: 50.0
box String Description: Box - Max length: 50.0
land String Description: Country - Max length: 30.0
postnr String Description: Zip code - Max length: 20.0
ref String Description: Tag - Max length: 30.0
tel String Description: Phone - Max length: 20.0

maskinerCreateObject

Object data

Field Type Description
mnr String! Description: Object id - Primary Key: Yes - Max length: 25.0
avtalnr String Description: Contract id - Max length: 20.0
gatuadr String Description: Visiting address - Max length: 50.0
install String Description: Name - Max length: 50.0
kundnr String! Inherits from: [kunder.kundnr] - Max length: 14.0
masktyp String! Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
modell String Description: Name - Max length: 40.0
op String Description: Technical ref - Max length: 50.0
ort String Description: City - Max length: 50.0
plac String Description: Location - Max length: 50.0
postnr String Description: Zip code - Max length: 10.0
sok_nr String Description: Own id - Max length: 20.0
tel String Description: Phone - Max length: 30.0
ack_over_cb String Description: Accum - Max length: 1.0
ack_over_rv1 Int Description: Accum - Max length: 12.0
avtal_dagar Int Description: Extend. period - Max length: 12.0
avtal_ok Date Description: Start date - Max length: 10.0
avtal_ok_vem String Description: Approved by - Max length: 20.0
back_a_besk String Description: Description - Max length: 128.0
back_ansv String Description: Responsible - Max length: 30.0
back_ater Date Description: Date - Max length: 10.0
back_band String Description: Binding - Max length: 30.0
back_besk String Description: Description - Max length: 128.0
back_datum Date Description: Installation date - Max length: 10.0
back_kap String Description: Capacity - Max length: 30.0
back_kontr String Description: Checked by - Max length: 30.0
back_marke String Description: Object type - Max length: 30.0
back_ovr String Description: Other - Max length: 30.0
back_plac String Description: Location - Max length: 30.0
back_prog String Description: Programs - Max length: 30.0
back_ver String Description: Version - Max length: 30.0
betvillkor String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
box String Description: Billing address - Max length: 50.0
datum_service Date Description: Date - Max length: 10.0
deb_grundantal Int Description: Prepaid - Max length: 12.0
debtyp String Description: Bill tp - Max length: 1.0
delar_tom Date Description: Parts from - Max length: 10.0
distrikt String Description: District - Max length: 4.0
egen_avd String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Your order - Max length: 30.0
fax String Description: Fax - Max length: 15.0
forspris Decimal Description: Sales price - Max length: 12.2
garantidatum Date Description: Warranty expires - Max length: 10.0
grundantal Int Description: Included - Max length: 12.0
grundart String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
grundben String Description: Description - Max length: 60.0
grunddp String Description: Bill cycl - Max length: 4.0
grundkr Decimal Description: Fee - Max length: 12.2
grundsdat Date Description: Start date - Max length: 10.0
grundudat Date Description: End date - Max length: 10.0
huvudmaskin String Description: Head id - Max length: 25.0
imsrv1 Int Description: Installation - Max length: 12.0
inar String Description: Purchased year - Max length: 4.0
inkop String Description: Vendor - Max length: 20.0
inkopare String Description: Buyer - Max length: 30.0
inkopdatum Date Description: Purchased - Max length: 10.0
inpris Decimal Description: Purchase price - Max length: 12.2
instdatum Date Description: Installation date - Max length: 10.0
ipadress String Description: IP - Max length: 20.0
jobb_service Decimal Description: Order id - Max length: 12.2
kab String Description: Team - Max length: 10.0
kab_ver String Description: Team - Max length: 10.0
kablage_besk String Description: Description - Max length: 128.0
kablage_dat Date Description: Date - Max length: 10.0
kablage_hast Int Description: Speed - Max length: 2.0
kablage_inst String Description: Installed by - Max length: 30.0
kablage_typ Int Description: Cabling Type - Max length: 2.0
kategori String Description: Category - Max length: 4.0
kontakt String Description: Contact - Max length: 20.0
kontakt_tel String Description: Phone - Max length: 20.0
koptyp String Description: Financing Option - Max length: 4.0
kundansv String Description: Customer manager - Max length: 20.0
land String Description: Country - Max length: 50.0
laserfax String Description: Meter cards by fax - Max length: 1.0
leas_slut Date Description: Expiry date - Max length: 10.0
leasbolag String Description: Finance company - Max length: 50.0
lev_fakt String Description: Invoice id - Max length: 25.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 4.0
levvillkor String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 4.0
mpassword String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 10.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
nib String Description: Network card - Max length: 10.0
nib_ver String Description: Ver - Max length: 10.0
nos String Description: Network OS - Max length: 10.0
nos_ver String Description: Ver - Max length: 10.0
nosansv String Description: Network resp. - Max length: 20.0
nosansv_tel String Description: Phone - Max length: 20.0
ok1 String Description: Misc. cards 1 - Max length: 10.0
ok1_ver String Description: Ver - Max length: 10.0
ok2 String Description: Misc. cards 2 - Max length: 10.0
ok2_ver String Description: Ver - Max length: 10.0
ok3 String Description: Misc. cards 3 - Max length: 10.0
ok3_ver String Description: Ver - Max length: 10.0
open String Description: Open - Max length: 50.0
pdl String Description: PDL - Max length: 10.0
pdl_ver String Description: Ver - Max length: 10.0
platskod String Description: Location code - Max length: 4.0
portkod String Description: Door code - Max length: 30.0
pro String Description: Checklist - Max length: 10.0
pro_ver String Description: Ver - Max length: 10.0
prom_ver String Description: Prom ver - Max length: 10.0
rad10art String Description: Row 10 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad1art String Description: Row 1 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad1ben String Description: Description - Max length: 60.0
rad1dp String Description: Bill cycl - Max length: 4.0
rad1pris Decimal Description: Price - Max length: 12.2
rad1sdat Date Description: Start date - Max length: 10.0
rad1udat Date Description: End date - Max length: 10.0
rad2art String Description: Row 2 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad3art String Description: Row 3 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad4art String Description: Row 4 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad5art String Description: Row 5 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad6art String Description: Row 6 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad7art String Description: Row 7 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad8art String Description: Row 8 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad9art String Description: Row 9 - Inherits from: [artiklar.artnr] - Max length: 20.0
rappkort String Description: Meter card - Max length: 1.0
ref String Description: Reference - Max length: 40.0
restv Decimal Description: Residual value - Max length: 12.2
rip String Description: RIP - Max length: 10.0
rip_instdag Date Description: RIP Inst. day - Max length: 10.0
rip_kaldag Date Description: RIP calibr. day - Max length: 10.0
rip_mnr String Description: RIP Object id - Max length: 10.0
rip_ver String Description: Ver - Max length: 10.0
rk_period String Description: Period - Max length: 4.0
rkstatus String Description: Status report card - Max length: 1.0
rv1_serv Int Description: Previous - Max length: 12.0
rv1art String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
rv1ben String Description: Description - Max length: 60.0
rv1count Int Description: Previous - Max length: 12.0
rv1dat Date Description: Previous date - Max length: 10.0
rv1pris Decimal Description: Price per pc - Max length: 12.4
rv2_serv Int Description: Meter 2 - Max length: 12.0
rv2art String Description: Meter - Inherits from: [artiklar.artnr] - Max length: 20.0
rv3_serv Int Description: Meter 3 - Max length: 12.0
rv3art String Inherits from: [artiklar.artnr] - Max length: 20.0
rv4_serv Int Description: Meter 4 - Max length: 12.0
rv4art String Inherits from: [artiklar.artnr] - Max length: 20.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
sen_avskriv Date Description: Last depreciation - Max length: 10.0
serv_besk String Description: Description - Max length: 128.0
serv_buss String Description: Bus type - Max length: 30.0
serv_cache Int Description: Status - Max length: 2.0
serv_gen String Description: Ref. - Max length: 30.0
serv_i_dat Date Description: Next service - Max length: 10.0
serv_marke String Description: Object type - Max length: 30.0
serv_minne String Description: Internal memory - Max length: 30.0
serv_namn String Description: Name - Max length: 30.0
serv_nyck String Description: Keys - Max length: 30.0
serv_os String Description: OS - Max length: 30.0
serv_os_adm String Description: Admin - Max length: 30.0
serv_os_ver String Description: Version - Max length: 30.0
serv_plac String Description: Location - Max length: 30.0
serv_proc String Description: Processors - Max length: 30.0
serv_tel String Description: Modem number - Max length: 30.0
serv_upp String Description: Main purpose - Max length: 30.0
servdatum Date Description: Service contract - Max length: 10.0
servtyp String Description: Serv type - Max length: 4.0
servtyp_namn String Description: Service type - Max length: 40.0
tekn_service String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
toner String Description: Included in contract - Max length: 1.0

maskinerUpdateObject

Object data

Field Type Description
avtalnr String Description: Contract id - Max length: 20.0
gatuadr String Description: Visiting address - Max length: 50.0
install String Description: Name - Max length: 50.0
kundnr String Inherits from: [kunder.kundnr] - Max length: 14.0
masktyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
modell String Description: Name - Max length: 40.0
op String Description: Technical ref - Max length: 50.0
ort String Description: City - Max length: 50.0
plac String Description: Location - Max length: 50.0
postnr String Description: Zip code - Max length: 10.0
sok_nr String Description: Own id - Max length: 20.0
tel String Description: Phone - Max length: 30.0
ack_over_cb String Description: Accum - Max length: 1.0
ack_over_rv1 Int Description: Accum - Max length: 12.0
avtal_dagar Int Description: Extend. period - Max length: 12.0
avtal_ok Date Description: Start date - Max length: 10.0
avtal_ok_vem String Description: Approved by - Max length: 20.0
back_a_besk String Description: Description - Max length: 128.0
back_ansv String Description: Responsible - Max length: 30.0
back_ater Date Description: Date - Max length: 10.0
back_band String Description: Binding - Max length: 30.0
back_besk String Description: Description - Max length: 128.0
back_datum Date Description: Installation date - Max length: 10.0
back_kap String Description: Capacity - Max length: 30.0
back_kontr String Description: Checked by - Max length: 30.0
back_marke String Description: Object type - Max length: 30.0
back_ovr String Description: Other - Max length: 30.0
back_plac String Description: Location - Max length: 30.0
back_prog String Description: Programs - Max length: 30.0
back_ver String Description: Version - Max length: 30.0
betvillkor String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
box String Description: Billing address - Max length: 50.0
datum_service Date Description: Date - Max length: 10.0
deb_grundantal Int Description: Prepaid - Max length: 12.0
debtyp String Description: Bill tp - Max length: 1.0
delar_tom Date Description: Parts from - Max length: 10.0
distrikt String Description: District - Max length: 4.0
egen_avd String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
email String Description: E-mail - Max length: 100.0
erorder String Description: Your order - Max length: 30.0
fax String Description: Fax - Max length: 15.0
forspris Decimal Description: Sales price - Max length: 12.2
garantidatum Date Description: Warranty expires - Max length: 10.0
grundantal Int Description: Included - Max length: 12.0
grundart String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
grundben String Description: Description - Max length: 60.0
grunddp String Description: Bill cycl - Max length: 4.0
grundkr Decimal Description: Fee - Max length: 12.2
grundsdat Date Description: Start date - Max length: 10.0
grundudat Date Description: End date - Max length: 10.0
huvudmaskin String Description: Head id - Max length: 25.0
imsrv1 Int Description: Installation - Max length: 12.0
inar String Description: Purchased year - Max length: 4.0
inkop String Description: Vendor - Max length: 20.0
inkopare String Description: Buyer - Max length: 30.0
inkopdatum Date Description: Purchased - Max length: 10.0
inpris Decimal Description: Purchase price - Max length: 12.2
instdatum Date Description: Installation date - Max length: 10.0
ipadress String Description: IP - Max length: 20.0
jobb_service Decimal Description: Order id - Max length: 12.2
kab String Description: Team - Max length: 10.0
kab_ver String Description: Team - Max length: 10.0
kablage_besk String Description: Description - Max length: 128.0
kablage_dat Date Description: Date - Max length: 10.0
kablage_hast Int Description: Speed - Max length: 2.0
kablage_inst String Description: Installed by - Max length: 30.0
kablage_typ Int Description: Cabling Type - Max length: 2.0
kategori String Description: Category - Max length: 4.0
kontakt String Description: Contact - Max length: 20.0
kontakt_tel String Description: Phone - Max length: 20.0
koptyp String Description: Financing Option - Max length: 4.0
kundansv String Description: Customer manager - Max length: 20.0
land String Description: Country - Max length: 50.0
laserfax String Description: Meter cards by fax - Max length: 1.0
leas_slut Date Description: Expiry date - Max length: 10.0
leasbolag String Description: Finance company - Max length: 50.0
lev_fakt String Description: Invoice id - Max length: 25.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 4.0
levvillkor String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 4.0
mpassword String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 10.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
nib String Description: Network card - Max length: 10.0
nib_ver String Description: Ver - Max length: 10.0
nos String Description: Network OS - Max length: 10.0
nos_ver String Description: Ver - Max length: 10.0
nosansv String Description: Network resp. - Max length: 20.0
nosansv_tel String Description: Phone - Max length: 20.0
ok1 String Description: Misc. cards 1 - Max length: 10.0
ok1_ver String Description: Ver - Max length: 10.0
ok2 String Description: Misc. cards 2 - Max length: 10.0
ok2_ver String Description: Ver - Max length: 10.0
ok3 String Description: Misc. cards 3 - Max length: 10.0
ok3_ver String Description: Ver - Max length: 10.0
open String Description: Open - Max length: 50.0
pdl String Description: PDL - Max length: 10.0
pdl_ver String Description: Ver - Max length: 10.0
platskod String Description: Location code - Max length: 4.0
portkod String Description: Door code - Max length: 30.0
pro String Description: Checklist - Max length: 10.0
pro_ver String Description: Ver - Max length: 10.0
prom_ver String Description: Prom ver - Max length: 10.0
rad10art String Description: Row 10 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad1art String Description: Row 1 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad1ben String Description: Description - Max length: 60.0
rad1dp String Description: Bill cycl - Max length: 4.0
rad1pris Decimal Description: Price - Max length: 12.2
rad1sdat Date Description: Start date - Max length: 10.0
rad1udat Date Description: End date - Max length: 10.0
rad2art String Description: Row 2 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad3art String Description: Row 3 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad4art String Description: Row 4 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad5art String Description: Row 5 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad6art String Description: Row 6 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad7art String Description: Row 7 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad8art String Description: Row 8 - Inherits from: [artiklar.artnr] - Max length: 20.0
rad9art String Description: Row 9 - Inherits from: [artiklar.artnr] - Max length: 20.0
rappkort String Description: Meter card - Max length: 1.0
ref String Description: Reference - Max length: 40.0
restv Decimal Description: Residual value - Max length: 12.2
rip String Description: RIP - Max length: 10.0
rip_instdag Date Description: RIP Inst. day - Max length: 10.0
rip_kaldag Date Description: RIP calibr. day - Max length: 10.0
rip_mnr String Description: RIP Object id - Max length: 10.0
rip_ver String Description: Ver - Max length: 10.0
rk_period String Description: Period - Max length: 4.0
rkstatus String Description: Status report card - Max length: 1.0
rv1_serv Int Description: Previous - Max length: 12.0
rv1art String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
rv1ben String Description: Description - Max length: 60.0
rv1count Int Description: Previous - Max length: 12.0
rv1dat Date Description: Previous date - Max length: 10.0
rv1pris Decimal Description: Price per pc - Max length: 12.4
rv2_serv Int Description: Meter 2 - Max length: 12.0
rv2art String Description: Meter - Inherits from: [artiklar.artnr] - Max length: 20.0
rv3_serv Int Description: Meter 3 - Max length: 12.0
rv3art String Inherits from: [artiklar.artnr] - Max length: 20.0
rv4_serv Int Description: Meter 4 - Max length: 12.0
rv4art String Inherits from: [artiklar.artnr] - Max length: 20.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
sen_avskriv Date Description: Last depreciation - Max length: 10.0
serv_besk String Description: Description - Max length: 128.0
serv_buss String Description: Bus type - Max length: 30.0
serv_cache Int Description: Status - Max length: 2.0
serv_gen String Description: Ref. - Max length: 30.0
serv_i_dat Date Description: Next service - Max length: 10.0
serv_marke String Description: Object type - Max length: 30.0
serv_minne String Description: Internal memory - Max length: 30.0
serv_namn String Description: Name - Max length: 30.0
serv_nyck String Description: Keys - Max length: 30.0
serv_os String Description: OS - Max length: 30.0
serv_os_adm String Description: Admin - Max length: 30.0
serv_os_ver String Description: Version - Max length: 30.0
serv_plac String Description: Location - Max length: 30.0
serv_proc String Description: Processors - Max length: 30.0
serv_tel String Description: Modem number - Max length: 30.0
serv_upp String Description: Main purpose - Max length: 30.0
servdatum Date Description: Service contract - Max length: 10.0
servtyp String Description: Serv type - Max length: 4.0
servtyp_namn String Description: Service type - Max length: 40.0
tekn_service String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
toner String Description: Included in contract - Max length: 1.0

maskintyCreateObject

Object type data

Field Type Description
artnr String! Description: Object type - Primary Key: Yes - Max length: 25.0
artgrupp String Description: Product group - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
namn String Description: Name - Max length: 60.0
pkod String Description: Product area - Max length: 6.0
segment String Description: Segment - Max length: 6.0
tillv String Description: Manufacturer - Max length: 20.0
amp Int Description: Power outlet (mA) - Max length: 12.0
arbete String Description: Work included - Max length: 1.0
arbkostnad String Description: Work cost - Inherits from: [artiklar.artnr] - Max length: 20.0
bitmap String Description: Path - Max length: 254.0
bitmap_rk String Description: Path - Max length: 254.0
block_artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 25.0
bredd Decimal Description: Width - Max length: 12.2
delar String Description: Parts included - Max length: 1.0
faxbilaga String Description: Fax enclosure - Max length: 30.0
gar_artnr String Description: Warranty product id - Inherits from: [artiklar.artnr] - Max length: 20.0
gar_instruk String Description: Return instructions - Max length: 1024.0
garanti Int Description: Days - Max length: 8.0
garanti_ers Decimal Description: Warranty refund - Max length: 12.2
garanti_knr String Description: Warranty per cust. Id - Max length: 14.0
help String Description: Path - Max length: 254.0
hojd Decimal Description: Height - Max length: 12.2
hyr_artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 25.0
inpris Decimal Description: Cost - Max length: 12.2
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kop_faktor Int Description: Factor color - Max length: 8.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
langd Decimal Description: Length - Max length: 12.2
lev_namn String Description: Name - Max length: 30.0
maskin_poang Decimal Description: Points - Max length: 2.2
meddelande String Description: Notes - Max length: 1024.0
namn_kund String Description: Custom name - Max length: 60.0
objekt String Description: Object - Max length: 6.0
pkod_namn String Description: Name - Max length: 30.0
pmdagar Int Description: Days - Max length: 8.0
pmkopior Int Description: Quantity - Max length: 8.0
pointsf Decimal Description: F - Max length: 8.2
pointsl Decimal Description: L - Max length: 8.2
pointsp Decimal Description: P - Max length: 8.2
pointsr Decimal Description: R/Å - Max length: 8.2
pointst Decimal Description: T - Max length: 8.2
pointsu Decimal Description: U - Max length: 8.2
pointsv Decimal Description: V - Max length: 8.2
prodblad String Description: Path - Max length: 254.0
prodblad_web String Description: Path to web - Max length: 254.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
rdagar Int Description: Days - Max length: 12.0
resa String Description: Transportation included - Max length: 1.0
resp_nasta_dag Decimal Description: Response next day at - Max length: 12.2
resptid Decimal Description: With contract - Max length: 8.2
resptide Decimal Description: Without contract - Max length: 8.2
rkopior Int Description: Quantity - Max length: 12.0
rma String Description: Return form - Max length: 254.0
rma_web String Description: Web return form - Max length: 254.0
rv1_text String Description: Meter - Max length: 20.0
segment_namn String Description: Name - Max length: 30.0
startt Decimal Description: With contract - Max length: 8.2
startte Decimal Description: Without contract - Max length: 8.2
strom Int Description: Power (mA) - Max length: 12.0
text_1 String Description: Text 1 - Max length: 100.0
text_10 String Description: Text 10 - Max length: 100.0
text_2 String Description: Text 2 - Max length: 100.0
text_3 String Description: Text 3 - Max length: 100.0
text_4 String Description: Text 4 - Max length: 100.0
text_5 String Description: Text 5 - Max length: 100.0
text_6 String Description: Text 6 - Max length: 100.0
text_7 String Description: Text 7 - Max length: 100.0
text_8 String Description: Text 8 - Max length: 100.0
text_9 String Description: Text 9 - Max length: 100.0
tfdagar Int Description: Days - Max length: 8.0
tfkopior Int Description: Quantity - Max length: 8.0
tid_minuter Int Description: Time minutes - Max length: 12.0
tillv_namn String Description: Name - Max length: 30.0
typ_rv1 Int Description: Type of meter - Max length: 2.0
varn_rv_dgr_ho Int Description: Maximum days - Max length: 12.0
varn_rv_dgr_lo Int Description: Min. days - Max length: 12.0
varn_rv_kop_ho Int Description: Max qty. - Max length: 12.0
varn_rv_kop_lo Int Description: Min. qty. - Max length: 12.0
varn_se_dgr_ho Int Description: Maximum days - Max length: 12.0
varn_se_dgr_lo Int Description: Min. days - Max length: 12.0
varn_se_kop_ho Int Description: Max qty. - Max length: 12.0
varn_se_kop_lo Int Description: Min. qty. - Max length: 12.0
vikt Decimal Description: Weight - Max length: 12.4
volt Decimal Description: Current (Volt) - Max length: 12.2
volym Decimal Description: Volume - Max length: 12.4

maskintyUpdateObject

Object type data

Field Type Description
artgrupp String Description: Product group - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
namn String Description: Name - Max length: 60.0
pkod String Description: Product area - Max length: 6.0
segment String Description: Segment - Max length: 6.0
tillv String Description: Manufacturer - Max length: 20.0
amp Int Description: Power outlet (mA) - Max length: 12.0
arbete String Description: Work included - Max length: 1.0
arbkostnad String Description: Work cost - Inherits from: [artiklar.artnr] - Max length: 20.0
bitmap String Description: Path - Max length: 254.0
bitmap_rk String Description: Path - Max length: 254.0
block_artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 25.0
bredd Decimal Description: Width - Max length: 12.2
delar String Description: Parts included - Max length: 1.0
faxbilaga String Description: Fax enclosure - Max length: 30.0
gar_artnr String Description: Warranty product id - Inherits from: [artiklar.artnr] - Max length: 20.0
gar_instruk String Description: Return instructions - Max length: 1024.0
garanti Int Description: Days - Max length: 8.0
garanti_ers Decimal Description: Warranty refund - Max length: 12.2
garanti_knr String Description: Warranty per cust. Id - Max length: 14.0
help String Description: Path - Max length: 254.0
hojd Decimal Description: Height - Max length: 12.2
hyr_artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 25.0
inpris Decimal Description: Cost - Max length: 12.2
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kop_faktor Int Description: Factor color - Max length: 8.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
langd Decimal Description: Length - Max length: 12.2
lev_namn String Description: Name - Max length: 30.0
maskin_poang Decimal Description: Points - Max length: 2.2
meddelande String Description: Notes - Max length: 1024.0
namn_kund String Description: Custom name - Max length: 60.0
objekt String Description: Object - Max length: 6.0
pkod_namn String Description: Name - Max length: 30.0
pmdagar Int Description: Days - Max length: 8.0
pmkopior Int Description: Quantity - Max length: 8.0
pointsf Decimal Description: F - Max length: 8.2
pointsl Decimal Description: L - Max length: 8.2
pointsp Decimal Description: P - Max length: 8.2
pointsr Decimal Description: R/Å - Max length: 8.2
pointst Decimal Description: T - Max length: 8.2
pointsu Decimal Description: U - Max length: 8.2
pointsv Decimal Description: V - Max length: 8.2
prodblad String Description: Path - Max length: 254.0
prodblad_web String Description: Path to web - Max length: 254.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
rdagar Int Description: Days - Max length: 12.0
resa String Description: Transportation included - Max length: 1.0
resp_nasta_dag Decimal Description: Response next day at - Max length: 12.2
resptid Decimal Description: With contract - Max length: 8.2
resptide Decimal Description: Without contract - Max length: 8.2
rkopior Int Description: Quantity - Max length: 12.0
rma String Description: Return form - Max length: 254.0
rma_web String Description: Web return form - Max length: 254.0
rv1_text String Description: Meter - Max length: 20.0
segment_namn String Description: Name - Max length: 30.0
startt Decimal Description: With contract - Max length: 8.2
startte Decimal Description: Without contract - Max length: 8.2
strom Int Description: Power (mA) - Max length: 12.0
text_1 String Description: Text 1 - Max length: 100.0
text_10 String Description: Text 10 - Max length: 100.0
text_2 String Description: Text 2 - Max length: 100.0
text_3 String Description: Text 3 - Max length: 100.0
text_4 String Description: Text 4 - Max length: 100.0
text_5 String Description: Text 5 - Max length: 100.0
text_6 String Description: Text 6 - Max length: 100.0
text_7 String Description: Text 7 - Max length: 100.0
text_8 String Description: Text 8 - Max length: 100.0
text_9 String Description: Text 9 - Max length: 100.0
tfdagar Int Description: Days - Max length: 8.0
tfkopior Int Description: Quantity - Max length: 8.0
tid_minuter Int Description: Time minutes - Max length: 12.0
tillv_namn String Description: Name - Max length: 30.0
typ_rv1 Int Description: Type of meter - Max length: 2.0
varn_rv_dgr_ho Int Description: Maximum days - Max length: 12.0
varn_rv_dgr_lo Int Description: Min. days - Max length: 12.0
varn_rv_kop_ho Int Description: Max qty. - Max length: 12.0
varn_rv_kop_lo Int Description: Min. qty. - Max length: 12.0
varn_se_dgr_ho Int Description: Maximum days - Max length: 12.0
varn_se_dgr_lo Int Description: Min. days - Max length: 12.0
varn_se_kop_ho Int Description: Max qty. - Max length: 12.0
varn_se_kop_lo Int Description: Min. qty. - Max length: 12.0
vikt Decimal Description: Weight - Max length: 12.4
volt Decimal Description: Current (Volt) - Max length: 12.2
volym Decimal Description: Volume - Max length: 12.4

mod_basCreateObject

Suggested base supplies for a given object type/model

Field Type Description
artnr String! Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Max length: 20.0
modell String! Inherits from: [maskinty.artnr] - Primary Key: Yes - Max length: 25.0
artben String Description: Description - Max length: 60.0

mod_basUpdateObject

Suggested base supplies for a given object type/model

Field Type Description
artben String Description: Description - Max length: 60.0

mod_tillCreateObject

Accessories for a given object type/model

Field Type Description
artnr String! Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Max length: 20.0
modell String! Inherits from: [maskinty.artnr] - Primary Key: Yes - Max length: 25.0
artben String Description: Description - Max length: 60.0
datum Date Description: Date - Max length: 10.0
text String Description: Text - Max length: 60.0
tillsats Int Description: Mounting additive - Max length: 2.0

mod_tillUpdateObject

Accessories for a given object type/model

Field Type Description
artben String Description: Description - Max length: 60.0
datum Date Description: Date - Max length: 10.0
text String Description: Text - Max length: 60.0
tillsats Int Description: Mounting additive - Max length: 2.0

ord_histCreateObject

Supply order history

Field Type Description
best_av String Description: Caller - Max length: 30.0
best_dat Date Description: Order date - Max length: 10.0
distrikt String Description: District - Max length: 4.0
externordernr String Description: Foreign id - Max length: 20.0
faktnr Int Description: Inv.no - Max length: 12.0
install String Description: Name - Max length: 40.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
mnr String! Inherits from: [maskiner.mnr] - Max length: 25.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
segment String Description: Segment - Max length: 4.0
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
avbokdat Date Description: Finished - Max length: 10.0
avboktid Decimal Description: Time - Max length: 2.2
avbokuser String Description: Finished by - Max length: 4.0
avtalnr String Description: Contract id - Max length: 20.0
best_nr Decimal Description: Purchase order id - Max length: 12.2
betvillk String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
dolj_web Int Description: Hide web - Max length: 2.0
email String Description: E-mail - Max length: 100.0
er_order String Description: Tag - Max length: 30.0
faktbelopp Decimal Description: Invoice amount - Max length: 12.2
faktdatum Date Description: Invoice date - Max length: 10.0
faktura String Description: Invoice - Max length: 1.0
fakturerat String Description: Invoice Basis - Max length: 1.0
fax String Description: Fax - Max length: 30.0
gan_nr String Description: Waybill id - Max length: 30.0
internkod String Description: Internal - Inherits from: [intern.kod] - Max length: 10.0
kategori String Description: Category - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
lev_avd String Description: Dept. - Max length: 50.0
lev_dat Date Description: Shpt date - Max length: 10.0
lev_gata String Description: Visiting address - Max length: 50.0
lev_namn String Description: Customer name - Max length: 50.0
lev_pnr String Description: Zip code - Max length: 20.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
modell String Description: Object type - Max length: 30.0
momskod String Description: Tax code - Max length: 4.0
platskod String Description: Location code - Max length: 4.0
prodkod String Description: Product area - Max length: 4.0
projekt String Description: Project: - Inherits from: [projekt.nr] - Max length: 12.0
projtyp String Description: Technician - Max length: 8.0
reg_av String Description: Reg. by - Max length: 30.0
sandningsnr String Description: Shipping no. - Max length: 100.0
servtyp String Description: Serv type - Max length: 4.0
tel String Description: Phone - Max length: 30.0
totfakt Decimal Description: Invo. - Max length: 12.2
totkostn Decimal Description: Exp - Max length: 12.2
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
valuta_kurs Decimal Description: Training - Max length: 12.4
vikt Decimal Description: Weight - Max length: 12.4
weborder Int Description: Web order - Max length: 2.0

ord_histUpdateObject

Supply order history

Field Type Description
best_av String Description: Caller - Max length: 30.0
best_dat Date Description: Order date - Max length: 10.0
distrikt String Description: District - Max length: 4.0
externordernr String Description: Foreign id - Max length: 20.0
faktnr Int Description: Inv.no - Max length: 12.0
install String Description: Name - Max length: 40.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
mnr String Inherits from: [maskiner.mnr] - Max length: 25.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
segment String Description: Segment - Max length: 4.0
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
avbokdat Date Description: Finished - Max length: 10.0
avboktid Decimal Description: Time - Max length: 2.2
avbokuser String Description: Finished by - Max length: 4.0
avtalnr String Description: Contract id - Max length: 20.0
best_nr Decimal Description: Purchase order id - Max length: 12.2
betvillk String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
dolj_web Int Description: Hide web - Max length: 2.0
email String Description: E-mail - Max length: 100.0
er_order String Description: Tag - Max length: 30.0
faktbelopp Decimal Description: Invoice amount - Max length: 12.2
faktdatum Date Description: Invoice date - Max length: 10.0
faktura String Description: Invoice - Max length: 1.0
fakturerat String Description: Invoice Basis - Max length: 1.0
fax String Description: Fax - Max length: 30.0
gan_nr String Description: Waybill id - Max length: 30.0
internkod String Description: Internal - Inherits from: [intern.kod] - Max length: 10.0
kategori String Description: Category - Max length: 4.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
lev_avd String Description: Dept. - Max length: 50.0
lev_dat Date Description: Shpt date - Max length: 10.0
lev_gata String Description: Visiting address - Max length: 50.0
lev_namn String Description: Customer name - Max length: 50.0
lev_pnr String Description: Zip code - Max length: 20.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
modell String Description: Object type - Max length: 30.0
momskod String Description: Tax code - Max length: 4.0
platskod String Description: Location code - Max length: 4.0
prodkod String Description: Product area - Max length: 4.0
projekt String Description: Project: - Inherits from: [projekt.nr] - Max length: 12.0
projtyp String Description: Technician - Max length: 8.0
reg_av String Description: Reg. by - Max length: 30.0
sandningsnr String Description: Shipping no. - Max length: 100.0
servtyp String Description: Serv type - Max length: 4.0
tel String Description: Phone - Max length: 30.0
totfakt Decimal Description: Invo. - Max length: 12.2
totkostn Decimal Description: Exp - Max length: 12.2
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
valuta_kurs Decimal Description: Training - Max length: 12.4
vikt Decimal Description: Weight - Max length: 12.4
weborder Int Description: Web order - Max length: 2.0

ord_huvCreateObject

Supply order data

Field Type Description
best_dat Date Description: Ordered - Max length: 10.0
externordernr String Description: Foreign id - Max length: 20.0
install String Description: Installed - Max length: 40.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
mnr String! Inherits from: [maskiner.mnr] - Max length: 25.0
modell String Description: Name - Max length: 30.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
plandat Date Description: Desired - Max length: 10.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
bekraft_ut Date Description: Confirmation - Max length: 10.0
best_av String Description: Caller - Max length: 30.0
best_nr Decimal Description: Purchases - Max length: 12.2
best_ut Date Description: Purchase order - Max length: 10.0
betvillk String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
email String Description: E-mail - Max length: 100.0
er_order String Description: Your order - Max length: 30.0
erreferens String Description: Your reference - Max length: 30.0
fax String Description: Fax - Max length: 30.0
frakts_ut Date Description: Waybill - Max length: 10.0
fritext String Description: Text - Max length: 60.0
fritext2 String Description: Internal notes - Max length: 256.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
knota_ut Date Description: Cash note - Max length: 10.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lager String Inherits from: [tekniker.nr] - Max length: 8.0
lev_avd String Description: Dept. - Max length: 50.0
lev_dat Date Description: Shpt date - Max length: 10.0
lev_gata String Description: Address - Max length: 50.0
lev_namn String Description: Customer - Max length: 50.0
lev_nr String Description: Id - Inherits from: [levadr.nr] - Max length: 10.0
lev_ort String Description: City - Max length: 50.0
lev_pnr String Description: Zip code - Max length: 20.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
mobil String Description: Mobile - Max length: 20.0
momskod String Description: Tax code - Max length: 4.0
objekt String Description: Object - Max length: 10.0
order_ut Date Description: Shpt note printed - Max length: 10.0
prel_del Int Description: Assign - Max length: 2.0
prislista String Description: Price list - Max length: 20.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
projtyp String Description: Technician - Max length: 8.0
reg_av String Description: Reg. by - Max length: 30.0
reg_datum Date Description: Date - Max length: 10.0
reg_kl Decimal Description: Hr - Max length: 2.2
status String Description: Status - Max length: 1.0
tb Decimal Description: Margin - Max length: 12.2
team String Description: Team - Inherits from: [team.nr] - Max length: 4.0
tel String Description: Phone - Max length: 30.0
tg Decimal Description: MIR % - Max length: 12.2
totfakt Decimal Description: Total - Max length: 12.2
totfakt_ink Decimal Description: With tax - Max length: 12.2
totkostn Decimal Description: Cost - Max length: 12.2
upptagen Int Description: Lock - Max length: 2.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
weborder Int Description: Web order - Max length: 2.0

ord_huvUpdateObject

Supply order data

Field Type Description
best_dat Date Description: Ordered - Max length: 10.0
externordernr String Description: Foreign id - Max length: 20.0
install String Description: Installed - Max length: 40.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
mnr String Inherits from: [maskiner.mnr] - Max length: 25.0
modell String Description: Name - Max length: 30.0
mtyp String Description: Object type - Inherits from: [maskinty.artnr] - Max length: 25.0
plandat Date Description: Desired - Max length: 10.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
alt_kundnr String Description: Billing cust - Inherits from: [kunder.kundnr] - Max length: 14.0
bekraft_ut Date Description: Confirmation - Max length: 10.0
best_av String Description: Caller - Max length: 30.0
best_nr Decimal Description: Purchases - Max length: 12.2
best_ut Date Description: Purchase order - Max length: 10.0
betvillk String Description: Payment terms - Inherits from: [betvillk.nr] - Max length: 4.0
bonus Int Description: Bonus - Max length: 2.0
email String Description: E-mail - Max length: 100.0
er_order String Description: Your order - Max length: 30.0
erreferens String Description: Your reference - Max length: 30.0
fax String Description: Fax - Max length: 30.0
frakts_ut Date Description: Waybill - Max length: 10.0
fritext String Description: Text - Max length: 60.0
fritext2 String Description: Internal notes - Max length: 256.0
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kbar String Description: Cost unit - Inherits from: [kbar.nr] - Max length: 10.0
knota_ut Date Description: Cash note - Max length: 10.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
lager String Inherits from: [tekniker.nr] - Max length: 8.0
lev_avd String Description: Dept. - Max length: 50.0
lev_dat Date Description: Shpt date - Max length: 10.0
lev_gata String Description: Address - Max length: 50.0
lev_namn String Description: Customer - Max length: 50.0
lev_nr String Description: Id - Inherits from: [levadr.nr] - Max length: 10.0
lev_ort String Description: City - Max length: 50.0
lev_pnr String Description: Zip code - Max length: 20.0
levsatt String Description: Shipping method - Inherits from: [levsatt.nr] - Max length: 10.0
levvillk String Description: Shipping terms - Inherits from: [levvillk.nr] - Max length: 10.0
mobil String Description: Mobile - Max length: 20.0
momskod String Description: Tax code - Max length: 4.0
objekt String Description: Object - Max length: 10.0
order_ut Date Description: Shpt note printed - Max length: 10.0
prel_del Int Description: Assign - Max length: 2.0
prislista String Description: Price list - Max length: 20.0
projekt String Description: Project - Inherits from: [projekt.nr] - Max length: 12.0
projtyp String Description: Technician - Max length: 8.0
reg_av String Description: Reg. by - Max length: 30.0
reg_datum Date Description: Date - Max length: 10.0
reg_kl Decimal Description: Hr - Max length: 2.2
status String Description: Status - Max length: 1.0
tb Decimal Description: Margin - Max length: 12.2
team String Description: Team - Inherits from: [team.nr] - Max length: 4.0
tel String Description: Phone - Max length: 30.0
tg Decimal Description: MIR % - Max length: 12.2
totfakt Decimal Description: Total - Max length: 12.2
totfakt_ink Decimal Description: With tax - Max length: 12.2
totkostn Decimal Description: Cost - Max length: 12.2
upptagen Int Description: Lock - Max length: 2.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0
valuta String Description: Currency - Max length: 3.0
weborder Int Description: Web order - Max length: 2.0

ord_radCreateObject

Supply order rows

Field Type Description
ord_nr Decimal! Inherits from: [ord_huv.ordernr] - Primary Key: Yes - Max length: 12.2
radnr Int! Description: Row no. - Primary Key: Yes - Max length: 12.0
artnr String! Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
lagerplats String Inherits from: [tekniker.nr] - Max length: 10.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Max length: 25.0
tekn_lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
antal Decimal Description: Quantity - Max length: 12.2
ben String Description: Description - Max length: 60.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
datum Date Description: Date - Max length: 10.0
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: K-ställe") + " >> - Inherits from: [kst.nr] - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Ship - Max length: 12.2
lev_datum Date Description: Date - Max length: 10.0
mtyp String Inherits from: [maskinty.artnr] - Max length: 25.0
prisenhet String Description: Unit>> - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Controller>> - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: % - Max length: 4.2
rad_total_in Decimal Description: Total cost - Max length: 12.2
rad_total_ut Decimal Description: Total price - Max length: 12.2
rest_antal Decimal Description: Remaining - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
utpris Decimal Description: Price - Max length: 12.2

ord_radUpdateObject

Supply order rows

Field Type Description
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
lagerplats String Inherits from: [tekniker.nr] - Max length: 10.0
mnr String Description: Object id - Inherits from: [maskiner.mnr] - Max length: 25.0
tekn_lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
antal Decimal Description: Quantity - Max length: 12.2
ben String Description: Description - Max length: 60.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
datum Date Description: Date - Max length: 10.0
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Description: K-ställe") + " >> - Inherits from: [kst.nr] - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Ship - Max length: 12.2
lev_datum Date Description: Date - Max length: 10.0
mtyp String Inherits from: [maskinty.artnr] - Max length: 25.0
prisenhet String Description: Unit>> - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Controller>> - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 12.0
rabatt Decimal Description: % - Max length: 4.2
rad_total_in Decimal Description: Total cost - Max length: 12.2
rad_total_ut Decimal Description: Total price - Max length: 12.2
rest_antal Decimal Description: Remaining - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
utpris Decimal Description: Price - Max length: 12.2

ord_radsCreateObject

Supply order history rows

Field Type Description
ord_nr Decimal! Inherits from: [ord_hist.ordernr] - Primary Key: Yes - Max length: 12.2
radnr Int! Description: Row no. - Primary Key: Yes - Max length: 12.0
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
datum Date Description: Date - Max length: 10.0
kundnr String Inherits from: [kunder.kundnr] - Max length: 14.0
mnr String Inherits from: [maskiner.mnr] - Max length: 25.0
mtyp String Inherits from: [maskinty.artnr] - Max length: 25.0
tekn_lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
antal Decimal Description: Quantity - Max length: 12.2
art_ben String Description: Description - Max length: 60.0
ben String Description: Description - Max length: 60.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Inherits from: [kst.nr] - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Shpt - Max length: 12.2
lev_datum Date Description: Shpt date - Max length: 10.0
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Guiding - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 6.0
rabatt Decimal Description: % - Max length: 4.2
rad_total_in Decimal Description: Row total in - Max length: 12.2
rad_total_ut Decimal Description: Row total out - Max length: 12.2
rest_antal Decimal Description: Remain. Qty - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
utpris Decimal Description: Price - Max length: 12.2

ord_radsUpdateObject

Supply order history rows

Field Type Description
artnr String Description: Product id - Inherits from: [artiklar.artnr] - Max length: 20.0
datum Date Description: Date - Max length: 10.0
kundnr String Inherits from: [kunder.kundnr] - Max length: 14.0
mnr String Inherits from: [maskiner.mnr] - Max length: 25.0
mtyp String Inherits from: [maskinty.artnr] - Max length: 25.0
tekn_lager String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 8.0
antal Decimal Description: Quantity - Max length: 12.2
art_ben String Description: Description - Max length: 60.0
ben String Description: Description - Max length: 60.0
best_antal Decimal Description: Ordered qty - Max length: 12.2
faktura Int Description: Invoice - Max length: 2.0
inpris Decimal Description: Cost - Max length: 12.2
kbar String Inherits from: [kbar.nr] - Max length: 10.0
kst String Inherits from: [kst.nr] - Max length: 10.0
lev String Description: Vendor - Max length: 20.0
lev_antal Decimal Description: Shpt - Max length: 12.2
lev_datum Date Description: Shpt date - Max length: 10.0
prisenhet String Description: Unit - Inherits from: [enhet.kod] - Max length: 10.0
prisstyrning String Description: Guiding - Max length: 4.0
projekt String Inherits from: [projekt.nr] - Max length: 6.0
rabatt Decimal Description: % - Max length: 4.2
rad_total_in Decimal Description: Row total in - Max length: 12.2
rad_total_ut Decimal Description: Row total out - Max length: 12.2
rest_antal Decimal Description: Remain. Qty - Max length: 12.2
saljare String Inherits from: [saljare.nr] - Max length: 4.0
serienr String Description: Serial - Max length: 20.0
utpris Decimal Description: Price - Max length: 12.2

ordtextCreateObject

Customer order text rows

Field Type Description
ordernr Decimal! Inherits from: [kordhuv.ordernr] - Primary Key: Yes - Max length: 12.2
rad Int! Description: Row index - Primary Key: Yes - Max length: 12.0
textrad String Description: Text - Max length: 200.0

ordtextUpdateObject

Customer order text rows

Field Type Description
textrad String Description: Text - Max length: 200.0

personCreateObject

Customer contacts

Field Type Description
avd String Description: Department - Max length: 4.0
avd_namn String Description: Dept. - Max length: 40.0
befattning String Description: Function - Max length: 4.0
email String Description: E-mail - Max length: 100.0
foretag String! Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
foretag_namn String Description: Company - Max length: 50.0
foretag_ort String Description: City - Max length: 20.0
foretag_pnr String Description: Zip code - Max length: 15.0
kategori String Description: Contact category - Max length: 4.0
mobil String Description: Mobile - Max length: 30.0
namn String Description: Name - Max length: 40.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
tel_arbete String Description: Direct tel - Max length: 30.0
beff_namn String Description: Function - Max length: 30.0
beslut Int Description: Decisions - Max length: 2.0
bitmap String Description: Bitmap - Max length: 100.0
ej_email Int Description: Unsubscribed, E-mail - Max length: 2.0
ej_etikett Int Description: Don't print on labels - Max length: 2.0
ej_sms Int Description: Unsubscribed, SMS - Max length: 2.0
fax_arbete String Description: Fax - Max length: 30.0
fodelsedag Date Description: Birthday - Max length: 10.0
foretag_box String Description: Billing address - Max length: 30.0
foretag_gata String Description: Visiting address - Max length: 30.0
foretag_land String Description: Country - Max length: 30.0
gata String Description: Visiting address - Max length: 40.0
kalla String Description: Source - Max length: 4.0
kat_namn String Description: Category - Max length: 30.0
kontakt Int Description: Contact - Max length: 2.0
kontakt_den Date Description: Date - Max length: 10.0
kontakt_sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
kort Int Description: Card - Max length: 2.0
kreditstatus String Description: Credit status - Max length: 2.0
land String Description: Country - Max length: 30.0
ort String Description: City - Max length: 30.0
parnr String Description: Parid - Max length: 10.0
paverka Int Description: Partner - Max length: 2.0
person_dok String Description: Folder structure - Max length: 220.0
postnr String Description: Zip code - Max length: 20.0
rating String Description: Credit code - Max length: 10.0
referens String Description: Tag - Max length: 30.0
regdatum Date Description: Registered - Max length: 10.0
saldo Decimal Description: Balance - Max length: 12.2
saljare_namn String Description: Seller - Max length: 30.0
service_email Int Description: Service order e-mail - Max length: 2.0
sista_trans Date Description: Trans. date - Max length: 10.0
skype String Description: Skype name - Max length: 100.0
status Int Description: Passive - Max length: 2.0
steam String Description: Sales team - Inherits from: [team.nr] - Max length: 4.0
tel_hem String Description: Phone home - Max length: 30.0
text String Description: Notes - Max length: 1024.0
title String Description: Title - Max length: 5.0
upd_datum Date Description: Updated - Max length: 10.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0

personUpdateObject

Customer contacts

Field Type Description
avd String Description: Department - Max length: 4.0
avd_namn String Description: Dept. - Max length: 40.0
befattning String Description: Function - Max length: 4.0
email String Description: E-mail - Max length: 100.0
foretag String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
foretag_namn String Description: Company - Max length: 50.0
foretag_ort String Description: City - Max length: 20.0
foretag_pnr String Description: Zip code - Max length: 15.0
kategori String Description: Contact category - Max length: 4.0
mobil String Description: Mobile - Max length: 30.0
namn String Description: Name - Max length: 40.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
tel_arbete String Description: Direct tel - Max length: 30.0
beff_namn String Description: Function - Max length: 30.0
beslut Int Description: Decisions - Max length: 2.0
bitmap String Description: Bitmap - Max length: 100.0
ej_email Int Description: Unsubscribed, E-mail - Max length: 2.0
ej_etikett Int Description: Don't print on labels - Max length: 2.0
ej_sms Int Description: Unsubscribed, SMS - Max length: 2.0
fax_arbete String Description: Fax - Max length: 30.0
fodelsedag Date Description: Birthday - Max length: 10.0
foretag_box String Description: Billing address - Max length: 30.0
foretag_gata String Description: Visiting address - Max length: 30.0
foretag_land String Description: Country - Max length: 30.0
gata String Description: Visiting address - Max length: 40.0
kalla String Description: Source - Max length: 4.0
kat_namn String Description: Category - Max length: 30.0
kontakt Int Description: Contact - Max length: 2.0
kontakt_den Date Description: Date - Max length: 10.0
kontakt_sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
kort Int Description: Card - Max length: 2.0
kreditstatus String Description: Credit status - Max length: 2.0
land String Description: Country - Max length: 30.0
ort String Description: City - Max length: 30.0
parnr String Description: Parid - Max length: 10.0
paverka Int Description: Partner - Max length: 2.0
person_dok String Description: Folder structure - Max length: 220.0
postnr String Description: Zip code - Max length: 20.0
rating String Description: Credit code - Max length: 10.0
referens String Description: Tag - Max length: 30.0
regdatum Date Description: Registered - Max length: 10.0
saldo Decimal Description: Balance - Max length: 12.2
saljare_namn String Description: Seller - Max length: 30.0
service_email Int Description: Service order e-mail - Max length: 2.0
sista_trans Date Description: Trans. date - Max length: 10.0
skype String Description: Skype name - Max length: 100.0
status Int Description: Passive - Max length: 2.0
steam String Description: Sales team - Inherits from: [team.nr] - Max length: 4.0
tel_hem String Description: Phone home - Max length: 30.0
text String Description: Notes - Max length: 1024.0
title String Description: Title - Max length: 5.0
upd_datum Date Description: Updated - Max length: 10.0
user String Description: User - Inherits from: [user.nr] - Max length: 30.0

projektCreateObject

Projects

Field Type Description
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
namn String Description: Name - Max length: 100.0
projgrp String Description: Group - Max length: 4.0
projtyp String Description: Type - Max length: 4.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
slutdatum Date Description: End date - Max length: 10.0
startdatum Date Description: Start date - Max length: 10.0
adm_intakter Decimal Description: Revenue (external) - Max length: 12.2
adm_kostnader Decimal Description: Costs (external) - Max length: 12.2
admin String Description: Administrator - Max length: 30.0
anbud Decimal Description: Contract Sum - Max length: 12.2
ansv String Description: Project manager - Max length: 30.0
ber_kostnader Decimal Description: Estimated costs - Max length: 12.2
ber_lon Decimal Description: Estimated salary - Max length: 12.2
datum Date Description: Date - Max length: 10.0
divmtrl Decimal Description: Div mtrl - Max length: 12.2
fritext String Description: Project description - Max length: 2048.0
installpris Decimal Description: Work cost / hr - Max length: 12.2
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kund_namn String Description: Name - Max length: 50.0
kundref String Description: Reference - Max length: 30.0
prislista String Description: Price list - Max length: 1.0
projgrp_namn String Description: Name - Max length: 50.0
projtyp_namn String Description: Name - Max length: 50.0
salj_namn String Description: Name - Max length: 30.0
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
status Int Description: Status - Max length: 2.0
summa_arbtid Decimal Description: Work time - Max length: 12.2
summa_divmtrl Decimal Description: Div mtrl - Max length: 12.2
summa_doktid Decimal Description: Doc time - Max length: 12.2
summa_in_total Decimal Description: Total cost - Max length: 12.2
summa_inpris Decimal Description: Costs mtrl - Max length: 12.2
summa_ut_total Decimal Description: Total price - Max length: 12.2
summa_utpris Decimal Description: Parts price - Max length: 12.2
tb Decimal Description: Margin - Max length: 12.2
tekn String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
tekn_namn String Description: Name - Max length: 30.0
tg Decimal Description: MIR % - Max length: 12.2
timmar Decimal Description: Estimated hours - Max length: 12.2
timpris Decimal Description: Price / h. - Max length: 12.2
valuta String Description: Currency - Max length: 3.0

projektUpdateObject

Projects

Field Type Description
kundnr String Description: Customer id - Inherits from: [kunder.kundnr] - Max length: 14.0
namn String Description: Name - Max length: 100.0
projgrp String Description: Group - Max length: 4.0
projtyp String Description: Type - Max length: 4.0
saljare String Description: Seller - Inherits from: [saljare.nr] - Max length: 4.0
slutdatum Date Description: End date - Max length: 10.0
startdatum Date Description: Start date - Max length: 10.0
adm_intakter Decimal Description: Revenue (external) - Max length: 12.2
adm_kostnader Decimal Description: Costs (external) - Max length: 12.2
admin String Description: Administrator - Max length: 30.0
anbud Decimal Description: Contract Sum - Max length: 12.2
ansv String Description: Project manager - Max length: 30.0
ber_kostnader Decimal Description: Estimated costs - Max length: 12.2
ber_lon Decimal Description: Estimated salary - Max length: 12.2
datum Date Description: Date - Max length: 10.0
divmtrl Decimal Description: Div mtrl - Max length: 12.2
fritext String Description: Project description - Max length: 2048.0
installpris Decimal Description: Work cost / hr - Max length: 12.2
internkod String Description: Division - Inherits from: [intern.kod] - Max length: 10.0
kst String Description: Cost center - Inherits from: [kst.nr] - Max length: 10.0
kund_namn String Description: Name - Max length: 50.0
kundref String Description: Reference - Max length: 30.0
prislista String Description: Price list - Max length: 1.0
projgrp_namn String Description: Name - Max length: 50.0
projtyp_namn String Description: Name - Max length: 50.0
salj_namn String Description: Name - Max length: 30.0
sign String Description: User - Inherits from: [user.nr] - Max length: 30.0
status Int Description: Status - Max length: 2.0
summa_arbtid Decimal Description: Work time - Max length: 12.2
summa_divmtrl Decimal Description: Div mtrl - Max length: 12.2
summa_doktid Decimal Description: Doc time - Max length: 12.2
summa_in_total Decimal Description: Total cost - Max length: 12.2
summa_inpris Decimal Description: Costs mtrl - Max length: 12.2
summa_ut_total Decimal Description: Total price - Max length: 12.2
summa_utpris Decimal Description: Parts price - Max length: 12.2
tb Decimal Description: Margin - Max length: 12.2
tekn String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
tekn_namn String Description: Name - Max length: 30.0
tg Decimal Description: MIR % - Max length: 12.2
timmar Decimal Description: Estimated hours - Max length: 12.2
timpris Decimal Description: Price / h. - Max length: 12.2
valuta String Description: Currency - Max length: 3.0

reservdCreateObject

Spare parts for a given object type/model

Field Type Description
artnr String! Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Max length: 20.0
modell String! Inherits from: [maskinty.artnr] - Primary Key: Yes - Max length: 25.0
serienr String! Description: Serial - Primary Key: Yes - Max length: 20.0
antal Decimal Description: Quantity - Max length: 12.2
artben String Description: Description - Max length: 60.0
position String Description: Position - Max length: 20.0
dagar Int Description: Days - Max length: 12.0
datum Date Description: Date - Max length: 10.0
levart String Description: Vendors product id - Max length: 20.0
sidor Int Description: Pages - Max length: 12.0
sign String Inherits from: [user.nr] - Max length: 30.0

reservdUpdateObject

Spare parts for a given object type/model

Field Type Description
antal Decimal Description: Quantity - Max length: 12.2
artben String Description: Description - Max length: 60.0
position String Description: Position - Max length: 20.0
dagar Int Description: Days - Max length: 12.0
datum Date Description: Date - Max length: 10.0
levart String Description: Vendors product id - Max length: 20.0
sidor Int Description: Pages - Max length: 12.0
sign String Inherits from: [user.nr] - Max length: 30.0

sublagerCreateObject

Stock balance

Field Type Description
artnr String! Inherits from: [artiklar.artnr] - Primary Key: Yes - Max length: 20.0
sublager String! Description: Inventory - Inherits from: [tekniker.nr] - Primary Key: Yes - Max length: 8.0
hylla String Description: Shelf - Max length: 10.0
lagerantal Decimal Description: Quantity - Max length: 12.2
lagerplats String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 10.0
levnr String Description: Vendor id - Max length: 20.0
bk Decimal Description: RoQ - Max length: 12.2
bp Decimal Description: RoP - Max length: 12.2
diff Decimal Description: Diff - Max length: 12.2
inv Decimal Description: Inv - Max length: 12.2
max Decimal Description: Max - Max length: 12.2

sublagerUpdateObject

Stock balance

Field Type Description
hylla String Description: Shelf - Max length: 10.0
lagerantal Decimal Description: Quantity - Max length: 12.2
lagerplats String Description: Inventory - Inherits from: [tekniker.nr] - Max length: 10.0
levnr String Description: Vendor id - Max length: 20.0
bk Decimal Description: RoQ - Max length: 12.2
bp Decimal Description: RoP - Max length: 12.2
diff Decimal Description: Diff - Max length: 12.2
inv Decimal Description: Inv - Max length: 12.2
max Decimal Description: Max - Max length: 12.2

teknbokCreateObject

Service order technian booking data

Field Type Description
jobbnr Decimal! Description: Order id - Inherits from: [jobb.jobbnr] - Primary Key: Yes - Max length: 12.2
startdat Date! Description: Start date - Primary Key: Yes - Max length: 10.0
starttid Decimal! Description: Time - Primary Key: Yes - Max length: 2.2
tekn String! Description: Technician - Inherits from: [tekniker.nr] - Primary Key: Yes - Max length: 8.0
arbtid Decimal Description: Hrs. - Max length: 12.2
delaycode String Description: Time type - Max length: 10.0
jobbstatus String Description: Status - Inherits from: [status.nr] - Max length: 20.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kommentar String Description: Text - Max length: 100.0
slutdat Date Description: End date - Max length: 10.0
sluttid Decimal Description: Time - Max length: 2.2

teknjobbCreateObject

Service order time sheet data

Field Type Description
jobbnr Decimal! Inherits from: [jobb.jobbnr] - Primary Key: Yes - Max length: 12.2
startdat Date! Description: Arrival - Primary Key: Yes - Max length: 10.0
starttid Decimal! Description: Start time - Primary Key: Yes - Max length: 2.2
kundnr String Inherits from: [kunder.kundnr] - Max length: 10.0
tekn String Description: Technician - Inherits from: [tekniker.nr] - Max length: 8.0
arbtid Decimal Description: Work hours - Max length: 12.2
avv_kod String Description: Deviation - Max length: 10.0
delaycode String Description: Time type - Max length: 10.0
jobbstatus String Inherits from: [status.nr] - Max length: 20.0
jobbtyp String Description: Job type - Inherits from: [jobbtyp.nr] - Max length: 2.0
kommentar String Description: Comment - Max length: 100.0
matar_slut Int Description: End distance - Max length: 12.0
matar_start Int Description: Start distance - Max length: 12.0
plandat Date Description: Departure - Max length: 10.0
plantid Decimal Description: Hr - Max length: 2.2
projekt String Inherits from: [projekt.nr] - Max length: 12.0
repairclass String Description: Cause - Max length: 10.0
reskm Decimal Description: Distance - Max length: 12.2
restid Decimal Description: Tvl time - Max length: 12.2
restid_min Int Description: Tvl min - Max length: 12.0
slutdat Date Description: Finished - Max length: 10.0
sluttid Decimal Description: Time - Max length: 2.2
tb_minuter Int Description: TB min. - Max length: 12.0
tb_resminuter Int Description: TB min. - Max length: 12.0
trakt Decimal Description: Subsistence - Max length: 12.2
travel_end Date Description: Homecoming - Max length: 10.0
travel_end_time Decimal Description: Time - Max length: 2.2
utlagg Decimal Description: Expense - Max length: 12.2

tonerCreateObject

Supplies for a given object type/model

Field Type Description
artnr String! Description: Product id - Inherits from: [artiklar.artnr] - Primary Key: Yes - Max length: 20.0
modell String! Inherits from: [maskinty.artnr] - Primary Key: Yes - Max length: 25.0
artben String Description: Description - Max length: 60.0
antal Decimal Description: Quantity - Max length: 12.2
covers_black Int Description: Cov. B - Max length: 2.0
covers_color Int Description: Cov. C - Max length: 2.0
datum Date Description: Date - Max length: 10.0
forslag Int Description: Proposal - Max length: 2.0
pris_kopia Decimal Description: Cost / center - Max length: 12.4
racker Int Description: No. of pages - Max length: 12.0
tb Decimal Description: Margin - Max length: 12.2
tg Decimal Description: MIR % - Max length: 12.2
toner_type Int Description: Type - Max length: 2.0

tonerUpdateObject

Supplies for a given object type/model

Field Type Description
artben String Description: Description - Max length: 60.0
antal Decimal Description: Quantity - Max length: 12.2
covers_black Int Description: Cov. B - Max length: 2.0
covers_color Int Description: Cov. C - Max length: 2.0
datum Date Description: Date - Max length: 10.0
forslag Int Description: Proposal - Max length: 2.0
pris_kopia Decimal Description: Cost / center - Max length: 12.4
racker Int Description: No. of pages - Max length: 12.0
tb Decimal Description: Margin - Max length: 12.2
tg Decimal Description: MIR % - Max length: 12.2
toner_type Int Description: Type - Max length: 2.0

to_doCreateObject

Field Type Description

to_doUpdateObject

datum Date Description: Date - Primary Key: Yes - Searchable: Yes - Max length: 10.0 datum_res Date Description: Completed - Max length: 10.0 group String Description: User group - Searchable: Yes - Max length: 4.0 grupp String Description: To-do type group - Max length: 4.0 internkod String Inherits from: [intern.kod] - Max length: 10.0 jobbnr Decimal Description: Service order id - Max length: 12.2 kl Decimal Description: Hr - Primary Key: Yes - Searchable: Yes - Max length: 2.2 kltom Decimal Description: To - Max length: 2.2 kund String Description: Customer id - Inherits from: [kunder.kundnr] - Searchable: Yes -

Max length: 14.0 kund_namn String

Description: Customer - Searchable: Yes - Max length: 50.0

mnr String Inherits from: [maskiner.mnr] - Max length: 25.0 mobil_person String Description: Mobile - Max length: 30.0 offertnr Decimal Description: Quote id - Max length: 12.2 ordernr Decimal Description: Customer order id - Max length: 12.2 person String Description: Contact - Searchable: Yes - Max length: 40.0 plats String Description: Location - Max length: 100.0 prioritet Int Description: Priority - Max length: 2.0 privat Int Description: Private - Max length: 2.0 prognos Decimal Description: Forecast - Max length: 12.2 projekt String Inherits from: [projekt.nr] - Max length: 12.0 ready Int Description: Completed - Primary Key: Yes - Searchable: Yes - Max length: **2.

0** recnum int

Description: ID - Primary Key: Yes - Searchable: Yes - Max length: 10.0

saljare String Description: Seller - Inherits from: [saljare.nr] - Searchable: Yes - Max

length: 4.0 team String

Description: Sales team - Inherits from: [team.nr] - Searchable: Yes - Max

length: 4.0 tel_person String

Description: Direct tel - Max length: 30.0

text String Description: To-do - Max length: 128.0 tid_res Decimal Description: Hr - Max length: 2.2 todotyp String Inherits from: [todotyp.nr] - Searchable: Yes - Max length: 4.0 user String Description: User - Inherits from: [user.nr] - Primary Key: Yes - Searchable:

Yes - Max length: 30.0 user_from String

Inherits from: [user.nr] - Max length: 30.0

vecka Int Description: Week - Max length: 12.0 veckodag String Description: Day - Max length: 4.0

Enums

FindMode

Specifies the find behaviour of the search arguments.

Value Description
eq Equals
ge Greater than or equal
le Less than or equal
gt Greater than
lt Less than
ne Not equals

OrderType

Available order types in WinServ

Value Description
UNKNOWN
SERVICE_ORDER
CONSUMPTION_ORDER
CUSTOMER_ORDER
QUOTE
PROJECT

Scalars

Boolean

Date

The Date scalar type represents a year, month and day in accordance with the ISO-8601 standard.

DateTime

The DateTime scalar type represents a date and time. DateTime expects timestamps to be formatted in accordance with the ISO-8601 standard.

DateTimeOffset

The DateTimeOffset scalar type represents a date, time and offset from UTC. DateTimeOffset expects timestamps to be formatted in accordance with the ISO-8601 standard.

Decimal

Float

ID

Int

Milliseconds

The Milliseconds scalar type represents a period of time represented as the total number of milliseconds.

Seconds

The Seconds scalar type represents a period of time represented as the total number of seconds.

String

CONTACT INFORMATION

Asolvi AS Sluppenveien 25
N-7037 Trondheim
+47 73 80 22 00
Support
FOLLOW US

© Asolvi AS 2018