Application Development 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: 

error in header texts of sales orders

Former Member
0 Kudos

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.

3 REPLIES 3

Former Member
0 Kudos

Sonali,

Where are trying to accomplish? In a batch mode?

0 Kudos

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.

Former Member
0 Kudos

Please check my response to this question in the ABAP General Forum.

Rob