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

ABAP Web Dynpro - Storing Long text (TextEdit)

Former Member
0 Likes
640

Good morning, I am new to ABAP Web Dynpro and am developing a questionnaire application (in ERP 2005) where I am using UI element TextEdit to enter comments. Since Web Dynpro does not handle long text, can anyone help me or give me some information on how to easily store these comments in an SAP custom table?

Thank you....Robert

2 REPLIES 2
Read only

Former Member
0 Likes
470

Capture the commnets that are entered in the text editor anto an internal table and use the Function module CREATE_TEXT to store the texts as a standard text (It will store the text in raw format in STXH/STXL tables). later you can retrieve the texts using READ_TEXT function module.

Regards,

Ravi

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
470

You can define a field in your custom table with a data type as STRING and update it as normal. That's it.

Regards,

Rich Heilman