2008 Nov 19 6:38 AM
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.
2008 Nov 19 6:42 AM
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.
2008 Nov 19 6:40 AM
Hi,
Check
http://help.sap.com/saphelp_nw04/helpdata/en/52/67088e439b11d1896f0000e8322d00/content.htm
http://www.saptechnical.com/Tutorials/ABAP/3DGraph/demo.htm
Edited by: Neenu Jose on Nov 19, 2008 7:41 AM
2008 Nov 19 6:42 AM
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.
2008 Nov 19 6:42 AM
Have you checked the include program - FTCOGRAF to know how they used this FM?
Cheers,
Kothand
2008 Nov 19 8:11 AM