2007 Jul 19 12:45 PM
this function module used to edit the long text for standard key..
but after making chages to the text and saving the text..it is not saving..
when ever i call the function module changes are not there..
after changing we need to call any other functionmodule...
pleaseeee help meeeeeeee
2007 Jul 19 12:46 PM
2007 Jul 19 12:47 PM
Hello,
After save_text call function 'Commit_text'.
Regards,
Neelambari
2007 Jul 19 12:48 PM
2007 Jul 19 12:48 PM
well the normal routine is:
either Read_text, then edit manually
or Edit_text.
AFTER that you need to call Save_text, and after that Commit_text.
2007 Jul 19 12:48 PM
Hi,
Until you call commit_text it will not save.
Transfer text creation text(s) to update
All text modules which have saving in the update task defined via their object description are first held in the text memory. When the function 'Post' is called up in the application, the text modules must also be placed in the log file.
The function module COMMIT_TEXT generates a CALL FUNCTION ... IN UPDATE TASK for every text module entered in the text memory corresponding to the action to be executed (Delete, Create, Change).
A COMMIT WORK is not generated. This can be initiated from the calling application program.
If no text key has been specified, once the function has been executed the text memory is empty. You can also partially specify fields of the text key by using '*'. In addition, you can pass a table with text keys in parameter KEY_TABb.
Reward if useful!
2007 Jul 19 12:50 PM
Hi,
The sequence is,
EDIT_TEXT.
SAVE_TEXT.
COMMIT_TEXT.
Pls reward points.
Regards,
Ameet
2007 Jul 19 12:51 PM
Hi,
This function module is used to call the fullscreen editor. The lines of text can be edited with the functions available there. The editor interface is set according to the interface assigned to the text object.
When you exit the editor, the function module SAVE_TEXT is generally called implicitly with the function 'Save' or 'Flag', as long as the text is saved in the text file according to the text object set. This call can be deactivated via the parameter SAVE.
Check whether the SAVE parameter has a default value of 'X'.I think that you have to set the flag to 'X'.
Thanks,
Sandeep.
2007 Jul 19 12:59 PM