Printing a ALV Graph outut

hi all,
can anyone let me know how to print alv line graph .
wat i want is print option in zcopy of pgm GFW_PROG_PRES_SHOW_MULT.
regards
Avik Nayak

On Thu, 11 May 2000 17:39:54 GMT, Steve Drake
wrote:
>Hello everyone. I have LabView printing an XY graph but it always
>wants to print in Portrait mode. I set the defaults of the printer to
>LandScape mode and still go a Portrait printout. Is there anyway
>to force LabView to print in LandScape mode? This will help the graph
>be more readable.
>
Hi, well after some playing around and touching things that I though
shouldn't make a difference I got it to print in Landscape mode. On
the VI's front panel menu File-Print I switched that to LandScape mode
and what do you know it printed the graph out in LandScape mode.
Now I want to manipulate the fonts on the graph. I have messed with
the cursors and I can put x axis lines
on the chart with a time value
but the text I'm putting up is small so I need a bigger font and I
need to get the text out of the graph itself.
Is there anyway to print the cursor titles vertical instead of
horizontal to the x axis. Thought I would ask anyway.
Thanks to anyone who already knew how to do this.
Regards,
Steve Drake

Similar Messages

  • Printing a Line Graph in SAP

    Hi Experts,
    Can anybody tell me how to print line graph in SAP. I do not want use ALV print function for graph generation.
    Here I am attaching you sample program for your reference. Name of the program is GFW_PROG_PRES_SHOW_MULT.
    Thanks in Advance.
    Regards,
    Shaik.

    Hi Meera,
    you can use FM "GRAPH_MATRIX_3D' to print graphs. See if this works out good for your.
    Simple code to use this would be as follows.
    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 = 'Gráfico Teste - Carlos'
    TABLES
    data = itab_data
    opts = itab_options
    EXCEPTIONS
    OTHERS = 1.
    Hope this helps.
    Thanks
    Sumit

  • Unable to print Complete ALV report

    Hi All,
    I have made an Object Oriented ALV report .
    When I try to print the ALV output I get a warning message "Unable to print last 25 records ."
    Any suggestions to remove that message !
    Regards,
    Mukul Sharma.

    This could be an Formscentral issue, the expected behavior is when you click "generate summary report" button, if the form has no responses, it will show "your form has no responses." UI with Test Form button. if the form has at least one response, the report should be generated for you.
    One of such templates is "Training Feedback", "generate summary report" button is on Summary Report tab since this template only have plain text field and an data field.
    Would you mind share your form with me([email protected]) if you don't see upon "expected" behavior.
    Thanks,
    Pengpeng Sun

  • Re: Increasing Column Header Length While Printing in ALV Grid

    Hi
    For some column headers in a report, the translations in Turkey are more than 40 characters, because of which while executing the report in TR language, the column header is getting truncated.
    So, I would like to know if we can increase the column header length while printing the ALV Grid(OO ALV) output.
    Or else, Is there any way where we can divide the column header into 2 rows.
    Please let me know.
    Thanks and Regards,
    Vishwa.

    Jose and Sivaram,
    Thanks for replying.
    The problem we have is with the column headers, there is a limit of 40 characters for the column header in ALV reports. So, increasing the outputlen also did not help.
    Regards,
    Vishwa.

  • Problem  in Printing the ALV list

    Hi,
       I have one problem with printing the ALV list. While printing the ALV list(thro Print Icon on application Tool bar) ,Fist page of my print out contains some other inforamtion.
      inforamtions included two tables
      first table  contains Sort Criteria, Ascdg, Descnd, Subtotal  columns.
      And second table contains Data statistics , number of
    columns.
    But from Second page onwards , my alv list printed correctly .
      How can i avoid the First page inforamtion and
          what is the Reason of coming like this?
    Thanks,
    Neptune.M

    I assume you are using function module Reuse_alv_grid_display or reuse_alv_list_display for ALV.
    If this is the case, there is a parameter called IS_PRINT that you need to supply while calling the function module.
    you can for exapmle declare
    data:
    printstruc type SLIS_PRINT_ALV.
    printstruc-NO_PRINT_LISTINFOS = 'X'.
    call function 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
    IS_PRINT = printstruc
    There are many other flags in is_print structures that you can use to manipulate the printing.
    Cheers!

  • Printing a Labview graph in LandScape mode ?

    Hello everyone. I have LabView printing an XY graph but it always
    wants to print in Portrait mode. I set the defaults of the printer to
    LandScape mode and still go a Portrait printout. Is there anyway
    to force LabView to print in LandScape mode? This will help the graph
    be more readable.
    Thanks for any help you can give.
    Regards,
    Steve Drake

    On Thu, 11 May 2000 17:39:54 GMT, Steve Drake
    wrote:
    >Hello everyone. I have LabView printing an XY graph but it always
    >wants to print in Portrait mode. I set the defaults of the printer to
    >LandScape mode and still go a Portrait printout. Is there anyway
    >to force LabView to print in LandScape mode? This will help the graph
    >be more readable.
    >
    Hi, well after some playing around and touching things that I though
    shouldn't make a difference I got it to print in Landscape mode. On
    the VI's front panel menu File-Print I switched that to LandScape mode
    and what do you know it printed the graph out in LandScape mode.
    Now I want to manipulate the fonts on the graph. I have messed with
    the cursors and I can put x axis lines
    on the chart with a time value
    but the text I'm putting up is small so I need a bigger font and I
    need to get the text out of the graph itself.
    Is there anyway to print the cursor titles vertical instead of
    horizontal to the x axis. Thought I would ask anyway.
    Thanks to anyone who already knew how to do this.
    Regards,
    Steve Drake

  • Print in alv

    Re: Printing in ALV  
    Posted: Jan 29, 2008 10:18 AM    in response to: J Are     Edit      E-mail this message      Reply 
    hi,
    i have got one  problem can any body  help me out....my requirement is
    if an alv output(oops or normal ) has 30 coloumns in the output,
    if i give print option in the output(in alv tool bar)and in spool if i check it has only 13 coloumns generated other coloumns are not at displayed. how to get all the coloumns print in the spool if alv has more than 30 coloumns.
    one thing is we can set the printer configuration by using spad transaction before it gets printed but how to do it programatically in alv itself as u alv pop up to select for setting printer properties before printing how to do that.
    regards,
    narsimha.

    Hi Dana,
    This thread answers ur question..
    alv REPORT PRINTING
    cheers,
    Prashanth
    P.S Please mark helpful answers

  • Can I print an ALV in double-sided?

    Hi!
    Can I print an ALV in double-sided on the page?
    Thanks very much!

    Hi,
    the function has parameter IS_PRINT which is a reference to SLIS_PRINT_ALV, which in time has, among others, structure PRI_PARAMS. Some of the many fields that the structure has are PDEST, LINCT, LINSZ and PAART, which can help to determine the output device and format.
    As previously stated, your printer must be able to print double-sided and it must be recorded as output device in SAP (trans. SPAD). If you don´t understand this point, never mind since it is more as task for system admin. than for a programmer.
    When creating the output device (device class = Standard printer), there´s folder Output Attributes which has field Print Mode. The options for this field are Default, Simplex, Duplex and Tumble Duplex. So, entry duplex does what you pretend.

  • How to print a 3D Graph with Labview 5.1?

    I would like know if i can print a 3D Graph with Labview 5.1.

    From NI knowledgebase: "LabVIEW 5.1 includes a 3D Graph control in the Full and Professional Development Systems. Visit the LabVIEW Product page for more information on ordering or upgrading to LabVIEW 5.1. The LabVIEW 5.1 Base package includes a demo version of the 3D Graph control."
    Hope this helps

  • Print option in  graph

    Hi friends,
    I am using GFW_PRES_SHOW_MULT fm to create to  graphs .i set a print button in my pf status .
    The user want to take the print of the graph.
    Please give some solution for enabling the print functinality
    Thanks in advance

    Hi,
    Try using the FM SET_PRINT_PARAMETERS .
    Regards,
    Bhanu

  • How do I print the displayed graph? I am using Measurement Studio for Visual Basic.

    a

    It is true that calling the PrintForm method is the easiest way to print your graph. However, if you wish to print only the graph, and not the rest of your form, there is a way to do this also.
    The CWGraph control, and some other CW controls, supports the ControlImage method which returns a Windows metafile containing an image of the graph. You can then send this image to your printer using environment-specific printer commands.
    In Visual Basic, use the Printer.PaintPicture command to send the metafile, and top and left coordinates to the printer. Then call Printer.EndDoc to flush the job to the printer:
    Printer.PaintPicture CWGraph1.ControlImage, 0, 0
    Printer.EndDoc
    In the above code, the second and third parameters specify the position of the image o
    n the page; you can also enlarge or shrink the image by specifying width and height. You may want to take a look at the Visual Basic PaintPicture function help for more details on this function.
    J.R. Allen

  • How to print multiple ALV Grids with only one print dialog?

    Hi,
    I have a report that has multiple ALV grids in splitter containers. The users want to be able to print those ALVs by pushing only one print button. I got it to work (parameter IS_PRINT and method SET_FRONTEND_PRINT before calling SET_TABLE_FOR_FIRST_DISPLAY) but I can't find a way to avoid that the printer dialog pops up for every grid I print.
    I tried to use the function module approach with REUSE_ALV_LIST_DISPLAY but have the same issue. Any thoughts?
    Thanks,
    Guenther

    Hi Peluka,
    Well, that's exactly what I am doing. Putting one central button in the app is not the problem; the issue is that the print dialog (to select the printer) pops up for every  individual ALV grid. E.g. if I place 4 ALV grids on my screen and trigger their print from a central button, I am getting 4 print dialogs.
    Cheers,
    Guenther

  • Saving or Printing a Business Graph

    Hi Experts,
    I am very new to Business Graphs. I have an requirement of saving/printing a business graph which is plot from some int. table data.
    Is that possible to save/ print a graph from application?
    Is it possible to copy a graph and save it on our Desktop?
    Please reply asap.
    Thanks,
    Runal

    Hi Guys
    Not sure on this, just went thru the BW_IGS_CHART_TEST report program. Place in the reports source code,  where you display the IGS graph in html control, we actually right HTML Source. You can extend that part to include JavaScipt and also create a PRINT button. Onclick action of this HTML Button can invoke the Browser print.
    Check how to do in java script
    [http://javascript.about.com/library/blprint.htm]
    Greetings
    Prashant

  • How can I print out the graph I need only, without the controls and indicators?

    I'm doing some programming in LABVIEW. I need to print out only the graph, without the buttons, controls, indicators. I tried to look for such a function in LABVIEW, but in vain. How can I achieve the result I expect in my programming?

    Hi Fenny,
    you should use the report generation functions to create a report containing your graph image and print it.
    Take a look at the Sample Test Report.vi you find in the report examples of LV.
    Just look at the part of the diagram where it is used Append Control Image to report.vi (in the center of the report functions chain); a graph reference is wired to the Ctrl reference input ( to create a reference of your graph right click on it and select create reference).
    Let me know if you need more help,
    Alberto

  • Print using ALV method-set_table_for_first_display

    Hi ,
    I have developed a report with ALV output , using the method -set_table_for_first_display.
    But now I am asked to change it to print the output also in 8/11" sheet.
    Please suggest how I can do it.
    Thanks & Regards,
    Ramana

    Print function on the ALV toolbar?  Is it there?  Or, what I have done upon occasion is put a checkbox on selection panel to indicate printout desired.  The loop through the table that is used for the ALV display and output a list report.

Maybe you are looking for

  • Headphones do not work for Mac Book Pro on Windows 7

    Hi, Can any one give me an advice what can be a solution to this situation when I plug in my headphones in Windows 7 and there is no sound in the headphones. Though it all reports working fine in Sound on Control Panel. I tired ti reinstall sound car

  • Copy & Paste an Address in Mac Mail

    How do you copy & paste an address in a mail draft? I've tried everything including cntrl C but nothing. Coming from Windows, Mac mail has a lot to be desired!

  • Scatter plot line width

    First off, I'm using the trial version of iWork '09. So I want to eventually put a chart into keynote to present to my colleagues, however, putting the chart up on a projector requires me to have a thicker plot line. So if I use a scatter plot, my ax

  • How to make a DVD compatible with USA televisions

    I sent a DVD to a friend in USA made with iDVD in Spain . He can not see on the tv , what can we do ?

  • Datetime pickers

    i need to add some time and date pickers to my aplication, it's a jdeveloper 10g adf bc swing application, but i don´t know how to find this pickers, can someone help me?.. i need a tutorial or something like that.