How to print of a crystal output on paper through process Scheduler in PeopleSoft.

Post Author: rajaumareddy
CA Forum: Charts and Graphs
while printing crystal through process scheduler in PeopleSoft it giving Error as Runstatus. and i given in Printer destination.
Could u help me to find solution.
1. what are process scheduler setup.
2. Is there any Sever side setup (Default server)

Srinivas, Thanks for your quick reply.
This is smartform, and sending the output as pdf, except the the first page on which I have the text to be printed on the email body. In this email body text I have to display an email.
when user clicks on the email should open an outlook with the email id in the TO. Hope this helps.
Thank you,
Surya

Similar Messages

  • How to change the input and output schema in BPEL process

    hi',
    Please tell me how to change the input and output schema in BPEL process after the process is made.
    thanks
    Yatan

    If your intention is just changing the content you are passing to bpel/returning from bpel
    Here is another way
    just update your default created xsd files with new elements, update wsdl elements in message definition and chnage bpel code to reflect new elements in activities
    Regards,
    Praveen

  • How to print pdf on a legal sized paper

    I can't seem to print pdf files on legal sized paper properly. They always shrink it down. I have tried going to "paper handling" and clicking "scale to fit paper size" to US Legal.
    On Copies and Pages I have to click "Fit to Printable Area" otherwise the document gets cut because the printable area is only 8 x 11.
    I guess what I'm trying to say is how do I increase the printable area?

    Hi amanyeah,
    Is it Legal size to start with?
    If it is not, then you'll need to Save as..., like a tiff or jpeg & resize it to 8.5"*14" in say GraphicConverter...
    http://www.macupdate.com/info.php/id/263
    Did you go to Page Setup and switch the Paper size to Legal?

  • How to print on the back of photo paper so it will dry.

    I need to print on the back of some photos I have. I am using an HP Officejet Pro 8500A using Windows 7. I have tried to print on these photos but the ink will not dry.
    The paper I am using is 4x6 glossy everyday photo paper. 
    What should I change in the settings to get the ink to dry????
    This question was solved.
    View Solution.

    Hi,
    most of the Photo Paper will only allow you to print on a single side.
    Unless the used Photo Paper is intended for double side printing you will not be able to print on the back of the paper.
    There are no different settings for any of the sided, it only depand on the used media.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How to print one sales order output from two printers using single command.

    Dear all,
    Our requirement is to print single sales order from two different printers, where as one printout for sales order output and another for sales order cash receipt.
    We developed two smartforms for both outputs.
    But we are struggling to assign the smartforms to single document type, which has to result two printouts after saving the sales order.
    Please help us to solve the issue.
    Your suggestions will be highly appreciated.
    Best regards
    Raghu ram

    Hi,
    You should define two different output type for your requests, one is for SO output, the other is for SO cash receipt. That's okay!
    Good luck
    Z.T

  • How to print check boxes in output using alv

    send me replly immediately

    hi
    Program Name: ALV ON SECONDARY LISTS            Creation: 02/01/2007*
    SAP Name    : YH634_0102007_ALV_LIST            Application:        *
    Author      : P.V.D.Veeresh Babu                Type: 1             *
    Description : This program is used to display secondary lists using *
                  ALV.                                                  *
    Inputs:                                                             *
      Tables:                                                           *
        SPFLI - Flight information                                      *
        SFLIGHT - Flight                                                *
        SBOOK   - Flight booking details                                *
      Select options:                                                   *
        N/A                                                             *
      Parameters:                                                       *
        NO                                                              *
    Outputs: secondary lists with ALV                                   *
    External Routines                                                   *
      Function Modules:                                                 *
        REUSE_ALV_LIST_DISPLAY                                          *
      Transactions    : No                                              *
      Programs        : No                                              *
    Return Codes: No                                                    *
    Ammendments:                                                        *
       Programmer        Date     Req. #            Action              *
    ================  ==========  ======  ==============================*
    type-pools: slis.
    *" Data declarations...................................................
    Data declaration of the structure to hold layout details            *
    data:
      fs_layout type slis_layout_alv.
    *" Data declarations...................................................
    Data declaration of the structure to hold spfli details             *
    data: begin of fs_spfli,
            color(4) type c,               " Color
            check    type c.               " Check box
            include  structure spfli.      " Spfli
    data  end of fs_spfli.
    *" Data declarations...................................................
    Data declaration of the structure to hold sflight details           *
    data:begin of fs_sflight,
          color(4) type c,                 " Color
          check    type c.                 " Check box
          include  structure sflight.      " Sflight
    data  end of fs_sflight.
    *" Data declarations...................................................
    Data declaration of the structure to hold sbook details             *
    data:
      fs_sbook like sbook.
    Internal table to hold list details                                 *
    data:
      t_sbook like
    standard table
           of fs_sbook.
    Internal table to hold list details                                 *
    data:
      t_sflight like
       standard table
             of fs_sflight .
    Internal table to hold spfli details                                *
    data:
    t_spfli like
    standard table
    of fs_spfli.
    fs_layout-box_fieldname = 'CHECK'.
    fs_layout-info_fieldname = 'COLOR'.
    "........Retrieving basic list data containing spfli details......."
    select *
      from spfli
      into corresponding fields of table t_spfli.
    if sy-subrc ne 0.
      message text-001 type 'I'.
    endif.                                 " IF SY-SUBRC NE 0
    ".................Calling function module for ALV..................."
    call function 'REUSE_ALV_LIST_DISPLAY'
      exporting
        i_callback_program       = sy-repid
        i_callback_pf_status_set = 'STATUS1'
        i_callback_user_command  = 'USER_COMMAND1'
        i_structure_name         = 'SPFLI'
        is_layout                = fs_layout
      tables
        t_outtab                 = t_spfli
      exceptions
        program_error            = 1
        others                   = 2.
    if sy-subrc <> 0.
      message text-002 type 'I'.
    endif.                                 " IF SY-SUBRC NE 0
    Form  STATUS1                                                     *
    This subroutine gives pf-status for spfli list                    *
         -->T_EXTAB    excluding table                                 *
    form status1 using t_extab type slis_t_extab.
      set pf-status 'STATUS1'.
    endform.                               " STATUS1
    Form  USER_COMMAND1                                               *
    This subroutine displays secondary list containing sflight details*
         -->FS_UCOMM   user command                                    *
         -->T_SELFIELD selfield                                        *
    form user_command1 using fs_ucomm type sy-ucomm
                             t_selfield type slis_selfield.
      case fs_ucomm.
        when 'SFLIGHT'.
          perform display_list2.
      endcase.                             " CASE FS_UCOMM
      t_selfield-refresh = 'X'.
    endform.                               " USER_COMMAND1
    Form  DISPLAY_LIST2                                                *
    This subroutine displays sflight details on secondary list         *
    There are no interface parameters to be passed in this subroutine  *
    form display_list2 .
      data lw_flag type i.                 " Flag
      refresh t_sflight.
      loop at t_spfli into fs_spfli.
        if fs_spfli-check = 'X'.
    "........Retrieving basic list data containing sflight details......."
          select *
            from sflight
       appending corresponding fields of table t_sflight
           where carrid eq fs_spfli-carrid
             and connid eq fs_spfli-connid.
          if sy-subrc eq 0.
            lw_flag = 1.
          endif.                           " IF SY-SUBRC EQ 0
          FS_SPFLI-CHECK = '0'.
          fs_spfli-color = 'C510'.
          modify t_spfli from fs_spfli .
        endif.                             " IF FS_SPFLI-CHECK EQ 'X'
      endloop.                             " LOOP AT T_SPFLI INTO FS_SPFLI
      if lw_flag eq 0.
        message text-003 type 'E'.
      endif.                               " IF LW_FLAG EQ 1
    ".................Calling function module for ALV..................."
      call function 'REUSE_ALV_LIST_DISPLAY'
        exporting
          i_callback_program       = sy-repid
          i_callback_pf_status_set = 'STATUS2'
          i_callback_user_command  = 'USER_COMMAND2'
          i_structure_name         = 'SFLIGHT'
          is_layout                = fs_layout
        tables
          t_outtab                 = t_sflight
        exceptions
          program_error            = 1
          others                   = 2.
      if sy-subrc <> 0.
        message text-002 type 'I'.
      endif.                               " IF SY-SUBRC NE 0
    endform.                               " DISPLAY_LIST2
    Form  STATUS2                                                     *
    This subroutine gives pf-status for secondary list.               *
         -->T_EXTAB    Excluding table                                 *
    form status2 using t_extab type slis_t_extab.
      set pf-status 'STATUS2'.
    endform.                               " STATUS2
    Form  USER_COMMAND2                                               *
    This subroutine gives secondary list containing sbook details     *
         -->FS_UCOMM   user command                                    *
         -->T_SELFIELD selfield                                        *
    form user_command2 using fs_ucomm type sy-ucomm
                             t_selfield type slis_selfield.
      case fs_ucomm.
        when 'SBOOK'.
          perform display_list3.
      endcase.                             " CASE FS_UCOMM
      t_selfield-refresh = 'X'.
    endform.                               " USER_COMMAND2
    Form  DISPLAY_LIST3                                                *
    This subroutine displays sbook details on secondary list           *
    There are no interface parameters to be passed in this subroutine  *
    form display_list3 .
      data lw_flag type i.                 " Flag
      refresh t_sbook.
      loop at t_sflight into fs_sflight.
        if fs_sflight-check eq 'X'.
    "........Retrieving basic list data containing sbook details......."
          select *
            from sbook
       appending corresponding fields of table t_sbook
           where carrid eq fs_sflight-carrid
             and connid eq fs_sflight-connid
             and fldate eq fs_sflight-fldate.
          if sy-subrc eq 0.
            lw_flag = 1.
          endif.                           " IF SY-SUBRC EQ 0
          FS_SFLIGHT-CHECK = '0'.
          fs_sflight-color = 'C910'.
          modify  t_sflight from fs_sflight.
        endif.                             " IF FS_FLIGHT-CHECK EQ 'X'
      endloop.                             " LOOP AT T_SFLIGHT INTO....
      if lw_flag eq 0.
        message text-004 type 'E'.
      endif.                               " IF LW_FLAG EQ 1
    ".................Calling function module for ALV..................."
      call function 'REUSE_ALV_LIST_DISPLAY'
        exporting
          i_structure_name = 'SBOOK'
          is_layout        = fs_layout
        tables
          t_outtab         = t_sbook
        exceptions
          program_error    = 1
          others           = 2.
      if sy-subrc <> 0.
        message text-002 type 'I'.
      endif.                               " IF SY-SUBRC NE 0
    endform.                               " DISPLAY_LIST3
    regards,
    veeresh
    null

  • How to print two Documents in a Single Paper

    Hi Experts,
    I am using 2007B PL13
    I want to take 2 Journal Entry Print in Single paper to reduce the Paper wastage.
    For more clarification please revert to me
    Thanks,
    Dwarak

    Hi Dwarak,
    I am afraid there is no option to meet you need.
    However, you may try to use continue paper format and change the layout to fit half page only.
    Thanks,
    Gordon

  • How to delete master data in bi 7? through process chain

    Hi all,
    I can see millons of records for master data is getting loaded daily. Can anyone pls advise me how to delete the master data through the process chain?
    Thanks
    pooja

    Hi,
    If Cube/DSO then we can choose the option Delete the Contente of the DataTarget in Process Type in PC. But for Mater data you can see any FM is available and keep that FM in Program and Insert that Program in PC's
    RSDMDD_DELETE_MASTER_DATA
    RSDPW_MASTERDATA_DELETE
    See the above TWO FMs in SE37 and if it is working then keep in in one simple program and then call that Propgram in Process Chain
    Thanks
    Reddy
    Edited by: Surendra Reddy on Jun 30, 2010 7:19 AM

  • RE: How to print the special characters in Smartforms

    Hi,
    Can you please let me know how to print "číslo" in Smartform output as it is getting printed as "císlo". I mean to say that special character "č" is getting printed as "c".
    Even I checkd the same in Slovakian language and same thing is happening.
    Kindly suggest.....

    Hi,
    Which device type do you use to create the spool and print. What is the result with device type I2SWIn or SWINCF?
    Regards,
    Aidan

  • How to print a scrollable, interactive PDF file

    I've had an interactive PDF application form built. Works great for the applicants, as boxes allow scrolling so that applicants can add detailed info where relevant. However, now that the completed applications are flowing in, I can't figure how to print them (as part of the application review process) so that they display/print all the content in the scrollable boxes. Am I missing something? Any assistance would be appreciated.

    This is really a user question for whatever program you are using to print
    the PDF forms - it's not really an issue of the PDF language.
    Assuming you are using Adobe Acrobat, please post in our Acrobat forums.

  • How to print the Cheques in Oracle Payroll in R12

    After Running the Cheque Writer Process in Oracle Payroll how can one print the Cheque Leaves in the Payroll module for each employee that is to be paid through cheque.
    Please give the Navigation for the same.
    Regards,
    Chetan

    Please if there is any one who has tried out some customisation on how to print the cheques after running the cheque writer process kindly share it with me as i am in big trouble here....

  • Get complete output from java.lang.Process

    How do I get the complete output from java.lang.Process?
    By the time I've started reading from Process.getInputStream() the process has already terminated...

    I solved the problem:
    private int exec(String pArguments[], OutputStream pOut, OutputStream pErr) throws IOException {
         class ProcessOutputPrinter implements Runnable {
              private InputStream ivIn;
              private OutputStream ivOut;
              public ProcessOutputPrinter(InputStream pIn, OutputStream pOut) {
                   ivIn = pIn;
                   ivOut = pOut;
              public void run() {
                   try {
                        for(int tByte; (tByte = ivIn.read()) != -1; ) {
                             ivOut.write(tByte);
                        ivOut.flush();
                   catch(IOException e) {
                        e.printStackTrace();
         // Start process
         Process tProcess = Runtime.getRuntime().exec(pArguments);
         // Create out printer
         Thread tOutPrinter = new Thread(new ProcessOutputPrinter(tProcess.getInputStream(), pOut), "NamingAdmin out-printer");
         tOutPrinter.start();
         // Create err printer
         Thread tErrPrinter = new Thread(new ProcessOutputPrinter(tProcess.getErrorStream(), pErr), "NamingAdmin err-printer");
         tErrPrinter.start();
         // Wait for process and printers to finish
         try {
              tProcess.waitFor();
              tOutPrinter.join();
              tErrPrinter.join();
         catch(InterruptedException e) {
         // return process exit value
         return tProcess.exitValue();

  • Need to print SCC-14  and UCC-128 barcodes through SAP Smartforms

    Hi all,
    I have Two labels to be printed using smart forms.
    But in one label the barcode should be of SCC-14 type
    and in other the barcode should be of UCC-128 type.
    <b>How to print SCC-14  and UCC-128 barcodes through SAP Smartforms?</b>
    As standard barcodes do not meet my requirement i have created custom barcodes in transaction se73 of required height and width .
    This is as:Se73>System Barcodes>change>Create>New-->:
    I have given bar code and short text.
    Narrow Module Width &Linear Height&Code128 Mode given default values.
    But in this process where can i set the barcode should be of SCC-14.
    > I have known that if we give Code128 Mode =
    > 'U'-->It is like UCC-128.Is it correct ?
    >
    > But how can i know for SCC-14 barcode.
    >And How many inches is euqal to 1 unit of Narrow Module Width &
    How many inches is euqal 1 unit of Linear Height?
    Please help me in this regard.It is urgent.
    All solutions from you will be fully rewarded.
    Thank you in advance.

    Hi  Rama,
    We are working to print Bar codes using Smart forms.
    Barcode is printing in label (4*6 Inch’s) using printer (Zebra Z4 M PLUS (300 DPI)) (TLP-3842) which supports ZPL Language and Device type is ZLZEB3 (300 DPI).
    We are printing bar codes successfully.
    But After testing bar code using bar code tester (BC TESTER 4.4) software tool.
    The results are failed.
    We are expecting results: Like bellow.
    Value formatted type is: EAN
    Value is “[C142007470 “
    Total Description:   420. “Ship To-Deliver to “Postal Code a Single Postal Authority 07470
    Current Situation:
    Here we are Created Bar code (Ship to Post) in SE73 with
    Bar code type is: Code 128
    Width is: 08
    Height: 300
    Mode is: A    (Even I tried with ‘N’ and ‘U’)
    UCC check: Empty.
    I added this to character format in my Smart forms.
    Text in smart form is: ,,,,<C2>&W_POSTAL_CODE&</>    for  P1 Paragraph.
    Using this functionality  we are able to print a Bar code in Label.
    But while testing using BC Tester
    Values are showing:
    Value formatted type is: EAN
    Value is “42007470 “
    Total Description Values:  Empty
    The Type is ‘EAN’ is when we select the Manually EAN Radio button (but this not capturing automatically this is problem we are facing).
    Even I tried with some changes like bellow:
    But Forcefully writing some code in Program lines  Smartform: 
                   concatenate '420' fs_zediu017-pstlz into w_postal_code
    After this forcefully adding this Value [C1  in Before W_postal_code Element text :
    Text in smart form is:        ,,,,<C2>[C1&W_POSTAL_CODE&</>    for  P1 Paragraph.
    After this we are tested using BC tester
    Every thing is displaying correct Vales which mention above when we manually select the Value formatted type radio button ‘EAN’ but this Wrong.
    Client need when testing bar code using BC TESTER 4.4 it should be display to take EAN radio button and showing all the Values.
    Please let me know if you get any idea on this ?
    Thanks,
    Bathini.

  • D5560, feeds paper through but doesn't print!

    This is my second D5560,  the first printed over the edges of the paper and was replaced by HP.
    This one though, also seems to have issues..
    If I try to print anything, it will feed the paper through, stop then spit it back out.. Sometimes it will then try to take another bit of paper and will have it stuck halfway into the printer unless I press cancel.
    Any ideas? Is this another faulty printer or what?
    I've tried it on my PC and laptop, one on windows 7 and other on Vista.
    Thanks
    David

    HI,
     Try to follow this troubleshooting document to address this issue, click here. Using the workaround mentioned under the Windows Vista category will commonly help resolve the issue.
    Hope this helps!
    Kiko

  • How to print output of XML Publisher report in different trays of a printer

    Hi All,
    I have a requirement in XML Publisher Report. I need to print all pages other than last one in one tray of a printer and the last page has to be printed in another tray of the same printer.
    Can anyone help me out...
    Thank You..

    I do not think it is possible to send all the pages to one tray and send only the last page to a different tray. However, you may review the following notes:
    Note: 357402.1 - How to Print the Output to a Different Paper Size Using XML Publisher Delivery Manager?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=357402.1
    Note: 394130.1 - How To Enable Printer Options Such As Duplex Printing Or Tray Selections For Bitmap Concurrent Programs
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=394130.1

Maybe you are looking for

  • The Palm OS module compiler gives an unknown error.

    I have just installed LV7.1 with the PDA module. I have followed the getting started instructions and have found the following problems: 1. I am unable to upload the ROM image for the emulator. The computer and the PDA simply do not comunicate. 2. Wh

  • Purchase order saved without Profitablity Segment mandatory characteristic

    Hello, I have a problem with mandatory characteristics in profitability segment. When I active in OKB9 transaction the indicator "Find profitability segment using substitution" in a cost element and I enter a purchase order using the cost element tha

  • Essbase Studio Cube Deployment SQL Connection Error

    Hello, Has anyone seen this error in studio. Failed to deploy Essbase cube Caused By: Failed to build Essbase cube dimension: (Accounts) Caused By: Cannot incremental build. Essbase Error(1021001): Failed to Establish Connection With SQL Database Ser

  • Can't importing a Flex project within a Java project

    Hello, I am taking over an existing project from a vendor that is no longer involved that has a two Flex projects inside of the Java project. I am using the Flash Builder plugin inside Eclipse.  I have checked out the Java project locally and brought

  • Can't get Quicktime HD movie files to run smoothly on my iMac G3

    I've got a slot loading imac crt/ G3 933mhz 596mb of ram; and updated it to tiger and quicktime 7 pro. Everything was fine. I marvelled at HD quicktime movies and videos in iTunes, but all of a sudden, any new hd files I download from iTunes or the q