Mass printing of resume/Attachment in eRecruitment

Hi,
Is there a way to achieve mass printing/download of the attachments from the profiles of multiple candidates in Erecruitment ?
Thanks,
Phani Gorthi.

Please let me know how it goes..I did a little investigation on the custom effort, but found it too complicated. Any inputs are appreciated.
Thanks,
Phani Gorthi.

Similar Messages

  • Mass printing

    Hi All,
      The requirement is to provide a mass printing functionality for recruiter to print all resumes/cvs applied for a posting. Is there any standard functionality in e-recruitment which can be used or do I have to write a program.
    Thanks.

    Hi,
    in standard there is no other possibility to solve this than adding all information to a smartform/dataoverview. Trouble with that is that you can only include information which resides in the infotypes (you won't get attachment data into the smartforms) if this is a problem depends on your exact requirement. Another problem you might find is that smartforms have a length restriction which you can violate if you put tons of applications into a single smartform.
    We have this requirement very often in our projects either to bring the single candidate information plus his attachments into a document which can be printed or to sum up this for several candidates in one document e.g. for the work council which has to approve the hgiring decision. We had to build a tool to solve this requirement.
    Best Regards
    Roman

  • Mass printing of spool requests

    Hi,
    Is it possible to program the triggering of the printing of a PDF document contained in a spool request ? ( the goal is to have the possibility for mass printing )
    thanks,
    Rolf

    Hi rolf here is the program to convert to PDF and mail it .
    *& Report  ZSPOOLTOPDFT                                             *
    *& Converts spool request into PDF document and emails it to           *
    *& recipicant.                                                         *
    *& Execution                                                           *
    *& This program can be run in background or online and a spool request *
    *& will still be created                                               *
    report  zspooltopdft                            .
    parameter: p_email1 like somlreci1-receiver
                                        default 'sandeep2jinnagmailcom',
               p_delspl  as checkbox,
               p_online no-display.
    *DATA DECLARATION
    data: gd_recsize type i.
    Spool IDs
    types: begin of t_tbtcp.
            include structure tbtcp.
    types: end of t_tbtcp.
    data: it_tbtcp type standard table of t_tbtcp initial size 0,
          wa_tbtcp type t_tbtcp.
    Job Runtime Parameters
    data: gd_eventid like tbtcm-eventid,
          gd_eventparm like tbtcm-eventparm,
          gd_external_program_active like tbtcm-xpgactive,
          gd_jobcount like tbtcm-jobcount,
          gd_jobname like tbtcm-jobname,
          gd_stepcount like tbtcm-stepcount,
          gd_error    type sy-subrc,
          gd_reciever type sy-subrc.
    data:  w_recsize type i,
           w_spool_nr like sy-spono.
          %_print LIKE pri_params.
    data: gd_subject   like sodocchgi1-obj_descr,
          it_mess_bod like solisti1 occurs 0 with header line,
          it_mess_att like solisti1 occurs 0 with header line,
          gd_sender_type     like soextreci1-adr_typ,
          gd_attachment_desc type so_obj_nam,
          gd_attachment_name type so_obj_des.
    Spool to PDF conversions
    data: gd_spool_nr like tsp01-rqident,
          gd_destination like rlgrap-filename,
          gd_bytecount like tst01-dsize,
          gd_buffer type string.
    Binary store for PDF
    data: begin of it_pdf_output occurs 0.
            include structure tline.
    data: end of it_pdf_output.
    constants: c_dev like  sy-sysid value 'DEV',
               c_no(1)     type c   value ' ',
               c_device(4) type c   value 'LOCL'.
    *START-OF-SELECTION.
    start-of-selection.
    Write statement to represent report output. Spool request is created
    if write statement is executed in background. This could also be an
    ALV grid which would be converted to PDF without any extra effort
      write 'Hello World'.
      new-page.
      commit work.
      new-page print off.
      if p_online = 'X'.
      Processing performed when program calls itself when run online
        gd_spool_nr = sy-spono.
        export gd_spool_nr to memory id 'SPOOLTOPDF'.
        exit.
      endif.
      if sy-batch eq 'X'.
        perform get_job_details.
        perform obtain_spool_id.
      else.
        gd_spool_nr = sy-spono.
    If executed online, it submits a program to perform the write statements
    instructing it to create a spool request, this could be another program
    which just performs the write statements and then exports sy-spono
    to memory. But in this example it calls itself passing X to parameter
    p_online, which takes it down an alternative procesing path.
        submit zspooltopdf2
               with p_online = 'X'
               to sap-spool
               spool parameters   %_print
              archive parameters %_print
               without spool dynpro
               and return.
      endif.
    Get spool id from program called above
      import gd_spool_nr from memory id 'SPOOLTOPDF'.
      perform convert_spool_to_pdf.
      perform process_email.
      if p_delspl eq 'X'.
        perform delete_spool.
      endif.
      if sy-sysid = c_dev.
        wait up to 5 seconds.
        submit rsconn01 with mode   = 'INT'
                        with output = 'X'
                        and return.
      endif.
          FORM obtain_spool_id                                          *
    form obtain_spool_id.
      check not ( gd_jobname is initial ).
      check not ( gd_jobcount is initial ).
      select * from  tbtcp
                     into table it_tbtcp
                     where      jobname     = gd_jobname
                     and        jobcount    = gd_jobcount
                     and        stepcount   = gd_stepcount
                     and        listident   <> '0000000000'
                     order by   jobname
                                jobcount
                                stepcount.
      read table it_tbtcp into wa_tbtcp index 1.
      if sy-subrc = 0.
        message s004(zdd) with gd_spool_nr.
        gd_spool_nr = wa_tbtcp-listident.
        message s004(zdd) with gd_spool_nr.
      else.
        message s005(zdd).
      endif.
    endform.
          FORM get_job_details                                          *
    form get_job_details.
    Get current job details
      call function 'GET_JOB_RUNTIME_INFO'
           importing
                eventid                 = gd_eventid
                eventparm               = gd_eventparm
                external_program_active = gd_external_program_active
                jobcount                = gd_jobcount
                jobname                 = gd_jobname
                stepcount               = gd_stepcount
           exceptions
                no_runtime_info         = 1
                others                  = 2.
    endform.
          FORM convert_spool_to_pdf                                     *
    form convert_spool_to_pdf.
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
           exporting
                src_spoolid              = gd_spool_nr
                no_dialog                = c_no
                dst_device               = c_device
           importing
                pdf_bytecount            = gd_bytecount
           tables
                pdf                      = it_pdf_output
           exceptions
                err_no_abap_spooljob     = 1
                err_no_spooljob          = 2
                err_no_permission        = 3
                err_conv_not_possible    = 4
                err_bad_destdevice       = 5
                user_cancelled           = 6
                err_spoolerror           = 7
                err_temseerror           = 8
                err_btcjob_open_failed   = 9
                err_btcjob_submit_failed = 10
                err_btcjob_close_failed  = 11
                others                   = 12.
      check sy-subrc = 0.
    Transfer the 132-long strings to 255-long strings
      loop at it_pdf_output.
        translate it_pdf_output using ' ~'.
        concatenate gd_buffer it_pdf_output into gd_buffer.
      endloop.
      translate gd_buffer using '~ '.
      do.
        it_mess_att = gd_buffer.
        append it_mess_att.
        shift gd_buffer left by 255 places.
        if gd_buffer is initial.
          exit.
        endif.
      enddo.
    endform.
          FORM process_email                                            *
    form process_email.
      describe table it_mess_att lines gd_recsize.
      check gd_recsize > 0.
      perform send_email using p_email1.
    perform send_email using p_email2.
    endform.
          FORM send_email                                               *
    -->  p_email                                                       *
    form send_email using p_email.
      check not ( p_email is initial ).
      refresh it_mess_bod.
    Default subject matter
      gd_subject         = 'Subject'.
      gd_attachment_desc = 'Attachname'.
    CONCATENATE 'attach_name' ' ' INTO gd_attachment_name.
      it_mess_bod        = 'Message Body text, line 1'.
      append it_mess_bod.
      it_mess_bod        = 'Message Body text, line 2...'.
      append it_mess_bod.
    If no sender specified - default blank
      if p_sender eq space.
        gd_sender_type  = space.
      else.
        gd_sender_type  = 'INT'.
      endif.
    Send file by email as .xls speadsheet
      perform send_file_as_email_attachment
                                   tables it_mess_bod
                                          it_mess_att
                                    using p_email
                                          'Example .xls documnet attachment'
                                          'PDF'
                                          gd_attachment_name
                                          gd_attachment_desc
                                          p_sender
                                          gd_sender_type
                                 changing gd_error
                                          gd_reciever.
    endform.
          FORM delete_spool                                             *
    form delete_spool.
      data: ld_spool_nr type tsp01_sp0r-rqid_char.
      ld_spool_nr = gd_spool_nr.
      check p_delspl <> c_no.
      call function 'RSPO_R_RDELETE_SPOOLREQ'
           exporting
                spoolid = ld_spool_nr.
    endform.
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
          Send email
    form send_file_as_email_attachment tables it_message
                                              it_attach
                                        using p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription
                                              p_sender_address
                                              p_sender_addres_type
                                     changing p_error
                                              p_reciever.
      data: ld_error    type sy-subrc,
            ld_reciever type sy-subrc,
            ld_mtitle like sodocchgi1-obj_descr,
            ld_email like  somlreci1-receiver,
            ld_format type  so_obj_tp ,
            ld_attdescription type  so_obj_nam ,
            ld_attfilename type  so_obj_des ,
            ld_sender_address like  soextreci1-receiver,
            ld_sender_address_type like  soextreci1-adr_typ,
            ld_receiver like  sy-subrc.
    data:   t_packing_list like sopcklsti1 occurs 0 with header line,
            t_contents like solisti1 occurs 0 with header line,
            t_receivers like somlreci1 occurs 0 with header line,
            t_attachment like solisti1 occurs 0 with header line,
            t_object_header like solisti1 occurs 0 with header line,
            w_cnt type i,
            w_sent_all(1) type c,
            w_doc_data like sodocchgi1.
      ld_email   = p_email.
      ld_mtitle = p_mtitle.
      ld_format              = p_format.
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename.
      ld_sender_address      = p_sender_address.
      ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
      w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = 'SAPRPT'.
      w_doc_data-obj_descr = ld_mtitle .
      w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      clear w_doc_data.
      read table it_attach index w_cnt.
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + strlen( it_attach ).
      w_doc_data-obj_langu  = sy-langu.
      w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = ld_mtitle.
      w_doc_data-sensitivty = 'F'.
      clear t_attachment.
      refresh t_attachment.
      t_attachment[] = it_attach[].
    Describe the body of the message
      clear t_packing_list.
      refresh t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
      describe table it_message lines t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      append t_packing_list.
    Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      describe table t_attachment lines t_packing_list-body_num.
      t_packing_list-doc_type   =  ld_format.
      t_packing_list-obj_descr  =  ld_attdescription.
      t_packing_list-obj_name   =  ld_attfilename.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      append t_packing_list.
    Add the recipients email address
      clear t_receivers.
      refresh t_receivers.
      t_receivers-receiver = ld_email.
      t_receivers-rec_type = 'U'.
      t_receivers-com_type = 'INT'.
      t_receivers-notif_del = 'X'.
      t_receivers-notif_ndel = 'X'.
      append t_receivers.
      call function 'SO_DOCUMENT_SEND_API1'
           exporting
                document_data              = w_doc_data
                put_in_outbox              = 'X'
                sender_address             = ld_sender_address
                sender_address_type        = ld_sender_address_type
                commit_work                = 'X'
           importing
                sent_to_all                = w_sent_all
           tables
                packing_list               = t_packing_list
                contents_bin               = t_attachment
                contents_txt               = it_message
                receivers                  = t_receivers
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
    Populate zerror return code
      ld_error = sy-subrc.
    Populate zreceiver return code
      loop at t_receivers.
        ld_receiver = t_receivers-retrn_code.
      endloop.
    endform.

  • Custom Report for CO04n Mass Printing

    Hi,
    In CO04n for a given order number, production plant and order type when we click from main menu mass printing->execute. We get a list of outputs together for the order number.
    Object List.
    Job Ticket
    Pick List
    Goods Issue
    Goods receipt
    Confirmation slip.
    I want to create a custom report with order number as input and according to radio button selected the layout should be displayed. Is it possible.
    I know the driver program and form name. How can I develop this custom report.

    Hi ,
    You can develop Custome Report   , but for that 
    you will require  help from your Functional Team  , which will guide you thorug data selection  and processing
    i.e from which table data to be taken what to process .
      in that Report you can  display all details  which you reqired and also add one check box  in alv grid   in order to  select order no  .
      also take one button  on display Grid menu   using PF-status  .
      You have to  go through it step by step .
    Regards
    Deepak.

  • How can I print only the attachment without the email content

    How can I print only the attachment without the email content. Every time I send to print, It prints the email itself with the attachment- can I cancel that?

    Hello Riklama,
    When you first open the attachment (e.g. on your phone) than you can mail only that attachment. Works fine with my husbands blackberry.
    Elsy

  • Why do all of my printers uninstall when I try to print a pdf attachment?

    Not every time, but often.  What happens is that I try to print a pdf attachment and it says I need to install a printer before I can print.  I have 4 network printers, 1 attached, and 3 kinds of pdf creator printers that all disappear from my printer folder.  This has been happening for the past year and recently more often.  If I restart the computer, the printers all reappear, but if I try to print the same attachment the same thing happens.  If I try to download the pdf and then print it to a pdf creator that does not work.  If I download the pdf, change the name of it, then attach it to another email and send it to myself, it does not work.  If I forward the email to a different email address and try to open it on my computer it does not work.  If I open the email on a different computer, this does not happen.  I have tried different pdf readers and browsers with no luck.  It seems to be specific pdfs, but there can be two attachments to an email created by the same person using the same program and one will print and the other uninstalls all my printers.  This happens no matter what adobe version I am using.  I am at my wits end trying to figure out what is causing this problem.

    hello,  to answer your questions, Printer is HP Officejet H470; OS is Win 7
    pro; reader is XI.

  • Print to windows attached printer

    Hi!
    I am facing a "small" problem here in my home lan. I have to computers connected. One is running Windows XP and has attached an Epson Stylous C60 printer. The other is running redhat 9 (2.4.8-20smp)
    I have managed to make thw two boxes "talk" via samba.
    $ rpm -q samba
    samba-2.2.7a-7.9.0
    I can read/write from one box to another without problem. The windows can see the linux through the lan and the linux can see the windous after mounting the share. But the thing I cannot do is print from linux to the windows attached printer.
    First of all I checked if the printer is supported redhat and I found out that it is.
    http://www.linuxprinting.org/show_p...pson-Stylus_C60
    So this eliminates the obvious question: Can you print with this printer from linux in the first place?
    I've read many things about how to print to windows, like
    http://www.idevelopment.info/data/U...tLinuxSMB.shtml
    http://www.redhat.com/docs/manuals/...mb-printer.html
    as well as many stuff from google search But there is no way I can solve my problem. I follow the instructions but still I can't print
    I also tried cups
    $ rpm -q cups
    cups-1.1.17-13
    But there too I faced the same proble.
    Can someone help me out here because I need that printer. I attach my smb.conf file. Any other information I will be standing by to submit.
    # This is the main Samba configuration file. You should read the
    # smb.conf(5) manual page in order to understand the options listed
    # here. Samba has a huge number of configurable options (perhaps too
    # many!) most of which are not shown in this example
    # Any line which starts with a ; (semi-colon) or a # (hash)
    # is a comment and is ignored. In this example we will use a #
    # for commentry and a ; for parts of the config file that you
    # may wish to enable
    # NOTE: Whenever you modify this file you should run the command "testparm"
    # to check that you have not made any basic syntactic errors.
    #======================= Global Settings =====================================
    [global]
    # workgroup = NT-Domain-Name or Workgroup-Name
    workgroup = mshome
    # server string is the equivalent of the NT Description field
    server string = samba server
    # This option is important for security. It allows you to restrict
    # connections to machines which are on your local network. The
    # following example restricts access to two C class networks and
    # the "loopback" interface. For more examples of the syntax see
    # the smb.conf man page
    ; hosts allow = 192.168.1. 192.168.2. 127.
    # if you want to automatically load your printer list rather
    # than setting them up individually then you'll need this
    printcap name = /etc/printcap
    load printers = yes
    # It should not be necessary to spell out the print system type unless
    # yours is non-standard. Currently supported print systems include:
    # bsd, sysv, plp, lprng, aix, hpux, qnx, cups
    printing = cups
    # Uncomment this if you want a guest account, you must add this to /etc/passwd
    # otherwise the user "nobody" is used
    ; guest account = pcguest
    # this tells Samba to use a separate log file for each machine
    # that connects
    log file = /var/log/samba/%m.log
    # Put a capping on the size of the log files (in Kb).
    max log size = 0
    # Security mode. Most people will want user level security. See
    # security_level.txt for details.
    # Use password server option only with security = server
    # The argument list may include:
    # password server = My_PDC_Name [My_BDC_Name] [My_Next_BDC_Name]
    # or to auto-locate the domain controller/s
    # password server = *
    ; password server = <NT-Server-Name>
    # Password Level allows matching of _n_ characters of the password for
    # all combinations of upper and lower case.
    ; password level = 8
    ; username level = 8
    # You may wish to use password encryption. Please read
    # ENCRYPTION.txt, Win95.txt and WinNT.txt in the Samba documentation.
    # Do not enable this option unless you have read those documents
    encrypt passwords = yes
    smb passwd file = /etc/samba/smbpasswd
    # The following is needed to keep smbclient from spouting spurious errors
    # when Samba is built with support for SSL.
    ; ssl CA certFile = /usr/share/ssl/certs/ca-bundle.crt
    # The following are needed to allow password changing from Windows to
    # update the Linux system password also.
    # NOTE: Use these with 'encrypt passwords' and 'smb passwd file' above.
    # NOTE2: You do NOT need these to allow workstations to change only
    # the encrypted SMB passwords. They allow the Unix password
    # to be kept in sync with the SMB password.
    unix password sync = Yes
    passwd program = /usr/bin/passwd %u
    passwd chat = *New*password* %nn *Retype*new*password* %nn *passwd:*all*authentication*tokens*updated*successfully*
    # You can use PAM's password change control flag for Samba. If
    # enabled, then PAM will be used for password changes when requested
    # by an SMB client instead of the program listed in passwd program.
    # It should be possible to enable this without changing your passwd
    # chat parameter for most setups.
    pam password change = yes
    # Unix users can map to different SMB User names
    ; username map = /etc/samba/smbusers
    # Using the following line enables you to customise your configuration
    # on a per machine basis. The %m gets replaced with the netbios name
    # of the machine that is connecting
    ; include = /etc/samba/smb.conf.%m
    # This parameter will control whether or not Samba should obey PAM's
    # account and session management directives. The default behavior is
    # to use PAM for clear text authentication only and to ignore any
    # account or session management. Note that Samba always ignores PAM
    # for authentication in the case of encrypt passwords = yes
    obey pam restrictions = yes
    # Most people will find that this option gives better performance.
    # See speed.txt and the manual pages for details
    socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
    # Configure Samba to use multiple interfaces
    # If you have multiple network interfaces then you must list them
    # here. See the man page for details.
    ; interfaces = 192.168.12.2/24 192.168.13.2/24
    # Configure remote browse list synchronisation here
    # request announcement to, or browse list sync from:
    # a specific host or from / to a whole subnet (see below)
    ; remote browse sync = 192.168.3.25 192.168.5.255
    # Cause this host to announce itself to local subnets here
    ; remote announce = 192.168.1.255 192.168.2.44
    # Browser Control Options:
    # set local master to no if you don't want Samba to become a master
    # browser on your network. Otherwise the normal election rules apply
    ; local master = no
    # OS Level determines the precedence of this server in master browser
    # elections. The default value should be reasonable
    ; os level = 33
    # Domain Master specifies Samba to be the Domain Master Browser. This
    # allows Samba to collate browse lists between subnets. Don't use this
    # if you already have a Windows NT domain controller doing this job
    ; domain master = yes
    # Preferred Master causes Samba to force a local browser election on startup
    # and gives it a slightly higher chance of winning the election
    ; preferred master = yes
    # Enable this if you want Samba to be a domain logon server for
    # Windows95 workstations.
    ; domain logons = yes
    # if you enable domain logons then you may want a per-machine or
    # per user logon script
    # run a specific logon batch file per workstation (machine)
    ; logon script = %m.bat
    # run a specific logon batch file per username
    ; logon script = %U.bat
    # Where to store roving profiles (only for Win95 and WinNT)
    # %L substitutes for this servers netbios name, %U is username
    # You must uncomment the [Profiles] share below
    ; logon path = \%LProfiles%U
    # Windows Internet Name Serving Support Section:
    # WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
    ; wins support = yes
    # WINS Server - Tells the NMBD components of Samba to be a WINS Client
    # Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
    ; wins server = w.x.y.z
    # WINS Proxy - Tells Samba to answer name resolution queries on
    # behalf of a non WINS capable client, for this to work there must be
    # at least one WINS Server on the network. The default is NO.
    ; wins proxy = yes
    # DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
    # via DNS nslookups. The built-in default for versions 1.9.17 is yes,
    # this has been changed in version 1.9.18 to no.
    username map = /etc/samba/smbusers
    guest ok = yes
    guest account = axelman
    dns proxy = no
    # Case Preservation can be handy - system default is _no_
    # NOTE: These can be set on a per share basis
    ; preserve case = no
    ; short preserve case = no
    # Default case is normally upper case for all DOS files
    ; default case = lower
    # Be very careful with case sensitivity - it can break things!
    ; case sensitive = no
    #============================ Share Definitions ==============================
    [homes]
    comment = Home Directories
    browseable = no
    writeable = yes
    valid users = %S
    create mode = 0664
    directory mode = 0775
    # If you want users samba doesn't recognize to be mapped to a guest user
    ; map to guest = bad user
    # Un-comment the following and create the netlogon directory for Domain Logons
    ; [netlogon]
    ; comment = Network Logon Service
    ; path = /usr/local/samba/lib/netlogon
    ; guest ok = yes
    ; writable = no
    ; share modes = no
    # Un-comment the following to provide a specific roving profile share
    # the default is to use the user's home directory
    ;[Profiles]
    ; path = /usr/local/samba/profiles
    ; browseable = no
    ; guest ok = yes
    # NOTE: If you have a BSD-style print system there is no need to
    # specifically define each individual printer
    [printers]
    comment = All Printers
    path = /var/spool/samba
    browseable = no
    # Set public = yes to allow user 'guest account' to print
    printable = yes
    # This one is useful for people to share files
    ;[tmp]
    ; comment = Temporary file space
    ; path = /tmp/samba
    ; read only = no
    ; public = yes
    # A publicly accessible directory, but read only, except for people in
    # the "staff" group
    ;[public]
    ; comment = Public Stuff
    ; path = /home/samba
    ; public = yes
    ; writable = yes
    ; printable = no
    ; write list = @staff
    # Other examples.
    # A private printer, usable only by fred. Spool data will be placed in fred's
    # home directory. Note that fred must have write access to the spool directory,
    # wherever it is.
    ;[fredsprn]
    ; comment = Fred's Printer
    ; valid users = fred
    ; path = /home/fred
    ; printer = freds_printer
    ; public = no
    ; writable = no
    ; printable = yes
    # A private directory, usable only by fred. Note that fred requires write
    # access to the directory.
    ;[fredsdir]
    ; comment = Fred's Service
    ; path = /usr/somewhere/private
    ; valid users = fred
    ; public = no
    ; writable = yes
    ; printable = no
    # a service which has a different directory for each machine that connects
    # this allows you to tailor configurations to incoming machines. You could
    # also use the %U option to tailor it by user name.
    # The %m gets replaced with the machine name that is connecting.
    ;[pchome]
    ; comment = PC Directories
    ; path = /usr/local/pc/%m
    ; public = no
    ; writable = yes
    # A publicly accessible directory, read/write to all users. Note that all files
    # created in the directory by users will be owned by the default user, so
    # any user with access can delete any other user's files. Obviously this
    # directory must be writable by the default user. Another user could of course
    # be specified, in which case all files would be owned by that user instead.
    ;[public]
    ; path = /usr/somewhere/else/public
    ; public = yes
    ; only guest = yes
    ; writable = yes
    ; printable = no
    # The following two entries demonstrate how to share a directory so that two
    # users can place files there that will be owned by the specific users. In this
    # setup, the directory should be writable by both users and should have the
    # sticky bit set on it to prevent abuse. Obviously this could be extended to
    # as many users as required.
    ;[myshare]
    ; comment = Mary's and Fred's stuff
    ; path = /usr/somewhere/shared
    ; valid users = mary fred
    ; public = no
    ; writable = yes
    ; printable = no
    ; create mask = 0765
    [axelman]
    path = /home/axelman
    writeable = yes
    guest ok = yes
    thanx to all
    axelmang

    This easy to follow procedure (5 web pages with screen shots) worked for MacBook Pro 10.6.8 via Wireless-N to Windows 7 Home Premium SP1 x64 using USB Cable to HP Officejet 7210 All-in-One.  This configuration had worked with Windows XP.
    http://macs.about.com/od/printersharing/ss/Printer-Sharing-Share-Your-Windows-7- Printer-With-Your-Mac.htm
    Error messages encountered prior to using the above procedure:
    authorization required
    Backend returned status 2 (authentication required)
    Cannot find server
    Communication Failure: The computer is no longer able to communicate with your printer
    cupsdAuthorize: pam_authenticate() returned 9
    getaddrinfo: <windows printserver> nodename nor servname provided, or not known
    Job held for authentication
    On Hold (Authorization required)
    pam_authenticate() returned 9 (authentication error)!
    Printer Paused
    Printer stopped due to backend errors
    Session setup failed: NT_STATUS_INVALID_PARAMETER
    snmpInk: Unknown host (<windows printserver>)
    This computer seems to have a working Internet connection. but we cannot find "<windows printserver>" You may have typed the address incorrectly.
    Tree connect failed (NT_STATUS_ACCESS_DENIED)
    Unable to locate printer
    Unable to locate printer Unknown host
    Unknown host

  • In FAX & Print of PO attachment not coming

    Hi all,
    We have designed our own PO Smartform. Whatever doc we are attaching in SC for vendor is going in the email with PO. But when sending the PO by FAX or by Print media, the attachment is not coming.
    Any idea how to achieve this.
    Regards,
    Smita

    Thanks Shaz,
    I could see there is a standard implementation of the said badi is already active in my system.
    We are on SRM 4.0 SP 9.0
    Do I need to write my logic in  a new implementation? I am still looking for some doc on ADS. If you have idea can you pls share.
    Thanks,
    Smita

  • Mass printing of invoices

    Hi,
    when i create the invoice , the output types are determined automatically when saving the invoice in VF01.
    1 )i want that no invoice printing shud happen while saving.
    2) aslo i want all the invoices made by us during the day should be mass printed in the night.
    3) there are three options in output type config. "send print with own application/send while saving/send with background job.
    what is meant by send with pwn application
    how to achieve the above two things. what config and or coding shud be done
    regards
    sachin

    Hi,
    1)If you do not want the invoice to be printed as soon as the doc.is saved,Go to VV31---> enter the relevant OUTPUT TYPE ->EXECUTE-> Chnage the value in the column DATE/TIME from 4 (4     Send immediately (when saving the application) to 3 (3 Send with application own transaction).
    2)For mass printing you can use VF31 for mass printing and if you want the invoices to be printed in the night , then select 1(1     Send with periodically scheduled job) in the column DATE/TIME and do the necessary congig with your BASIS and ABAP team.
    3) The 3 ,Send with own application means that the system will automatically populate the output type as soon as the transaction is being processed.

  • Mass print of detailed invoices (AR, AP)

    Hello,
    I would like to ask you to help me with the issue of the mass printing of detailed invoices of Accounts Receivable and Payable.
    I tried in FB03 but there is the only possibility to print list of invoices. I need something where I can choose to print e.g. invoices nr. 1-50 and they will be printed on separate pages.
    Thank you in advance.
    Alena Potmesilova

    Hi,
    Try transaction F.62 (Internal documents). You may need customized correspondence form to get the details you want in the invoice print out. You select the correspondence form in F.62 before you can print.

  • Mass printing of excise invoices

    hi sap gurus,
    i want to go for mass printing of excise invoice in the order of 40-50 invoices.
    is there any report or any transaction code which can help me do mass printing of excise invoices on fortnight basis.
    please do help me on this issue.
    j1ip only enables me to print one excise invoice at a time.
    wat i want is multiple printing of excise invoices.
    regards,
    Siddharth.

    Dear Siddharth
    For information, in j1ip itself, you have the option of giving multiple excise invoices.  Assume you have some 30 excise invoices to be printed out from sl.no.1 to 30, in j1ip, against the field "Excise Invoice", in the first box enter 1 next to "to" tab, enter 30.  If you execute now, you will get bulk print outs.
    Alternatively, you can also select the "Excise Invoice Date" field where also you define "From - To" date.
    thanks
    G. Lakshmipathi

  • Cannot print a pdf attachment(have been able to in the past)?

    Can no longer print a pdf attachment, nothing on the computer has changed since last printed a pdf doc?

    Well, is the PDF actualyl allowing to be printed? Check File --> Properties in Reader/ Acrobat.
    Mylenium

  • Hp 200 wireless printer does not print the shared attachment only body of the email

    In the past I have been able to share an email with the printer and the attachment was printed. Suddenly only the body of the email prints but no attachment. Would also like to know whether one can suppress the printing of the body of the email and print only the attachment. Don't want to waste paper.

    Thanks for that additional information @Karl3.  
    I have a few suggestions that may resolve your ePrint issue.  It is possible to print attachments using the ePrint via email method, but results may vary.  At times, the formatting of an attachment is lost when using this method or at worst, it will not print.  
    As it's clear your PDF document is not printing using this approach, I recommend downloading and installing the HP ePrint app - click here to do so.  
    You'll see that it's geared towards Android users, however, if your Blackberry Z10's software is up-to-date, this app should work for you.  Once installed, you'll be able to launch the ePrint app and print directly from files and documents saved to your device.  With this interface you have greater control over what comes out of the printer.  
    With respect to your query about eliminating the extra pages that result from your phone's email signature, click here for instructions on how to turn off your email signature.  If you swipe Auto Signature off as indicated in Blackberry's forum, this should ideally stop the undesired signature page from accompanying all ePrint attachment jobs.  If the ePrint app doesn't work out for you, see if printing with the signature off yields a better result.  Keep in mind when you're sending ePrint jobs to your printer via email that you need to have something in the subject line.  
    Please let me know the result of your troubleshooting by responding to this post.  Best of luck!  
    E-roq
    I work on behalf of HP.
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

  • How to print the mass printing in smart forms?

    Hi Experts,
    I have a problem, i could not found how to print the mass printing in smartforms. Can any body explain.
    Regards.
    Venkat N

    Hi,
    Check bellow maintained links
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/a5/de6838abce021ae10000009b38f842/frameset.htm
    http://www.sap-basis-abap.com/smartforms/smartforms-in-details.htm
    Regards
    Gaurav

  • How do you print an email attachment and not the email itself. please.

    how do you print an email attachment and not the email itself.  please.
    This question was solved.
    View Solution.

    Hi there, if there is text in the body of the email it will print automatically when sent to an ePrint email address. The only way to just have the attachment print is for there to be no text in the email body.
    Hope that helps answer your question.
    If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
    If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
    I am an HP employee.

Maybe you are looking for

  • How do i add multiple email addresses to my calendar

    How do I add multiple email addresses to my calendar on my iphone

  • No Sound for Videos in iTunes 10.6 - Help!

    Hi, All of a sudden, in iTunes for Windows, whenever I play videos, I get no sound/audio.  The video plays fine, but no sound.  Previously, everything played fine in iTunes, video and audio. Here is what I am using: iTunes 10.6 for Windows  64-bit Wi

  • By-passing Airport to print through Ethernet

    I loaded Snow Leopard yesterday and could not find my HP Color LaserJet 5500dn, which is connected via Ethernet. Then I discovered it wouldn't recognized or communicate with it while I had Airport on. After turning Airport off, low and behold it reco

  • R/3 ABAP report to BW

    HI Gurus, I have a report in R/3. This is using around 4 tables to populate the output. Where the output has around 30 fields to populate. But, when we analysed we found that some of the values are populating wrong values. But, anyhow the requirement

  • Zen 4 - Zen 6.5 Inventory database upgrade fails

    Hi all, Have installed Zen 6.5 over a Zen 4 server (nw65) running inventory. Database is on a seperate oracle server. When I start inventory, it starts the database upgrade and then fails with a java exception part way through, and then says "stoppin