cancel
Showing results for 
Search instead for 
Did you mean: 

To Restrict number of rows in TextEdit UI element in Web dynpro

former_member216769
Participant
0 Kudos

Hi Gaints,

We have a requirement to restrict users to enter 110 charater in one line and only 32 line(Rows) in TextEdit UI element.

I am able to restrict user to enter only 110 character in one line by below properties:

Cols = 110

Wrapping = 'Soft'.

But I am not able to find way to restrict only 32 line i.e User should not allow to create new line after 32th line.

I have set below properties:

Rows = 32

Wrapping = 'Soft'.

Even with above properties it is not restricting.

Need your valuable input so that we can resolve the issue.

Thanks In Advance..

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member184741
Active Contributor
0 Kudos

hi

create a simple data element in sE11 with predefined type as CHAR and   max length of 32 X 110 = 3520.  use this for binding textedit ui element

thanks,

sankar

former_member216769
Participant
0 Kudos

we have binded testedit ui element with attribute of type 'STRING_TABLE'  so that I can get data in tabular form so that I can Save the text as SAP text document

Premalatha
Explorer
0 Kudos

Hi,

  As  suggested in the previous reply, you can have a data element and while reading you use split at , upto any characters and move to the table , then save the text as a SAP document.

Thanks,

Premalatha . S

former_member216769
Participant
0 Kudos

Hi Premalatha,

'SPLIT' command won’t help my scenario. As user will enter some statement and if I split at say 110 character (In my scenario one line with 110 char) then some words from statement will get split and that will look odd.

I am able to restrict user to enter only 110 char in one line, it will automatically take the word which exceeds 110char to next line.

My requirement is to restrict user to have only 32 lines. If user tries to enter more line it should not allow..

Thanks

M Nair