Skip to content

/AWS1/CL_FISACTIONPARAMETER

Describes a parameter for an action.

CONSTRUCTOR

IMPORTING

Optional arguments:

iv_description TYPE /AWS1/FISACTIONPARAMETERDESC /AWS1/FISACTIONPARAMETERDESC

The parameter description.

iv_required TYPE /AWS1/FISACTIONPARAMREQUIRED /AWS1/FISACTIONPARAMREQUIRED

Indicates whether the parameter is required.


Queryable Attributes

description

The parameter description.

Accessible with the following methods

Method Description
GET_DESCRIPTION() Getter for DESCRIPTION, with configurable default
ASK_DESCRIPTION() Getter for DESCRIPTION w/ exceptions if field has no value
HAS_DESCRIPTION() Determine if DESCRIPTION has a value

required

Indicates whether the parameter is required.

Accessible with the following methods

Method Description
GET_REQUIRED() Getter for REQUIRED, with configurable default
ASK_REQUIRED() Getter for REQUIRED w/ exceptions if field has no value
HAS_REQUIRED() Determine if REQUIRED has a value

Public Local Types In This Class

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

TT_ACTIONPARAMETERMAP

TYPES TT_ACTIONPARAMETERMAP TYPE HASHED TABLE OF /AWS1/CL_FISACTIONPARAMETER=>TS_ACTIONPARAMETERMAP_MAPROW WITH UNIQUE KEY key
.

TS_ACTIONPARAMETERMAP_MAPROW

TYPES: BEGIN OF TS_ACTIONPARAMETERMAP_MAPROW,
  key TYPE /AWS1/FISACTIONPARAMETERNAME,
  value TYPE REF TO /AWS1/CL_FISACTIONPARAMETER,
END OF TS_ACTIONPARAMETERMAP_MAPROW.