79166954

Date: 2024-11-07 14:49:28
Score: 1
Natty:
Report link

I know this is old, but you don't have to use the CALL METHOD syntax.

cl_abap_typedescr=>describe_by_name(
    exporting  p_name         = 'abc1'
    receiving  p_descr_ref    = descr_ref1
    exceptions type_not_found = 1 ).

This works too ( No CALL METHOD in begin of block ).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Larry Hardin