ALV printer question

hi folks,
i have a question here.
in a screen , i've created two containers for two alv grids. the question is can i print the two reports on the same paper?
looking forward your reply.
thanks

hi folks,
i have a question here.
in a screen , i've created two containers for two alv grids. the question is can i print the two reports on the same paper?
looking forward your reply.
thanks

Similar Messages

  • Image Printing Question

    Hello,
    Bottom line summary: How do I use the Media and Quality setting to get a good image?
    I have an image printing question for an HP 8600 Office. I am trying to get a decent quality image to print
    on regular paper. I gather that I will not get the quality of a photo printer. I gather I'm supposed to use
    HP glossy paper. Please read on ...
    Images come out grainy (rastery) when embedded from an MSPaint project, and if I use Word. However when I printed just an image from image viewer it came like a photo ... but I can't remember what I did. It definitely is capable of printing better. My cartridges all check out, etc. I did the Print Quality Report ... I sure wish I could get that quality when I print other things.
    I tried messing with different settings from the Print - Preference. The Quality (Best, Normal, Draft) doesn't effect the outcome. I tried going into Print - Preference - Media and it makes a difference. I can't figure out which is the best setting for plain paper ... but it's not plain paper. The image rendering algorithm appears to be different for different Media settings. I also tried setting the Advanced Resolution to Maximum DPI. I haven't been totally methodical about this as I was in a rush.
    I see that the printer is being "smart", perhaps a little too smart. 
    So my question is multipart:
    - Is there documenation on the what the Print - Preference - Media settings do?
    - How do I get it to not use grainy/rastery image method, but use the nicer photo method?
    - Should I print Maximum DPI?
    Thanks,
    - Dave -

    Hi @DaveGold , and welcome to the HP Forums!
    I hope you had a great holiday!
    I see you're looking into photo setup options. I'd like to help!
    First I'd recommend this document on Changing Print Settings in Windows 7.  This document should show all the settings you're looking into.
    Also, another thing to keep in mind, when you select 'best print quality' and 'photo paper'. It will only be as good as the source image.
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Font size in alv printing

    He friends,
    While  I am printing report  from alv  it is printing in small font size , Please advise how to increase font size in alv printing .
    Regards
    S.Sharma

    Hi,
    http://help.sap.com/saphelp_nw04/helpdata/en/b6/e3eb40c4f8712ae10000000a155106/frameset.htm
    For Fontsize also you have option in the ADD_TEXT method.
    For Details check this program DD_STYLE_TABLE
    Edited by: Neenu Jose on Oct 24, 2008 10:37 AM
    Edited by: Neenu Jose on Oct 24, 2008 10:38 AM

  • Footer problem in alv print

    Hi All,
    I have a problem in footer of alv printing.
    When i m taking a print of alv with a footer its omit blank line space whole. While i have a requirement to put some space line after alv and then footer should print.
    How can i achieve this ?

    Hi Rajesh,
      You mean printing is displaying the list or what ?
    If the problem is while displaying the list then do this.
      In subroutine of 'END_OF_LIST' before write statement you just use SKIP <lines>. Then blank space is displayed between ALV list and footer.
    Regards,
    Rajitha.

  • ALV Print event in Custom Button

    Hi,
    I have requirement to call ALV print event in Custom Button after some condition. Can anyone give me the solution or link to achieve this requirement.
    Thank in advance.

    Hi Mani,
    On that ALV button event, write the following code.
      DATA lo_component TYPE REF TO if_wd_component.
      DATA lo_appl      TYPE REF TO if_wd_application.
      lo_component = wd_comp_controller->wd_get_api( ).
      lo_appl      = lo_component->get_application( ).
      lo_appl->print_page( ).
      DATA lo_app_info TYPE REF TO if_wd_rr_application .
      lo_app_info = lo_appl->get_application_info( ).
      DATA lv_app_name TYPE string .
      lv_app_name = lo_app_info->get_name( ).
    It helps you to print the table contents. Hope this helps you.
    Thanks
    KH

  • Printer question: Is it possible to print 2 pages in 1 side paper?

    Printer question: Is it possible to print 2 pages in 1 side paper? If so how ?

    Duplicate post.
    Printer question: Is it possible to print 2 pages in 1 side paper?
    Re: Printer question: Is it possible to print 2 pages in 1 side paper?

  • ALV print in background : print dialog pops up

    Hi,
    I want to print a ALV grid to Spool in background......................I am using FM ' REUSE_ALV_GRID_DISPLAY'
    But when I execvute the program in foreground or background the print selection dialog comes up....................How to avoid this........................Any ideas or experience
    *-- CODE--
    **- Get printer parameters
    DATA : l_params.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          IMMEDIATELY            = SPACE
          LAYOUT                 = 'X_58_170"'
          LINE_COUNT             = '58'
          LINE_SIZE              = '1024'
          NO_DIALOG              = 'X'
          DESTINATION            = 'LOCL'
        IMPORTING
          OUT_PARAMETERS         = l_params
        EXCEPTIONS
          ARCHIVE_INFO_NOT_FOUND = 1
          INVALID_PRINT_PARAMS   = 2
          INVALID_ARCHIVE_PARAMS = 3
          OTHERS                 = 4.
    *- Prepare ALV print str.
      l_print-print = abap_true .                  
      l_print-print_ctrl = lfd_params.
      l_print-NO_CHANGE_PRINT_PARAMS = abap_true. 
      l_print-no_print_listinfos = 'N'.
    *-Call ALV in background
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = l_repid
    *        i_callback_pf_status_set = L_pf_stat
    *        i_callback_user_command  = l_user_cmd
          i_callback_top_of_page   = l_top_page
          is_layout                = l_layout
          it_fieldcat              = lt_ALV_fcat
          IS_PRINT                 = l_print
          i_save                   = 'A'
        TABLES
          t_outtab                 = lt_objects
        EXCEPTIONS
          program_error            = 1.
    <Added code tags>
    Edited by: Suhas Saha on Nov 21, 2011 2:54 PM

    Hi,
    try K_KKB_LIST_DISPLAY fm. The below code can gives you an idea.
    DATA: SELF LIKE SY-REPID.
    DATA: END_OF_LIST_ROUTINE type KKBLO_FORMNAME.
    GS_LAYOUT-NO_PRINT_LISTINFOS = 'X'.  "No selinfolist when printing
    GS_LAYOUT-NO_PRINT_SELINFOS = 'X'.
    END_OF_LIST_ROUTINE       = 'ERROR_LIST'.
    IF SY-BATCH = TRUE.   "this part you need
      GS_LAYOUT-PRINT = 'X'.            "Get Print_Parameters
      GS_LAYOUT-MIN_LINESIZE = 132.
      GS_LAYOUT-SUPPRESS_DYNPRO = ' '.  "no call screens
    ENDIF.    "this part you need
      SELF = SY-REPID.
      CALL FUNCTION 'K_KKB_LIST_DISPLAY'
           EXPORTING
              I_CALLBACK_PROGRAM       = SELF
              I_CALLBACK_USER_COMMAND  = 'USER_COMMAND_SEG_REV'
              I_CALLBACK_PF_STATUS_SET = 'SET_STATUS_SEG_REV'
              I_CALLBACK_END_OF_LIST   = END_OF_LIST_ROUTINE
              IS_LAYOUT                = GS_LAYOUT
              I_CALLBACK_TOP_OF_PAGE   = 'TOP_OF_PAGE_SEG_REV'
              I_TABNAME                = 'GT_SEG_REVREB'
              IT_FIELDCAT              = XFIELD
    *         it_special_groups        = gt_groups
    *      importing
    *         e_exit_caused_by_caller  = exit_caused_by_caller
           TABLES
                T_OUTTAB               = GT_SEG_REVREB
           EXCEPTIONS
                OTHERS                 = 1.
      IF SY-SUBRC = 1.
        MESSAGE E161.
    *   Fehler bei Aufruf Listtool
      ENDIF.
    Çağatay

  • Before I buy: speed and printer questions

    I am looking to buy a new TC 500gb version to replace my linksys WRT54G. To upgrade the wireless router as well as start a backup system I have yet to ever initiate.
    Two questions/concerns come up:
    #1) After the initial back up to TC I understand there are hourly incremental back ups - Can that time interval be adjusted, and how long does that back up take (I do now add much data/ files to my main Comp usually) also during those incremental back ups does that affect the computer much, such as if I am playing an internet game, will I lag out while it is backing up every hour?
    #2) Setting up a printer through usb port to be accessed by my home network. My HP C6180 all in one works fine being seen through the aged, but battle tested linksys, any reason it shouldn't work with the TC?
    Thanks for any insights you might have in this regard.
    I have cable isp access, My Main Comp is where the cable modem and TC would be, I have a G4, a G5 and a MBP scattered around the house accessing via wireless.
    Message was edited by: Steven Swift

    Hi Steven, welcome to the discussions.
    After the initial backup (recommend that you use ethernet for this), TC will backup incrementally every hour assuming you will be using Time Machine. There is no way to alter this with Apple software, but a number of users have reported satisfaction with Time Machine Editor, http://timesoftware.free.fr/timemachineeditor/, which will allow you to schedule backups whenever you would like. This might be a good solution if you notice slow downs with other devices during a backup session.
    Backups should be relatively quick, but be aware that very small changes in some programs (like Entourage, vmFusion, Parallels) require the entire database to be backed up, not just the small change that might have been made.
    The printing question is the most difficult as the boards are busy with users who are having troubles in this regard. Perhaps some other users have used the same HP and can comment. Bear in mind that if your HP is compatible, only the printing function will work through the network. Scanning and other advanced functions are not supported.

  • HP C6180 AIO Printer question

    I've gotten one of the above and love it's being aboe the print wirelessly. My issue is with the drivers. It seems that I can get but one brint quality and don't have the ability to opt for b&W or Color.
    Am I missing something in the settings and the software? I've checked HP's site and they are no help.
    Any Help will be appreciated.
    LarryJay

    Hello John,
    I finally got the 6180, an upgrade from a 2210 model. It still worked wonderfully, but the times just caught up with it.
    About the 6180: compaired to the previous one it is absolutely wonderful. I've had no real problems. It fit into the network like a champ. The Linksys Router went south and there was no problem setting it up on usb. I could have set it up with the eithernet, but the usb was more handy. As for the speed. I've never had to do 32 pages, so not sure if it would do it in 60 seconds. It is very fast one the economy modes. Fax to email fine, though I have question on how to get it to send a document as an attachment in .mail/apple mail. It sends as an attachement in Entourage. Couldn't find anything about it in .mail preferences. If anyone can help with that, please do.
    In short, John, I love it.
    Larry Jay
    Does the 6180 perform as advertised? 32PPM? Scan to
    Mac? Print docs from the Web & Preview without issue?
    All via the Airport as a wireless server? How's the
    print quality now?
    Leaving an HP 6110 that has all of these issues that
    were HP driver/software problems. I wasn't happy with
    HP ignoring the issues and vowed I wouldn't buy
    another, but if this is all correct, I'll probably
    reconsider.
    John
    iMac   Mac OS X (10.4.7)  

  • Printing questions on AIO 8500, choice of paper and settings..

    hi,
    so i recently purchased  the officeje all-in-one 8500.  i installed the printer and was going to use hp primium photo paper to test out some picture printing.  but when it came time to choose what paper type it was, i couldn't find one that match perfectly..  there was 'Advance Photo Paper' that was not it, 'HP Photo Paper Matte'..  that was not it.  'HP Primium Inject Paper', that doesn't seem it.  what do i choose?
    my 2nd question is  what is the best setting to use for best printing?  i only try a couple sheets.  i didn't want to waste ink trying every possible combination.  but using 'Advance Photo Paper' and best setting, the picture turned out SUPER dark.  print quality was great but everything, especially the dark colors, turned out super dark.  using same paper, and 'normal' quality setting, the print quality was crap, but the color was more true to the actual picture color.
    any help, suggestion would be greatly appreciated.
    thanks,
    k

    No web video will start streaming immediately so keep your expectations realistic.
    1. Flash
    2. Flash
    3. Flash or QuickTime h.264 (but don't expect h.264 or any other large files to be anywhere near immediate)
    -DH

  • ALV Print dump

    Hi
    I am getting ABAP dump when i printing alv report using PRINT button.
    Error is
    Field symbol has not yet been assigned
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM      = G_REPID
          I_CALLBACK_USER_COMMAND = G_USER_COMMAND
          IT_FIELDCAT             = FIELDCAT[]
          IS_LAYOUT               = GS_LAYOUT
          I_SAVE                  = G_SAVE
          IT_SORT                 = GS_SORT
          IT_FILTER               = GS_FILTER
          IS_VARIANT              = GS_VARIANT
          IT_EVENTS               = GT_EVENTS[]
          IS_PRINT                = GS_PRINT
        IMPORTING
          E_EXIT_CAUSED_BY_CALLER = G_EXIT_CAUSED_BY_CALLER
          ES_EXIT_CAUSED_BY_USER  = GS_EXIT_CAUSED_BY_USER
        TABLES
          T_OUTTAB                = I_PODETL
        EXCEPTIONS
          PROGRAM_ERROR           = 1
          OTHERS                  = 2.
    Pls advise me
    Thanks
    Kumar

    hi check this..
    use this...
    wa_fieldcat-fieldname = 'FIELD'.
    wa_fieldcat-reptext_ddic = 'Descrition;.
    append wa_fieldcat to  it_fieldcat .
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM      = G_REPID
          I_CALLBACK_USER_COMMAND = G_USER_COMMAND
          IT_FIELDCAT             = FIELDCAT[]
          IS_LAYOUT               = GS_LAYOUT
          I_SAVE                  = G_SAVE
          IT_SORT                 = GS_SORT
          IT_FILTER               = GS_FILTER
          IS_VARIANT              = GS_VARIANT
          IT_EVENTS               = GT_EVENTS[]
          IS_PRINT                = GS_PRINT
        TABLES
          T_OUTTAB                = I_PODETL
        EXCEPTIONS
          PROGRAM_ERROR           = 1
          OTHERS                  = 2.
    regards,
    venkat.

  • IPAD and UPdate to Airprint Printer question Help Please?

    I have an HP 6500 printer that I utilize with my MacbookPro (from 2007) and it operates just fine wirelessly using WiFi at home. I did note  though that my iPod cannot print to the printer as the printer IS NOT AIRPRINT equipped.
    MY QUESTION?
    I am considering purchasing an IPAD MINI (RETINA)equipped with KeyNote, Pages, etc., and am wondering If I invest in an AIRPRINT equipped printer in order to enable printing from the IPAD MINI, will I also still be able to print from my Macbook Pro (2007) which is not equipped with anything that interfaces with AIRPRINT to my new AIRPRINT printer? In other words, is this reversed engineered to allow printing from an older laptop to a brand new AIRPRINT printer?
    Hope you can help, so I don't waste money on a new printer and an IPAD only to find out I can no longer use my LapTop (MacbookPro) to print.
    Thanks you for any help.
    Charles

    Thanks, Jim.
    Going to give it a try, Now, after reading all the reviews on the various HP and Epson model all-in-one printers, my next chore will be to make the actual selection. It seems that there as many people who love each unit as there are who hate each unit. Confusing, but I will digest it over the next several days and make a choice.
    Thanks again,
    Charles

  • ALV print issue in top-of-page

    Hi,
    I have developed a alv report using REUSE_ALV_GRID_DISPLAY function module. I am using top-of-page event in events table to output top-of-page details. It is showing output correctly on screen but when I do a print preview, it is showing only the grid details and no header info from top-of-page. Please advise what can be the issue? I might be missing some parameter somewhere..I am creating my field catalog manually w/o reference to a structure or internal table..can this be a issue..
    Thanks in advance

    Have you passed the program name in parameter I_CALLBACK_PROGRAM
    DATA:f_repid TYPE sy-repid.
    f_repid = sy-repid.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         i_callback_program      = f_repid  "  Program name

  • A Few LR4 Printing Questions

    Have a few questions pertaining to the new features in v4:
    1. In the past we created layouts with all the page and print settings embedded. Is the recommended workflow now to just create the layout with the page settings and then create a saved print collection with the print settings?
    2. If you create a virtual copy and put that through soft proofing and make settings, is the paper profile you used for those settings embedded in the virtual copy?
    3. If the paper profile is embedded in your proof copy and you accidently add it to a print collection which has a different profile specified, which profile setting takes precedence (or do you get an error alert)?
    Thanks!
    Jim

    Hi Jim,
    1. The collection resulting from saved print helps you with custom package: because it saves the images to go in your custom pages as well. Like a snapshot. Before you had the layout/template and the images still separate to drag them again in ... at least that was all I had achieved previously.
    2. If you make a "proof copy" (not just any virtual copy), yes.
    3. I remember from another post in beta-forum, no own hands-on experience: You can easily create hurtful contradictions by that. Print collection profile takes precedence, and there is no warning.
    Cornelia

  • Photo/print question

    Another likely "dumb question" from a rookie ID user:
    I've imported a photo and the color looks off (on my screen) -- should I be concerned about photo print quality?
    The photo seems to look OK when printed off my printer, but it will eventually be printed via some type of offset printing (as I understand it)
    P.S. I haven’t researched this much, so if there are answers out there and you can point me in the right direction, I’d appreciate it.
    ID-CS4 6.0.3
    Mac OS X 10.5.7

    The only way you can come close to knowing what the color will look like is to calibrate and profile the monitor (use a colorimeter), and preview using the appropriate output space as the proof setup.
    You absolutely should ask to see a printed contract proof of the job from the printer -- not a PDF or JPEG proof, because they will look different on your monitor unless the calibration is done -- that they guarantee to match in the actual print run.
    Peter

Maybe you are looking for