2009 Jun 09 10:46 PM
I am trying to upload long text in IW22/23 transaction.
I am using Fm SAVE_TEXT.
In IW21 when the long text is created manually a system generates a default Time-Date-USER stamp and the text is published below that.
When i Load the text using FM the text is copied above the STAMP and nothing is visible when look at the tranaction at the display mode. If I have to go in change mode of the transaction and click on the change TEXT button and then the uploaded text is visible.
How should i make the loaded long text visible.
Thanks,
AP
I am trying to upload long text in IW22/23 transaction.
I am using Fm SAVE_TEXT.
In IW21 when the long text is created manually a system generates a default Time-Date-USER stamp and the text is published below that.
When i Load the text using FM the text is copied above the STAMP and nothing is visible when look at the tranaction at the display mode. If I have to go in change mode of the transaction and click on the change TEXT button and then the uploaded text is visible.
How should i make the loaded long text visible.
Thanks,
AP
2009 Jun 09 11:40 PM
Try to use THEAD Structure properly ,pass time and date stamp here .
Thank you
Seshu
2009 Jun 10 12:10 AM
I tried that but still not working. Thru config we removed the STAMP also.
On Long text screen it does not show but when we go indide the Long text screen the data is there.
Thanks,
AP
2009 Jun 10 2:25 AM
Hi ,
Try like this.
itext-tdid = text_id
itext-tdspras = sy-langu.
ltext-tdline = text. "Text
APPEND ltext.
CALL FUNCTION 'SAVE_TEXT'
EXPORTING
header = itext "Header
insert = 'X'
savemode_direct = 'X'
TABLES
lines = ltext
EXCEPTIONS
id = 1
language = 2
name = 3
object = 4
OTHERS = 5.
Thanks & Regards,
Dileep .C
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |