Hello all,
I have created a text area to enter the notes with the code below.
CASE iv_property.
WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
rv_value = cl_bsp_dlc_view_descriptor=>FIELD_TYPE_TEXTAREA.
WHEN IF_BSP_WD_MODEL_SETTER_GETTER=>FP_TEXTAREA_ROWS.
rv_value = 5.
ENDCASE.
I defined the field in Z-table as STRING. When I enter the notes and save it, it will save only if the length of the entered string is less than 255 characters.
If the string is more than 255 characters, it is giving me error message.
How can we save the string with more than 255 characters?