Lock fields after send a PDF file

Hello all,
I have done an application that consists in fill in many fields using Adobe LiveCycle Designer 8.0 program.
After many fields are filled, I click on a Regular button that sends an e-mail.
When I receive the e-mail, I download the attached pdf file to a determined folder.
The problem is that when I open this generated PDF I am able to edit the fields.
Is there any way to lock fields after clicking the Send button?
Thanks in advance.
Best regards,
Roberto

After your code for emailing the form, place additional line of script for making the form as editable..
Language: Java Script/ FormCalc
<parentSubform>.access = "readOnly";
parentSubform is the root subform node of your form..
Thanks
Srini

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.

  • 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

  • How to change the font and size in the fillable field of an encrypted PDF file?

    hi!
    I’d like to change the font and size in the fillable field of an encrypted PDF file I-485 from www.uscis.gov/files/form/i-485.pdf
    I’m using Adobe Acrobat Pro 9 in Windows XP. I firstly tried Adobe LiveCycle Designer, but the I-485 file requires password to be opened, which I don’t know.
    Then I tried to print it to a PDF file, and use the Typewriter tool to fill in the form. But got error message while printing it to PDF file:
    This PostScript file was created from an encrypted PDF file.
    Redistilling encrypted PDF is not permitted.
    The I-485 file can be exported to unencrypted postscript file, but got the same error message while trying to open the ps file.
    I don’t know much about pdf file, can anyone please help?
    Thanks a lot!

    Ask the creator of the file for a unprotected version.

  • Why am I unable to select within the URL bar of a new tab after opening a .pdf file in Firefox 4?

    To repeat the problem:
    1.) Open a .pdf file in Firefox 4
    2.) Open a new tab by using the (+) tab button
    3.) Try to select within the URL bar (unsuccessful)
    I cannot seem to direct my browser to a new website in a new tab after viewing a .pdf file within the browser.

    Restore your default toolbar by going to Customize - Restore Default Set. I just found it out myself.

  • 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

  • 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 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

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

Maybe you are looking for

  • Oracle 11.1.0.7.0 patch 5 for windows 2003 x64.. Please help.

    Hello All I have Oracle EE 11.1.0.7.0 running on Windows 2003 x64 server plus ASM, and I want to apply patch 5, so that it becomes 11.1.0.7.5. I came to know from Oracle Support Services, Windows patche comes as bundled patchset, but I am not sure wh

  • No user menu available in PI 7.1

    Hi, in a new installed PI 7.1 I logged on with my user (profile SAP_ALL), but have only the SAP menu and no user menu enabled. I already checked table USERS_SSM with SM30 like described in note 380029, but it seems to be ok. What is missing for enabl

  • Will I need to buy new SIM card for iPhone 4?

    Will I need to buy a new "micro-sim" for the iPhone 4, or is a sim card already included?

  • How to listen to 4th Gen Nano via  Bose Wave Radio

    I am not very good with modern technology so would appreciate help from you experts please. We have just bought a nano and would like to connect it to the Bose wave radio which has good sound. The bose is the original model, about 7 years old with bu

  • JDBC + Mandrake Linux + Mysql + netbeans

    I'm trying to conecto to a mysql server using the following code of netbeans. It compiles, but I got a java.lang.NoClassDefFoundError on execution time. Does anyone have any clue of how to solve it? (I got the netbeans+sdk package, is it complete? Ma