每日一函式講解(2007-08-16)
函式:CREATE_TEXT
[@more@]說明:建立(或更改)長文資料
引數:EXPORTING
FID :標識長文欄位ID
FLANGUAGE:長文的語言
FNAME :對應長文的Key值(如是物料主檔的長文,則儲存物料碼)
FOBJECT :長文物件
SAVE_DIRECT:儲存選項
FFORMAT :儲存格式
TABLES
FLINES :長文資料
例子:
以下是建立(更改)物料主檔的長文資料
call function 'CREATE_TEXT'
exporting
fid = 'GRUN'
flanguage = sy-langu
fname = 'Material Number'
fobject = 'MATERIAL'
* SAVE_DIRECT = 'X'
* FFORMAT = '*'
tables
flines = 'LongText Table'
EXCEPTIONS
NO_INIT = 1
NO_SAVE = 2
OTHERS = 3
.
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
相關:READ_TEXT函式是讀取長文資料,引數相類似。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9437124/viewspace-961105/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python函式每日一講 - int()函式Python函式
- python函式每日一講 - int()函式Python函式
- python函式每日一講 - eval函式Python函式
- python函式每日一講 - id函式Python函式
- python函式每日一講 - dir()函式Python函式
- python函式每日一講 - enumerate函式Python函式
- python函式每日一講 - all()Python函式
- python函式每日一講 - any()Python函式
- python函式每日一講 - abs()Python函式
- python函式每日一講 - bin()Python函式
- python函式每日一講 - classmethod()Python函式SSM
- python函式每日一講 - dir()Python函式
- Python函式每日一講 - hex()Python函式
- Python函式每日一講 - id()Python函式
- python函式每日一講 - float函式型別轉換詳解Python函式型別
- python函式每日一講 - exec執行函式Python函式
- python函式每日一講 - basestring()Python函式
- python函式每日一講 - bool([x])Python函式
- python函式每日一講 - complex()Python函式
- python函式每日一講 - compile()Python函式Compile
- python函式每日一講 - bytearrayPython函式
- python函式每日一講 - chr(i)Python函式
- Python函式每日一講9 - input()Python函式
- Python函式每日一講10 - int()Python函式
- Python函式每日一講12 - len()Python函式
- python函式每日一講 - filter函式過濾序列Python函式Filter
- python函式每日一講 - divmod數字處理函式Python函式
- python函式每日一講 - delattr(object, name)Python函式Object
- python函式每日一講 - cmp(x,y)Python函式
- python函式每日一講 - callable(object)Python函式Object
- Python函式每日一講11 - isinstance()Python函式
- 每日一函式講解(2007-08-15)函式
- 每日一函式講解(2007-08-13)函式
- 每日一函式講解(2007-08-14)函式
- 每日一函式講解(2007-08-12)函式
- python函式每日一講 - format函式字串格式化入門Python函式ORM字串格式化
- Python函式每日一講 - help函式的使用與實踐Python函式
- Python函式每日一講 - frozenset集合函式入門及例項Python函式