Custom fax cover sheet

Hello,
My scenario is this:
I need to send a custom smartform or sapscript cover sheet in the same output process of faxing smartform PO's, Quotations, Invoces and several other documents.  I don't see anywhere in configuration where something like this can be done.  Does anyone have any ideas on how to accomplish this?
Thank you,
JR

Time for a little give-back from me....
Having just worked on this same issue and not finding a solution from SDN (which was unusual) I thought I'd better let you know what I have found..
Transactions SO41,SO42 and SO43 show the default SAP fax cover sheets.
They are kept in client 000 and you need to use SE71 (SAPScript forms) to copy the required form (and rename to Z...), then you are free to modify it as required (Add a logo etc).
Make sure you classify the form as a SAP office form, there are instructions for doing this in the SAP library.
You can test it in SO01 without sending the fax anywhere, create a fax to recipient GB 1234567 or any other fake number, double click on the sender and you will get a popup of the fax details (sender info, receiver info and the cover sheet to use).
or you can use SO_OBJECT_SEND, make sure the recevicers-recextnam field is populated using the SADRFD structure.
and here's the subroutine I use to send a list as a fax with a custom cover sheet :
and below that is a similar subroutine to send emails...
*&      Form  send_fax
   Send Fax of internal table GT_MAIL_LINES TYPE soli
FORM send_fax using my_company_name TYPE name1_gp.
  DATA: ls_object_hd TYPE  sood1,
        ls_receivers TYPE  soos1,
        lt_receivers TYPE STANDARD TABLE OF soos1,
        l_lines      TYPE  i,
        ls_sadrfd    TYPE sadrfd.
  CLEAR:  ls_object_hd, ls_receivers.
  REFRESH lt_receivers.
  ls_object_hd-objla  = sy-langu.
  ls_object_hd-objnam = 'NOTE'.
  ls_object_hd-objdes = 'Fax subject line in here'.
Calculate size of table
  DESCRIBE TABLE gt_mail_lines LINES l_lines.
  READ TABLE gt_mail_lines INDEX l_lines INTO gs_mail_lines.
  ls_object_hd-objlen = ( l_lines - 1 ) * 255 + STRLEN( gs_mail_lines ).
Set Fax control structure
Fax number in structure must have no leading zero
as this is added by SAPOffice from the country code
  ls_sadrfd-rec_fax = gs_address-fax.
  shift    ls_sadrfd-rec_fax left deleting leading '0'.
  condense ls_sadrfd-rec_fax no-gaps.
  ls_sadrfd-rec_street = gs_address-street.
  ls_sadrfd-rec_town   = gs_address-city.
  ls_sadrfd-rec_name1  = gs_address-name.
  ls_sadrfd-rec_state  = gs_address-country.
  ls_sadrfd-form_langu = gs_address-langu.
  ls_sadrfd-fax_form   = 'Z_FAX_COVER'.
  ls_sadrfd-send_comp  = my_company_name.
  ls_sadrfd-send_immi  = 'X'.
  IF ls_sadrfd-form_langu is initial.
    ls_sadrfd-form_langu = sy-langu.
  endif.
  ls_sadrfd-send_nam = sy-uname.
  ls_sadrfd-send_date = sy-datum.
  ls_sadrfd-send_time = sy-uzeit.
Convert Receiver information to char field
  CALL FUNCTION 'C147_WORKAREA_TO_CHARFIELD'
    EXPORTING
      I_WORKAREA  = ls_sadrfd
    IMPORTING
      E_CHARFIELD = ls_receivers-recextnam.
  ls_receivers-recesc = 'F'.
  ls_receivers-mailstatus = 'E'.
  ls_receivers-sndart = 'FAX'.
  ls_receivers-sndpri = '1'.
  APPEND ls_receivers TO lt_receivers.
Send fax
  CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
      object_hd_change = ls_object_hd
      object_type      = 'RAW'
      owner            = sy-uname
      originator       = g_originator
      originator_type  = 'B'
    TABLES
      objcont          = gt_mail_lines
      receivers        = lt_receivers
    EXCEPTIONS
      OTHERS           = 01.
The function doesn't commit so we must
do it if successful.
  IF sy-subrc = 0.
    COMMIT WORK AND WAIT.
  ELSE.
    WRITE: / 'Fax failed RAISE ERROR '(012).
  ENDIF.
ENDFORM. "send_fax
*&      Form  send_email
   Send Email of internal table GT_MAIL_LINES
FORM send_email USING      pi_email_address TYPE ad_smtpadr.
  DATA: ls_object_hd        TYPE  sood1,
        ls_receivers        TYPE  soos1,
        lt_receivers TYPE STANDARD TABLE OF soos1,
        l_lines      TYPE  i.
  CLEAR:  ls_object_hd, ls_receivers.
  REFRESH lt_receivers.
  ls_object_hd-objla  = sy-langu.
  ls_object_hd-objnam = 'NOTE'.
  ls_object_hd-objdes = 'Email title in here'.
get size of text table to be sent
  DESCRIBE TABLE gt_mail_lines LINES l_lines.
  READ TABLE gt_mail_lines INDEX l_lines INTO gs_mail_lines.
  ls_object_hd-objlen = ( l_lines - 1 ) * 255 + STRLEN( gs_mail_lines ).
  ls_receivers-recextnam = pi_email_address.
  ls_receivers-recesc = 'E'.
  ls_receivers-mailstatus = 'E'.
  ls_receivers-sndart = 'INT'.
  ls_receivers-sndpri = '1'.
  APPEND ls_receivers TO lt_receivers.
NB: G_originator is a SAP user ID with the email address that you want any
replies to go to - its useful to have this not as sy-uname so any replies can go to
a central email address like [email protected]
  CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
      object_hd_change = ls_object_hd
      object_type      = 'RAW'
      owner            = sy-uname
      originator       = g_originator
      originator_type  = 'B'
    TABLES
      objcont          = gt_mail_lines
      receivers        = lt_receivers
    EXCEPTIONS
      OTHERS           = 01.
  IF sy-subrc = 0.
    COMMIT WORK AND WAIT.
  ELSE.
    WRITE: / 'Email failed RAISE ERROR '(010).
  ENDIF.
ENDFORM.                    " send_email

Similar Messages

  • Fax Cover Sheet from SAP / Rightfax

    Hi,
    My requirement is to generate a cover sheet whenever a PO/SO/any document is faxed. We have Rightfax through SMTP/SAP Connect configured. Rightfax does provide a generic cover sheet option but it can only contain the fax numbers and recipient name. It suggests to use SAP Cover sheet. Have few questions, and here they goes:
    1. How can I enable SAP Coversheet? Even after checking the option for cover page I am not able to get any cover page and may have been disabled. I've also checked SAP note 553113 but wanted to check if there's any other way as well.
    2. After I have enabled cover sheet and lets assume the Standard cover sheet is copied in a ZForm, how can I ensure that always the zform cover sheet will processed? I am not able to find any configuration setting for it. I've research to find that SAP uses SO41 OFFICE-TELEFAX coversheet. This observation can be seen when I goto SO02 -> New Message -> Goto -> Fax , a pop up window appears which asks for Fax details. On Top Right, one can check the cover page option but the Coverpage is always specified as 'STANDARD'.
    3. Researched a lot. SDN & Google but not able to come to a conclusion for any specific solution. Appreciate if anyone has worked on this requirement, please share their ideas. There's no much help available as well (seen as much available links in SDN and Google). Basically, the requirement is just to generate a generic fax cover sheet from SAP.
    Thanks,
    Santosh Verma

    Hi,
    Thanks for your time in looking the issue.
    @ Sandra,
    I've already researched on SDN and google and have visited this link as well. It wasn't of much help. But thanks again.
    @ Weidong,
    Actually thought of that solution but wanted to check if there's any generic way. Please let me know further on 'You need change configuration for fax - output type.'. Are you referring to NACE output type configuration?
    Let me add more:
    1. If we set the Parameter 'BCS_NO_FAX_COVER' to 'X' in TMV/SM30 'SXPARAMS', this way, the Fax cover sheet from SAP can be enabled of disabled. This cover sheet uses the Form OFFICE_TELEFAX_M in SE71 (SO43). What worries me, even if I copy the standard to custom, how to make sure that custom form is printed as there is no place where i am able to find any configuration. SAP note 553113 says to edit this form in SE71, that's it.
    2. The other solution is right fax generic cover sheet. Which is generated right now, but with limited info. The Right Fax documentation recommends to use SAP Cover Sheet as the Right Fax cover sheet does not provide much details except Senders Fax No, Recipients Fax Number and Name. This cannot be of much help.
    3. Use a custom form. A custom form which will contain cover sheet data, independent of SAPConnect. This form has to be generated at runtime. This is one of the approaches thought but here's the list of issues with it:
    a. The print program has to be modified as well. Issue when using standard print program. At same time, i think in FP_JOBOPEN one has to specify the cover page as well. Looks good for custom print programs.
    b. Our requirement also looks for mass fax. For eg: lets say, i have to fax, around 10 PO's, there should only be one cover sheet for all the 10 fax documents. This solution may not help here.
    Appreciate your help.
    Thanks,
    Santosh

  • All I Want Is A Fax Cover Sheet

    I have an HP ENVY7640 e_All-In-One and I cannot figure out how to select a SPECIFIC form from the Printables appFrom the display ON the printer I find the one I want ( fax cover sheet ) I select it and hit PRINT........Nothing happens!! If I try to use the app, It only gives me the option to select "last" which apparently is a blank weekly calander. The app doesnt allow me to select a specific sheet. SO,.... what good does scheduling it do? By the way, I DID schedule to print , but, again , it just printed the calander. ( I now have 5 weekly calander pages )So far, I have no cover sheet and I have wasted alot of ink. I have also noticed that the "scheduled" print time does not allow me to set the DAY I want it to print, as I tried to do that as well.it shouldnt be this hard. On my previous hp printer I just went to the screen on the device... selected what I wanted , and hit print.....as it should be.WHAT AM I DOING WRONG?????  

    Hello , Thanks for posting in the HP Forums. I'd like to help you with the issues you are having with the printables on your HP ENVY 7640 e-All-in-One printer. I am assuming that you are printing from the Quickforms app? I know that the only scheduled option for that app is the calendar, and I'm pretty sure it also has the option to "quick print" a fax cover page. Let me know if I'm incorrect, so I can better assist. The fact that the fax cover page will not print, indicates there is either an issue with the printer's connection, an issue with the app itself, or an issue with the printer's firmware. Are you able to print from other apps immediately and without issue? I'd recommend doing a network reset to refresh the connection. Let's leave the router on and unplug the power cable (NOTE: Do not reset the router.), then do the same with the printer, and shut down the computer. After a full minute, plug the router back in, wait for it to fully power up, then plug the printer back in and wait for the wireless light to become solid. Once both the router and printer are on, go ahead and turn the computer back on. Doing this will refresh the network connection. I'd also recommend making sure the printer is plugged directly into a wall outlet. The printer has a power moderator built in, so if it is plugged into a wall outlet or power surge bar, it may not be getting consistent power. Power fluctuation can cause all manner of firmware "glitches" such as the one you are experiencing. If these steps don't immediately resolve the issue, I'd recommend contacting our HP Cloud Services phone support at 1-855-785-2777. I hope this helps!

  • Attach Custom Fax Cover  Page using Object class Cl_BCS

    Hello,
    Scenario: To attach a custom fax cover page to the faxing functionality. The standard fax cover page is not needed.
    Method Used: Fax is initiated in the ABAP code via the function module SO_NEW_DOCUMENT_ATT_SEND_API1
    had to change the code to use object class CL_BCS , because of the subject line length limitation.
    I want to get rid of the SAP standard cover page that gets generated and attach a custom cover page
    By applying SAP OSS Note 553113 - I am able to deactivate the standard fax cover page.
    But I haven't found a way of attaching a custom fax cover page(not sure what the original SApscript layout is)
    else would have modified the same.
    Any help in the matter would be appreciated.
    Thanks for your help.
    Almas.

    Hi Hasan,
    I have similar requirement. I see your post is pretty old and hope you would have found the solution at that time.
    Could you please share it with me?
    Thanks
    Puneet

  • Configuring a custom fax cover page to send via SMTP

    Hi,
    Does anyone know how we can configure  a custom fax cover page in the case of sending fax via SMTP, for instance in the process of sending the payment advice, associated with transaction F110? I have a situation where a fax cover page that clearly was developed (maybe SAPSCRIPT) is being sent along with the document (wich was created as an attachment to the email), but don´t understand where it came from and i want to inhibit it from being sent.
    Thanks,
    Bruno

    Hi Hasan,
    I have similar requirement. I see your post is pretty old and hope you would have found the solution at that time.
    Could you please share it with me?
    Thanks
    Puneet

  • SAP R/3 4.7 custom Fax Cover Page default setting in Workplace Fax Entries

    How can we implement a custom Z form SAP fax cover page as the default fax cover page in SAP workplace, it makes you enter the Z form name in fax cover page entries when we tested it each time you do a fax, Iu2019m sure the users arenu2019t going to want to do that.   Research Iu2019ve done on SAP seems to say you change the Default SAP fax cover page form in transaction SO41 the OFFICE-TELEFAX form which had the From: company name and address hardcoded with SAPu2019s German company name and address which we don't want to use.

    We decided to use Z fax cover created from OFFICE-TELEFAX and when you enter the Z fax cover name in fax detail entries it keeps the entry in field in SBWP we've found so you don't have to retype it in and we hardly do any user controlled fax of reports right from SAP, mostly email of reports they do thru SBWP SAP Office.  And auto fax, auto email of documents with NACE records thru SCOT, SOST transaction to an Esker Deliveryware fax server.

  • Can You Soft Proof Your Faxes?  Cover Sheet?

    I've come across instructions on FAXing that say I should be able to Soft Proof or Preview my FAXes before sending them, even seeing my cover page. I think the info was good for Panther. I am running 10.4.11 and I can't seem to do that -- but then, my Completed FAXes button is greyed-out, so I don't know if it is me and my machine that is the problem, or if this is functionality that was lost along the way. Can other Tigers Preview/Soft Proof FAXes?

    Looks like I can get a Preview of the file I am faxing, but I don't see a preview of my cover sheet.
    Here is a way to see some information about your completed fax jobs:
    http://127.0.0.1:631/printers/Internal_Modem
    Tiger's faxing support does seem to be somewhat sketchy to say the least!
    Regards,
    Steve M.

  • RightFax and PDF result in 'Problem Converting Fax Body or Cover Sheet'

    Hi All:
    We are trying to send out faxes of invoices and reports to our customers.  We have RightFax software and have used it for a long time.  We are converting our reports to PDF and send them to RightFax.  I am getting 'Problem Converting Fax Body or Cover Sheet'.  I can create a PDF from a word document and it will send it, but files output from SSRS errors.  What is different between the two.
    PhilPHuhn

    Hi All,
    We use RightFax and to get around the problem of
    Problem Converting Fax Body or Cover Sheet we were told to
    open up the PDF you want to send and click print
    Select the RightFax printer and hit print.
    It will now open up the RightFax window with the PDF attached and you just add in the telephon number and other details
    as you would send your fax.
    regards
    Anthony

  • Issue with cover sheet text in chinese when received at customer mail id

    Hi All,
    Please help me with the following issue with your solutions
    When we complete an MSDS document, a Cover sheet will also get generated and a proram will send both the documents to the customer in his/her email id.Both the documents are received in customer's email id as .PDF files( Say Pkt ID.PDF for MSDS and Coversheet.pdf for coversheet).
    In general coversheet goes as coversheet.pdf,but for some countrie like china customer need to see the files received in chinese text( Coversheet in chinese text.PDF).
    In my case the customer is receiving a covers sheet with (chinese text.PDF),but the chinese text appearing for coversheet is not correct.
    Any help as from where this is picked up for coversheet? I checked Document Management systemdefine doc typesassign language dep doc status for DBE.Also checked phrases ,but of no use.
    Kindly let me know your inputs
    Regards
    George

    Found that the Program handling the sending of MSDS&COVER sheet to customer is mapped with wrong text element.
    Thanks .I am closing the defect

  • Dont  send SAP cover sheet for FAX

    Is there any settign we can make in SAP system such that dont send cover sheet for fax goign out of SAP?

    Hi Rahul,
    Note 553113 can help you.
    Please close this thread, if your problem is resolved.
    Thanks,
    Siva Kumar

  • Show information of one-time customer in Cover letter

    Hi Experts,
    Here is my situation, I used one-time customer to create oders, when a widow that require the detail of the customer poped up, I entered some information(city,street, etc) of the customer.
    When I generate automatic report shipping, in the cover letter, I found the infor I entered during creating orders did not shown, instead, the infor showed in the cover still use infor that stored in customer master table KNA1.
    I checked the cover sheet template in CG4B and found the part where show address infor of the customer is defined by report symbols, and the function module that controll the logic of the report symbol is getting record from table KNA1, I want to change the logic of the FM, but do not know how I could get the document number of the order that I created.
    Could you please help me with this?
    How could I make the infor of the customer that I entered when creating order be shown in the cover letter?
    Many thanks for all your help!
    Anna

    Hello Anna
    to my knowlegde it is not possilbe to use "one time customers" in EH&S in the context of the report shipment process. As an alternative you can create the "one time customer" as a report reciepient in EH&S and dsitribute the reoprt manually.
    You can use to my knowledge only these adddress types:
    ·        Customer (business partner, customer, company)
    ·        Office user of the SAP system
    ·        Report recipient
    To my knowlege the main reason is that the subsequent shipment is done with  the "unnique id" of a business partner; and it is assumed that this business partner does have always the same adress. To my knowldge the whole report shipment process uses this unique ID and the "unique" adress
    The "one time customer" does not have a "unique adress". It has only a unique business partner ID.
    In the area of DG managment you can use "one time material" regarding DG classification etc.
    With best regards
    C.B.
    PS: may be you can do something by doing a review of the function module as mentioned; may be you can try to configure the system in such a way that the report will be distributed the first time but my assumption is that you will not manage the subsequent process.
    Edited by: Christoph Bergemann on Jun 10, 2010 9:45 PM

  • EHS : Creating new report parameter/ symbol for MSDS cover sheet

    Hi,
    I am working on the SAP EHS module.
    I have a requirement in which I need to have the country name (description) on the MSDS cover sheet instaed of the country key which is presently coming in there.
    As per the standard settings, the report parameters available for the country point towards the country key only (char 3) i.e T005-land1 and not T005T-landx(char 15).
    I understand that I need to create a new customer report parameter in the customising which will pick the data for the coversheet country.
    My problem is that I am not sure where exactly do I have to write the code for this report symbol/parameter expansion.
    I am not sure about the trigger for the expansion routine.
    Please guide me if anyone has worked on this kind of an issue.
    I will greatly appreciate your suggestions on this one.
    Thanks and regards,
    Hitanshu

    Go to
    <a href="http://help.sap.com/saphelp_erp2004/helpdata/en/c1/eda0f591ec12408b25e7a1b369ca45/frameset.htm">http://help.sap.com/saphelp_erp2004/helpdata/en/c1/eda0f591ec12408b25e7a1b369ca45/frameset.htm</a>
    Report Definition -> Report Creation: Process -> Document Template Layout Editing -> Editing Specification or Parameter Symbols -> Function Module

  • Don't want to send Fax Cover page

    Hi Gurus,
    When we send Dunning letter and Customer Statement by Fax it's printing Fax cover page. We don't need fax cover page to be send out.
    Can you please advise me on what settings needed to stop faxing Fax cover pagee for Dunning and Customer Statement?
    Thanks in advance

    Is it the SAP default fax cover page or from your fax server.  If it's SAP 4.7 you can look for the SAP Note that shows how to stop using the fax cover page.  Or if you are manually faxing with SAP Workplace you can uncheck the Fax cover page setting in Go to fax entries screen each time.

  • Cover sheet doesn't send

    I have just tried faxing under Tiger for the first time. I sent a sample fax to my own fax machine, but the cover page didn't come through.
    Here is what I did:
    1) Selected a Word document to fax
    2) File>Print
    3) Fax PDF
    4) Filled in the "to" field
    5) Select the check box for "use cover page"
    6) Filled in "subject"
    7) Filled in "message"
    8) Click on Fax button
    I received only the content pages and not a cover sheet. I went back through the same process again and opened the document in preview this time. No cover sheet showed up in preview and I didn't receive on on my fax machine after hitting the fax button, only the content pages as before.
    Am I missing something here? Is there something that I have to do to set up a cover sheet prior to faxing? I can't seem to find anything in the Mac Help files on this either.
    Thank you
    PowerBook G4 667 Mhz   Mac OS X (10.4.3)  

    And where are you doing all of this? No one here has a crystal ball nor can we see your MBP.

  • Date of purchase, fax cover letter

    Just wondering where i can find the Fax cover letter, which is printable off the website. so that i can fax it into apple, to change my Date Of Purchase.

    Hi,
    Copy the smartform BBP_BIDINV_BID to ZBBP_BIDINV_BID (transaction SMARTFORMS) and apply your changes
    - use BADI to call your custom form ZBBP_BIDINV_BID
    For PDF output form change use BADI BBP_OUTPUT_CHANGE_SF.
    For email notification change use BADI BBP_CHANGE_SF_BID instead.
    You will find all relevant documentation in SPRO --> Supplier Relationship Management -->
    SRM Server --> Business Add-Ins (BAdIs) --> Document Output -->
    - Change Forms for Document Output
    - Change Smart Form for E-Mails Relating to Bids
    See these threads for more steps/details:
    <b>Re: how to use cutom smartform instead standard?</b>Re: How to change predefined email text?
    Re: Email message customization ?
    Re: Bid Invitation Email Subject
    Re: Email notification to bidder should reflect start/end date and time
    Re: RFQ Smartform in SRM
    Re: Standard Text
    BR,
    Disha.
    <b>Pls reward points for useful answers.</b>

Maybe you are looking for

  • A few questions about getting DSL

       Hi, my home has been out of range for DSL and we've been patiently waiting for years for the day to come when it's available, but it doesnt look like it'll be happening soon. We have a small business we run out of the house and have been paying a

  • Pages crashing -- is there an autosave option

    Pages has crashed twice on me today (as in totally locked up my machine so I needed to press the power button) -- installed yesterday. I've lost about 2 hours total. After the first time I was trying to remember to hit cmd-s every few minutes but thi

  • Create a large XML extract from relational tables - 10g

    The Oracle 10g documentation recommends using the various SQL functions such as XMLAGG,XMLELEMENT or DBMS_XMLGEN under chapter "16 Generating XML Data from the Database" for generating a XML extract file. The DBMS_XMLDOM seems like a useful structure

  • My 8600 all in one won't scan

    my printer wont scan

  • Bridge CC freezes for 5 secs when opening new folders

    I've changed something, I'm sure, but can't get Bridge back to snappy normal.  Has performed flawlessly for many years and iterations, but I made a slew of changes after drinking a bit and its unhappy now.  Waiting 5 secs for each level of nested fol