/AWS1/CL_FDT=>UPDATEMODELVERSIONSTATUS()
¶
About UpdateModelVersionStatus¶
Updates the status of a model version.
You can perform the following status updates:
-
Change the
TRAINING_IN_PROGRESS
status toTRAINING_CANCELLED
. -
Change the
TRAINING_COMPLETE
status toACTIVE
. -
Change
ACTIVE
toINACTIVE
.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_modelid
TYPE /AWS1/FDTMODELIDENTIFIER
/AWS1/FDTMODELIDENTIFIER
¶
The model ID of the model version to update.
iv_modeltype
TYPE /AWS1/FDTMODELTYPEENUM
/AWS1/FDTMODELTYPEENUM
¶
The model type.
iv_modelversionnumber
TYPE /AWS1/FDTFLOATVERSIONSTRING
/AWS1/FDTFLOATVERSIONSTRING
¶
The model version number.
iv_status
TYPE /AWS1/FDTMODELVERSIONSTATUS
/AWS1/FDTMODELVERSIONSTATUS
¶
The model version status.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_fdtupdmdelvrsstatrslt
/AWS1/CL_FDTUPDMDELVRSSTATRSLT
¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->/aws1/if_fdt~updatemodelversionstatus(
iv_modelid = |string|
iv_modeltype = |string|
iv_modelversionnumber = |string|
iv_status = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.