‎2008 Mar 18 9:35 AM
hi friends,
can we prepare the Bar charts or Graphs dynamically?
regards
srinivas
‎2008 Mar 18 9:38 AM
Hi,
Check this....
REPORT ZMATRIX.
DATA: BEGIN OF ITAB_DATA OCCURS 0,
DATANAME(15),
QUANTITY1 TYPE I,
QUANTITY2 TYPE I,
QUANTITY3 TYPE I,
END OF ITAB_DATA,
BEGIN OF ITAB_OPTIONS OCCURS 0,
OPTION(20),
END OF ITAB_OPTIONS.
ITAB_DATA-DATANAME = 'Electricity'.
ITAB_DATA-QUANTITY1 = 55.
ITAB_DATA-QUANTITY2 = 62.
ITAB_DATA-QUANTITY3 = 59.
APPEND ITAB_DATA.
ITAB_DATA-DATANAME = 'Gas'.
ITAB_DATA-QUANTITY1 = 35.
ITAB_DATA-QUANTITY2 = 52.
ITAB_DATA-QUANTITY3 = 44.
APPEND ITAB_DATA.
ITAB_DATA-DATANAME = 'Water'.
ITAB_DATA-QUANTITY1 = 18.
ITAB_DATA-QUANTITY2 = 22.
ITAB_DATA-QUANTITY3 = 19.
APPEND ITAB_DATA.
CALL FUNCTION 'GRAPH_MATRIX_3D'
EXPORTING
COL1 = 'Jan'
COL2 = 'Feb'
COL3 = 'Mar'
TITL = 'Utility Expenses in US$.'
TABLES
DATA = ITAB_DATA
OPTS = ITAB_OPTIONS
EXCEPTIONS
OTHERS = 1.
Reward points if useful....
Regards
AK
‎2008 Mar 18 9:44 AM
thank you very much
but can we save this Graph as Bmp file or
can we insert this in script or smart form
regards
srinivas
‎2008 Mar 18 9:40 AM
‎2008 Mar 18 9:46 AM
hi for the dynamic graphs look at this ...
http://help.sap.com/saphelp_nw04s/helpdata/en/f5/248841a79f1609e10000000a155106/frameset.htm
/people/community.user/blog/2007/01/24/json-widgets-and-a-simple-graph
regards,
venkat.
‎2008 Mar 18 9:52 AM
thank you very much
but can we save this Graph as Bmp file or
can we insert this in script or smart form
regards
srinivas
‎2008 Mar 18 9:46 AM
hi for the dynamic graphs look at this ...
http://help.sap.com/saphelp_nw04s/helpdata/en/f5/248841a79f1609e10000000a155106/frameset.htm
/people/community.user/blog/2007/01/24/json-widgets-and-a-simple-graph
regards,
venkat.