Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Text area in Dynamic Documents

Former Member
0 Likes
609

Hi Experts,

I want to create a text area in a dynamic documents. Is there any method or any special technique available for this.

I am able to create input text fields using method add_input_element. But it diplays text box in one line only though we can enter as many data as we want. I want a input field like text exit control in SAP.

Please advice if you have any idea.

Thanks,

Ask.

Hi Experts,

I want to create a text area in a dynamic documents. Is there any method or any special technique available for this.

I am able to create input text fields using method add_input_element. But it diplays text box in one line only though we can enter as many data as we want. I want a input field like text exit control in SAP.

Please advice if you have any idea.

Thanks,

Ask.

2 REPLIES 2
Read only

athavanraja
Active Contributor
0 Likes
562

You can use

HTML_INSERT method of CL_DD_DOCUMENT to insert the html for textbox.

the html for textarea:

<textarea rows="23" name="S1" cols="65"></textarea>

Regards

Raja

Read only

Former Member
0 Likes
562

Hi Raj,

I am able to add a text area using method HTML_INSERT.

But how to capture data entered in that text area.

Thanks for your help.

Ask