‎2008 Jan 22 3:18 AM
How to place the text editor in the module pool programming and how to write the coding for capturing the text in the screen and update it in the database tables?
‎2008 Jan 22 3:25 AM
USe the Function Module 'CATSXT_SIMPLE_TEXT_EDITOR' to call the Text editor.
CALL FUNCTION 'CATSXT_SIMPLE_TEXT_EDITOR'
EXPORTING
im_title = v_changelogtitle
im_display_mode = 'X'
CHANGING
ch_text = it_changelog.
Hope this helps
Vinodh Balakrishnan
‎2008 Jan 22 3:36 AM
Hi,
Pls. check this link .Your all doubts related to text editor will get clear.
http://www.erpgenie.com/abap/controls/textedit.htm.
Don't forget to reward if useful.......
‎2008 Jan 22 4:18 AM
Hi ,
go through this link for Better Understanding o Dialog Module Programs:
[http://www.sapdev.co.uk/dialog/tabcontrol/tc_basic.htm]
Reward points if it is usefull ...
Girish
‎2008 Jan 22 4:47 AM
Hi,
Use the Function module 'LONGTEXT_ONLY' and pass thje required parameters.
I have used the same function module in my module pool programming.
Just create an icon in the module pool programming and asign a FCODE and when user clicks on the icon the editor will open with the current text . you can delete and add the text . if text is not there for a particular order number or whatever empty editor will open so that you can add your own text.
I hope you understand it.
Reward if useful.
Thanks,
Nageswar
‎2008 Jan 22 4:50 AM
Hi,
Use the samplke program RSDEMO_DRAG_DROP_EDIT_TREE to learn text editor as well as tree contols....
You can use function module SAVE_TEXT to save text and READ_TEXT to read the texts.
Regards,
Renjith Michael.
Edited by: Renjith Michael on Jan 22, 2008 10:23 AM