/AWS1/IF_CNT=>DESCRIBECONTACTEVALUATION()¶
About DescribeContactEvaluation¶
Describes a contact evaluation in the specified Amazon Connect instance.
Method Signature¶
METHODS /AWS1/IF_CNT~DESCRIBECONTACTEVALUATION
IMPORTING
!IV_INSTANCEID TYPE /AWS1/CNTINSTANCEID OPTIONAL
!IV_EVALUATIONID TYPE /AWS1/CNTRESOURCEID OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_cntdsccontactevalrsp
RAISING
/AWS1/CX_CNTINTERNALSERVICEEX
/AWS1/CX_CNTINVALIDPARAMETEREX
/AWS1/CX_CNTRESOURCENOTFOUNDEX
/AWS1/CX_CNTTHROTTLINGEX
/AWS1/CX_CNTCLIENTEXC
/AWS1/CX_CNTSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_instanceid TYPE /AWS1/CNTINSTANCEID /AWS1/CNTINSTANCEID¶
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
iv_evaluationid TYPE /AWS1/CNTRESOURCEID /AWS1/CNTRESOURCEID¶
A unique identifier for the contact evaluation.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_cntdsccontactevalrsp /AWS1/CL_CNTDSCCONTACTEVALRSP¶
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->describecontactevaluation(
iv_evaluationid = |string|
iv_instanceid = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lo_evaluation = lo_result->get_evaluation( ).
IF lo_evaluation IS NOT INITIAL.
lv_resourceid = lo_evaluation->get_evaluationid( ).
lv_arn = lo_evaluation->get_evaluationarn( ).
lo_evaluationmetadata = lo_evaluation->get_metadata( ).
IF lo_evaluationmetadata IS NOT INITIAL.
lv_contactid = lo_evaluationmetadata->get_contactid( ).
lv_arn = lo_evaluationmetadata->get_evaluatorarn( ).
lv_resourceid = lo_evaluationmetadata->get_contactagentid( ).
lv_resourceid = lo_evaluationmetadata->get_calibrationsessionid( ).
lo_evaluationscore = lo_evaluationmetadata->get_score( ).
IF lo_evaluationscore IS NOT INITIAL.
lv_evaluationscorepercenta = lo_evaluationscore->get_percentage( ).
lv_boolean = lo_evaluationscore->get_notapplicable( ).
lv_boolean = lo_evaluationscore->get_automaticfail( ).
ENDIF.
lo_autoevaluationdetails = lo_evaluationmetadata->get_autoevaluation( ).
IF lo_autoevaluationdetails IS NOT INITIAL.
lv_boolean = lo_autoevaluationdetails->get_autoevaluationenabled( ).
lv_autoevaluationstatus = lo_autoevaluationdetails->get_autoevaluationstatus( ).
ENDIF.
lo_evaluationacknowledgeme = lo_evaluationmetadata->get_acknowledgement( ).
IF lo_evaluationacknowledgeme IS NOT INITIAL.
lv_timestamp = lo_evaluationacknowledgeme->get_acknowledgedtime( ).
lv_arn = lo_evaluationacknowledgeme->get_acknowledgedby( ).
lv_evaluationacknowledgerc = lo_evaluationacknowledgeme->get_acknowledgercomment( ).
ENDIF.
ENDIF.
LOOP AT lo_evaluation->get_answers( ) into ls_row.
lv_key = ls_row-key.
lo_value = ls_row-value.
IF lo_value IS NOT INITIAL.
lo_evaluationanswerdata = lo_value->get_value( ).
IF lo_evaluationanswerdata IS NOT INITIAL.
lv_evaluationanswerdatastr = lo_evaluationanswerdata->get_stringvalue( ).
lv_evaluationanswerdatanum = lo_evaluationanswerdata->get_numericvalue( ).
lv_boolean = lo_evaluationanswerdata->get_notapplicable( ).
ENDIF.
lo_evaluationanswerdata = lo_value->get_systemsuggestedvalue( ).
IF lo_evaluationanswerdata IS NOT INITIAL.
lv_evaluationanswerdatastr = lo_evaluationanswerdata->get_stringvalue( ).
lv_evaluationanswerdatanum = lo_evaluationanswerdata->get_numericvalue( ).
lv_boolean = lo_evaluationanswerdata->get_notapplicable( ).
ENDIF.
LOOP AT lo_value->get_suggestedanswers( ) into lo_row_1.
lo_row_2 = lo_row_1.
IF lo_row_2 IS NOT INITIAL.
lo_evaluationanswerdata = lo_row_2->get_value( ).
IF lo_evaluationanswerdata IS NOT INITIAL.
lv_evaluationanswerdatastr = lo_evaluationanswerdata->get_stringvalue( ).
lv_evaluationanswerdatanum = lo_evaluationanswerdata->get_numericvalue( ).
lv_boolean = lo_evaluationanswerdata->get_notapplicable( ).
ENDIF.
lv_evaluationsuggestedansw = lo_row_2->get_status( ).
lo_evaluationquestioninput = lo_row_2->get_input( ).
IF lo_evaluationquestioninput IS NOT INITIAL.
lv_evaluationtranscripttyp = lo_evaluationquestioninput->get_transcripttype( ).
ENDIF.
lv_evaluationquestionanswe = lo_row_2->get_analysistype( ).
lo_evaluationquestionanswe_1 = lo_row_2->get_analysisdetails( ).
IF lo_evaluationquestionanswe_1 IS NOT INITIAL.
lo_evaluationgenaiansweran = lo_evaluationquestionanswe_1->get_genai( ).
IF lo_evaluationgenaiansweran IS NOT INITIAL.
lv_evaluationsuggestedansw_1 = lo_evaluationgenaiansweran->get_justification( ).
LOOP AT lo_evaluationgenaiansweran->get_pointsofinterest( ) into lo_row_3.
lo_row_4 = lo_row_3.
IF lo_row_4 IS NOT INITIAL.
lo_evaluationsuggestedansw_2 = lo_row_4->get_millisecondoffsets( ).
IF lo_evaluationsuggestedansw_2 IS NOT INITIAL.
lv_evaluationsuggestedansw_3 = lo_evaluationsuggestedansw_2->get_beginoffsetmillis( ).
ENDIF.
lv_evaluationsuggestedansw_4 = lo_row_4->get_transcriptsegment( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_evaluationcontactlensan = lo_evaluationquestionanswe_1->get_contactlens( ).
IF lo_evaluationcontactlensan IS NOT INITIAL.
LOOP AT lo_evaluationcontactlensan->get_matchedrulecategories( ) into lo_row_5.
lo_row_6 = lo_row_5.
IF lo_row_6 IS NOT INITIAL.
lv_questionrulecategoryaut = lo_row_6->get_category( ).
lv_questionrulecategoryaut_1 = lo_row_6->get_condition( ).
LOOP AT lo_row_6->get_pointsofinterest( ) into lo_row_3.
lo_row_4 = lo_row_3.
IF lo_row_4 IS NOT INITIAL.
lo_evaluationsuggestedansw_2 = lo_row_4->get_millisecondoffsets( ).
IF lo_evaluationsuggestedansw_2 IS NOT INITIAL.
lv_evaluationsuggestedansw_3 = lo_evaluationsuggestedansw_2->get_beginoffsetmillis( ).
ENDIF.
lv_evaluationsuggestedansw_4 = lo_row_4->get_transcriptsegment( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
LOOP AT lo_evaluation->get_notes( ) into ls_row_7.
lv_key = ls_row_7-key.
lo_value_1 = ls_row_7-value.
IF lo_value_1 IS NOT INITIAL.
lv_evaluationnotestring = lo_value_1->get_value( ).
ENDIF.
ENDLOOP.
lv_evaluationstatus = lo_evaluation->get_status( ).
LOOP AT lo_evaluation->get_scores( ) into ls_row_8.
lv_key = ls_row_8-key.
lo_value_2 = ls_row_8-value.
IF lo_value_2 IS NOT INITIAL.
lv_evaluationscorepercenta = lo_value_2->get_percentage( ).
lv_boolean = lo_value_2->get_notapplicable( ).
lv_boolean = lo_value_2->get_automaticfail( ).
ENDIF.
ENDLOOP.
lv_timestamp = lo_evaluation->get_createdtime( ).
lv_timestamp = lo_evaluation->get_lastmodifiedtime( ).
lv_evaluationtype = lo_evaluation->get_evaluationtype( ).
LOOP AT lo_evaluation->get_tags( ) into ls_row_9.
lv_key_1 = ls_row_9-key.
lo_value_3 = ls_row_9-value.
IF lo_value_3 IS NOT INITIAL.
lv_tagvalue = lo_value_3->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_evaluationformcontent = lo_result->get_evaluationform( ).
IF lo_evaluationformcontent IS NOT INITIAL.
lv_versionnumber = lo_evaluationformcontent->get_evaluationformversion( ).
lv_resourceid = lo_evaluationformcontent->get_evaluationformid( ).
lv_arn = lo_evaluationformcontent->get_evaluationformarn( ).
lv_evaluationformtitle = lo_evaluationformcontent->get_title( ).
lv_evaluationformdescripti = lo_evaluationformcontent->get_description( ).
LOOP AT lo_evaluationformcontent->get_items( ) into lo_row_10.
lo_row_11 = lo_row_10.
IF lo_row_11 IS NOT INITIAL.
lo_evaluationformsection = lo_row_11->get_section( ).
IF lo_evaluationformsection IS NOT INITIAL.
lv_evaluationformsectionti = lo_evaluationformsection->get_title( ).
lv_referenceid = lo_evaluationformsection->get_refid( ).
lv_evaluationformquestioni = lo_evaluationformsection->get_instructions( ).
LOOP AT lo_evaluationformsection->get_items( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
" Skipping lo_row_12 to avoid recursion
lo_evaluationformquestion = lo_row_13->get_question( ).
IF lo_evaluationformquestion IS NOT INITIAL.
lv_evaluationformquestiont = lo_evaluationformquestion->get_title( ).
lv_evaluationformquestioni = lo_evaluationformquestion->get_instructions( ).
lv_referenceid = lo_evaluationformquestion->get_refid( ).
lv_boolean = lo_evaluationformquestion->get_notapplicableenabled( ).
lv_evaluationformquestiont_1 = lo_evaluationformquestion->get_questiontype( ).
lo_evaluationformquestiont_2 = lo_evaluationformquestion->get_questiontypeproperties( ).
IF lo_evaluationformquestiont_2 IS NOT INITIAL.
lo_evaluationformnumericqu = lo_evaluationformquestiont_2->get_numeric( ).
IF lo_evaluationformnumericqu IS NOT INITIAL.
lv_integer = lo_evaluationformnumericqu->get_minvalue( ).
lv_integer = lo_evaluationformnumericqu->get_maxvalue( ).
LOOP AT lo_evaluationformnumericqu->get_options( ) into lo_row_14.
lo_row_15 = lo_row_14.
IF lo_row_15 IS NOT INITIAL.
lv_integer = lo_row_15->get_minvalue( ).
lv_integer = lo_row_15->get_maxvalue( ).
lv_evaluationformquestiona = lo_row_15->get_score( ).
lv_boolean = lo_row_15->get_automaticfail( ).
lo_automaticfailconfigurat = lo_row_15->get_automaticfailconf( ).
IF lo_automaticfailconfigurat IS NOT INITIAL.
lv_referenceid = lo_automaticfailconfigurat->get_targetsection( ).
ENDIF.
ENDIF.
ENDLOOP.
lo_evaluationformnumericqu_1 = lo_evaluationformnumericqu->get_automation( ).
IF lo_evaluationformnumericqu_1 IS NOT INITIAL.
lo_numericquestionproperty = lo_evaluationformnumericqu_1->get_propertyvalue( ).
IF lo_numericquestionproperty IS NOT INITIAL.
lv_numericquestionproperty_1 = lo_numericquestionproperty->get_label( ).
ENDIF.
lo_evaluationformquestiona_1 = lo_evaluationformnumericqu_1->get_answersource( ).
IF lo_evaluationformquestiona_1 IS NOT INITIAL.
lv_evaluationformquestiona_2 = lo_evaluationformquestiona_1->get_sourcetype( ).
ENDIF.
ENDIF.
ENDIF.
lo_evaluationformsinglesel = lo_evaluationformquestiont_2->get_singleselect( ).
IF lo_evaluationformsinglesel IS NOT INITIAL.
LOOP AT lo_evaluationformsinglesel->get_options( ) into lo_row_16.
lo_row_17 = lo_row_16.
IF lo_row_17 IS NOT INITIAL.
lv_referenceid = lo_row_17->get_refid( ).
lv_evaluationformsinglesel_1 = lo_row_17->get_text( ).
lv_evaluationformquestiona = lo_row_17->get_score( ).
lv_boolean = lo_row_17->get_automaticfail( ).
lo_automaticfailconfigurat = lo_row_17->get_automaticfailconf( ).
IF lo_automaticfailconfigurat IS NOT INITIAL.
lv_referenceid = lo_automaticfailconfigurat->get_targetsection( ).
ENDIF.
ENDIF.
ENDLOOP.
lv_evaluationformsinglesel_2 = lo_evaluationformsinglesel->get_displayas( ).
lo_evaluationformsinglesel_3 = lo_evaluationformsinglesel->get_automation( ).
IF lo_evaluationformsinglesel_3 IS NOT INITIAL.
LOOP AT lo_evaluationformsinglesel_3->get_options( ) into lo_row_18.
lo_row_19 = lo_row_18.
IF lo_row_19 IS NOT INITIAL.
lo_singleselectquestionrul = lo_row_19->get_rulecategory( ).
IF lo_singleselectquestionrul IS NOT INITIAL.
lv_singleselectquestionrul_1 = lo_singleselectquestionrul->get_category( ).
lv_singleselectquestionrul_2 = lo_singleselectquestionrul->get_condition( ).
lv_referenceid = lo_singleselectquestionrul->get_optionrefid( ).
ENDIF.
ENDIF.
ENDLOOP.
lv_referenceid = lo_evaluationformsinglesel_3->get_defaultoptionrefid( ).
lo_evaluationformquestiona_1 = lo_evaluationformsinglesel_3->get_answersource( ).
IF lo_evaluationformquestiona_1 IS NOT INITIAL.
lv_evaluationformquestiona_2 = lo_evaluationformquestiona_1->get_sourcetype( ).
ENDIF.
ENDIF.
ENDIF.
lo_evaluationformtextquest = lo_evaluationformquestiont_2->get_text( ).
IF lo_evaluationformtextquest IS NOT INITIAL.
lo_evaluationformtextquest_1 = lo_evaluationformtextquest->get_automation( ).
IF lo_evaluationformtextquest_1 IS NOT INITIAL.
lo_evaluationformquestiona_1 = lo_evaluationformtextquest_1->get_answersource( ).
IF lo_evaluationformquestiona_1 IS NOT INITIAL.
lv_evaluationformquestiona_2 = lo_evaluationformquestiona_1->get_sourcetype( ).
ENDIF.
ENDIF.
ENDIF.
ENDIF.
lo_evaluationformitemenabl = lo_evaluationformquestion->get_enablement( ).
IF lo_evaluationformitemenabl IS NOT INITIAL.
lo_evaluationformitemenabl_1 = lo_evaluationformitemenabl->get_condition( ).
IF lo_evaluationformitemenabl_1 IS NOT INITIAL.
LOOP AT lo_evaluationformitemenabl_1->get_operands( ) into lo_row_20.
lo_row_21 = lo_row_20.
IF lo_row_21 IS NOT INITIAL.
lo_evaluationformitemenabl_2 = lo_row_21->get_expression( ).
IF lo_evaluationformitemenabl_2 IS NOT INITIAL.
lo_evaluationformitemenabl_3 = lo_evaluationformitemenabl_2->get_source( ).
IF lo_evaluationformitemenabl_3 IS NOT INITIAL.
lv_evaluationformitemenabl_4 = lo_evaluationformitemenabl_3->get_type( ).
lv_referenceid = lo_evaluationformitemenabl_3->get_refid( ).
ENDIF.
LOOP AT lo_evaluationformitemenabl_2->get_values( ) into lo_row_22.
lo_row_23 = lo_row_22.
IF lo_row_23 IS NOT INITIAL.
lv_evaluationformitemenabl_5 = lo_row_23->get_type( ).
lv_referenceid = lo_row_23->get_refid( ).
ENDIF.
ENDLOOP.
lv_evaluationformitemsourc = lo_evaluationformitemenabl_2->get_comparator( ).
ENDIF.
lo_evaluationformitemenabl_6 = lo_row_21->get_condition( ).
IF lo_evaluationformitemenabl_6 IS NOT INITIAL.
" Skipping lo_row_21->get_condition( ) to avoid recursion
lv_evaluationformitemenabl_7 = lo_evaluationformitemenabl_6->get_operator( ).
ENDIF.
ENDIF.
ENDLOOP.
lv_evaluationformitemenabl_7 = lo_evaluationformitemenabl_1->get_operator( ).
ENDIF.
lv_evaluationformitemenabl_8 = lo_evaluationformitemenabl->get_action( ).
lv_evaluationformitemenabl_8 = lo_evaluationformitemenabl->get_defaultaction( ).
ENDIF.
lv_evaluationformitemweigh = lo_evaluationformquestion->get_weight( ).
ENDIF.
ENDIF.
ENDLOOP.
lv_evaluationformitemweigh = lo_evaluationformsection->get_weight( ).
ENDIF.
lo_evaluationformquestion = lo_row_11->get_question( ).
IF lo_evaluationformquestion IS NOT INITIAL.
lv_evaluationformquestiont = lo_evaluationformquestion->get_title( ).
lv_evaluationformquestioni = lo_evaluationformquestion->get_instructions( ).
lv_referenceid = lo_evaluationformquestion->get_refid( ).
lv_boolean = lo_evaluationformquestion->get_notapplicableenabled( ).
lv_evaluationformquestiont_1 = lo_evaluationformquestion->get_questiontype( ).
lo_evaluationformquestiont_2 = lo_evaluationformquestion->get_questiontypeproperties( ).
IF lo_evaluationformquestiont_2 IS NOT INITIAL.
lo_evaluationformnumericqu = lo_evaluationformquestiont_2->get_numeric( ).
IF lo_evaluationformnumericqu IS NOT INITIAL.
lv_integer = lo_evaluationformnumericqu->get_minvalue( ).
lv_integer = lo_evaluationformnumericqu->get_maxvalue( ).
LOOP AT lo_evaluationformnumericqu->get_options( ) into lo_row_14.
lo_row_15 = lo_row_14.
IF lo_row_15 IS NOT INITIAL.
lv_integer = lo_row_15->get_minvalue( ).
lv_integer = lo_row_15->get_maxvalue( ).
lv_evaluationformquestiona = lo_row_15->get_score( ).
lv_boolean = lo_row_15->get_automaticfail( ).
lo_automaticfailconfigurat = lo_row_15->get_automaticfailconf( ).
IF lo_automaticfailconfigurat IS NOT INITIAL.
lv_referenceid = lo_automaticfailconfigurat->get_targetsection( ).
ENDIF.
ENDIF.
ENDLOOP.
lo_evaluationformnumericqu_1 = lo_evaluationformnumericqu->get_automation( ).
IF lo_evaluationformnumericqu_1 IS NOT INITIAL.
lo_numericquestionproperty = lo_evaluationformnumericqu_1->get_propertyvalue( ).
IF lo_numericquestionproperty IS NOT INITIAL.
lv_numericquestionproperty_1 = lo_numericquestionproperty->get_label( ).
ENDIF.
lo_evaluationformquestiona_1 = lo_evaluationformnumericqu_1->get_answersource( ).
IF lo_evaluationformquestiona_1 IS NOT INITIAL.
lv_evaluationformquestiona_2 = lo_evaluationformquestiona_1->get_sourcetype( ).
ENDIF.
ENDIF.
ENDIF.
lo_evaluationformsinglesel = lo_evaluationformquestiont_2->get_singleselect( ).
IF lo_evaluationformsinglesel IS NOT INITIAL.
LOOP AT lo_evaluationformsinglesel->get_options( ) into lo_row_16.
lo_row_17 = lo_row_16.
IF lo_row_17 IS NOT INITIAL.
lv_referenceid = lo_row_17->get_refid( ).
lv_evaluationformsinglesel_1 = lo_row_17->get_text( ).
lv_evaluationformquestiona = lo_row_17->get_score( ).
lv_boolean = lo_row_17->get_automaticfail( ).
lo_automaticfailconfigurat = lo_row_17->get_automaticfailconf( ).
IF lo_automaticfailconfigurat IS NOT INITIAL.
lv_referenceid = lo_automaticfailconfigurat->get_targetsection( ).
ENDIF.
ENDIF.
ENDLOOP.
lv_evaluationformsinglesel_2 = lo_evaluationformsinglesel->get_displayas( ).
lo_evaluationformsinglesel_3 = lo_evaluationformsinglesel->get_automation( ).
IF lo_evaluationformsinglesel_3 IS NOT INITIAL.
LOOP AT lo_evaluationformsinglesel_3->get_options( ) into lo_row_18.
lo_row_19 = lo_row_18.
IF lo_row_19 IS NOT INITIAL.
lo_singleselectquestionrul = lo_row_19->get_rulecategory( ).
IF lo_singleselectquestionrul IS NOT INITIAL.
lv_singleselectquestionrul_1 = lo_singleselectquestionrul->get_category( ).
lv_singleselectquestionrul_2 = lo_singleselectquestionrul->get_condition( ).
lv_referenceid = lo_singleselectquestionrul->get_optionrefid( ).
ENDIF.
ENDIF.
ENDLOOP.
lv_referenceid = lo_evaluationformsinglesel_3->get_defaultoptionrefid( ).
lo_evaluationformquestiona_1 = lo_evaluationformsinglesel_3->get_answersource( ).
IF lo_evaluationformquestiona_1 IS NOT INITIAL.
lv_evaluationformquestiona_2 = lo_evaluationformquestiona_1->get_sourcetype( ).
ENDIF.
ENDIF.
ENDIF.
lo_evaluationformtextquest = lo_evaluationformquestiont_2->get_text( ).
IF lo_evaluationformtextquest IS NOT INITIAL.
lo_evaluationformtextquest_1 = lo_evaluationformtextquest->get_automation( ).
IF lo_evaluationformtextquest_1 IS NOT INITIAL.
lo_evaluationformquestiona_1 = lo_evaluationformtextquest_1->get_answersource( ).
IF lo_evaluationformquestiona_1 IS NOT INITIAL.
lv_evaluationformquestiona_2 = lo_evaluationformquestiona_1->get_sourcetype( ).
ENDIF.
ENDIF.
ENDIF.
ENDIF.
lo_evaluationformitemenabl = lo_evaluationformquestion->get_enablement( ).
IF lo_evaluationformitemenabl IS NOT INITIAL.
lo_evaluationformitemenabl_1 = lo_evaluationformitemenabl->get_condition( ).
IF lo_evaluationformitemenabl_1 IS NOT INITIAL.
LOOP AT lo_evaluationformitemenabl_1->get_operands( ) into lo_row_20.
lo_row_21 = lo_row_20.
IF lo_row_21 IS NOT INITIAL.
lo_evaluationformitemenabl_2 = lo_row_21->get_expression( ).
IF lo_evaluationformitemenabl_2 IS NOT INITIAL.
lo_evaluationformitemenabl_3 = lo_evaluationformitemenabl_2->get_source( ).
IF lo_evaluationformitemenabl_3 IS NOT INITIAL.
lv_evaluationformitemenabl_4 = lo_evaluationformitemenabl_3->get_type( ).
lv_referenceid = lo_evaluationformitemenabl_3->get_refid( ).
ENDIF.
LOOP AT lo_evaluationformitemenabl_2->get_values( ) into lo_row_22.
lo_row_23 = lo_row_22.
IF lo_row_23 IS NOT INITIAL.
lv_evaluationformitemenabl_5 = lo_row_23->get_type( ).
lv_referenceid = lo_row_23->get_refid( ).
ENDIF.
ENDLOOP.
lv_evaluationformitemsourc = lo_evaluationformitemenabl_2->get_comparator( ).
ENDIF.
lo_evaluationformitemenabl_6 = lo_row_21->get_condition( ).
IF lo_evaluationformitemenabl_6 IS NOT INITIAL.
" Skipping lo_row_21->get_condition( ) to avoid recursion
lv_evaluationformitemenabl_7 = lo_evaluationformitemenabl_6->get_operator( ).
ENDIF.
ENDIF.
ENDLOOP.
lv_evaluationformitemenabl_7 = lo_evaluationformitemenabl_1->get_operator( ).
ENDIF.
lv_evaluationformitemenabl_8 = lo_evaluationformitemenabl->get_action( ).
lv_evaluationformitemenabl_8 = lo_evaluationformitemenabl->get_defaultaction( ).
ENDIF.
lv_evaluationformitemweigh = lo_evaluationformquestion->get_weight( ).
ENDIF.
ENDIF.
ENDLOOP.
lo_evaluationformscoringst = lo_evaluationformcontent->get_scoringstrategy( ).
IF lo_evaluationformscoringst IS NOT INITIAL.
lv_evaluationformscoringmo = lo_evaluationformscoringst->get_mode( ).
lv_evaluationformscoringst_1 = lo_evaluationformscoringst->get_status( ).
ENDIF.
lo_evaluationformautoevalu = lo_evaluationformcontent->get_autoevaluationconf( ).
IF lo_evaluationformautoevalu IS NOT INITIAL.
lv_boolean = lo_evaluationformautoevalu->get_enabled( ).
ENDIF.
ENDIF.
ENDIF.