GRAPH_2D

HI,
Can any body tell me Function Module name for creating graph with horizontal scrollable.I dont want standard graph button.I used Function Module GRAPH_2D but horizontal scroll is not comming.
Thanks,
Rakesh

Hello,
Check this standard programs they are using the same FM
RFDOPR20                         Customer Payment History
RFVD_COMPRESSION_01_I01
RPRSTA01                         Travel Expense Reporting by Period
RPSTA100                         Time-Related Statistical Reporting
RPSTA200                         Time-Related Statistical Reporting
RPSTA2GR
RQALVF16
RQETBI10                         Inspection lot selection
RSDB4007                         iSeries: Display Wait Statistics by SAP Instance
RSHOST10                         Monitor for OS Collector (ST06)
RSORA003                         Statistics of Physical Accesses to Oracle Data Base
RSORA007                         Statistics of Data Base Wait Situations
RSORA138                         IO Stat for Each User Session (ORA7 V$SESS_10)
Check this 3 FM
GRAPH_2D                       Calling up the 2D business graphics
GRAPH_2D_MENUE                 DO NOT USE (use 'GRAPH_2D' and 'GRAPH_BUSG_MENU_SET')
GRAPH_MATRIX_2D                Calling up the 2D graphics (user-friendly version)

Similar Messages

  • How to lock transaction using function module or something like that

    Hi, all
    I'd like to know the way to lock transacitons using function module or something like that.
    I know this would be possible if calling transaciton SM01, but I want to know other ways like calling function module  (BAPI ) or method.
    Thank you for your cooperation In advance.
    Regards,
    Hideki Kozai

    Hi,
           Try the following FM
    BRF_NETWORK_GRAPHICS           BRF: Network Graphics for BRF Objects
    BRF_INITIALIZE_GRAPHICS_NGR    BRF: Initialize Network Graphics
    BRF_NETWORK_GRAPHICS_NGR       BRF: Network Graphics: Start
    BUSG                           SAP Business Graphics
    GRAPH_2D                       Calling up the 2D business graphics
    GRAPH_2D_MENUE                 DO NOT USE (use 'GRAPH_2D' and 'GRAPH_BUSG_MENU_SET')
    GRAPH_3D                       Calling up the 3D presentation graphics
    GRAPH_BUSG_COLOR_SET           Definition of color pallets for business graphics
    GRAPH_BUSG_MENU_SET            Pushbutton menu (tool bar) for all BUSG modules
    GRAPH_MATRIX                   Calling up SAP Business Graphics (2D, 3D and 4D)
    GRAPH_MATRIX_2D                Calling up the 2D graphics (user-friendly version)
    GRAPH_MATRIX_3D                Structure of 3D graphics (user-friendly version)
    GRAPH_MATRIX_4D                Calling up a 3D graphic (4th dimension stacked representation)
    Regards,

  • How to Show Graph

    Hii
        I have issues showing Business Graphics in SAP . My exact issue is that i have to show data in a table which has the following format :
    Date - Val1 - Val2 - Val3
                       Now there can be any no. of rows in this table and i have to plot this data as a line graphs, In which X-axis represent dates and y axis shows the lines for values val1 , 2 & 3 .
                    Now the issue is the functional Modules like (Graph_3D,Graph_2D) can have only 30 to 32 such entries ...
              Please Tell me a function module where i can show my data for any no. of records .
    Thanks
    Ajitabh

    Hi Ajitabh,
    Try this code... i think this would help you out..
    * Beispiel mit Aufruf SAP Businessgrafik ueber Funktionbaustein  290191*
    REPORT ZGRBUSG_3
    NO STANDARD PAGE HEADING.
    * Tabelle mit dem einer Textspalte (Bezeichnung 3. Dimension)          *
    * und 6 * 5 Wertspalten (6 Werte fuer die 1., 5 Werte fuer die 2. Dim. *
    * Eine Zeile entspricht jeweils einem Wert fuer die 3. Dimension       *
    DATA: BEGIN OF DATA  OCCURS 1,
            TEXT(25),
            Y1L1 TYPE P,
            Y2L1 TYPE P,
            Y3L1 TYPE P,
            Y4L1 TYPE P,
            Y5L1 TYPE P,
            Y6L1 TYPE P,
            Y1L2 TYPE P,
            Y2L2 TYPE P,
            Y3L2 TYPE P,
            Y4L2 TYPE P,
            Y5L2 TYPE P,
            Y6L2 TYPE P,
            Y1L3 TYPE P,
            Y2L3 TYPE P,
            Y3L3 TYPE P,
            Y4L3 TYPE P,
            Y5L3 TYPE P,
            Y6L3 TYPE P,
            Y1L4 TYPE P,
            Y2L4 TYPE P,
            Y3L4 TYPE P,
            Y4L4 TYPE P,
            Y5L4 TYPE P,
            Y6L4 TYPE P,
            Y1L5 TYPE P,
            Y2L5 TYPE P,
            Y3L5 TYPE P,
            Y4L5 TYPE P,
            Y5L5 TYPE P,
            Y6L5 TYPE P,
          END OF DATA.
    *--- Optionen-Tabelle -------------------------------------------------*
    DATA: BEGIN OF OPTS OCCURS 1,
             C(80) TYPE C,
          END OF OPTS.
    DATA: TYEAR1(5) VALUE '2190',
          TYEAR2(5) VALUE '2313',
          TYEAR3(5) VALUE '2314',
          TYEAR4(5) VALUE '2339',
          TYEAR5(5) VALUE '2360',
          TYEAR6(5) VALUE '2378'.
    DATA: TPROD1(9),
          TPROD2(9),
          TPROD3(9),
          TPROD4(9),
          TPROD5(9).
    DATA: TITLE(25).
    TITLE = TEXT-UMS.
    TPROD1 = TEXT-P01.
    TPROD2 = TEXT-P02.
    TPROD3 = TEXT-P03.
    TPROD4 = TEXT-P04.
    TPROD5 = TEXT-P05.
    SET PF-STATUS 'GRAF'.
    DATA-TEXT  = TEXT-P01.
    DATA-Y1L2 = 1226.
    DATA-Y2L2 = 1178.
    DATA-Y3L2 = 1045.
    DATA-Y4L2 = 1598.
    DATA-Y5L2 = 1377.
    DATA-Y6L2 = 1587.
    DATA-Y1L3 = 1653.
    DATA-Y2L3 = 1287.
    DATA-Y3L3 = 1111.
    DATA-Y4L3 = 0.
    DATA-Y5L3 = 0.
    DATA-Y6L3 = 0.
    DATA-Y1L4 = 1036.
    DATA-Y2L4 = 0.
    DATA-Y3L4 = 0.
    DATA-Y4L4 = 0.
    DATA-Y5L4 = 0.
    DATA-Y6L4 = 0.
    APPEND DATA.
    DATA-TEXT  = TEXT-P00.
    DATA-Y1L2 = 1.
    DATA-Y2L2 = '0.50'.
    DATA-Y3L2 = '0.75'.
    DATA-Y4L2 =  1.
    DATA-Y5L2 = '2.5'.
    DATA-Y6L2 = '1.17'.
    DATA-Y1L3 = '0.75'.
    DATA-Y2L3 = '0.5'.
    DATA-Y3L3 = '0.33'.
    DATA-Y4L3 =  0.
    DATA-Y5L3 =  0.
    DATA-Y6L3 =  0.
    DATA-Y1L4 = '1.4'.
    DATA-Y2L4 = 0.
    DATA-Y3L4 = 0.
    DATA-Y4L4 = 0.
    DATA-Y5L4 = 0.
    DATA-Y6L4 = 0.
    APPEND DATA.
    * Ausgabe einer Liste:                                                 *
    * Fuer 5 Länder jeweils 4 Jahresspalten und 5 Produktzeilen            *
    SKIP.
    ULINE.
    WRITE: / TEXT-L02.
    WRITE: / TEXT-J00,22 TYEAR1,39 TYEAR2,56 TYEAR3, 73 TYEAR4.
    SKIP 2.
    LOOP AT DATA.
      WRITE: / DATA-TEXT, 12 DATA-Y1L2,DATA-Y2L2,DATA-Y3L2,DATA-Y4L2.
    ENDLOOP.
    ULINE.
    WRITE: / TEXT-L03.
    WRITE: / TEXT-J00,22 TYEAR1,39 TYEAR2,56 TYEAR3, 73 TYEAR4.
    SKIP 2.
    LOOP AT DATA.
      WRITE: / DATA-TEXT, 12 DATA-Y1L3,DATA-Y2L3,DATA-Y3L3,DATA-Y4L3.
    ENDLOOP.
    SKIP.
    ULINE.
    WRITE: / TEXT-L04.
    WRITE: / TEXT-J00,22 TYEAR1,39 TYEAR2,56 TYEAR3, 73 TYEAR4.
    SKIP 2.
    LOOP AT DATA.
      WRITE: / DATA-TEXT, 12 DATA-Y1L4,DATA-Y2L4,DATA-Y3L4,DATA-Y4L4.
    ENDLOOP.
    * PF11: 2D-Graphik einer Zeile                                         *
    *       Von der 3.Dimension (Länder) wird das 1. Objekt ausgewählt.    *
    AT PF05.                                                    "1-Jahr
      DATA: 2D_ROW VALUE '1'.
    *--- Spaltentext-Tabelle ----------------------------------------------*
      DATA: BEGIN OF TYEAR OCCURS 1,
               C(20) TYPE C,
            END OF TYEAR.
    *--- 2D-Graphiktyp: Tortendiagramm ------------------------------------*
      WRITE 'P2TYPE = PI' TO OPTS-C. APPEND OPTS.
    *--- Spaltenbezeichnung mit in den Titel aufnehmen --------------------*
      CASE 2D_ROW.
        WHEN '1'.
          WRITE TPROD1 TO TITLE+7.
        WHEN '2'.
          WRITE TPROD2 TO TITLE+7.
        WHEN '3'.
          WRITE TPROD3 TO TITLE+7.
        WHEN '4'.
          WRITE TPROD4 TO TITLE+7.
        WHEN '5'.
          WRITE TPROD5 TO TITLE+7.
      ENDCASE.
      MOVE TYEAR1 TO TYEAR-C. APPEND TYEAR.
      MOVE TYEAR2 TO TYEAR-C. APPEND TYEAR.
      MOVE TYEAR3 TO TYEAR-C. APPEND TYEAR.
      MOVE TYEAR4 TO TYEAR-C. APPEND TYEAR.
      CALL FUNCTION 'GRAPH_MATRIX_2D'
           EXPORTING
                TITL       = TITLE
                VALT       = 'YIELD'
                NROW       = 2D_ROW
                MAIL_ALLOW = 'X'
           TABLES
                DATA       = DATA
                OPTS       = OPTS
                TCOL       = TYEAR.
    * PF12: 2D-Graphik einer Spalte                                        *
    *       Von der 3.Dimension (Länder) wird das 1. Objekt ausgewählt.    *
    AT PF06.                                                    "1-Jahr
      DATA: 2D_COL VALUE '2'.
    *--- 2D-Graphiktyp: Tortendiagramm ------------------------------------*
      WRITE 'P2TYPE = PI' TO OPTS-C. APPEND OPTS.
    *--- Spaltenbezeichnung mit in den Titel aufnehmen --------------------*
      CASE 2D_COL.
        WHEN '1'.
          WRITE TYEAR1 TO TITLE+7.
        WHEN '2'.
          WRITE TYEAR2 TO TITLE+7.
        WHEN '3'.
          WRITE TYEAR3 TO TITLE+7.
        WHEN '4'.
          WRITE TYEAR4 TO TITLE+7.
      ENDCASE.
      CALL FUNCTION 'GRAPH_MATRIX_2D'
           EXPORTING
                TITL       = TITLE
                VALT       = 'YIELD'
                NCOL       = 2D_COL
                MAIL_ALLOW = 'X'
           TABLES
                DATA       = DATA
                OPTS       = OPTS
                TCOL       = TYEAR.
    * PF13: 3D-Graphik                                                     *
    *       Von der 3.Dimension (Länder) wird das 1. Objekt ausgewählt.    *
    AT PF07.                                                    "3-Jahre
    *--- Erstes Bild: 3D --------------------------------------------------*
      WRITE 'FIFRST = 3D' TO OPTS-C. APPEND OPTS.
    *--- Art der Faerbung: abhaengig von den Zeilen------------------------*
      WRITE 'P3CTYP = RO' TO OPTS-C. APPEND OPTS.
      CALL FUNCTION 'GRAPH_MATRIX_3D'
           EXPORTING
                TITL       = TEXT-VGL
                VALT       = 'YIELD'
                DIM1       = TEXT-J00
                DIM2       = TEXT-P00
                COL1       = TYEAR1
                COL2       = TYEAR2
                COL4       = TYEAR4
                MAIL_ALLOW = 'X'
           TABLES
                DATA       = DATA
                OPTS       = OPTS.
    * PF14: 3D-Graphik                                                     *
    *       Aufruf der 3D-Graphik mit nur einer Spalte fuehrt zu einem     *
    *       automatischen Umschalten auf 2D-Graphik beim 1. Bild           *
    *       Von der 3.Dimension (Länder) wird das 1. Objekt ausgewählt.    *
    AT PF08.                                                    "3-Jahre
    *--- Erstes Bild: 3D --------------------------------------------------*
      WRITE 'FIFRST = 3D' TO OPTS-C. APPEND OPTS.
    *--- Art der Faerbung: abhängig von den Zeilen ------------------------*
      WRITE 'P3CTYP = RO' TO OPTS-C. APPEND OPTS.
    *--- 2D-Graphiktyp: Vertikale Balken ----------------------------------*
      WRITE 'P2TYPE = VB' TO OPTS-C. APPEND OPTS.
      CALL FUNCTION 'GRAPH_MATRIX_3D'
           EXPORTING
                TITL       = TEXT-VGL
                VALT       = 'YIELD'
                DIM1       = TEXT-J00
                DIM2       = TEXT-P00
                COL2       = TYEAR2
                MAIL_ALLOW = 'X'
           TABLES
                DATA       = DATA
                OPTS       = OPTS.
    * PF15: 4D-Graphik                                                     *
    AT PF09.                               "3-Jahre, mehrere L#nder
    *--- Erstes Bild: Auswaehlen ------------------------------------------*
      WRITE 'FIFRST = PU' TO OPTS-C. APPEND OPTS.
    *--- 2D-Graphiktyp: Perspektivische Balken ----------------------------*
      WRITE 'P2TYPE = TD' TO OPTS-C. APPEND OPTS.
    *--- Art der Faerbung: gleichmaessig ----------------------------------*
      WRITE 'P3CTYP = PL' TO OPTS-C. APPEND OPTS.
      CALL FUNCTION 'GRAPH_MATRIX_4D'
           EXPORTING
                TITL       = TEXT-VGL
                VALT       = 'YIELD'
                DIM1       = TEXT-J00
                DIM2       = TEXT-L00
                DIM3       = TEXT-P01
                DIM1_1     = TYEAR1
                DIM1_2     = TYEAR2
                DIM1_3     = TYEAR3
                DIM1_4     = TYEAR4
                DIM1_5     = TYEAR5
                DIM1_6     = TYEAR6
                DIM2_2     = TEXT-L02
                DIM2_3     = TEXT-L03
                DIM2_4     = TEXT-L04
    *            DIM3_1     = '3D'
                MAIL_ALLOW = 'X'
           TABLES
                DATA       = DATA
                OPTS       = OPTS.
    Thanks,
    Sreekanth G

  • Regarding curves IN abap REPORT

    hi experts,
    i got one assignment ,i have to show the graphical representaton of the output data in the abap report,
    i have to create  the bell curve on the basis of appraisal data which will come in the output how will i proceed for this plz help me remember i have to create this only with the help of abap report or alv report plz  help me considering this point .
    how will i create x axis ,y axis or any bell curve plz throw light ,it will be fruitful for u also as this things we have make it possible without BI but only ABAP.
    plz help me if possible send me the codes or guide me.

    Hi ,
    To start with X and Y axis u can refer the fm GRAPH_2D  to illustrate  the x and y axis .
    There is another FM GRAPH_3D ..
    I have never tried with curve plotting but yielded the o/p in bargraphs .
    Br,
    Vijay

  • ALV output graphical display

    Hi All,
    I want to display an ALV grid with 3 columns.
    First column containes an image,
    Second and third columns contain a counter value. The counter should be as  a digital score board as we have in hockey.
    Any idea as how I can get a dynamic image of counter to display in the 2 columns?
    Thanks
    Quresh

    This piece of code is giving graphical output , u can check it in ur machine.
    REPORT  ZSKC_GRAPH.
    data : begin of itab occurs 0,
            day type i,
            val type i,
           end   of itab.
    start-of-selection.
      do 5 times.
        clear itab.
        itab-day = sy-index.
        itab-val = sy-index + ( sy-index * sy-index ).
        append itab.
      enddo.
      CALL FUNCTION 'GRAPH_2D'
        TABLES
          DATA                     = itab
       EXCEPTIONS
         GUI_REFUSE_GRAPHIC       = 1
         OTHERS                   = 2
      IF SY-SUBRC <> 0.
    *    Give some message.
      ENDIF.
    You just pass ur internal table to this Function module - Do you need to display column captions etc ?? In that case you will have to use GRAPH_MATRIX_2D.

  • How to dispaly Line chart in output?

    Hi All,
    My requirement is that I want to display a line graph for 'year vs revenue' after calculation of revenue.
    I tried this with the FM GRAPH_2D . It displays only bar chart initially, for getting Line chart I have to choose it manually in options after displaying it, but I want to display the line graph directly without any manual operation.
    I've used the FM as below,
    CALL FUNCTION 'GRAPH_2D'
      EXPORTING
        inform             = 'X'
    *    display_type       = ''
        titl               = 'Year Vs Revenue'
      TABLES
        data               = it_summary
      EXCEPTIONS
        gui_refuse_graphic = 1
        OTHERS             = 2.
    Please let me know how to get the line chart directly using either FM GRAPH_2D or any other FM if you know that could do this.

    Hi,
    try this:
    DATA: BEGIN OF IGRAPH OCCURS 0,
            TXT   TYPE CHAR10,
            VALUE TYPE P,
          END   OF IGRAPH.
    DATA: TITLE(80) VALUE 'Header'.
    IGRAPH-TXT = '2000'. IGRAPH-VALUE = 10. APPEND IGRAPH.
    IGRAPH-TXT = '2001'. IGRAPH-VALUE = 23. APPEND IGRAPH.
    IGRAPH-TXT = '2002'. IGRAPH-VALUE = 06. APPEND IGRAPH.
    IGRAPH-TXT = '2003'. IGRAPH-VALUE = 34. APPEND IGRAPH.
    IGRAPH-TXT = '2004'. IGRAPH-VALUE = 45. APPEND IGRAPH.
    IGRAPH-TXT = '2005'. IGRAPH-VALUE = 66. APPEND IGRAPH.
    IGRAPH-TXT = '2006'. IGRAPH-VALUE = 15. APPEND IGRAPH.
    IGRAPH-TXT = '2007'. IGRAPH-VALUE = 17. APPEND IGRAPH.
    IGRAPH-TXT = '2008'. IGRAPH-VALUE = 30. APPEND IGRAPH.
    CALL FUNCTION 'GRAPH_2D'
      EXPORTING
        TITL   = TITLE
        VALT   = 'Value in EUR'
        WINSZX = '75'
        WINSZY = '75'
      TABLES
        DATA   = IGRAPH.
    CALL FUNCTION 'GRAPH_2D'
      EXPORTING
        TITL   = TITLE
        VALT   = 'Value in EUR'
        WINSZX = '75'
        WINSZY = '75'
        DISPLAY_TYPE = 'LN'
      TABLES
        DATA   = IGRAPH.
    CALL FUNCTION 'GRAPH_2D'
      EXPORTING
        TITL   = TITLE
        VALT   = 'Value in EUR'
        WINSZX = '75'
        WINSZY = '75'
        DISPLAY_TYPE = 'ST'
      TABLES
        DATA   = IGRAPH.
    and look in the Docu of this FM (Field DISPLAY_TYPE)
    Regards, Dieter

  • Problem in displaying x-axis label in charts

    hi experts,
                   i am using charts in my report..... the problem is that the label in the x-axis is not getting displayed.
    i think it may be due to the no. of columns. i have to display records in chart for 31 days that is there should be 31 bars ...
    it is displaying the bars but not the label like (01/06 , 02/06..) in x-axis...where as if i reduce the number of columns it is getting displayed....could you please help me in this..
    below is the code snippet,
    CALL FUNCTION 'GRAPH_2D'
    EXPORTING
    TITL = 'DATE vs PURITY'
    VALT = 'PURITIY'
    SMFONT = 'X'
    WINPOS = '1'
    WINSZX = '80'
    WINSZY = '80'
    TABLES
    DATA = CHART.
    thanks in advance,
    syed

    Hi,
    I think you can try with WINSZX = '100' & WINSZY = '100' so that your graphic window opens up with highest cordinates.
    And there is a limitation that DATA may contain at most 32 rows. Dispalying all column labels will not be possible if the value is too large.
    Alternatively you can try out with function module 'GRAPH_MATRIX_2D'.
    Hope this helps.

  • Show graph(Bar) in an amodal window

    I am developing a program, wherein I want to display the data as a graph(Bar) when an user clicks  on a button (in  a dynpro), I need show this graph in an amodal window (with POO: create object dialogbox??...
    does anybody have any example?
    help me please.

    Hi,
    you can try using either Business Graphics or GFW framework for this.
    for drawing a graph using Business graphics you simply need to call the FM
    GRAPH_2D or GRAPH_3D and pass the required data. A new window opens up business graphics expolorer containing the graph with builtin functinalily to print etc.
    But if you wish to use GFW framework for building a graph...yuo can have a look at follwoing programs in SE38. But these involve more coding than above part.
    DEMO_GFW_PRES_SHOW
    DEMO_GFW_PRES_SHOW_MULT
    DEMO_GFW_SHOW1
    DEMOGFWBW
    DEMOGFWBW_LCL
    GFW_BW_DC_HIER
    GFW_BW_GP_HIER
    GFW_BW_GP_HIER_DATAFLOW
    GFW_BW_GP_HIER_SAP
    GFW_DC_HIER
    GFW_DC_MTA
    GFW_DC_PRES
    GFW_DC_PRES_T
    GFW_DC_PRES0
    GFW_DC_PREST
    GFW_DCWIZARD
    GFW_DCWIZARD_CLASS
    GFW_DEMO_HIER1
    GFW_DEMO_HIER2
    GFW_DEMO_HIER3
    GFW_DEMO_PRES
    GFW_DEMO_PRES_MAIN
    GFW_DEMO_PRES1
    GFW_GP_PRES
    GFW_MSGPROTOCOL
    GFW_PROG_BAR
    GFW_PROG_COLUMNS_AND_TIME_AXIS
    GFW_PROG_CREATE_CUSTOMIZING
    GFW_PROG_DC_PERFORMANCE
    GFW_PROG_GET_CU_BUNDLE
    GFW_PROG_HISTOGRAM
    GFW_PROG_LABELS
    GFW_PROG_MTA
    GFW_PROG_PIE
    GFW_PROG_POINT_WITH_LABEL
    GFW_PROG_PORTFOLIO
    GFW_PROG_PRES_SHOW_MULT
    GFW_PROG_SPEEDOMETER
    GFW_PROG_TEXT
    GFW_PROG_TIME_AXIS
    GFW_PROG_TUTORIAL
    GFW_TIMEPROTOCOL

  • Function Module Name for Graph

    HI,
      Can any body tell me Function Module name for creating graph with horizontal scrollable.I dont want standard graph button.
    Thanks,
    Rakesh

    Hello,
    Check this standard programs they are using the same FM
    RFDOPR20                         Customer Payment History
    RFVD_COMPRESSION_01_I01
    RPRSTA01                         Travel Expense Reporting by Period
    RPSTA100                         Time-Related Statistical Reporting
    RPSTA200                         Time-Related Statistical Reporting
    RPSTA2GR
    RQALVF16
    RQETBI10                         Inspection lot selection
    RSDB4007                         iSeries: Display Wait Statistics by SAP Instance
    RSHOST10                         Monitor for OS Collector (ST06)
    RSORA003                         Statistics of Physical Accesses to Oracle Data Base
    RSORA007                         Statistics of Data Base Wait Situations
    RSORA138                         IO Stat for Each User Session (ORA7 V$SESS_10)
    Check this 3 FM
    GRAPH_2D                       Calling up the 2D business graphics
    GRAPH_2D_MENUE                 DO NOT USE (use 'GRAPH_2D' and 'GRAPH_BUSG_MENU_SET')
    GRAPH_MATRIX_2D                Calling up the 2D graphics (user-friendly version)

  • Help regarding PIE Charts

    Hi experts,
       I am creating a report in which i have to display a pie chart. I am sucessful in that but the requirement is i need to get the value of each sector displayed in the graph itself. I am using a function module GRAPH_2D for the charts. So please let me know the possible chanses for that.
    Thanks in advance.

    Hi Uday,
    That is the transaction. It is one stop shop for all graphs
    Just ask your basis to give you the authorization for that or you can just go in the code of that transaction and look interanally which all programs it is calling.
    Regards,
    Atish

  • Displaying custom graph in ALV report

    Hi
    Can you tell me how to display a custom graph for a column in a alv report.
    That is adding a seperate button in the report and display a graph for a column when the button is clicked.
    If 'Graph_2d' function module is used can anybody tell how to pass values to the function module and display the graph using the function module.
    Thanks & regards
    Saravanakumar

    Hi,
      check out the standard program GRDEMO_D for more understanding of teh usage of FM GRAPH_2D
    regards,
    theja

  • How to display ALV grid in a graphical display??

    Hello All,
    I want to display the ALV grid output in graphical format. I did not see any particular Function code or event in ALV for graphs. Hence I designed a PF status myself. But when I use the Function module "Graph_2D", it gives me an error.
    Can you guys suggest which is the best Function module to display the ALV output in graphical format?
    Regards,
    Abhishek
    P.S: Points will be awarded to the answers which will solve the issue

    This piece of code is giving graphical output , u can check it in ur machine.
    REPORT  ZSKC_GRAPH.
    data : begin of itab occurs 0,
            day type i,
            val type i,
           end   of itab.
    start-of-selection.
      do 5 times.
        clear itab.
        itab-day = sy-index.
        itab-val = sy-index + ( sy-index * sy-index ).
        append itab.
      enddo.
      CALL FUNCTION 'GRAPH_2D'
        TABLES
          DATA                     = itab
       EXCEPTIONS
         GUI_REFUSE_GRAPHIC       = 1
         OTHERS                   = 2
      IF SY-SUBRC <> 0.
    *    Give some message.
      ENDIF.
    You just pass ur internal table to this Function module - Do you need to display column captions etc ?? In that case you will have to use GRAPH_MATRIX_2D.

  • To generate graphs in sap

    HI all,
    I want to know the function module which will generate  graphs in 2d and 3d in sap from basic lists.
    Please help its urgent.

    hi Guru,
    Check out these FM's
    GRAPH_2D                       Calling up the 2D business graphics                           
    GRAPH_2D_MENUE                 DO NOT USE (use 'GRAPH_2D' and 'GRAPH_BUSG_MENU_SET')         
    GRAPH_3D                       Calling up the 3D presentation graphics                       
    GRAPH_BUSG_COLOR_SET           Definition of color pallets for business graphics             
    GRAPH_BUSG_MENU_SET            Pushbutton menu (tool bar) for all BUSG modules               
    GRAPH_MATRIX                   Calling up SAP Business Graphics (2D, 3D and 4D)              
    GRAPH_MATRIX_2D                Calling up the 2D graphics (user-friendly version)            
    GRAPH_MATRIX_3D                Structure of 3D graphics (user-friendly version)              
    GRAPH_MATRIX_4D                Calling up a 3D graphic (4th dimension stacked representation)
    Regards,
    Santosh

  • Graphical Representation in Abap

    Hi Abappers,
                      How to show Graphical Representation in Abap.If is possible plz send by showing examples.
    Regards,
    vani.

    Hi,
    The following FM's are  used to create graphs in SAP...
    You can execute them and check the paramters to be passed
    BUSG                           SAP Business Graphics
    GRAPH_2D                       Calling up the 2D business graphics
    GRAPH_2D_MENUE                 DO NOT USE (use 'GRAPH_2D' and 'GRAPH_BUSG_MENU_SET')
    GRAPH_3D                       Calling up the 3D presentation graphics
    GRAPH_BUSG_COLOR_SET           Definition of color pallets for business graphics
    GRAPH_BUSG_MENU_SET            Pushbutton menu (tool bar) for all BUSG modules
    GRAPH_MATRIX                   Calling up SAP Business Graphics (2D, 3D and 4D)
    GRAPH_MATRIX_2D                Calling up the 2D graphics (user-friendly version)
    GRAPH_MATRIX_3D                Structure of 3D graphics (user-friendly version)
    GRAPH_MATRIX_4D                Calling up a 3D graphic (4th dimension stacked representation)
    Regards
    Sk

  • Issues ti Graph

    Hi Every,
    I am trying to implement Interactive graph By using Graph_2d Fm, In that I want to know how can I to interactive graph and what is the use of B_key, B_typ and M_typ.
    pleas help me  to implement this .
    Warm Regards
    Imran

    Hi
    plz go through this link
    How to create a Line graph with base matrix display.

Maybe you are looking for