Data missing in printed report output..

Hi All, I use report builder 6i on WINDOWS..When we spool the output in PDF format using rwrun , we get all the data correctly but when the same file is directly sent to a physical printer for prinitng, the bottom margin details don't come on the printout..Could somebody help me out?

Ya , we use margin..and these reports are within the physical printer limit..Is there anything at report setting level which controls the prinout formatting such as zoom or page scaling?Thanx..

Similar Messages

  • Re : how to print report output in DOT MATRIX printer

    Hai
           how to print report output in DOT MATRIX printer.
    Thanks
    mani

    Check this
    [http://help.sap.com/saphelp_nw04/helpdata/en/90/78f078030211d399b90000e83dd9fc/frameset.htm]
    also check the SAP Note 129581

  • Alright, what am I missing? Print Report

    Troubleshooting a printer problem today, I had occasion to open the front panel of "Print Report.vi" (report generation toolkit).  There's nothing there!  Both the "error" and "no error" cases just pass the report ref through without operating on it, calling a DLL, etc.   So....how does it get the data to the printer?
    Solved!
    Go to Solution.

    It's part of a LVOOP class.  You're looking at the VI for the parent class, but the wire will always carry a child class (HTML, Word, Excel, etc).  The Print Report member of the child class is the one that will be executed - overriding the parent - and it contains the actual code.

  • Display date prompt in crystal report output

    Hi There,
    In my report output the values entered in date prompt(range) is not displayed.
    I've prompt  that is created on document created on field. The properties of prompt are
    Posting date...... date.........static values
    value field : ERDAT.....
    value options:
    optional prompt: false
    allow custom values: true
    allow multiple values : false
    allow discrete values: false
    allow range values: true

    Hi Raj,
    I believe you're trying to display the start date and the end date of the date range parameter.
    Create a formula called 'start':
    Minimum(?Postingdate) //This formula extracts the start date from the date parameter
    Similarly, create another formula called 'end':
    Maximum(?Postingdate) //This extracts the end date
    Place these formulae on the desired report section.
    P.S: You may even do this in a single formula.
    Hope this helps!
    -Abhilash

  • Printing report output in PDF format

    Hi,
    I want to know what are the settings needed to print a report output in PDF format, while executing the report from Oracle applications (Ver 11.5.6).
    Report is executed as a concurrent request from Oracle applications.
    Normally when we run the report from Oracle applications, output will be opened in a internet browser(IE) in HTML format. But I want the output to be opened in PDF format instead of HTML.
    OS: Sun Solaris 2.8.
    Thanks & Regards,
    Sarish

    Hi Sarish
    Please contact Oracle Support for an answer or to customise your application so that it prints a report output in PDF Format.
    To get PDF output you must run report/job with DESFORMAT=PDF in the command line instead of DESFORMAT=HTML/HTMLCSS.
    Regards
    Sripathy

  • Print report output Automatically.

    Hi friends
    I am using GET_PRINT_PARAMETERS to create an spool request to print the report output automatically once it is displayed on screen, the problem with this FM if I assigned import parameter immediately = 'X' it does not create any spool request.
    Is there any other way to automate the printing instead of pushing Pritn Icon on Application toolbar.
    Thanks
    Lakhbir

    Hi,
    do this way...
        CALL FUNCTION 'GET_PRINT_PARAMETERS'
           EXPORTING
             <b>IMMEDIATELY                  = 'X'</b>         LINE_SIZE                    = 220
             <b>RELEASE                      = 'X'</b>         MODE                         = 'CURRENT'
           <b>  NO_DIALOG                    = 'X'</b>       IMPORTING
    *     OUT_ARCHIVE_PARAMETERS       =
             OUT_PARAMETERS               = L_PARAMS
             VALID                        = L_VALID
           EXCEPTIONS
             ARCHIVE_INFO_NOT_FOUND       = 1
             INVALID_PRINT_PARAMS         = 2
             INVALID_ARCHIVE_PARAMS       = 3
             OTHERS                       = 4.
          IF SY-SUBRC <> 0.
          ENDIF.
          NEW-PAGE PRINT ON   PARAMETERS L_PARAMS <b>NO DIALOG</b>.
    "you can start your write statements here...
           PERFORM DISPLAY_DATA.
          NEW-PAGE PRINT OFF.
    This will automatically prints the report
    Regards
    vijay

  • Mavericks -ical data missing when printed

    I  print off my iCal each week, however after installing mavericks it is not printing data, I've tried printing day, week and month all have appointments missing days and dates missing etc.
    I have reinstalled my printer, this hasn't resolved the issue. (canon mp610) .
    Anyone else tried to print the ical and got the same issue?
    Ems.

    Upgraded from OS10.8
    You can see below the options selected, all text is missing from the print out, only prints coloured blocks related to calendars.
    This also happens when saving as a PDF, also I am unable to print pdf invoices.
    Many thanks hope this helps, as I really need to print invoices for my business.
    regards
    Ems UK.

  • Date format in Excel report output

    Goodmorning All.
    Am using XML publisher for some reports. The current report is in Excel. Everything is fine on this. I want to print the date parameter in 'MON-YY' format.
    In the 'Text Form Field' option, I have used the type as 'Regular Text'. In the 'Add Help Text' using the formatting as follows: <?format-Date:P_TO_DATE1;MM/YYYY?>. This seems to send the date parameter '1-Jun-12' as 'Jun-12'. But when it opens in excel, Excel assigns the cell 'Custom' format and type as 'd-mmm-yy' instead of 'mmm-yy'. So the final output still comes in DD-MON-YY format.
    I have tried changing the type to 'DATE' and date format to 'MMM-yy' in the 'Text Form Field' option. But still the excel custom format is overriding the final output.
    Any suggestions?
    Thanks
    Z

    Hi Alex,
    I used the following code in the 'Form field help Text': <?xdoxslt:format_date(P_FROM_DATE1,'MMM-yy','yyyy-MM-dd', 'en-us', $_XDOTIMEZONE)?>
    Then I wrote some letters immediately after that and ran the report. When I opened it in excel, Excel assigned format category as 'General' to the output cell. So the output now comes as desired format as 'Jan-12XYZ'.
    So it seems, if there will be some additional characters after the dates, then excel does not auto reformat the XML output to the custom date category.
    Now the big question; How to do it without the trailing characters i.e. 'XYZ' in the above output. If I remove them, then Excel will again try to custom format the date. I read soemwhere that blank space can be used to append but am not sure how it will be in the code.
    By the way in the 'text Form Field Options' I am using type as 'Regular Text'.
    Appreciate any help.
    Thanks
    Z

  • Print Report output on A4 paper

    Hi Gurus,
    How could I print output of report ie. list to A4 paper.
    What settings need to be done.  Is it Printer related or ABAP related.
    Thank you.
    Points guaranteed.

    Hi,
    DATA:L_PARAMS TYPE PRI_PARAMS,
           L_VALID TYPE C.
        CALL FUNCTION 'GET_PRINT_PARAMETERS'
           EXPORTING
             IMMEDIATELY                  = 'X'
             LINE_SIZE                    = 220
             RELEASE                      = 'X'
             MODE                         = 'CURRENT'
             NO_DIALOG                    = 'X'
           IMPORTING
        OUT_ARCHIVE_PARAMETERS       =
             OUT_PARAMETERS               = L_PARAMS
             VALID                        = L_VALID
           EXCEPTIONS
             ARCHIVE_INFO_NOT_FOUND       = 1
             INVALID_PRINT_PARAMS         = 2
             INVALID_ARCHIVE_PARAMS       = 3
             OTHERS                       = 4.
          IF SY-SUBRC <> 0.
          ENDIF.
    "But it will take default printer from user settings
          NEW-PAGE PRINT ON   PARAMETERS L_PARAMS NO DIALOG.
           write : 'print is on'.
          NEW-PAGE PRINT OFF.
    Regards,
    Omkar.

  • Print Report Output in PDF Format

    :-) Hiee E'body
    I generated the output of a Report(developed in Report Builder 6i) in PDF format.
    The output file is created properly and the PDF file gets displayed on the screen in proper format but when i try to print the PDF file it gets printed across the page instead of printing
    it straight.
    I have checked all page and printer settings but cannot find the reason for this.
    If anybody is aware of the solution to this problem please guide me for the same.
    Have a nice day !!
    Thanking You ..
    Vivek Kapoor

    hello,
    sounds like you have a problem with portrait/landscape orientation of your document.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                   

  • Very Urgent! Print Report output to local printer on button click in form

    In Sales Order Form there is a print receipt button. In current situation On Clicking the 'Print Receipt Button' it submits a XML Publisher report(PDF output) to the concurrent manager. Currently to print that report i need to go view--> requests--> view output and then print. According to my new Requirement i need to print that report directly to local printer on one simple Print receipt button click in form.
    I am trying to call the printers on server using custom.pll. The report is running successfully but it is not printing output to the local printer. I need to print the report to the local printers based on responsibility. Local printers are available on apps server. Can anyone help me on this issue ASAP.
    Is it possible to print the document using custom.pll? Is there any other alternative to print the report on simple button click in form.
    Environment: Apps 11.5.10.2, Forms 6i
    Here is the code that i am using in my custom.pll.
    if (v_form_name = 'OEXOETEL' --and v_block_name = 'LINES_SUMMARY'
         and name_in('parameter.ACTIONS') = 'PAYMENT_RECEIPT' )THEN
    l_organization_id := Name_In('PARAMETER.OE_ORGANIZATION_ID');
    l_order_header_id := Name_In('ORDER.header_id');
    select to_number(oe_sys_parameters.value ('SET_OF_BOOKS_ID')) into l_sob_id from dual;
    xml_layout := FND_REQUEST.ADD_LAYOUT('XXAFP','XXAFPOEXPMTRCRTF','en','US','PDF');
    select a.profile_option_value
    into v_printer_name     
    from fnd_profile_option_values a
    , fnd_profile_options b
    , fnd_profile_options_tl c
    , fnd_user fu
    where a.profile_option_id = b.profile_option_id
    and c.profile_option_name = b.profile_option_name
    and fu.user_id (+) = a.level_value
    and c.language = 'US'
    and c.user_profile_option_name='Printer'
    and a.level_id = 10003 ;
    if (FND_SUBMIT.SET_PRINT_OPTIONS(v_printer_name, 'Portrait', 2, TRUE, 'N'))
         then
    l_new_request_id := FND_REQUEST.SUBMIT_REQUEST('XXAFP','XXAFPOEXPMTRC',
    null,null,FALSE,l_sob_id,l_organization_id,NULL,NULL,l_order_header_id,
    chr(0), '', '', '', '', '', '', '', '', '', '',
    end if;
    fnd_message.set_string('Request Submitted for Custom Payment Receipt. Request ID is '||l_new_request_id);
    fnd_message.show;
    copy('NULL','parameter.ACTIONS');
    IF (l_new_request_id = 0) THEN
    FND_MESSAGE.RETRIEVE;
    FND_MESSAGE.ERROR;
    else
    l_commit_result := APP_FORM.QuietCommit;
    END IF;
    I need to complete this requirement immediately. Can anyone suggest me better ways in doing this.
    Thanks,
    Srinivas

    I solved this problem myself using shell script through custom.pll. I wrote shellscript and called that shellscript through FND_REQUEST.SUBMIT_REQUEST.It printed 2 copies to local printer.

  • Printing Report Output

    Hi Tech Gurus,
    Its urgent requirement,assume that you are a end user submitting a request,once it is completed normally the output comes as a hardcopy through a printer.is it possible to configure like this.thanks in advance for ur clarification.
    Regards
    Samy

    Hi,
    To use a printer definition file (used only when running a report on a character-mode platform)
    1     Set the DESFORMAT system parameter to the name of the printer definition file.
    2     Set DESTYPE to Printer and DESNAME to the name of the printer.
    Rincy

  • Reg.Business area data missed in our report S_ALR_87013104

    Dear Experts
    We are using the report " S_ALR_87013104 " in which business area data is missed. So we cann't get the correct expensed data. Pls help.
    Thanks
    Rajakumar.K

    Dear Experts
    We are using the report " S_ALR_87013104 " in which business area data is missed. So we cann't get the correct expensed data. Pls help.
    We want a report "if we give the sale order all business area cost incurred should come".
    in the above scenario business area for "Embroidery exp" does not come in the report S_ALR_87013104. Pls help
    Thanks
    Rajakumar.K

  • Data missing in Crosstab report with calculated field via case when

    I use the Oracle 10g discoverer. When I create a crosstab report with a calculate field via function case when and put it as datapoint, some of the data is not showing. I tried to not use the case when function for the calculate field, then all the data show.
    I really do not the reason. Could anybody help me out with many thanks?

    Let me explain more.
    I have the original data below.
    Work order, Team, Hours_worked, date
    800001, S1, 5, 2012/01/01
    800001, S1, 15, 2012/01/10
    800001, S2, 4, 2012/01/04
    800002, S1, 3, 2012/01/15
    There are multipul records for the same work order, team on the same day or different.
    Finally I want to set the start date and end date as the parameter to create a crosstab report format like
    start date>=2012/01/01 and close date<=2012/01/05
    Team
    Total hours total hours within the range
    Work order S1 S2 ... S1 S2 ...
    800001 20 4 5 4
    800002 3 0 0 0
    in order to do it, I create two parameters independently start date and close date. Then I create a calculate field hours_worked_withinrange via
    Case when date>=:start date and date<=:end date then Hours_worked else 0 end
    This calculated field is correct in the tabular format report in discoverer desktop. But when I duplicate the list as crosstab. Some data is missing in crosstab data point.
    I checked once I change the calculate field defination not use case when. (For example, C1=hours_worked*2). Then everything runs correct.

  • Service Level Reporting - Trend Analysis data missing in the report

    Hi Experts,
    I'm working with sap solution manager and Business Process Monitoring.
    I can't get to know how to configure the system in order to get Service Level Reporting collecting data for "Trend analysis" related to business processes.
    In fact, in my reports each trend analysis graph (last week/month six months) is empty, no matter which aggregation type (AVG, MAX or SUM) I use.
    It seems like the BI within the Solution Manager doesn't collect the data, or doesn't provide them to SL reporting.
    How can I check whether something is missing in my configuration?
    Thanks in advance for your help!
    Regards,
    Paolo

    Hi Paolo,
    Did you check the followings notes:
    1068944     EarlyWatch Alert: Various Smaller Corrections
    1470008     EarlyWatch Alert - Issues in ST-SER 701_2010_1
    If they do not help, what is your solution manager version?? (ST 400 and ST-SER component versions)
    Regards,
    Daniel.

Maybe you are looking for

  • Problem with url.openConnection

    Hi everyone. I have created an applet that runs ok in appletviewer. The problem is that if I load it from IE an exception occurs. THis is because, at some point I want to read a file, and I do url.openConnection. The getContentLength() method of the

  • Comparing schema using OEM 10g

    Hi, IS there any way to compare schema from 2 different schema for Prod and test environments using OEM 10g. I have a comparison script which will work for mr but the report generated is not easily readeble. Please point out the steps if there is any

  • Standard SApScript / Smartform name for FB75 (credit memo) transaction

    Need to know Standard SApScript / Smartform name for FB75 (credit memo) transaction..

  • Update infotype 4003

    I am having a problem deleting records from infotype 4003 using 'HR_MAINTAIN_MASTERDATA' fm

  • Sharepoint 2010 Can't be accessed after becoming a domain controller

    Hi! I have installed Sharepoint 2010 on Windows server 2008 R2, which is was working fine until I became a domain controller. My computer name was changed to "originalname.mydomain.com" . Then, I also renamed my original name to something else. So, t