abapOpenChecks
abapOpenChecks copied to clipboard
CONV full type definition when not needed
example:
DATA(lt_plants) = zcl_factory=>get_instance( )->get_something( )->get_relevant_plants(
it_plant_range = CONV zif_something_else=>ty_werks_range_tt( it_werks )
it_region = CONV zif_something=>ty_region_range_tt( it_region ) ).
can be changed to
DATA(lt_plants) = zcl_factory=>get_instance( )->get_something( )->get_relevant_plants(
it_plant_range = CONV #( it_werks )
it_region = CONV #( it_region ) ).
in case the importing parameters are fully typed