Skip to content

/AWS1/CL_TBDTASKPARAMETERVALUE

The data types for the task parameters.

CONSTRUCTOR

IMPORTING

Optional arguments:

IV_INT TYPE /AWS1/TBDINTSTRING /AWS1/TBDINTSTRING

A signed integer represented as a string.

IV_FLOAT TYPE /AWS1/TBDFLOATSTRING /AWS1/TBDFLOATSTRING

A double precision IEEE-754 floating point number represented as a string.

IV_STRING TYPE /AWS1/TBDPARAMETERSTRING /AWS1/TBDPARAMETERSTRING

A UTF-8 string.

IV_PATH TYPE /AWS1/TBDPATHSTRING /AWS1/TBDPATHSTRING

A file system path represented as a string.


Queryable Attributes

int

A signed integer represented as a string.

Accessible with the following methods

Method Description
GET_INT() Getter for INT, with configurable default
ASK_INT() Getter for INT w/ exceptions if field has no value
HAS_INT() Determine if INT has a value

float

A double precision IEEE-754 floating point number represented as a string.

Accessible with the following methods

Method Description
GET_FLOAT() Getter for FLOAT, with configurable default
ASK_FLOAT() Getter for FLOAT w/ exceptions if field has no value
HAS_FLOAT() Determine if FLOAT has a value

string

A UTF-8 string.

Accessible with the following methods

Method Description
GET_STRING() Getter for STRING, with configurable default
ASK_STRING() Getter for STRING w/ exceptions if field has no value
HAS_STRING() Determine if STRING has a value

path

A file system path represented as a string.

Accessible with the following methods

Method Description
GET_PATH() Getter for PATH, with configurable default
ASK_PATH() Getter for PATH w/ exceptions if field has no value
HAS_PATH() Determine if PATH has a value

Public Local Types In This Class

Internal table types, representing arrays and maps of this class, are defined as local types:

TS_TASKPARAMETERS_MAPROW

TYPES: BEGIN OF TS_TASKPARAMETERS_MAPROW,
key TYPE /AWS1/TBDSTRING,
value TYPE REF TO /AWS1/CL_TBDTASKPARAMETERVALUE,
END OF TS_TASKPARAMETERS_MAPROW.

TT_TASKPARAMETERS

TYPES TT_TASKPARAMETERS TYPE HASHED TABLE OF /AWS1/CL_TBDTASKPARAMETERVALUE=>TS_TASKPARAMETERS_MAPROW WITH UNIQUE KEY key
.