Can I send my form as A PDF?

I want to use this software for a third party signiture.  can it be sent as a pdf?

FormsCentral does support PDF workflows but doens't support signature fields.
You should look into EchoSign https://www.echosign.adobe.com/en/home.html
Gen

Similar Messages

  • How can I unactivate a form in a pdf so I can share an uncustomizable document after filling it?

    How can I unactivate a form in a pdf so I can share an uncustomizable document after filling it?

    Thanks George, this seem to be what I was looking for!
    But when I try to flatten the pdf I get the following message : "security settings for digital signatures in this file prevent flattening"
    I try to save a copy and change the security settings and it still doesnt work... what I'm missing here?
    Thanks

  • H can we send script form to client through mail.

    h can we send script form to client through mail.

    <<removed by moderator>>
    Search SDN for more details on these...
    Thanks,
    Anmol.
    Edited by: kishan P on Apr 6, 2011 11:49 AM

  • Can Anybody Send Me The Latest Testking Pdf Of  1z0-033 (Performance Tuning

    Hello,
    Can Anybody Send Me The Latest Testking Pdf Of 1z0-033 (Performance Tuning
    my email address is asiforacle [email protected]
    Regards,
    Asif Iqbal
    Software Engineer. ( Karachi, Pakistan ).

    The answer is surely NO but what I would like to ask for the sake of curiosity , why did you ask about Performance Tuning questions over Sql /Plsql forum , not on Database General Forum? Not that you should go there now and ask, just curious.
    Tell you what, read the free book(yup free). Here it is,
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96533.pdf
    You won't need anything else to read, not even that testking stuff too.
    HTH
    Aman....

  • How can i send Email with attacment in pdf/xls with pass word protect

    Hi
    Can i send Email with attachment in pdf/xls with password protect in oracle apps .Here we want monthly stmt to send the customer with pdf/Xls with
    password protect.Is it possible if yes how
    Thanks

    One option is to convert the report to XML Publisher (which you might have already done as you are asking PDF/XLS), then look into the links below:
    http://blogs.oracle.com/xmlpublisher/2007/09/11/
    http://blogs.oracle.com/xmlpublisher/2010/02/securing_burst_output_document.html
    http://blogs.oracle.com/xmlpublisher/2007/06/merge_and_secure_pdfs.html

  • I can't save my forms as a pdf?

    I can't save my forms in form central as a pdf?

    Thank you for the answer.
    I´m subscribed for Photoshop and Lightroom (Photography). I used that account/login when I created my form.
    I successfully managed to create and export the form as a pdf about 1-2 weeks ago with the same account and now it suddenly won´t work?
    I tried to create a new form but it says that I can only create one form with a free account?
    I´m not happy that formcentral will shut down, but I thought I at least could export a few forms that I need before June.
    I hope that this can be fixed.
    Regards,
    Daniel

  • Sending a form as a  pdf  via email with the BCS interface

    Hi,
    I would like to send a sapscript form as a pdf to a mail recipient using the BCS interface.
    I started to investigate the BCS.
    When using the function - CLOSE_FORM - I get the OTFDATA table - how do I send it as a pdf file with BCS ?
    How different is sending an Ms-Word attachment ?
    Thanks so much.
    Promise to award points...
    Ruthie.

    Hai
    Go through the following Code that will help you
    REPORT ZRICH_0003.
    DATA: ITCPO LIKE ITCPO,
          TAB_LINES LIKE SY-TABIX.
    Variables for EMAIL functionality
    DATA: MAILDATA   LIKE SODOCCHGI1.
    DATA: MAILPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
    DATA: MAILHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
    DATA: MAILBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: MAILTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: MAILREC    LIKE SOMLREC90 OCCURS 0  WITH HEADER LINE.
    DATA: SOLISTI1   LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    PERFORM SEND_FORM_VIA_EMAIL.
          FORM  SEND_FORM_VIA_EMAIL                                      *
    FORM  SEND_FORM_VIA_EMAIL.
      CLEAR:    MAILDATA, MAILTXT, MAILBIN, MAILPACK, MAILHEAD, MAILREC.
      REFRESH:  MAILTXT, MAILBIN, MAILPACK, MAILHEAD, MAILREC.
    Creation of the document to be sent File Name
      MAILDATA-OBJ_NAME = 'TEST'.
    Mail Subject
      MAILDATA-OBJ_DESCR = 'Subject'.
    Mail Contents
      MAILTXT-LINE = 'Here is your file'.
      APPEND MAILTXT.
    Prepare Packing List
      PERFORM PREPARE_PACKING_LIST.
    Set recipient - email address here!!!
      MAILREC-RECEIVER = '[email protected]'.
      MAILREC-REC_TYPE  = 'U'.
      APPEND MAILREC.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = MAILDATA
                PUT_IN_OUTBOX              = ' '
           TABLES
                PACKING_LIST               = MAILPACK
                OBJECT_HEADER              = MAILHEAD
                CONTENTS_BIN               = MAILBIN
                CONTENTS_TXT               = MAILTXT
                RECEIVERS                  = MAILREC
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                OPERATION_NO_AUTHORIZATION = 4
                OTHERS                     = 99.
    ENDFORM.
         Form  PREPARE_PACKING_LIST
    FORM PREPARE_PACKING_LIST.
      CLEAR:    MAILPACK, MAILBIN, MAILHEAD.
      REFRESH:  MAILPACK, MAILBIN, MAILHEAD.
      DESCRIBE TABLE MAILTXT LINES TAB_LINES.
      READ TABLE MAILTXT INDEX TAB_LINES.
      MAILDATA-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( MAILTXT ).
    Creation of the entry for the compressed document
      CLEAR MAILPACK-TRANSF_BIN.
      MAILPACK-HEAD_START = 1.
      MAILPACK-HEAD_NUM = 0.
      MAILPACK-BODY_START = 1.
      MAILPACK-BODY_NUM = TAB_LINES.
      MAILPACK-DOC_TYPE = 'RAW'.
      APPEND MAILPACK.
    Creation of the document attachment
    This form gets the OTF code from the SAPscript form.
    If you already have your OTF code, I believe that you may
    be able to skip this form.  just do the following code, looping thru
    your SOLISTI1 and updating MAILBIN.
      PERFORM GET_OTF_CODE.
      LOOP AT SOLISTI1.
        MOVE-CORRESPONDING SOLISTI1 TO MAILBIN.
        APPEND MAILBIN.
      ENDLOOP.
      DESCRIBE TABLE MAILBIN LINES TAB_LINES.
      MAILHEAD = 'TEST.OTF'.
      APPEND MAILHEAD.
    Creation of the entry for the compressed attachment
      MAILPACK-TRANSF_BIN = 'X'.
      MAILPACK-HEAD_START = 1.
      MAILPACK-HEAD_NUM = 1.
      MAILPACK-BODY_START = 1.
      MAILPACK-BODY_NUM = TAB_LINES.
      MAILPACK-DOC_TYPE = 'OTF'.
      MAILPACK-OBJ_NAME = 'TEST'.
      MAILPACK-OBJ_DESCR = 'Subject'.
      MAILPACK-DOC_SIZE = TAB_LINES * 255.
      APPEND MAILPACK.
    ENDFORM.
         Form  GET_OTF_CODE
    FORM  GET_OTF_CODE.
      DATA: BEGIN OF OTF OCCURS 0.
              INCLUDE STRUCTURE ITCOO .
      DATA: END OF OTF.
      DATA: ITCPO LIKE ITCPO.
      DATA: ITCPP LIKE ITCPP.
      CLEAR ITCPO.
      ITCPO-TDGETOTF = 'X'.
    Start writing OTF code
      CALL FUNCTION 'OPEN_FORM'
           EXPORTING
                FORM     = 'ZTEST_FORM'
                LANGUAGE = SY-LANGU
                OPTIONS  = ITCPO
                DIALOG   = ' '
           EXCEPTIONS
                OTHERS   = 1.
      CALL FUNCTION 'START_FORM'
           EXCEPTIONS
                ERROR_MESSAGE = 01
                OTHERS        = 02.
      CALL FUNCTION 'WRITE_FORM'
           EXPORTING
                WINDOW        = 'MAIN'
           EXCEPTIONS
                ERROR_MESSAGE = 01
                OTHERS        = 02.
    Close up Form and get OTF code
      CALL FUNCTION 'END_FORM'
           EXCEPTIONS
                ERROR_MESSAGE = 01
                OTHERS        = 02.
      MOVE-CORRESPONDING ITCPO TO ITCPP.
      CALL FUNCTION 'CLOSE_FORM'
           IMPORTING
                RESULT  = ITCPP
           TABLES
                OTFDATA = OTF
           EXCEPTIONS
                OTHERS  = 1.
    Move OTF code to structure SOLI form email
      CLEAR SOLISTI1. REFRESH SOLISTI1.
      LOOP AT OTF.
        SOLISTI1-LINE = OTF.
        APPEND SOLISTI1.
      ENDLOOP.
    ENDFORM.
    Regards
    Sreeni

  • How can i send a Sapscript as an PDF through NACE

    Hi experts,
    I have an requirement that i have to send a  Invoice sapscript output in pdf format on mail with
    Transaction NACE.
    How can it be done?
    Regards

    u need to configure ur output as external send (medium 5) in nace look at this coe its for smatforms but for scripts u can proceed in similar way.
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/mail%2bsend%2bthrough%2boutput%2bcontrols
    also look at this code for reference
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/converting%252bscripts%252boutput%252binto%252bpdf%252bform
    кu03B1ятu03B9к
    Edited by: kartik tarla on Feb 27, 2009 2:28 PM

  • I can't send a message with a PDF attachment using Earthlink with Firefox It works with IE and Earthlink

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/937363]]</blockquote>
    I can send JPEG and .doc files, but cannot send PDF files. It has just happened again. it is a random occurrence.
    If I open Earthlink e-mail in IE, all is OK. If I use hotmail with Mozilla, I can send PDF files. It is apparently a problem only between Mozilla and Earthlink

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • Can you "deconstruct" XML form tabs from PDFs?

    OK, I'll try this here.. sorry for posting this all over but I'm near desperate to find an answer
    I have a pdf that was created Acrobat Designer 7.1. It uses, for lack of a better term, tabs. You click on a prticular field and the document changes to a new set of pages. These pages aren't visible any other way.
    I can not  save these pages alone. I can only save the document as a whole.
    I need to pull these out with text intact for comparison purposes. (DocuProof Enterprise)
    Any help is greatly appreciated.

    Hi,
    If you know in advance what fields you want exported you could set these objects binding to Name/Normal (in the Object > Binding palette) in Designer. Other fields would have a binding set to None. This would reduce the amount of data exported.
    However, please note that fields with a data binding of None, will never participate in the data processing.
    Niall

  • Can't Send Mail form business catalyst webmail

    My business catalyst client has several email accounts and one of them cannot send email. This is a new problem that just occured. It has been working correctly for months. 
    I logged into webmail and I get this error when trying to send an email.
    We were unable to send your message. Please try again later.
    This same provlem was reported by eric_413 without a resolution.
    http://forums.adobe.com/message/6008518#6008518
    Paul

    Hi Paul
    Please reach out to support using this url, click on I still need help and then start chat :
    http://helpx.adobe.com/contact.html?product=business-catalyst&topic=signing-in-to-my-accou nt-or-registering-my-product
    Thanks,
    Sanjit

  • Why can't I send a fill in application (PDF file)?

    I can't send a fill in application (PDF file) in Adobe Reader from my Mac (version 11.0.04), but it works fine from my PC (version 11.0.05). Why?
    I get this massage (danish):
    "Der opstod en fejl under afsendelsen: Indhold af typen text/html; charset=utf-8 kan ikke behandles."
    How do I get it to work?

    It doesn't go through my emil. The PDF file just connects to the internet and "sends" is.
    On the picture, you can se the button I press (underneath the message box), and in the corner you can see it trying to send the data.  

  • How can I turn a form that is open on my browser into a PDF doc if I cannot save it onto my computer

    How can I turn a form that is on my Safari browser into a PDF if I cannot save the form onto my computer?

    Acrobat XI Pro has a "create PDF from a web page" feature. If you have Acrobat XI Pro installed perhaps you can "capture" the web form as a PDF. If so then this PDF can (of course) be saved to the local machine's HDD.
    Be well...

  • Saving a form design as pdf

    I've designed a form using a template form. How can i save the form as a pdf for my survey?

    Could you please send me the following information:
    Operating System
    Account type/level
    Acrobat XI version (ie., 11.0.2, 11.0.0)
    FormsCentral build number (go to menu Help-> About FormsCentral)
    Name of the Template you used
    Precise steps you take leading up to the error
    For your protection, you can send the information directly to me at [email protected]
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • How to send a form in DW 7?

    Hi! I'm from Spain and I'd like to be understanded if possible. I've got Dreamweaver MX 7. I'd like to know how to send directly the form:
    I design a form, I put a text box with "name", "e-mail" and "comment" for example and the button "send". If I test it, when I press send, the Outlook (I've got windows XP) is opened with the information.written in the form.
    Can I send the form without opening the Outlook?
    It is possible to do it with HTML language?
    Where do I have to write the script?
    If it isn't possible in HTML, how do I do it in PHP?

    http://www.cmiwebstudio.com/adobe_extensions/dreamweaver_easy_php_mailer.php
    http://www.cmiwebstudio.com/adobe_extensions/dreamweaver_easy_php_mailer_pear.php
    these extensions make it incredibly easy to do this very task.  determine first how your server email is being handled... through phps built in mail function, or does it require smtp authentication to relay mail.

Maybe you are looking for

  • How do I ammend slow bootup time on my Macbook Pro??

    My comp takes 3-5 mins to boot up. I want to know how i can speed up boot up time?

  • Single Line Report issues

    Hi, folks. I have a table of employees and a table of certifications. An employee may have 0-15 certifications (and dates completed). I'm trying to generate a single line report like this: NAME - CPR DATE - FIRST AID DATE - Etc I've made an evaluatio

  • Best way to configure a network comprising WLSE and many APs ?

    Hi the Cisco NetPro community, I would like to have a discussion with you on the best way to configure a network containing a WLSE and a large amount of Access Points. The network I want to configure comprises some subnetnorks, each comprising about

  • Picture Indicator slows down front panel

    Hello folks, I would like to use the picture functions vi's to draw alot of dots on a bitmap. Problem is, that after a certain amount of dots (>10k) the vi starts to slow down if I show the indicator of the picture. However when I use a picture to pi

  • Where to find iPod touch 5 photos on computer?

    On Thursday I backed up my iPod touch 5 to my windows 8 computer. Today I went to the Apple Store Genius Bar, and I was given a new iPod because of internal problems. Now I'm trying to get all my old data onto the new iPod, but I can't find the pictu