Display Graph in Smartform

Hi all,
I am have a requirement in smartform. I have to Display the Graph as my output. If any one worked on this please help me out.
Thanks in advance.
Ranjit

Hi Ranjit,
Check out <b>GRAL</b> transaction.
I am not sure whether you can do it using a smart form, but in report generally you can have some graphical display, But the transaction would be usefull to you.
Thanks,
Sreekanth

Similar Messages

  • It is possible to display a graph in smartforms

    Hi,
    In report , i am displaying the graph similary i want to   print the graph in smartforms.
    Plz give me details .
    Wht is spf ?
    Regards,
    Rani.

    Hi Rani,
    chech this link..
    http://searchsap.techtarget.com/loginMembersOnly/1,289498,sid21_gci1192768,00.html?NextURL=http%3A//searchsap.techtarget.com/tip/0%2C289483%2Csid21_gci1192768%2C00.html
    Reward points if helpful..
    Regards,
    Goutham.

  • Display data in smartforms using report

    hi,
    i want to display data from smartform using report.
    i have a preview buttons in report when i select preview buttons displays in smarts
    regards
    amit

    design the smartform as per ur need and get  the function module generated by smartform and pass it to ur report programas below..
    case sy-ucomm.
    when 'smartform'.
    pass the f.m that is generated by system in smartforms
           CALL FUNCTION '/1BCDWB/SF00000265'
        EXPORTING
        ARCHIVE_INDEX              =
        ARCHIVE_INDEX_TAB          =
        ARCHIVE_PARAMETERS         =
        CONTROL_PARAMETERS         =
        MAIL_APPL_OBJ              =
        MAIL_RECIPIENT             =
        MAIL_SENDER                =
        OUTPUT_OPTIONS             =
        USER_SETTINGS              = 'X'
          DATE_L                     = s_fkdat-low
          DATE_H                     = s_fkdat-high
          PLANT_L                    = s_werks-low
          PLANT_H                    = s_werks-high
      IMPORTING
        DOCUMENT_OUTPUT_INFO       =
        JOB_OUTPUT_INFO            =
        JOB_OUTPUT_OPTIONS         =
        TABLES
          IFINAL                     = ifinal1[]
      EXCEPTIONS
        FORMATTING_ERROR           = 1
        INTERNAL_ERROR             = 2
        SEND_ERROR                 = 3
        USER_CANCELED              = 4
        OTHERS                     = 5
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    endcase.

  • Don't display graph for group

    Hi,
    I want display graph for data in every group. Sometimes it is working correctly, but when I delete one parameter from graph, grap is not displayed. Every values is not null. Is possible that data is not grouped by SQL but group with reporter ? How is working when exist two rows with equal x-value but different y-value ? I use DevSuite 9.0.2
    Thanks
    Roman

    Error is in a graph wizard. Wizard generate invalid name of group for "src" value in xml "rw:graph" tag.

  • How To display Graphs in work book

    Hi Xpertz
    Could any one explain me how can i display graps in work books i mean i want the data disply in sheet one and graph display in the sheet two.say row in x axis and columns in Y axis..
    Ny suggestion..
    Thanx in Advance.
    With regards
    RMK
    **No need to say right answers will get full pointz**

    Hi,
    Slect the only Result area (including headers of rows and columns) and click 'chart Wizard' on excel tool bar..then foloow the steps to finish the graph..depending on selection in chart wizard,you can arrange data..Preview shows how your chart looks like...
    in the chartwizard,you have the option to display Graph in different sheet(you can select the sheet from dropdown box..),arranging rows and columns as required...etc
    regards
    Message was edited by: Murali

  • Displaying Graph for current date

    Hi,
    I want to pass a dynamic value to display graph. Let say I want to display graph for the current date, so that whenever user opens the web page, he sees the data for the current date. Can anyone suggest any solution for this.
    Regards.

    solved by other way

  • Graph in smartform/SAPscript

    Hello,
    Is it possible to print graph in smartform or sap script?
    If yes, can anybody giude me how to do that?
    Thanks & Regards,,,
    Sunil Joyous

    Hi Sunil,
    Please check this online document and go to Graphic Administration section.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRSF/BCSRVSCRSF.pdf
    Hope this will help.
    Regards,
    Ferry Lianto
    Please reward points if helpful.

  • Function modules to display graph in a container

    Hi,
       Can anyone suggest me is there any other function module to display graph in a container other than "GFW_PRES_SHOW_MULT"  why because when I am displaying the graph using that function module I am getting boxes in the graph display which is not needed so please send me other function module or tell me whether there is any way to remove the boxes in the graph at the time of display by using the same function module given above.
    Thanks in Advance.
    Bhushanam.

    Hi,
    To add a graphics functionality to ALV Grid;
    1. Add a user button on the ALV Grid control, utilizing "toolbar" event and "set_toolbar_interactive" methods of the class "cl_gui_alv_grid".
    2. As the function of this button, your routine should use GFW objects or "GRAPH_MATRIX..." function modules to display your graph. You implement your routine at the event "user_command".
    Additionaly, you can have a look at this
    SAP Graphics Help
    http://help.sap.com/saphelp_46c/helpdata/en/a1/d9883672d57c73e10000009b38f889/frameset.htm
    data: begin of i_tab occurs 0,
           name(5) type c,
           value   type p,
          end of i_tab.
    i_tab-name = 'SAP'.
    i_tab-value = '40'.
    append i_tab.
    clear  i_tab.
    i_tab-name = 'MSN'.
    i_tab-value = '30'.
    append i_tab.
    clear  i_tab.
    i_tab-name = 'CNN'.
    i_tab-value = '27'.
    append i_tab.
    clear  i_tab.
    i_tab-name = 'ABC'.
    i_tab-value = '56'.
    append i_tab.
    clear  i_tab.
    call function 'GRAPH_2D'
    EXPORTING
        TYPE                     = 'PI'
        TITL                     = 'My Graph'
      tables
        data                     = i_tab
    EXCEPTIONS
       GUI_REFUSE_GRAPHIC       = 1
       OTHERS                   = 2
    if sy-subrc <> 0.
    endif.
    Also,Check the fun modules
    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,
    Padmam.

  • Scheme for Displaying Graphs in Host.VI using SIT?

    I am wondering how others tackle the problem of displaying graphs and other indicators mapped from the the .dll running in RT to indicators on the Host.VI when you cannot edit anything in the "green" area on the host that is autogenerated with SIT Connection Manager.
    My problem is that if I have 15 graphs and 50 indicators (just a guess right now, but I would think this wouldn't be uncommon for other users) I cannot display them all on the Host.VI at once besides filling a gigantic area that I have to scroll through.  A better approach would be to use queus or variables to pass between other .VIs to categorize different pages of graphs that the Host.VI can call, but I cannot edit anything in this mysterious green area so I cannot save the data to any kind of structure.
    Ideas?  I am still new to LabVIEW so there may be an SIT trick that is obvious that I don't know about.
    Thanks!

    Hi gdubb85,
    As far as the "green" uneditable area is concerned, there is actually nothing that restricts you from editing or modifying the code in those areas. The reason they are different from the rest of the code is that that area will be rescripted (i.e. overwritten) if you change anything in the SIT Connection Manager. So, you can edit those areas if you wish, but just be aware that if you use the SIT Connection Manager again after editing those areas, it will be overwritten.
    As far as displaying your 15 graphs and 50 indicators in an organized fashion, you can accomplish this by using a Tab Control. For more information on this, please check out this link.
    I hope this is helpful.
    Thank you for choosing National Instruments.
    Aaron Pena
    National Instruments
    Applications Engineer
    http://www.ni.com/support

  • Getting this error(ListenerRfc: unknown interpreter) while displaying graph

    hi guys,
    I am working on webreports , while displaying graphs i am getting an error:Error When Calling Up IGS (ListenerRfc: unknown interpreter)
    Please help me in this regards  , its urgent
    Regards
    Hiren
    IBM-India

    hi Hiren,
    check your IGS may down,
    to test, you can try program(se38)
    BW_IGS_CHART_TEST or GRAPHICS_IGS_CHART_TEST
    "ListenerRfc : unknown error" in communication with the IGS from the WAD
    hope this helps.

  • Displaying Graphs in WebDynpro Java

    Hello everyone,
    I have an application where I am using WebDynpro Java as an interface. In my application, I have a type heirarchy (XML File) and depending on the the type heirarchy I have to give two input Graphs (graph1 and graph2) to the system. Later, on uploading these three files, we have two Actions (Maximal Join and Projection). Maximal Join is nothing but, generalising the two input graphs and gives an output graph (graph3). For this application I have got Java Classes in an external JAR file. On using those external Java classes and methods I should write the logic in the WebDynpro implementation part.
    So far I have successfully finished upto the design part by importing the external JAR file and also managed to upload the three files (XML file, Graph1 and Graph2) in to the context. Now in the implementation tab of the main View, in the onActionMaximalJoin method I have used the external Java classes of the JAR file and written the logic for the execution of the events. But I am not sure how to catch the output Graph and Display it in webdynpro.
    Can anyone help me out with this. I would be very very thankful for you.
    Thanks a lot,
    Phani.

    Hi Phani,
    If you want to use external jars to display graphs then you should embed that into HTML or JSP and you can display in the IFRAME UI component of WebDynpro.
    But WebDynpro it self supports graphics, you can refer the attached [link|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/50c7a90f-21a3-2910-87b5-e1f0e39462ae] for reference. In this case you need not to refer external jars.
    Regards
    Abhilash

  • Dinamic Graph in smartforms

    Hi,
    I need to create a dinamic graph in smartforms. I can to import the bitmap via transaction se78 and to create a new graphic windowns in the smartforms and put it the bitmap, but how can I do it if the graphic is dinamic? Is there a function module that generates the image (.bmp) for the graph?
    Thanks.

    Hi,
    The graph (bar chart) will be generated from smartform item data. Then, I need to generate the image (.bmp) for the graph based on the values. After, I need to load this image to the smartform.
    Is this possible?
    Thanks for your help.

  • CRM Service Quotation-display the configured smartform output-in SAP GUI ;

    Hi All,
    I have displayed the SAP CRM Service Quotation using SAP Transaction crmd_order (in SAP GUI not from web UI);
    Appreciate if you let me know how I can display the configured smartform output - in SAP GUI ;
    I am about to do some changes to the smartform but I dont know how to test;
    Thank you very much
    Iver - Sorry I am new to SAP CRM

    Hi Iver
    I think following should work
    Go to  transaction Data->Actions tab in CRMD_ORDER transaction.
    If action is already defined then you can select the action adn see the preview
    Regards
    Naresh

  • How to display table in smartforms

    hai
    I want to display the output in table.. how to set table.. I tried with the display framed framed patterns but its not working.. is that right method?? pls give suggestion

    Hi
    Yes,you can display the contents of the output using tables.
    Refer these links:
    Tables in Smartforms
    drawing a table in smartforms.
    passing tables in smartforms
    Drawing table in smartforms
    Creating Tables in Smartforms
    Regards,
    Sravanthi

  • Urgent : Display logo in Smartform with XSF+ HTML as Output Format

    Hi,
    Through the Portal we are displaying ESS Salary Statement of a Employee for last 24 monthys in the iView using the Customized Smartform  “ZHR_ESS_PAYSLIP_TO_PDF”  which is copy of Standard Smartform  “HR_ESS_PAYSLIP_TO_PDF” .
    Requirement is that we have to change the Output Option to "XSF+HTML" and Display a logo at Top-Middle of the form.
    But the problem is that Logo is only visible only when Output Option is "Standard Output". and not visible when Output Option is "XSF+HTML".
    Please tell me how to display the Logo in the Smartform so that it is visible in "XSF+HTML" or "XSF" as Output Option.
    Asnwers will be suitably rewarded.
    Thanks,
    Ajay Jangid

    Hi Ajay,
    Following threads may help you
    Smartforms to Xsf & Html format
    /message/1484753#1484753 [original link is broken]
    Regards,
    Manoj

Maybe you are looking for

  • How do I tab across pages in a multiple-page PDF Form?

    After a couple hours trying to resolve this and researching Adobe's site and the web, I've had no luck. Was hoping someone here could help. I've created a multi-page form in Adobe Acrobat X for Mac - It started out as a one-page form, and I then adde

  • No Wi-Fi !? Water dropped.

    I'm sure someone has asked this before but heres what happened. my Itouch was dropped in water and now the WiFi button is grey saying No Wi-Fi. Is there anyway to fix this? Please help ): ! It is a Itouch 2ndGEN

  • FORMS_PATH in default.env on 10.1.2

    I have just installed Application server 10.1.2 with forms and reports. I want to put forms files to directory /home/forms/forms_files/ I have configured in default.enf variable FORMS_PATH=/home/forms/forms_files, but it seems to not work. Forms serv

  • Pass variable into ValueColumn of SPC Chart

    I need to pass the ValueColumn field into the chart.  How do I do this.  I think I have it set up properly, but I can not get data unless I manually set it up in the display template, which I do not want to do.  What do I need to do to make this work

  • Tracking and reporting

    I am creating a training course in Captivate. I need to include a tracking and reporting of student results and be able to have them print a certificate of completion. Can anyone help me with these items?