TimeType

TimeType

This table describe all available Time Types

This table have always 4 entries

In Resource/TimeTypeCount you can define, which Time type available

Typ / Description

A = Edit time (always)

R = Setup Time (TimeTypeCount >= 2)

N = Second Time (TimeTypeCount >= 3)

H = Third Time (TimeTypeCount = 4)

 

Definition of all properties see Configuration WIzzard - Master Data - Resource - Time Types

 

Property

Description

Table

BEAS_TIMEOPERATOR

Primary key

TimeTypeId/c

$transaction

no

$branch

no

$mask

no

 

Fields

Name

Type

Description

TimeTypeId

Edm.String(1)

TimeTypeDescription

Edm.String(100)

ChangeQuantity

Edm.Boolean

ChangeScrap

Edm.Boolean

ReceiptAssembly

Edm.Boolean

IssueMaterial

Edm.Boolean

ClosePosition

Edm.Boolean

ActivateNextPosition

Edm.Boolean

TimeTypeCount

Edm.Int32

ForPersonnelId

Edm.String(20)

 

Example:

Return all Time Types for this Resource

In Variable ll_timetypecount the result form Resource/TimeTypeCount is saved


TimeType&$filter=TimeTypeCount le [ll_tyimetypecount,#0]


{
    "value": [
        {
            "TimeTypeId": "A",
            "TimeTypeDescription": "Bearbeitung",
            "ChangeQuantity": true,
            "ChangeScrap": true,
            "ReceiptAssembly": true,
            "IssueMaterial": true,
            "ClosePosition": true,
            "ActivateNextPosition": true,
            "TimeTypeCount": 1
        },
        {
            "TimeTypeId": "R",
            "TimeTypeDescription": "R�stzeit Vorkalkulation",
            "ChangeQuantity": false,
            "ChangeScrap": false,
            "ReceiptAssembly": false,
            "IssueMaterial": false,
            "ClosePosition": false,
            "ActivateNextPosition": false,
            "TimeTypeCount": 2
        }
    ]
}