Application Development 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: 

Function Module GRAPH_MATRIX_3D

Former Member
0 Kudos

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

Sandeep_Kumar
Advisor
Advisor
0 Kudos

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

Sandeep_Kumar
Advisor
Advisor
0 Kudos

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.

Former Member
0 Kudos

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

Cheers,

Kothand

Former Member
0 Kudos

Thanks