/AWS1/CL_FNT=>GETFIELDLEVELENCCONFIG()
¶
About GetFieldLevelEncryptionConfig¶
Get the field-level encryption configuration information.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_id
TYPE /AWS1/FNTSTRING
/AWS1/FNTSTRING
¶
Request the ID for the field-level encryption configuration information.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_fntgetfieldlevelenc02
/AWS1/CL_FNTGETFIELDLEVELENC02
¶
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_fnt~getfieldlevelencconfig( |string| ).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lo_fieldlevelencryptioncon = lo_result->get_fieldlevelencconfig( ).
IF lo_fieldlevelencryptioncon IS NOT INITIAL.
lv_string = lo_fieldlevelencryptioncon->get_callerreference( ).
lv_string = lo_fieldlevelencryptioncon->get_comment( ).
lo_queryargprofileconfig = lo_fieldlevelencryptioncon->get_queryargprofileconfig( ).
IF lo_queryargprofileconfig IS NOT INITIAL.
lv_boolean = lo_queryargprofileconfig->get_forwardwhenqueryargpfl00( ).
lo_queryargprofiles = lo_queryargprofileconfig->get_queryargprofiles( ).
IF lo_queryargprofiles IS NOT INITIAL.
lv_integer = lo_queryargprofiles->get_quantity( ).
LOOP AT lo_queryargprofiles->get_items( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_string = lo_row_1->get_queryarg( ).
lv_string = lo_row_1->get_profileid( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
lo_contenttypeprofileconfi = lo_fieldlevelencryptioncon->get_contenttypeprofileconfig( ).
IF lo_contenttypeprofileconfi IS NOT INITIAL.
lv_boolean = lo_contenttypeprofileconfi->get_forwardwhenconttypeisu00( ).
lo_contenttypeprofiles = lo_contenttypeprofileconfi->get_contenttypeprofiles( ).
IF lo_contenttypeprofiles IS NOT INITIAL.
lv_integer = lo_contenttypeprofiles->get_quantity( ).
LOOP AT lo_contenttypeprofiles->get_items( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_format = lo_row_3->get_format( ).
lv_string = lo_row_3->get_profileid( ).
lv_string = lo_row_3->get_contenttype( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDIF.
lv_string = lo_result->get_etag( ).
ENDIF.