Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

(OTFSPOOL to PDF + MAIL) Blank PDF Provided

Former Member
0 Kudos

Hi Experts,


I have a blank PDF provided by SAP from an OTFSPOOL when I use the sample code of Wiki.SAP.

I am using a SAP sample code posted on WIKI.SCN.SAP.COM and I adapted it with 2 basic modifications (in red below) :


*&---------------------------------------------------------------------*

*& Report  ZSCLI_SEND_MAIL_FROM_SPOOLPDF

*&

*&---------------------------------------------------------------------*

*&    Converts spool request into PDF document and emails it to        *

*&    recipicant.                                                      *

*&                                                                     *

*&    Execution                                                        *

*&    ---------                                                        *

*&    This program must be run as a background job in-order            *

*&    for the write commands to create a Spool request rather          *

*&    than be displayed on screen                                      *

*&---------------------------------------------------------------------*

REPORT  zscli_send_mail_from_spoolpdf.

PARAMETER: p_email1   LIKE somlreci1-receiver

                                     DEFAULT 'rachid.roughi@xxxxxxxx.fr',

            p_sender   LIKE somlreci1-receiver

                                     DEFAULT 'rachid.roughi@xxxxxxxxx.fr',

            p_delspl   AS CHECKBOX,

           p_spool    TYPE rqident  DEFAULT'14502'

            .

*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.

DATAw_recsize TYPE i.

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,

       ls_mess_att LIKE solisti1 ,

       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.

DATA ls_pdf_output LIKE LINE 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.

   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.                    "obtain_spool_id

*---------------------------------------------------------------------*

*    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.                    "get_job_details

*---------------------------------------------------------------------*

*    FORM convert_spool_to_pdf                                     *

*---------------------------------------------------------------------*

FORM convert_spool_to_pdf.

   gd_spool_nr = p_spool  .

" CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF' " OLD

   CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'  " <== Because my spool is a SMARTFORM

     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_otf_spooljob      = 1

       err_no_spooljob          = 2

       err_no_permission        = 3

       err_conv_not_possible    = 4

       err_bad_dstdevice        = 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.                    "convert_spool_to_pdf

*---------------------------------------------------------------------*

*    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.                    "process_email

*---------------------------------------------------------------------*

*    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 = 'Pièce jointe'.

*  CONCATENATE 'attach_name' ' ' INTO gd_attachment_name.

   it_mess_bod        = 'Madame, Monsieur,'.

   APPEND it_mess_bod.

   it_mess_bod        = 'Vous venez de recevoir cette pièce jointe.'.

   CONCATENATE it_mess_bod p_spool INTO it_mess_bod SEPARATED BY space.

   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

                                       'Mail from SAP'

                                       'PDF'

                                       gd_attachment_name

                                       gd_attachment_desc

                                       p_sender

                                       gd_sender_type

                              CHANGING gd_error

                                       gd_reciever.

ENDFORM.                    "send_email

*---------------------------------------------------------------------*

*    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.                    "delete_spool

*---------------------------------------------------------------------*

*       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.

   SUBMIT RSCONN01 WITH TYPE_REC = 'INT'

   EXPORTING LIST TO MEMORY

     AND RETURN.

ENDFORM.                    "send_file_as_email_attachment

This is my SPOOL:

My Smartform:

In SOST, I played many times the program with filling or not my Smartforms and I have:

Do you know, why I have a BLANK PDF provided ?

Thank you very much.

Rachid.

4 REPLIES 4

Former Member
0 Kudos

After the MF:


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

I have:

Everything  is working well... but I still have a blank PDF ...

Can you help?

Many thx.

Rachid.

raymond_giuseppi
Active Contributor
0 Kudos

Maybe a problem related to language of spool?

Also keep your tool generic, with a check for spool type


* Type : OTF or ABAP

  call function 'RSTS_GET_ATTRIBUTES'

    exporting

      authority     = 'SP01'

      client        = tsp01-rqclient

      name          = tsp01-rqo1name

      part          = 1

    importing

      type          = type

      objtype       = objtype

    exceptions

      fb_error      = 1

      fb_rsts_other = 2

      no_object     = 3

      no_permission = 4.

  if sy-subrc ne 0.

    subrc = sy-subrc.

    exit.

  endif.

* OTF (Smartforms, SAP Script)

  if objtype(3) = 'OTF'. "OTF

    call function 'CONVERT_OTFSPOOLJOB_2_PDF'

      exporting

        src_spoolid              = spoolno

        no_dialog                = ' '

      importing

        pdf_bytecount            = numbytes

        pdf_spoolid              = pdfspoolid

        btc_jobname              = jobname

        btc_jobcount             = jobcount

      tables

        pdf                      = pdf

      exceptions

        err_no_otf_spooljob      = 1

        err_no_spooljob          = 2

        err_no_permission        = 3

        err_conv_not_possible    = 4

        err_bad_dstdevice        = 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.

  else. " Abap

    call function 'CONVERT_ABAPSPOOLJOB_2_PDF'

      exporting

        src_spoolid              = spoolno

        no_dialog                = ' '

      importing

Also this FM SO_DOCUMENT_SEND_API1 is now obsolete, better use class cl_bcs (many samples at scn)

Regards,

Raymond

0 Kudos

Do you actually need the spool? If not I would suggest to set parameter control_parameters-getotf = 'X'. and the use the following code:


DESCRIBE TABLE job_output_info-otfdata LINES lv_lines.

     CALL FUNCTION 'CONVERT_OTF'
      EXPORTING
        format                      = 'PDF'
*     MAX_LINEWIDTH               = 132
*     ARCHIVE_INDEX               = ' '
*     COPYNUMBER                  = 0
*     ASCII_BIDI_VIS2LOG          = ' '
*     PDF_DELETE_OTFTAB           = ' '
*     PDF_USERNAME                = ' '
*     PDF_PREVIEW                 = ' '
*     USE_CASCADING               = ' '
      IMPORTING
        bin_filesize                = lv_binfilesize
        bin_file                    = lv_binfile
       TABLES
         otf                         = job_output_info-otfdata
         lines                       = lt_lines
      EXCEPTIONS
        err_max_linewidth           = 1
        err_format                  = 2
        err_conv_not_possible       = 3
        err_bad_otf                 = 4
        OTHERS                      = 5
               .

0 Kudos

Thank you Dominik Krämer and Raymond Giuseppi,

my conversion of the SPOOL to PDF is correct. I am using the right MF. I have a problem as you said Raymond in  SO_DOCUMENT_SEND_API1.

I had a look on CL_BCS and I changed my method "send_file_as_email_attachment " with:



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: l_send_request TYPE REF TO cl_bcs,         " Send request

         l_body      TYPE bcsy_text,                " Mail body

         l_attach    TYPE bcsy_text,                " Attachment

         ls_attach   TYPE soli,                " Attachment

         wa_text     TYPE soli,                     " Work area for attach

         l_document  TYPE REF TO cl_document_bcs,   " Mail body

         l_sender    TYPE REF TO if_sender_bcs,     " Sender address

         l_recipient TYPE REF TO if_recipient_bcs" Recipient

         l_email     TYPE ad_smtpadr,               " Email ID

         l_extension TYPE soodk-objtp VALUE 'PDF'" TXT format

         l_size      TYPE sood-objlen,              " Size of Attachment

         l_lines     TYPE int4.              " Size of Attachment

   APPEND 'Test Mail ' TO l_body.

   LOOP AT it_attach INTO ls_attach.

     wa_text = ls_attach.

     APPEND wa_text TO l_attach.

   ENDLOOP.

*  l_attach[] = it_attach[].

   l_lines = lines( l_attach ).

   l_size = l_lines * 255.

*  Creates persistent send request

   l_send_request = cl_bcs=>create_persistent( ).

*  Craete document FOR mail body

   l_document = cl_document_bcs=>create_document(

   i_type    = 'RAW'

   i_text    = l_body

   i_subject = 'Subject-Here' ).

*  ADD attchment

   CALL METHOD l_document->add_attachment

     EXPORTING

       i_attachment_type    = l_extension    "'PDF'

       i_attachment_subject = 'test_delv'

       i_attachment_size    = l_size

       i_att_content_text   = l_attach.

*  ADD the document TO send request

   CALL METHOD l_send_request->set_document( l_document ).

*  Sender addess

   l_sender = cl_sapuser_bcs=>create( sy-uname ).

   CALL METHOD l_send_request->set_sender

     EXPORTING

       i_sender = l_sender.

   L_EMAIL = 'rachid.rouhi@xxxxxxxxxx.fr'.

   l_recipient = cl_cam_address_bcs=>create_internet_address( l_email ).

*  ADD recipient address TO send request

   CALL METHOD l_send_request->add_recipient

     EXPORTING

       i_recipient  = l_recipient

       i_express    = 'X'

       i_copy       = ' '

       i_blind_copy = ' '

       i_no_forward = ' '.

*  trigger e-mail immediately

   l_send_request->set_send_immediately( 'X' ).

*  send mail

   call method l_send_request->send( ).

   COMMIT WORK.

ENDFORM.                    "send_file_as_email_attachment




I still have a BLANK PDF ....



Maybe the problem does not concern my code but some restrictions on SAP, no ?


Have you got any suggestions ?


Rachid.