Maintenance and implementation of SAPScript texts in SAP
SAPScript text objects are created and maintained using SAP transaction SE75. Simply execute the tcode and then press
change (or display if you just want to view existing ones).
CALL FUNCTION 'READ_TEXT'
EXPORTING
* CLIENT = SY-MANDT
id = "Text ID
language = "Laguage
name = "Text name (unique id for text value)
object = "Object ID
.....
Create new SAPScript text object
CALL FUNCTION 'CREATE_TEXT'
EXPORTING
FID = 'TXT1'
FLANGUAGE = sy-langu
FNAME = '0001' "Any code as long as you are able to reference it at a later date
FOBJECT = 'ZTEST'
* SAVE_DIRECT = 'X'
* FFORMAT = '*'
.....
|
||||