Printout of report

hi
i am tyying to print report.but the printout is coming in landscape formet. i want it should be in portrait.how can i do this...

You should be able to change the same in the print dialog that pops up when you hit print button.
If you are doing printing via  a program, you can set the print parameters.
Regards,
Ravi
Note - Please mark all the helpful answers

Similar Messages

  • Printout of report output

    Hi Friends,
    How to get the printout of report output in foreground mode?
    Thanks in advance
    Murthy.

    Refer:
    [Re: how to get a printout  for report;

  • Blank printout in report 6i from Application server oracle 9i

    Hello,
    3 days before our application server (oracle 9i for windows NT 1.0.2.0.0) hard disk crashed.
    We have installed AS.
    Now when user runs report from client pc and selects destination type as "cache" and submit query he can see the output. When he changes destination type as "printer" and give printer name (as installed on AS) in destination name and submit query the message "Report output was successfully printed out" comes but on printer only blank page is printed.
    This happens for all laser printers installed on AS, but not for line(generic) printer.
    On 2nd AS I have same printers as on 1st AS.There printouts are coming properly.
    Please tell me what I have missed on while installing new AS.
    Thanks
    Tushar

    Is outlook installed on the application server?

  • Printout of report running in background.

    Hi
    i have a report which i am running in background , If i want to take printout of the output
    list generated, which FM am i suppose to use ?
    thanks in advance.

    Sample code would be
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          copies                 = 1
          department             = c_dept
          destination            = c_dest
          expiration             = 2
          layout                 = c_layout
          line_count             = 65
          line_size              = 255
          list_name              = text-031
          list_text              = text-032
          mode                   = ' '
          new_list_id            = 'X'
          no_dialog              = 'X'
          receiver               = c_rec
          release                = 'X'
          sap_cover_page         = 'X'
          user                   = sy-uname
        IMPORTING
          out_parameters         = l_params
        EXCEPTIONS
          archive_info_not_found = 1
          invalid_print_params   = 2
          invalid_archive_params = 3
          OTHERS                 = 4.
      IF sy-subrc = 0 AND NOT l_params IS INITIAL.
        NEW-PAGE PRINT ON PARAMETERS l_params  NO DIALOG NEW-SECTION.
        g_spool = 'X'.
      ENDIF.

  • URGENT: REGARDING PRINTOUT OF REPORT

    hi,
    i had made report who's width is 310 and i had taken printout but is not displaying all fields when i take printout . can any body tell me d solution of dis problem as i dont wanna reduce d width of it.
    CAN ANYBODY TELL ME D FORMAT FOR 310 LINE WIDTH FOR ALL FIELDS TO BE DISPLYED WHEN PRINTOUT IS TAKEN.
    plz reply as fast as possible n he or she will be rewarded

    Hi Yaki,
        If your printer is not displaying the entire 310 characters, then solution can be to break down your report into 2 line format instead of using 1 line.
       Many SAP standard reports come out that way you can check program SDV03V02 its output is in 2 lines.
       Or other option can be to download the report in Excel Format using List-Save
    and then take a printout of it..
       Reward if helpful.
    Best Regards,
    Imran

  • I have to take printout of report

    hi
       i have to take the print-out of a report having LINE-SIZE 525 ,this line-size is minimum required.
        even in SMARTFORMS if i will use A3 page i can give max width 41.20 cm
    in landscape, but total fields in report are 20 i.e. roughly i can assign 2 cm. for a field  , by this data is not coming in proper way.
          guide me wat i can do for this .
    plz urgently

    goto transactio SPAD and define your own page format and take a printout of that.
    or
    use gui_download to save the o/p of your report in an excel sheet and later take a printout.
    Using SPAD - SAP Spool Administration to print different paper size
    The SAP spool system manages its own output devices. This includes mostly printers, but also fax and archiving devices. In order for you to use output devices defined in your operating system from the SAP System, you must define these devices in the SAP spool system.
    Print to a dot matrix printer using computer paper with 66 lines
    • Define paper types
    o Formatting process Z_60_135
    o Page format DINA4
    o Orientation tick both Portrait and Orientation
    o Type in the comment and click save
    • Device initialization
    o Device type - OKI341
    o Formatting process Z_60_135 then click Execute
    o Double click Printer initilization
    o You must key the 66 lines hexadecimals for your printer. ( line no 9)
    1 # oki341 x_paper 2 # reset 3 # \e\0x40 4 # select codepage multilingual 850 5 \e\0x52\0x1a 6 # disable skip perforation mode 7 \e\0x4f 8 # select 6 lpi 9 \e\0x32 10 # select page length 66 lines (66=hex $42) 11 \e\0x43\0x42 12 # select 10 cpi font 13 \e\0x60
    regards,
    srinivas
    <b>*reward for useful answers*</b>

  • How to get a printout  for report

    hi friends,
    here is urgent requirement for me.
    i have report.
    if i have a print pushbutton in the output , when i click on it automatically i should get the report output from the printer.
    is there any function module for that.
    can u help me plz,
    thanks in advance.

    Hi,
    You can use statement SUBMIT rep TO SAP-SPOOL to print the report list. So for your requirement you can use the SUBMIT statement in AT USER-COMMAND event 
    Example:
    DATA: PARAMS LIKE PRI_PARAMS,
          DAYS(1)  TYPE N VALUE 2,
          COUNT(3) TYPE N VALUE 1,
          VALID    TYPE C.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING DESTINATION           = 'LT50'
                COPIES                = COUNT
                LIST_NAME             = 'TEST'
                LIST_TEXT             = 'SUBMIT ... TO SAP-SPOOL'
                IMMEDIATELY           = 'X'
                RELEASE               = 'X'
                NEW_LIST_ID           = 'X'
                EXPIRATION            = DAYS
                LINE_SIZE             = 79
                LINE_COUNT            = 23
                LAYOUT                = 'X_PAPER'
                SAP_COVER_PAGE        = 'X'
                COVER_PAGE            = 'X'
                RECEIVER              = 'SAP*'
                DEPARTMENT            = 'System'
                NO_DIALOG             = ' '
      IMPORTING OUT_PARAMETERS        = PARAMS
                VALID                 = VALID.
    IF VALID <> SPACE.
      SUBMIT RSTEST00 TO SAP-SPOOL
        SPOOL PARAMETERS PARAMS
        WITHOUT SPOOL DYNPRO.
    ENDIF.
    Regards,
    Archana.

  • Losing carriage returns in textarea / using plpdf to generate report

    Hello,
    I'm using Apex 3.1.1 and Oracle 10g database. I would appreciate any suggestions on how I can preserve carriage returns in a textarea when sending the text to a package that generates a report. Please see example of current problem (below code). I'm using an onkeypress function to check for keycode = 13 when the Enter key is pressed -- that is working. I also created an alert to show the url value -- I can see the text on multiple lines, so that appears to be working as well. The textarea value parameter in the package is defined as varchar2. Per the support folks at plpdf.com, chr(13) indicates an explicit line break, and they told me to check my text. I don't know what I'm missing. Thank you for any suggestions you may have.
    Lisa
      function callPLPDFRep()
          var url;
          url = '#OWNER#.' + $x('P&APP_PAGE_ID._REPORT_PROCEDURE').value + '?' + build_params();
          w = open(url, "winPDFRep", "Scrollbars=1, resizable=1, width=800, height=600");
          if (w.opener == null)
            w.opener = self;
            w.focus();
       function build_params()
        var lparms;
        lparms = '';
        lparms = lparms + '&p_incorrect=' + $x('P212_INCORRECT').value;
        lparms = lparms + '&p_correct=' + $x('P212_CORRECT').value;
        return lparms;
      }Text in textarea:
    035 5768 06/15/2010
    035 5768 06/16/2010
    035 5768 06/17/2010
    Printout on report:
    035 5768 06/15/2010035 5768 06/16/2010035 5768 06/17/2010

    Hello Michael,
    Thank you for your response. After doing some researching and experimenting, here's what I have found so far.
    First, using an onkeypress function to alert the keycode, a chr(13) is being returned when I press the Enter key in the textarea.
      function check_Enter(e)
        var keynum;
        var textval = $x('P212_INCORRECT').value;
        if(document.all) 
          keynum = e.keyCode
        else
          keynum = e.which
        alert(keynum);     
      }Next, when I access the value of the textarea via javascript with $x('P212_INCORRECT').value, the chr(13) is automatically converted to the newline character (\n). In an attempt to replace the \n with a \r so plpdf will recognize the carriage return, I added a javascript replace function before sending the text to the package, and it does not work.
      function build_params()
        var lparms;
        lparms = '';
        lparms = lparms + '&p_incorrect=' + $x('P212_INCORRECT').value;
        lparms = lparms + '&p_correct=' + $x('P212_CORRECT').value;
        alert(lparms.split(/\n/g).length - 1);  // confirm that a newline character is found
        lparms = lparms.replace( new RegExp( "\n", "g" ), "\r");  // replace newline character with carriage return
        return lparms;
      }When I tried to replace the newline character (\n) with chr(13), the chr(13) is printed out like it is text instead of a special character. In order to test that I have the correct syntax for the replace function in javascript, I tried replacing \n with '...', and then in the package that generates the PDF, I replaced the '...' with chr(13). That works!
    In response to your comment about the PLPDF procedure for multi line section, I am using: plpdf.PrintMultiLineCell(180, 6, l_incorrect, '0', 0). As a newbie to javascript, I am not sure why replacing \n with \r is not working. Can you advise how to use a chr(13) in the javascript replace function and have it recognized as a special character and not text? I don't know how to view special characters in the textarea other than checking for them with javascript.
    Thanks, Lisa

  • Not able to print the ALV Report from NWBC

    Hi,
    I have created one report in ECC and that is attached to NWBC portal via. Tcode.
    When I am taking printout of report using SAP GUI then its printing but while printing it from NWBC its giving Error.
    Please find the attached screen shot.
    Please suggest.
    Thanks in Advance.

    Hi,
    Check out the following code
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       IT_FIELDCAT                       = v_fdcat "v_fdcat type SLIS_T_FIELDCAT_ALV,
      TABLES
        T_OUTTAB                          = itab
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    You have to pass the it_fieldcat and the output is obtained as a table.
    Hope this helps.
    Regards,
    Deepthi.
    Edited by: Deepthi S on Jan 28, 2009 2:02 PM

  • PDF Preview working intermittently from workspace for FR reports

    We are facing a strange issue while running HFM reports from workspace and taking PDF Preview, the report runs fine but when going for the PDF preview we dont get it every time.
    Some it works when we try again by clicking on PDF preview button again,
    Sometime it does not work for all the reports.
    The issue gets tempararily resoloved when we reboot the servers. But can re-occur any time.
    We are using Hyperion 11.1.1.3 on Windows 2003 SP 2, with Ghost Script 8.54 (32 Bit)
    Currently are seeing few errors FRPrintSrv.log
    03-31 09:33:32 ERROR PrintInstanceThread     Error generating printout for report instance '/Users/Final Reports/PGBU/OLDBUT01/NEWCOVER'. Return code: -1
    04-01 01:26:53 ERROR PrintInstanceThread     Could not print instance: 'OLDBU016'. The print file was not produced.
    04-01 01:26:53 ERROR PrintInstanceThread     Error generating printout for report instance '/3Yasir(PGBU)/OLDBUT03/OLDBU016'. Return code: -1
    04-01 05:06:53 ERROR PrintInstanceThread     Could not print instance: 'OLDBU016'. The print file was not produced.
    04-01 05:06:53 ERROR PrintInstanceThread     Error generating printout for report instance '/3Yasir(PGBU)/OLDBUT03/OLDBU016'. Return code: -1
    04-01 05:07:30 ERROR PrintInstanceThread     Could not print instance: '103'. The print file was not produced.
    04-01 05:08:01 ERROR PrintInstanceThread     Could not print instance: '103'. The print file was not produced.
    04-01 05:08:01 ERROR PrintInstanceThread     Error generating printout for report instance '/Users/Delivery_Export_Reports/B104/103'. Return code: -1
    04-05 10:46:34 ERROR PrintInstanceThread     Error generating printout for report instance '/Users/Delivery_Export_Reports/OLDBUT03/OLDBU016'. Return code: -1
    04-05 10:52:53 ERROR PrintInstanceThread     Could not print instance: 'ACCBYRC2'. The print file was not produced.
    04-05 10:52:53 ERROR PrintInstanceThread     Error generating printout for report instance '/Users/Delivery_Export_Reports/ACCBYRC2'. Return code: -1
    04-05 11:20:47 ERROR PrintInstanceThread     Could not print instance: 'ACCBYRC2'. The print file was not produced.
    04-05 11:20:47 ERROR PrintInstanceThread     Error generating printout for report instance '/Users/Delivery_Export_Reports/ACCBYRC2'. Return code: -1
    Regards
    Rajeev Rumale
    Edited by: Rajeev Rumale on Apr 6, 2011 4:49 AM

    Yes, Oracle support recomanded installing GPLghost script 8.63 version , earlier we were using AFL Ghost Script 8.54.
    But we have met only partial success till now, it worked in Developmented envrionment but did not work in other environment.
    The issue still open

  • SETS IN REPORT PAINTER

    I have a question. I defined in a set several accounts and in the data base or table may be posible not to have all the accounts I defined within the set.
    If I dont have any account in the table defined within the set.....
    How do I do to show these several accounts with no information in Report Painter??
    THANKS.

    There is one indicator - 'form printout' under report layout -> rows which allows you to print all rows irrespective of whether record exists in database or not.
    See below help of this indicator:
    Form printout
    With form printout, you can print a list exactly as it is defined by the row sets.
    This means that each set entry creates a corresponding entry in the report output, irrespective of whether a suitable database record is found. The system no longer breaks down intervals in row sets. They are treated as if they have a suppress indicator.
    Without form printout, the system would only print rows for which a relevant database record is found. In addition, intervals without a suppress indicator would be broken down into the respective single values.
    If the form printout indicator is set, the Report Writer internally creates data records with zero values and processes these as normal database records. This means that runtime will increase accordingly. This extra time needed is displayed in the report statistics.
    Example
    The row set contains the accounts 1000, 1001, 1002 and the account interval 1010 to 1030. During selection, database records were found for the accounts 1000, 1002, 1010 and 1015.
    The following reports are output:
    With form printout:                                                                               
    Amount
    Account 1000
    100.00
    Account 1001
    0.00
    Account 1002
    200.00
           |Accnts 1010-1030 |   700.00 | <- Caution: Interval is not
                                                                                    |  Total          |  1000.00                                  |             broken down
    Without form printout:                                                                               
    Amount
    Account 1000
    100.00
    <- Note: Account 1001 is missing
    Account 1002
    200.00
    Account 1010
    300.00
    <- Caution: Interval is
    Account                                                                                1015
    400.00
    <-          broken down
    Total
    1000.00

  • How to Print reports with Java Application

    I'm developing a database application in java using rmi and swings. Now I want to take some printout of reports from that application. Is any report designer available for java applications. How can i solve this problem. Please help me.

    Hi
    I don't know i f exist a tool like you want, but, in Java
    the print job is implemented by a class implementing the Printable interface.
    A class "Printable" must implement the print method like is defined at scpec. This method, via the params, can do print by "drawing" the page and, finally, return an integer
    indicate if the print loop must continue or not.
    The drawing op over the printer Graphics context is realized by methos of Graphics object (if you want "print"
    some text you can do g.drawString("some text",x,y) and so on).
    See the tutorials for more info
    Hope this help

  • CHARACTER MODE REPORTS PROBLEM

    Hi All,
    My application has both GUI & CUI reports. Printers have also been installed in the Sun SPARC server on which the application is running.
    I have set my output to be generated to a file at design time in the system parameters. While executing my GUI report from report builder (rwbld60), file save dialog box appears where I specify the output filename & choose print. The report is generated to the specified file name.
    But while executing my CUI report, the file save dialog appears & when I say print, the error "REP-1809 : Print Report Command Failed" occurs. If I choose "save" instead of "Print" the file is generated.
    Can any one tell why this problem occurs? Is the problem with the printer or installation of reports developer.
    I need to web deploy these reports where the CUI report should generate output as TEXT files. There too I encounter similar problems.
    It will be of great help if someone can solve this problem.
    Thanks in advance.
    Regards
    APK

    It's ok, your soln solves one problem. It's ok when taking printout from report builder's live previewer. but when i take the printout from reports runtime it's giving the problem. y?

  • Secondary Sales and stock Management

    Dear Experts,
    Can any have the solution for Secondary sales and stock management.How can we manage this using the standard functionality of Business One by using UDT, UFD and Formatted search.
    Awais

    We also bill our distributor directly but to track his sales, we are planning on doing something similar to Marcia:
    Use your main database with Distributor as your customer. Bill them accordingly.
    Setup another database with each Distributor as a warehouse.
    Enter the opening balances for each distributor.
    (If you are doing this exercise at the end of the month) Printout a report of all goods sold to the distributor.
    Transfer the stock to his warehouse (from the list of goods sold)
    Issue the appropriate stock to some waste warehouse to get the same output as the closing balance of that Distributor.
    Ex: Your distributor has 100 items as OB. He purchases 2000 from you and has 300 left in stock at the end of the month. You would transfer 2000 items in his warehouse. Then transfer 1800 to another warehouse to get 300 as closing stock.
    This way, you could keep closing balances of distributors as end of the month while still billing them in one go.

  • Kodo extension under JBuilder7 causes it to hang

    Hi,
    I'm using JBuilder7 with Kodo 2.3.2 and it seems like the IDE freezes or
    hangs when I'm
    compiling code.
    If I run JBuilder with the -verbose enabled I see the following:
    Tue Oct 08 14:12:53 EDT 2002: + JDOEnhancerTask.build
    (jdoFileUrl=file:///D%|/J
    DOTestProjects/JDOPrototypeTest/src/com/siemens/financial/jdoprototype/bos/P
    ersn
    ame.jdo,buildProcess=com.borland.primetime.build.BuildProcess@64aafa
    Exception occurred during event dispatching:
    Does anyone know what could be causing this?
    Thanks in advance.

    Based on the information you posted, there are two possible causes for
    this problem: either one of the methods in our enhancer task is causing
    the hang (seems unlikely given the undeterministic nature of the problem),
    or we are throwing a RuntimeException out of the OpenTools build()
    method, which is in turn somehow causing JBuilder to hang.
    In Kodo JDO 2.3.3 and prior, there were three lines after the one that
    caused the printout you reported and before a try-catch block that catches
    all exceptions and does some reporting. 2.3.4 includes these three lines
    in the try-catch block.
    So, my anticipation is that the hang will go away, replaced with a build
    error triggered by the unexpected exception.
    It is also possible that the hang is occurring in our code, in which case
    you'll continue to see the hang. Hopefully that's not the case. If it is,
    please try to give us a reproducible test case (we have yet to see this
    problem internally).
    -Patrick
    In article <anv84m$na$[email protected]>, TJanusz wrote:
    Hi,
    I'm using JBuilder7 with Kodo 2.3.2 and it seems like the IDE freezes or
    hangs when I'm
    compiling code.
    If I run JBuilder with the -verbose enabled I see the following:
    Tue Oct 08 14:12:53 EDT 2002: + JDOEnhancerTask.build
    (jdoFileUrl=file:///D%|/J
    DOTestProjects/JDOPrototypeTest/src/com/siemens/financial/jdoprototype/bos/P
    ersn
    ame.jdo,buildProcess=com.borland.primetime.build.BuildProcess@64aafa
    Exception occurred during event dispatching:
    Does anyone know what could be causing this?
    Thanks in advance.
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com

Maybe you are looking for

  • Query performance tuning beyond entity caching

    Hi, We have an extremely large read-only dataset stored using BDB-JE DPL. I'm seeking to tune our use of BDB while querying, and I'm wondering what options we have beyond simply attempting to cache more entities? Our expected cache hit rate is low. C

  • Error when writing to interface table for HR

    We recently did a client copy from Production to our User Testing client. User was trying to enter time via transaction CAT2 but received the following message when attempting to save the timesheet: "Error when writing to interface table for HR" Does

  • How to restrict/hide  the CREDIT BLOCK RELEASE LINK AT ITEM LEVEL of Servic

    Hi, We are using CRM2007 Stack 4. In WEB UI Change Service Order  screen for a credit service order which is blocked for credit, at item level a link is available for release of credit block. This link is currently accessible by all users. Please adv

  • Forcing a section to not repeat

    I'm creating an 835 from a incoming flat file. I have several claims in the incoming flat file and I am pulling a piece of info (NPI) from the claim. I need to put the NPI in the N1_PayeeIdentification segment. I only want that sregment to appear one

  • Why does my drawing tool go see through in onion skin mode?

    I'm using CS6 photoshop as an animation software and I'm new to the process. When I try to draw on the next frame, the paintbrush draws in a see through colour.... as if the drawing tool itself has an onion skin.