Printer change of a recurring report

How do I change the printer on a recurring report?  I have changed it in the printer setup on the process tab but it does not seem to pick up the change.

You'll have to configure the printer on the report template, and schedule the recurring anew.
Once the recurring schedule is kicked off, it retains the setting when it was started, and not any later changes you make to the template.
Sincerely,
Ted Ueda

Similar Messages

  • How to change the connection for a recurring report

    I have a group of reports running in production on recurring schedules.  I need to update the database connection for these as we are changing our server environment.
    I open the report in Crystal Reports 11 and changed the database connection saved the report back to the Enterprise Server location (I also have a backup of the original).  When I preview the report using the Central Management Console, the report uses the updated database connection info.  When I test the recurring report I get a logon failure.  When I go to the instance to look at the database logon for the recurring instance it shows the old database connection.
    How can this database connection get updated for the current group of instances for these recurring reports?
    Thanks
    BOBJCMC

    Hi Stratos,
    I tried to use .NET SDK to update the Logon_Info properties as below. But it does not seem to be working. Is this the correct way to update logon info for recurring instances?
    infoObject.ProcessingInfo.Properties["SI_LOGON_INFO"].Properties["SI_LOGON1"].Properties["SI_USER"].Value  = <userid>
    infoObject.ProcessingInfo.Properties["SI_LOGON_INFO"].Properties["SI_LOGON1"].Properties["SI_PASSWORD"].Value  = "pwd"
    Thanks
    Ajith

  • Printer change in PLD reports

    We are on SAP B1 2005 PL50.
    We have designed reports in PLD. While previewing reports using a different printer (other then the one used while designing these reports), the layout of the report on the preview/printout changes. It shows a line space after every row and also some of the the data fields are not aligned as per the design. However, while previewing the layout with the original printer used while designing, the report layout remains unchanged. We have changed the default printer on the page setup in design mode but still no effect.
    Is there an another setting that we need to incorporate that does not destroy the layout of the report regardless of change in printer?
    Thanks
    Asif

    Thanks Gordon.
    The print preview is same when we use two different printers. However, when we use a third printer, the preview changes. The page setup and the print preferences are same. What surprises is that it creates a line space after every line data. For example, for two text fields/rows, a line space is created in between them when we preview using that printer. It remains the same for the other two printers.
    Please advice

  • When using "Print Report" my default printer changes.

    Hello,
    I have the need to print two different kinds of reports to two different printers depending on which report it is.  I use the Office toolkit and wire the correct printer for the report using the "Print Report" tool.  However, each time I do this, it changes the default printer in Windows to the printer wired.  I don't want to change the default printer just send the report to the specified printer.  Is there a work around?
    LV 8.0 through 2013, Win 7
    CLA

    Hi The Q,
    a workaround could be to read first which the default printer is, then print your page with the printer you want and then reset the stored printer to default. The information which printer is the default printer can be read from the registry.
    Hope this helps.
    Mike

  • How do I change an hp officejet j6400 printer change from color to black and white?  I have a Mac 10.8 OX system

    How do I change an hp officejet j6400 printer change from color to black and white?
    I have a Mac 10.8 OX system

    Hi JasperNM,
    You may access a card within the cart reader by mapping a network drive to access it, then you may transfer the fies to your Mac.
    First locate the printer IP address as following:
    Follow these steps to print a Wireless Network Test Report, the IP address will be listed within that report:
    On the control panel, press the Setup button ( ).
    Press the Right Arrow button ( ) to scroll to Network Setup , and then press the OK button.
    Press the OK button to select Print Network Settings .
    Press the Right Arrow button ( ) to scroll to Wireless Test Report , and then press the OK button. The Wireless Network Test Report prints.
    Now map a network driver by following the steps below:
    Click the Finder icon on your Mac.
    Click the Go menu.
    Click on Connect to Server.
    In the Server Address field enter “smb://ipaddress of the printer” and click on Connect.
    You will be prompted to enter the password. leave it as is and click on Connect.
    The Memory card will be mounted as a disk in the Finder.
    Shlomi

  • Printing PO's using Crystal Report

    Hi,
    I am printing Purchase order using crystal reports. And when I print single PO, it is printing perfectly and I am printing one PO per page in pre printed stationery. But when I Print Multiple PO's i.e., mass printing, the first record gets printed correctly but when the printer scrolls to second page,  the header section jumps one line above and when it scrolls to third page, it jumps two lines above and so on. And I am using continous stationery in dot matrix printer. How to print multiple PO's with Correct page header alignment. (Also I found the same problem when I print A/R Invoice).
    Thnx in Advance.
    Regards,
    S Desikan

    Dot matrix printer has the inherated weakness for linefeed control.
    You have to change the page setting quite a few times before it can be fit.
    If possible, laser printer will be much better.  What you see is what you get.
    Thanks,
    Gordon

  • I want to print the LOGO on the report output

    Hi ,
    i want to print the LOGO on the report output. How can tyhis possible ?

    using "SMWO" to upload LOGO image.
    add a customer "customer control" named P1 using "SE51"
    the following program for your reference:
    =============================================
    REPORT  ytest17.
    DATA ok_code TYPE sy-ucomm,
              save_code TYPE sy-ucomm.
    DATA  container TYPE REF TO cl_gui_custom_container.
    DATA  picture TYPE REF TO cl_gui_picture.
    DATA  init.
    CALL SCREEN 100.
    MODULE user_command_0100 INPUT
    MODULE user_command_0100 INPUT.
      save_code = ok_code.
      CLEAR ok_code.
      CASE save_code.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.                    "user_command_0100 INPUT
    MODULE status_0100 OUTPUT
    MODULE status_0100 OUTPUT.
      IF init IS INITIAL.
        DATA url(255).
        CLEAR url.
        CREATE OBJECT container
        EXPORTING container_name = 'P1'.
        CREATE OBJECT picture
        EXPORTING parent = container
        EXCEPTIONS error = 1.
        IF sy-subrc NE 0.
        ENDIF.
        PERFORM load_pic_db CHANGING url.
        CALL METHOD picture->load_picture_from_url
          EXPORTING
            url = url.
        IF sy-subrc NE 0.
        ENDIF .
        init = 'X'.
      ENDIF.
    ENDMODULE.                    "status_0100 OUTPUT
    *&      Form
          text
    FORM load_pic_db changing p_url.
      data query_table like w3query occurs 1 with header line.
      data html_table like w3html occurs 1.
      data return_code like w3param-ret_code.
      data connect_type like w3param-cont_type.
      data connect_length like w3param-cont_len.
      data pic_data like w3mime occurs 0.
      data pic_size type i.
      refresh query_table.
      query_table-name = '_object_id'.
      query_table-value = 'TESTPIC'.
      append query_table.
    CALL FUNCTION 'WWW_GET_MIME_OBJECT'
      TABLES
        query_string              =  query_table
        html                      =  html_table
        mime                      =  pic_data
      changing
        return_code               =  return_code
        content_type              =  connect_type
        content_length            =  connect_length
    EXCEPTIONS
       OBJECT_NOT_FOUND          = 1
       PARAMETER_NOT_FOUND       = 2
       OTHERS                    = 3
    IF sy-subrc <> 0.
    pic_size  = connect_length.
    ENDIF.
    CALL FUNCTION 'DP_CREATE_URL'
      EXPORTING
        type                       = 'image'
        subtype                    =  cndp_sap_tab_unknown
        SIZE                       =  pic_size
      DATE                       =
      TIME                       =
      DESCRIPTION                =
        LIFETIME                   = cndp_lifetime_transaction
      CACHEABLE                  =
      SEND_DATA_AS_STRING        =
      FIELDS_FROM_APP            =
      tables
        data                       = pic_Data
      FIELDS                     =
      PROPERTIES                 =
      COLUMNS_TO_STRETCH         =
      changing
        url                        = url
    EXCEPTIONS
       DP_INVALID_PARAMETER       = 1
       DP_ERROR_PUT_TABLE         = 2
       DP_ERROR_GENERAL           = 3
       OTHERS                     = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endform.
    *&      Module  CANCEL  INPUT
          text
    module CANCEL input.
    LEAVE PROGRAM.
    endmodule.                 " CANCEL  INPUT
    =============================================

  • Printing a copy of a report to a different printer

    I want the users to be able to print a copy of a report to a
    different printer than their default windows printer (the
    printer is on the network).
    This goes to the correct printer ok, but the formatting of the
    report is ruined, losing all lines and boxes, and changing the
    font from arial to character based.
    Any ideas?

    Hi John,
    Generally, if we copy a report and paste it under Report Server Project, the pasted report should be the same as the original one. In your scenario, are you add some expressions on visibility property in the second report? If we conditionally flip the Hidden
    property of a textbox or column in the report, data renderers will automatically omit this data from export, even if the expression evaluates to False (False meaning “don’t hide”). This is a by-design behavior.
    If you directly remove some columns from the second report, then the issue could be caused by others. To troubleshoot this issue, we can compare those two files with their XML code to find the difference. Just right-click the report name, then select
    ‘View Code’ to see the XML code. Or recopy the report to test the issue again.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Vendor Ref. no. not displayed in print preview in vendor aging report

    Dear SAP team,
    Vendor reference number is not displayed in print preview/print on vendor liabliteis aging report,
    but this vendor reference number actually show in report,We are taking report by journal postings,
    vendor reference entered in NumAtCard in AP invoice get copied to Ref2 in Journal Entry,then
    why it is not showing in print preview/print.
    Whether this is an application error / missing functionality ?
    We are using SAP Business One 2005 B (7.40.252)  SP: 00  PL: 36.
    Whether upgrade to latest patch 2005B PL46 will solve this issue ?
    Jeyakanthan

    Hello Jeyakanthan,
    I would like to draw your attention to the enhancements we delivered within Aging Report in 2007 version and plan for 8.8 release.
    The primary enhancement in 2007 version is reflecting new concept of Internal Reconciliation with more convenient backward reporting.
    Within the 8.8 release ...
    - when you generate the aging report you can group the report by customer or sales employee in the customer receivables aging report, and by vendor or buyer in the vendor liabilities aging report;
    - when the aging report has been generated, you can view multicustomer/multivendor detailed information in the aging report window. There is no need to double-click each customer/vendor row to view the details.
    We would strongly to recommend you to upgrade to 2007 version or join the ramp-up of 8.8 release soon.
    Peter Dominik
    B1 Solution Management

  • Vendor ref. no. not appearing in print preview of vendor aging report

    Dear all,
    Vendor reference number is not appearing in print preview of vendor ageing report,we have
    customized template AGE3 collection report,we have taken print outs before a month,vendor
    reference number get printed in report,now it is not appearing
    What could be problem ?
    Any one faces this issue ?
    We are using SAP Business One 2005 B (7.40.252)  SP: 00  PL: 41.
    Latest patch upgrade to PL:46 will solve the issue ?
    Jeyakanthan

    hi all,
    Thru a workaround i brought up vendor reference number in print preview/print,
    Applied formatted search in  journal remarks of ap invoice thru query
    SELECT $[OPCH.NumAtCard]
    ,this will populate vendor ref. no in journal remarks
    which can be displayed in details in aging report.
    Is there any solution other than above to bring vendor reference number in print ?
    Jeyakanthan

  • Print layout different with crystal report 2008 runtime

    Hi,
    I have reports which I print on a pre printed stationary. With Crystal report 11.5 run time it works fine.
    Now I am using Crystal Report 2008 run time and with this I found that layout on the print is different than the actual layout in the design.
    The print with CR 2008 run time is not exactly matching with the pre printed stationary. Whereas it is working fine with the 11.5 run time.
    Can anyone please help?
    Thanks,
    Abhijit Gorhe

    hi,
    you can verify the settings
    File -> Page Setup
    - Printer Options
    - Page Options
    - Margins
    Regards,
    Vamsee

  • How to transport Parameter changes in a crystal report

    Hi All,
    Very Good morning!!!
    I have designed a crystal report with static parameters. Earlier i used to have a dropdown kind of input selection for my parameters.
    Now i got a new requirement for a direct input in the field....tht means no dropdown ...single date field is to be entered directly.
    Accordingly i have removed the dropdown and changed to a single direct date field. I saved these changes to a request and transported to quality. Not sure whether the parameter changes are collected into a request.
    Whereas i couldn't found any changes of my parameters in quality. They are as same dropdown manner in the quality whereas i need them to be a direct field date entry which did not affected the quality server after transporting the changes.
    Could some one please let me know how to reflect these changes in quality server regarding parameter changes in a crystal report for BW.
    Thanks in Advance.
    Jitendra

    Please re-post if this is still an issue or purchase a case and have a dedicated support
    engineer work with your directly

  • Sending Print through Push Button in report...

    I'm running report with 'DISABLEPRINT=Yes' and 'DisableFile=Yes' parameters. Now can I send the print of currently displaying report to a printer without rerunning the report...I mean is there any print command in reports???

    Dear Pusa
    I'm using Reports 6i. My report layout style is Group Above. I've adopted this technique coz in this report I'm generating an important document which should be printed only once in normal conditions. So to avoid multiple printing of this report I've disabled File menu(to prohibit generation of PDF etc) and Print Button. Now the report will generate only thru a button I've placed into the report and it'll check there whether user is printing for the First time or more.....Ok??? is it enough???

  • Print PDF documents from a report

    Hello all,
    I need to print a PDF document residing on my hard drive(without actually opening the document, just a print) from a custom ABAP report. Any ideas how we can do this? Can we do this with OLE's? Sample code is appreciated.
    Thanks,

    Hello,
    Thanks for the response. The link you provided shows how to write output to PDF and print. All I need to do is print some external PDF document resisding on my hard drive through some code in my custom report.
    Any ideas on this? Thanks.

  • Printing certain pages in a report

    Hi all,
    I want to know how can i make the ABAP report to print certain pages in a report.
    Say, my abap report has 3 pages. The second page is blank. How can i code it so the printing skip the second page and continue to the third page?
    Additional Info: When user click the print button, it starts printing. When it reach the second empty page, it should be skip and resume printing the third page.
    Thanks
    William Wilstroth
    Message was edited by:
            william wilstroth

    i had found solution to this problem. You should use GET_PRINT_PARAMETER and NEW-PAGE PRINT ON/OFF.

Maybe you are looking for

  • TV@nywhere Master sound but only black picture.

    Hi I bought an TV@nywhere Master and i have a serios problem whit it. I can get sound out of it. Both on radio and the tv part. But i just get a black picture when trying to watch tv. But the tv channels sound good. Can you give my any pointers? I cu

  • My MacBook Pro suddenly started running slow

    Hi, My MacBook Pro started running extremely slow a couple of days ago. I tried to search for help and found this forum where people had the same problem. I see that people are advised to check with etrecheck software and post it here to have further

  • Link Line Items AUAS with ANEP

    Greeting, How to link line items of table AUAS with ANEP if there is more than one line for a document number in both tables with different amounts. The scenario is that I am reading lines of table AUAS and need to get the transaction type from table

  • Using Component Object Model+ (COM+) in webdynpro

    Dear friends, How can I use Component Object Model+ (COM) in webdynpro? Is it feasible to use COM to access SQL Server 2005 Database. Thanks and Regards, Tarani

  • Reduce brightness of Full Screen background

    How can I do that please? It's rather too bright for me.