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

Function Module GRAPH_MATRIX_3D

Former Member
0 Likes
799

Hi All,

I have a query on the function module GRAPH_MATRIX_3D. What are exactly the fields of the TABLES parameter OPTS of this function module?

Regards,

Prosenjit.

1 ACCEPTED SOLUTION
Read only

Sandeep_Panghal
Product and Topic Expert
Product and Topic Expert
0 Likes
710

HI,

This parameter contains a table of display options. Setting the OPTS parameter allows the ABAP program to determine the appearance of the generated graph. You can set any display option available to the online user in the SAP Business Graphics menus.

Setting options in this table only determines the initial appearance of the display. The online user is still free to reset these options once the display appears on the monitor screen.

Each element in the OPTS table is a string with the format:

OptionKey = Value

You can pass this table as -->

DATA: BEGIN OF OPT OCCURS 1,

C(20),

END OF OPT.

4 REPLIES 4
Read only

Former Member
Read only

Sandeep_Panghal
Product and Topic Expert
Product and Topic Expert
0 Likes
711

HI,

This parameter contains a table of display options. Setting the OPTS parameter allows the ABAP program to determine the appearance of the generated graph. You can set any display option available to the online user in the SAP Business Graphics menus.

Setting options in this table only determines the initial appearance of the display. The online user is still free to reset these options once the display appears on the monitor screen.

Each element in the OPTS table is a string with the format:

OptionKey = Value

You can pass this table as -->

DATA: BEGIN OF OPT OCCURS 1,

C(20),

END OF OPT.

Read only

Former Member
0 Likes
710

Have you checked the include program - FTCOGRAF to know how they used this FM?

Cheers,

Kothand

Read only

Former Member
0 Likes
710

Thanks