2007 Apr 24 10:56 PM
Hello ABAP Guru's -
Has anyone used the function module 'VIEWCLUSTER_MAINTENANCE_CALL'? I want to pass a select-option to dba_sellist. Do you know how?
Regards
Sudhakar
Hello ABAP Guru's -
Has anyone used the function module 'VIEWCLUSTER_MAINTENANCE_CALL'? I want to pass a select-option to dba_sellist. Do you know how?
Regards
Sudhakar
2007 Apr 24 11:09 PM
call function 'VIEWCLUSTER_MAINTENANCE_CALL'
EXPORTING
viewcluster_name = CLUSTERVIEWNAME
maintenance_action = 'U'
no_warning_for_clientindep = 'X'
TABLES
dba_sellist = gt_sellist.
Reward points if useful.
Phanindra
2007 Apr 24 11:22 PM
But what goes into gt_sellist?
I want to know how I can pass the select-option into gt_sellist.
Regards
Sudhakar
2007 Apr 24 11:24 PM
move: fieldname to lt_sellist-viewfield,
'EQ' to lt_sellist-operator,
value to lt_sellist-value.
append lt_sellist.
2007 Apr 25 12:25 AM
Use VIEW_RANGETAB_TO_SELLIST to convert your select option to sellist structure and then pass it to your function call.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |