This is a follow on to blog
I find this a neat way to add tool tips in the CRM UI, but the steps described only support using the short text in SOTR_EDIT which has 255 max characters. This supports 98% of the tool tips we want to add, but my question is on the long text. The example code is posted below, would there be a different function that would support calling the long text? I haven't been able to find anything posted.
method GET_P_DESCRIPTION.
CASE iv_property.
WHEN if_bsp_wd_model_setter_getter=>fp_tooltip.
rv_value = cl_wd_utilities=>get_otr_text_by_alias( 'YourAliasName' ).
endcase.
endmethod.