2009 May 26 4:57 PM
Hello,
please provide me some exemple for this MF.
SAVE_TEXT and
CREATE_TEXT
I tried to use they but I got errors....
Wich is the difference ?
tks a lot,
bye.
Hello,
please provide me some exemple for this MF.
SAVE_TEXT and
CREATE_TEXT
I tried to use they but I got errors....
Wich is the difference ?
tks a lot,
bye.
2009 May 26 5:15 PM
Please check the documentation for SAVE_TEXT. You can search the forum for examples of how to use them and also do a where used list to see how they are used in your system.
Rob
2009 May 26 5:24 PM
Hi Roberto,
For further info chk this link
http://help.sap.com/saphelp_40b/helpdata/en/d6/0db8ef494511d182b70000e829fbfe/content.htm
Thanks and Regards
Srikanth.P
Edited by: Rob Burbank on May 26, 2009 12:34 PM
Edited by: SRIKANTH P on May 26, 2009 10:51 PM
2009 May 26 6:07 PM
Hi,
Here is a Sample for SAVE_TEXT
-
CONSTANTS: C_STAR TYPE C VALUE '*', " Const: *
C_AUFK(4) TYPE C VALUE 'AUFK', " Const: AUFK
C_AVOT(4) TYPE C VALUE 'AVOT'. " Const: AVOT
* Internal table to store the Longtext
DATA:BEGIN OF I_LINES OCCURS 0.
INCLUDE STRUCTURE TLINE.
DATA:END OF I_LINES.
* Structure to store the Header details of the Long text
DATA:K_HEAD LIKE THEAD.
I_TEXT = SPACE.
INSERT I_TEXT INDEX 1.
IF I_TEXT[] IS NOT INITIAL.
LOOP AT I_TEXT.
I_LINES-TDFORMAT = C_STAR. " *
I_LINES-TDLINE = I_TEXT-LINE.
APPEND I_LINES.
CLEAR I_LINES.
ENDLOOP.
CLEAR I_ITEMS.
REFRESH I_TEXT.
ENDIF.
IF I_LINES[] IS NOT INITIAL.
K_HEAD-TDOBJECT = C_AUFK. " AUFK
K_HEAD-TDNAME = PTDNAME.
K_HEAD-TDID = C_AVOT. " AVOT
K_HEAD-TDSPRAS = SY-LANGU.
* Call function to Save the Long Text into the Editor
CALL FUNCTION 'SAVE_TEXT'
EXPORTING
CLIENT = SY-MANDT
HEADER = K_HEAD
SAVEMODE_DIRECT = C_X " X
TABLES
LINES = I_LINES[]
EXCEPTIONS
ID = 1
LANGUAGE = 2
NAME = 3
OBJECT = 4
OTHERS = 5.
IF SY-SUBRC EQ 0.
COMMIT WORK AND WAIT.
ENDIF.
ENDIF.All the best,
Rgds,
Ramani N
2009 May 27 7:45 AM
2009 May 27 9:42 AM
Hi Roberto,
I_TEXT is the content of the document as text, which is passed in a table with lines of length 255.
Thanks and Regards
Srikanth.P
2009 May 28 9:48 AM
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |