每日一函式講解(2007-08-14)
函式:VRM_SET_VALUES
[@more@]說明:初始化ListBox的選項
引數:EXPORTING
ID :ListBox的控制元件名稱
VALUES :要加入ListBox的選項的內表資料
例子:
TYPE-POOLS: vrm.
DATA: it_val TYPE vrm_values,
wa_line LIKE LINE OF it_val.
WA_LINE-KEY = '1'.
WA_LINE-TEXT = '選項1'.
INSERT WA_LINE INTO TABLE IT_VAL.”加入選項記錄至內表
......
CALL FUNCTION 'VRM_SET_VALUES'
EXPORTING
ID = 'FIELDNAME'
VALUES = IT_VAL
EXCEPTIONS
ID_ILLEGAL_NAME = 1
OTHERS = 2
.
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
相關:VRM_GET_VALUES函式與VRM_SET_VALUES剛好相反,它是取得ListBox中的選項記錄,引數都相同,只不過是Values是EXCEPTIONS引數。如下:
call function 'VRM_GET_VALUES'
exporting
id = 'FIELDNAME'
IMPORTING
VALUES = IT_VAL
EXCEPTIONS
ID_NOT_FOUND = 1
OTHERS = 2
.
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9437124/viewspace-952902/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 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-12)函式
- 每日一函式講解(2007-08-16)函式
- python函式每日一講 - format函式字串格式化入門Python函式ORM字串格式化
- Python函式每日一講 - help函式的使用與實踐Python函式
- Python函式每日一講 - frozenset集合函式入門及例項Python函式