Sending a PDF file as fax

Hi,
I have a requirement to send a PDF file as a fax to different fax numbers. Can anyone assist me on how to get this done. Can you please show me step-by-step.
Thanks in advance

Thanka a lot for the help so far,
I have uploaded the file and below is the changes I made to the coding and within it is my question highlighted in green
DATA: formoutput TYPE  fpformoutput,                " PDF FORM settings.
      docparams  TYPE sfpdocparams,                 " Print and Spool Dialog settings
      ie_outputparams   TYPE sfpoutputparams.       " Print and Spool Dialog settings
DATA: it_recipe TYPE ztrecipe_form1.   {color:green}What is this type for cause in my coding it says type undefined  {color}            " Internal Table Declaration
DATA: i_name TYPE fpname,
      fm_name TYPE funcname.                        " Captures the Generated Function Module name
DATA: w_itcpp TYPE itcpp.
DATA: it_attachment1 TYPE  SOLIX_TAB.
DATA: it_attachment2 TYPE SOLI_TAB.
DATA user LIKE sy-uname.
CALL FUNCTION 'GUI_UPLOAD'
EXPORTING
  FILENAME = 'C:\Users\Thandekile nkomo\Desktop\715GSSC_8.pdf'
  FILETYPE = 'BIN'
TABLES
   results = ZRECIPE_PRINT_FORM1_1.
i_name = 'ZRECIPE_PRINT_FORM1_1'.       {color:green} On the adobe form name do I use the name of the table I get with all the results {color}            " Adobe Form name
PARAMETERS: p_matnr TYPE zrecipe_form1-matnr OBLIGATORY.
SELECT * FROM zrecipe_form1 INTO TABLE it_recipe.
CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'               " Will contain the name of generated Function Module Name...
  EXPORTING
    i_name = i_name
IMPORTING
    e_funcname = fm_name.
*ie_outputparams-device = 'TELEFAX'.
*ie_outputparams-nodialog = 'X'.
ie_outputparams-getpdf = 'X'.
*out-nodialog = 'X'.
*ie_outputparams-dest = 'LP01'. " Destination
*ie_outputparams-reqnew = 'X'.
* out-reqimm = 'X'.
* out-reqdel = 'X'.
*ie_outputparams-reqfinal = 'X'.
CALL FUNCTION 'FP_JOB_OPEN'                           " To Open the Form for Printing...
  CHANGING
    ie_outputparams       = ie_outputparams.
*docparams-langu = 'E'.
*docparams-country = 'US'.
*docparams-fillable = 'X'.
CALL FUNCTION fm_name                                " Generated Function Module(/1BCDWB/SM00000167)...
  EXPORTING
    /1bcdwb/docparams        = docparams
    it_recipe                = it_recipe
    p_matnr                  = p_matnr
IMPORTING
   /1bcdwb/formoutput       = formoutput
CALL FUNCTION 'FP_JOB_CLOSE'.
Edited by: Beatrice Nkomo on Nov 30, 2009 11:25 AM

Similar Messages

  • How to send the PDF file to FAX will the nast table updates

    Hi all,
    How to send the PDF file to FAX. Will the nast table updates ( which fields updates ).
    Need is once fax is send for that delivery, again it should not fax again. Will the nast table helps to check the sent fax.
    Please give me sutable suggessions....

    Have you checked Forums » Community Discussions » Code Snippets 
    I believe there were some examples on converting/sending PDF.
    Or check FM 'SO_DOCUMENT_SEND_API1' and documentation for it.

  • How to send a PDF file as a FAX from Oracle Reports 6i

    Hi
    I want to know how to send a PDF file as a FAX from Oracle Reports 6i. Or please post any sample code in reports that sends PDF document as FAX
    Help need immediately.
    Thanks in advance. my email id is
    [email protected]
    Arun
    null

    hello,
    there is no native support for directly faxing a report. you could e.g. use a fax-software that has a printer-driver that supports this.
    regards,
    the oracle reports team

  • I have tried a lot to find an app or some way in email to attach multiple of pdf files in one email. I could not find anything that sends multiple pdf file in one email and still keeping the file in simple pdf format for the recipient.

    I have tried a lot to find an app or some way in email to attach multiple of pdf files in one email. I could not find anything that sends multiple pdf file in one email and still keeping the file in simple pdf format for the recipient.

    I am not aware of a way except for photos that allows you to select multiple files in an email. I even checked settings in the Adobe Reader app, and it does not show that ability.

  • How do I change my email address when sending a PDF file:

    How do I change my email address (correct it) when sending a PDF file?

    You'll need to add the email address you want to use to Reader... If you're not prompted to do so when clicking the Submit button, you can do it via Edit - Preferences - Email Accounts.

  • Sending a pdf file as an attachment in the workflow.

    Dear All,
    In my workflow , i want to send a pdf file as an attachment.I know this topic has been discussed in earlier threads but i couldn't make out from them.So plz if possible do give simple detailed solution for better understanding.
    Regards,
    Geet Bijlani.

    The SOFM Object should be created as follows.
    1) get the relationship using class 'CL_BINARY_RELATION' using method 'READ_LINKS'
    2) get the instance ID from INSTID_B
    3) split the value according to the keyfields in SOFM and create object SOFM
    4) bind each object to the Workitem or Email.
    with regards,
    Sudhahar R

  • When i send a PDF file to out side print, some of the things I aded dose not print. Is there a way I can "close" the PDF when i finish the work- so' every thing will be printed for sure

    when i send a PDF file to out side print, some of the things I aded dose not print.
    Is there a way I can "close" the PDF when i finish the work- so' every thing will be printed for sure

    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Or you can use your Apple ID to register with this site and go the Apple BugReporter. Supposedly you will get an answer if you submit feedback.
    Feedback via Apple Developer

  • Sending a pdf-file

    I need to send a pdf-file from another application to another. Now I am transporting it in several char[] tables. The problem is some characters are missing when the other end receives the pdf-file.
    So I'm asking that can a pdf-file be transported in several char-tables? Is it possible in general? (I don't have a possibility to send a byte stream, so I need to use char-tables).

    You are probably loosing high-bits off of some of the bytes when you
    convert them to a char[] or they are overflowing. Same result, corrupted
    pdf data....
    I suggest that you used Base64 to encode the byte[] data of the file
    and decode it on the other end when you receive it. As I remember
    Base64 should only produce printable characters so sending the data
    through a char[] should work fine.
    Note that this will increase the size of the data some.
    For a class that does Base64 encoding and decoding see.
    org.apache.xerces.impl.dv.util.Base64
    The Apache license is quite permissive so you can probably just include
    this class in you program.

  • How do I send a pdf file by email

    How do I send a PDF file as an attachment to an email?

    Just like any other file...
    On Sat, Mar 7, 2015 at 12:16 AM, larrys19338374 <[email protected]>

  • Can anyone tell me how to send a PDF file so that it opens up in the body of the email itself? Thanks

    Can anyone tell me how to send a PDF file so that it opens up in the body of the email itself? Thanks

    That is a function of the recipient's e-mail software understanding what your software sent.  If it doesn't it will always show as an icon or attachment.   It is also a function of both your internet provider and their internet provider accepting messages of that size, and a function of their download attachment settings in their e-mail program.  There is no way to guarantee it will appear inline in the attachment.   The best you can do is attach with Windows Friendly format.  To do that, use the attach toolbar icon that looks like a paperclip, (View menu -> Customize toolbar if invisible) on Mac OS X Mail when composing the message.   A checkbox appears in the file dialog box's bottom to make it Windows friendly when you navigate to pick the PDF file.  That makes it as universally compatible as possible.  It still may not appear inline, but at least you are less likely to be incompatible.

  • Why can't I send a pdf file by email?

    Why can't I send a pdf file by email?

    How are you trying to send it? What happens when you try? What version of Reader?

  • What is the best way to send multiple pdf files to my ipad

    what is the best way or app to send multiple pdf files to my ipad, so that I can then combine them into one folder

    I have the app Readdle Docs. It allows you to move PDF files to your device and to move them around on your device. Might check it out. ( I think there's an iPad version of the app, but I have the iPhone version and it works, just not as pretty)
    THere's also Goodreader, but I don't have experience with it to know if it has folder abilities.

  • How can i send a PDF file to my i phone and be able to read it

    How can i send a PDF file to my i phone and be able to read it

    Use the free Adobe Reader for iPhone -> https://itunes.apple.com/us/app/adobe-reader/id469337564?mt=8.
    Clinton

  • How to send the pdf file....

    How to send the pdf file which is an outpu of smart form to sap users.
    How to delete the pdf file as soon as it was sent.

    Have you checked Forums » Community Discussions » Code Snippets 
    I believe there were some examples on converting/sending PDF.
    Or check FM 'SO_DOCUMENT_SEND_API1' and documentation for it.

  • How do I send a PDF File?

    How do I send a PDF File?

    Hi kmshep77,
    You can share public links without a subscription, but to share links with individuals (and therefore get more sophisticated tracking information), you do need a subscription. If your only concern is transferring a file and you don't need tracking info or personalized links, go ahead and use Adobe Send for free! Let us know if you have more questions.
    Best,
    Rebecca

Maybe you are looking for

  • Need Help with complex query and computing values

    I have an issue trying to combine data from several tables. I need help trying to compute the "Total Hours", "Max Pressure" ,"Average Pressure" while displaying the "Manufacturer", "Part Type" , "Serial Number", "District", "Status","Truck Type",and

  • Logical XOR operator in T-SQL (SQL Server 2000)

    Hi all.... I was wondering why SQL Server 2000 lacks a logical XOR operator. Do you have a ready to use function that implements it? How can I program one by myself? I know that A XOR B is equivalent to NOT A * B + A * NOT B. So I tried to create thi

  • Help required in Time mangement Rule writing

    Hi All, The requirement is as follows: The company is going to offer a new type of leave entitlement u2013 Employee Sick Leave.  This new leave entitlement should be given to the active employees in the following Personnel Areas: 1030 -  only Personn

  • Difference in quality between digital preview and exported QT movie

    I am editing a project shot in HD. I have the easy setup configured correctly according to the footage: AVCHD-Apple Intermediate Codec 1920x1080i60 and the rate is 29.97 fps. When I view the project in playback using FCE4's "Digital Cinema Desktop Pr

  • How to use the function module ....

    hi how to use the function module ssf_function_module_name in smartforms