cancel
Showing results for 
Search instead for 
Did you mean: 

Small 'Notes' field/block in the Opportunity and Activity Details Assignment block

Chris_Schutz
Active Participant
0 Kudos

Hi ,

In the CRM WebUI (CRM 7.0) , the 'Notes' field/block in the Opportunity and Activity Details Assignment block just allow for 5 lines to be displayed , you can scroll down and up , but it seems not be user friendly . Do SAP or somebody find a technique in order to have a  'Notes' field/block with more lines ? Like a pop-up ? Or other solution.

Thank you .

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Open the component BP_DATA 

view : NOTES   

Context node: NOTES

Add below lines of code in the GET_P_TDLINE  method

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 =10 . "Number of lines in you text box

   ENDCASE.


Here specify the number how much lines you want to display as i mentioned as rv_value = 10.

Regards,

Ritesh Chetwani


Chris_Schutz
Active Participant
0 Kudos

Ritesh ,

Can we do something like allow the user to drag to resize ? So the user can see more lines , if she/he choose to do so . Thank you .

Answers (2)

Answers (2)

dharmakasi
Active Contributor
0 Kudos

Hi,

If you have added notes view in overview page, you can not provide row numbers for the assignment.

I am able to give more than 5 lines literally no limit for the notes to enter in Notes AB.

What is the view you are using in your opportunity component, just check in F2 any what view is being added in component.

Regards,

Dharmakasi. 

deepika_chandrasekar
Active Contributor
0 Kudos

HI,

In configuration you can increase the row size for the notes field. click F2 and find out the view details and go to configuration and then choose your configuration there choose note field and increase the row from and row to values.

Regards,

Deepika.

Chris_Schutz
Active Participant
0 Kudos

Deepika ,

Can we do something like allow the user to drag to resize ? So the user can see more lines , if she/he choose to do so . Thank you .

deepika_chandrasekar
Active Contributor
0 Kudos

HI,

You cant give option for drag the size of the field. it can be done through configuration or code.

You can try AB GSTEXTEDIT instead of notes field where you will have option for size of the text.

Regards,

Deepika.