2006 Nov 16 4:53 PM
Hi gurus
I am working on ecc5.0.
This issue is related to sales order creation.
When i want to create header texts for the sales order it says that error in text processing.It gives the following error msg.
The SD_WORD_PROCESSING function module is for creating the "Maintain Text" dialog box. You have called up the function module with the wrong values so it is not possible to edit text properly.
Check the parameters for the SD_WORD_PROCESSING_PUT function module.
Any help on this is highly appreciated.
Thanks
S.
2006 Nov 16 5:01 PM
2006 Nov 16 5:06 PM
If in batch - look to SAVE_TEXT func module
DATA BEGIN OF TXLINES OCCURS 1000. "table for SAVE_TEXT
INCLUDE STRUCTURE TLINE.
DATA END OF TXLINES.
DATA BEGIN OF TXHEAD. "HEADER for SAVE_TEXT
INCLUDE STRUCTURE THEAD.
DATA END OF TXHEAD.
CALL FUNCTION 'SAVE_TEXT'
EXPORTING HEADER = TXHEAD
SAVEMODE_DIRECT = 'X'
IMPORTING NEWHEADER = TXHEAD
TABLES LINES = TXLINES
EXCEPTIONS ID = 1
LANGUAGE = 2
NAME = 3
OBJECT = 4.
2006 Nov 16 5:09 PM
Please check my response to this question in the ABAP General Forum.
Rob