Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

VIEWCLUSTER_MAINTENANCE_CALL - Help

0 Likes
1,305

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

4 REPLIES 4
Read only

Former Member
0 Likes
1,048

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

Read only

0 Likes
1,048

But what goes into gt_sellist?

I want to know how I can pass the select-option into gt_sellist.

Regards

Sudhakar

Read only

Former Member
0 Likes
1,048

move: fieldname to lt_sellist-viewfield,

'EQ' to lt_sellist-operator,

value to lt_sellist-value.

append lt_sellist.

Read only

0 Likes
1,048

Use VIEW_RANGETAB_TO_SELLIST to convert your select option to sellist structure and then pass it to your function call.