This commit is contained in:
larshp 2019-01-21 15:09:12 +01:00
parent 3f494f091f
commit 4b3d2334cc

View File

@ -855,15 +855,15 @@ CLASS ZCL_ABAPGIT_OBJECTS_PROGRAM IMPLEMENTATION.
* if the DDIC element has a PARAMETER_ID and the flag "from_dict" is active * if the DDIC element has a PARAMETER_ID and the flag "from_dict" is active
* the import will enable the SET-/GET_PARAM flag. In this case force "off" * the import will enable the SET-/GET_PARAM flag. In this case force "off"
IF <ls_field>-param_id IS NOT INITIAL * IF <ls_field>-param_id IS NOT INITIAL
AND <ls_field>-from_dict = abap_true. * AND <ls_field>-from_dict = abap_true.
IF <ls_field>-set_param IS INITIAL. * IF <ls_field>-set_param IS INITIAL.
<ls_field>-set_param = lc_rpyty_force_off. * <ls_field>-set_param = lc_rpyty_force_off.
ENDIF. * ENDIF.
IF <ls_field>-get_param IS INITIAL. * IF <ls_field>-get_param IS INITIAL.
<ls_field>-get_param = lc_rpyty_force_off. * <ls_field>-get_param = lc_rpyty_force_off.
ENDIF. * ENDIF.
ENDIF. * ENDIF.
ENDLOOP. ENDLOOP.
LOOP AT lt_containers ASSIGNING <ls_container>. LOOP AT lt_containers ASSIGNING <ls_container>.