cancel
Showing results for 
Search instead for 
Did you mean: 

Service request Text Box – Increase high issue

Former Member
0 Kudos

Hi Experts,

In Service request screen, when I try to extend height of the text box by customizing, it’s not reflecting in Web UI output. When I change its position in customizing tab, it’s changing but height is showing constant, not increasing or decreasing its size.

I tried changing in both Components (Service request Component & Text box component) but didn’t help. Please suggest.

Component: SRQM_NOTES

View: SRQM_NOTES/TextView

Component: SRQM_INCIDENT_H
View: SRQM_INCIDENT_H/IncidentHeaderEF

Thanks in advance.

Regards,

Shaik

Accepted Solutions (1)

Accepted Solutions (1)

deepika_chandrasekar
Active Contributor
0 Kudos

Hi,

Did you try increasing the row size for component Component: SRQM_NOTES View:SRQM_NOTES/TextView .

Try chaging "Row to" to 3 or 4 and check.

Regards,

Deepika.

Former Member
0 Kudos

Hi Deepika,

Many thanks for the reply. In View SRQM_NOTES/TextView, I have change the value to 3 or 4, but it was not increasing its height.  But now I have solved the issue my self as below.

Solution:

  • 1st Step: Component: SRQM_NOTES

          In  GET_P_CONC_LINES method first we need to set text area row as below code lines.

          WHEN if_bsp_wd_model_setter_getter=>fp_textarea_rows.

          rv_value = '30' ( Required Size)

  • 2nd Step: Component: SRQM_INCIDENT_H

          Change its position and required height in config tab, it will work with out disturbing its alignment.

Thanks & Regards,

Shaik

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Add below code in GET_P method:

method GET_P_CONC_LINES.
  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 = 12.    " This  will add 12 rows on web ui.Change as per your need
   ENDCASE.
endmethod.

Regards

Anji