Signing Not Allowed after Enable Forms Fill-In & Save in Adobe Reader

When using Adobe Acrobat X Standard and creating a fillable form that uses digital signature, selecting
File / Save As / Reader Extended PDF /
Enable Forms Fill-In & Save in Adobe Reader
changes the security for Signing to Not Allowed.
When using Adobe Acrobat X Pro and creating a fillable form that uses digital signature, selecting
File / Save As / Reader Extended PDF /
Enable Additional Features
does not change the security for Signing to Not Allowed.
Is there a way I can use Standard so users can use digital signatures in Adobe Reader?

Read this:
http://forums.adobe.com/message/2421282#2421282

Similar Messages

  • Enabling form fill-in & save for Reader

    I'm working with Acrobat XI (11.0.10) and created a form (questionnaire). I need others to open it with Adobe Reader, fill it out and be able to save it afterwards. It seems to work with Adobe Reader 11.0.10 but not with Version 10. So I tried to save it with "save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)..." However, the error "This document could not be Reader Enabled." popped up. Why isn't it working? Is it since I'm using the trial version?

    The trial version is not restricted. Looks like a problem of your form.

  • How to create form in LC to fill and save by Adobe Reader ?

    Hi there,
    please advise me, how I should do form in LifeCycle. I would like to send by e-mail this form, and I would like to be able to open it, fill and save customers by use of the basic Adobe Reader.
    Importantly, the recipient must be able to stop filling it in half and send it on, say, or return to it after a time. When it comes to functions in the same form it is about marked fields, enter text and add files (as attachments).
    Do you have any ideas? Suggestions?
    Best regards,
    Piotr

    You may want to go through this blog http://blogs.adobe.com/livecycle/2013/05/understanding-reader-extensions-licensing.html
    Your usecase can be achieved by using calculations and scripts in LiveCycle Designer created form and using Reader Extensions but go through above blog for licesing as to which product is better for your usecase.
    --Santosh

  • Statement "CALL TRANSACTION" is not allowed in this form.

    Hi
    I have a form in which i want to call a transaction:
      CALL TRANSACTION 'VL32N'  USING bdc_tab
                                                       MODE    'E'
                                                       UPDATE  'S'
                                                       MESSAGES INTO mestab.
    I call this report from within a message and when reaching this statement it fails.
    Now i get this error in ST22:
    POSTING_ILLEGAL_STATEMENT
    Statement "CALL TRANSACTION" is not allowed in this form.
    and afterwards this error:
    DYNPRO_SEND_IN_BACKGROUND
    Screen output without connection to user.
    As i read,it is not allowed to call this kind of statement from within a form and we should use something like:
    RECEIVE RESULTS FROM FUNCTION but i do not know how because i have never before used such call statements.
    thanks

    Hi,
    The bdc table is filled correctly but the CALL TRANSACTION is not alllowed.I think it is because of the call from the Form ENTRY which is called when issuing an message from my transaction.I have read that it is not allowed to have any call transaction,submit or any other statements like these in a function call,and i think that my form ENTRY is seen as a sort of function module.
    Any other opinions?
    With my "call transaction" statement i wanted to open the VL32N Transaction and post a goods receipt.Is there any other way to do this?
    I get this message in the ST22 Transaction:
    This program is triggered in the update task. There, the   
    following ABAP/4 statements are not allowed:                                                                               
    -  CALL SCREEN                                             
    -  CALL DIALOG                                             
    -  CALL TRANSACTION                                        
    -  SUBMIT                                                  
    But i do not know what is ment by update task.All i use are some "export to memory"  statements and this is all.
    Any ideas?
    thanks.
    Edited by: seba seba on Jul 28, 2009 11:22 AM

  • Commenting not allowed after emailing pdfs

    I am fairly new to acrobat.  I am trying to save illustrator files as pdfs in order for clients to comment with stickies on the file.  No matter what security settings I use after emailing the files my document settings change.... comments not allowed....???

    Wired_Bob wrote:
    The option to allow commenting is checked and the document is saved replacing the first exported doc.
    I guess that part of your terminology is confusing. What do you mean by "checked".
    To be sure we're on the same page, by "checked" you mean after opening in Acrobat you went to Comments>Enable for commenting and analysis in Adobe Reader, correct?
    The reason I ask is because if you open it in Acrobat and go to File>Properties and see that commenting is "allowed", that still doesn't mean that it is enabled for Reader users.

  • Statement "CALL SCREEN" is not allowed in this form.

    Hi,
    Could anyone identify the short dump.
    Statement "CALL SCREEN" is not allowed in this form.
    There is probably an error in the program
    "SAPLKKBL".
    This program is triggered in the update task. There, the
    following ABAP/4 statements are not allowed:
    -  CALL SCREEN
    -  CALL DIALOG
    -  CALL TRANSACTION
    -  SUBMIT
    Error in
    "POSTING_ILLEGAL_STATEMENT" " "
    "SAPLKKBL" or "LKKBLU01"
    "K_KKB_LIST_DISPLAY"
    Regards
    Manohar S

    Short text
    Statement "CALL SCREEN" is not allowed in this form.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLKKBL" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    There is probably an error in the program
    "SAPLKKBL".
    This program is triggered in the update task. There, the
    following ABAP/4 statements are not allowed:
    -  CALL SCREEN
    -  CALL DIALOG
    -  CALL TRANSACTION
    |    -  SUBMIT       
    Information on where terminated
    Termination occurred in the ABAP program "SAPLKKBL" - in "K_KKB_LIST_DISPLAY".
    The main program was "RSM13000 ".
    In the source code you have the termination point in line 441
    of the (Include) program "LKKBLU01".
    |    The program "SAPLKKBL" was started in the update system.    
    This is the dump

  • JDBC + MySQL : "Operation Not Allowed After ResultSet Closed"

    I have a very short piece of code. I use one connection to the database. I execute a query, get back a lot of rows, then iterate through the result set and for each row I get some information and then perform an insert into a different table.
    The problem is that the big result set I am iterating through keeps closing sometime during the first iteration. Why? I am using three different statements:
    1) Statement 1 is for the main query I want to iterate through
    2) Statement 2 is for a quick lookup I perform (on a different table) for each item in the iteration.
    3) Statement 3 is for the Insert statement which I perform for each item in the iteration. Again, I insert into a different table and I use "executeUpdate"
    Given the I have three different statements and I am working with three different tables, why does my main result set that I am iterating through keep closing on me?
    Here is the error I am getting:
    java.sql.SQLException: Operation not allowed after ResultSet closed
    at com.mysql.jdbc.ResultSet.checkClosed(ResultSet.java:3603)
    at com.mysql.jdbc.ResultSet.next(ResultSet.java:2468)
    at com.mysql.jdbc.UpdatableResultSet.next(UpdatableResultSet.java:565)
    Thanks for your help.

    I have a very short piece of code. I use one
    connection to the database. I execute a query, get
    back a lot of rows, then iterate through the result
    set and for each row I get some information and then
    perform an insert into a different table.Sounds like a classic case of making Java do what the database was made to do.
    I'd bet you can do this in a single INSERT with a SELECT in the database in one network roundtrip. The "quick lookup" might be a JOIN or a sub-SELECT. When you do a query, bring N rows back to the middle tier, then do an INSERT for each row that you retrieve it means (N+1) network roundtrips if you don't batch your INSERTs. I'd have a SQL expert give your code a look.
    The problem is that the big result set I am iterating
    through keeps closing sometime during the first
    iteration. Why? I am using three different
    statements:
    1) Statement 1 is for the main query I want to
    iterate through
    2) Statement 2 is for a quick lookup I perform (on a
    different table) for each item in the iteration.
    3) Statement 3 is for the Insert statement which I
    perform for each item in the iteration. Again, I
    insert into a different table and I use
    "executeUpdate"
    Given the I have three different statements and I am
    working with three different tables, why does my main
    result set that I am iterating through keep closing
    on me?Maybe your ResultSet or Statement goes out of scope. Do the Statements share a Connection?
    %

  • Java.lang.IllegalStateException: forward() not allowed after buffer has com

    Dear all,
    The error "java.lang.IllegalStateException: forward() not allowed after buffer has committed."
    was reported by my resin-1.2.3 server.
    Can anyone give me a suggestion to overcome this problem.
    Regards
    Ravikumar

    My guess would be that this is not a jdbc error.
    First there is no SQLException.
    Second IllegalStateException is something that can occur in Servlet use for various reasons.
    Perhaps you have other information that suggests it can only be JDBC?

  • Bridge cc will not open after trying to add patch aom package (adobe output module) to workspace

    bridge cc will not open after trying to add patch aom package (adobe output module) to workspace. this patch was recommended by adobe help to allow creating pdf presentations. the help stated bridge cc was shipped without this and to download aom package win 64. I tried that, and either did something wrong or? I deleted bridge cc 64 bit, then went to cc and downloaded bridge cc (not sure if it is 32 or 64) and the program still does not open. any ideas?

    There are lots of threads on this.  Do a web search.

  • Error encountered while signing. Windows cryptographic service provider reported an error. Object not found. Error code:2148073489. Windows 7, Adobe Reader XI, Symantec PKI, Smart Card and CAC. I have seen other threads for this error but none have a reso

    Error encountered while signing. Windows cryptographic service provider reported an error. Object not found. Error code:2148073489. Windows 7, Adobe Reader XI, Symantec PKI, Smart Card and CAC. I have seen other threads for this error but none have a resolution. Any help would be appreciated.
    Sorry for the long title, first time poster here.

    This thread is pretty old, are you still having this issue?

  • How do I enable a LiveCycle PDF form to be saved in Adobe Reader?

    I have an interactive PDF form that I created in LiveCycle. However, when it is opened with Adobe Reader, the user is unable to save it. They can only print from Reader. How do I enable the LiveCycle PDF form to be saved in Adobe Reader?

    You have to add save rights with Acrobat.
    Open you form in Acrobat and then save it via File > Save As Other > Reader Extended PDF > Enable More Tools.

  • I have paid for a year subscription, but all the PDF's I attempt to export to Word give me a "Conversion Error" message, citing that the "file's security settings do not allow export." I want a refund. Adobe, please advise. Thank you.

    I have paid for a year subscription, but all the PDF's I attempt to export to Word give me a "Conversion Error" message, citing that the "file's security settings do not allow export." I want a refund. Adobe, please advise. Thank you.

    Hi la recruiter,
    There are a few types of files that Acrobat can't convert--and PDF files with security applied is one on them. I'm happy to cancel your subscription, if you decide that it's not going to work out for you. Please confirm that you'd like me to proceed with the cancelation, and I'll take care of it right away.
    Best,
    Sara

  • Batch file enable for commenting and analysis in Adobe Reader

    I have over 18000 GeoPDFs created and want to enable for commenting and analysis in Adobe Reader.  Can anyone step me through how to set this up in Adobe LiveCycle?

    To enable the Commenting in Adobe Reader you can either use Acrobat or LiveCycle Reader Extentions.
    But, in Acrobat (even in Acrobat X) you cannot enable those Usage Rights via batch.
    This means you will have to do this for each file separately.
    Attention: The commenting will only be enabled for static forms (PDF-forms), not for dynamic forms (XFA-forms)!
    Possible the LiveCycle Reader Extentions can do that, but this product is very, very expensive and I don't have it.

  • "Enable for Commenting and Analysis in Adobe Reader

    Hi all,
    Adobe Acrobat Pro Extended has a feature to enable measurements and comments in a file when that file is then subsequently opened in Reader.
    It is in Acrobat Pro Extended under Comments -> Enable for Commenting and Analysis in Adobe Reader
    My question is, if I convert large batches of files to PDF, how can I enable measurements and comments for Adobe Reader without opening each file and selecting that option from Adobe Acrobat Pro Extended?
    Thanks for any info,
    Jesse Perry

    Try the Batch Process feature in Acrobat Pro Extended. You'll still have to do it after the files are converted, but it may keep you from having to set that feature one PDF at a time. Go to Advanced > Document Processing > Batch Processing...
    This 'might' be able to do what you need.

  • After updating to the latest version of Adobe Reader, I am supposed to see the contents of the documents, but I can't.

    I am supposed to be able to see the documents of the pdf after updating to the latest version of Adobe Reader, but I can't.
    Can you help me with this?

    Windows.
    Adobe Reader XI. 
    When I open this, http://www.cic.gc.ca/english/pdf/kits/forms/IMM5710E.pdf   I am supposed to see the contents.
    Thanks in advance.

Maybe you are looking for

  • About crystal report viewer

    Hello, I use VS2010 and it not support Crystal Report so I install "SAP Crystal Reports, version for Visual Studio 2010 - Standard" but after installed when I create project, the Toolbox still not appear crystal report viewer. What can I do to it app

  • Process Order Confirmation Issues

    Dear gurus, Can we withdraw componet material which is in inspection lot when we do porcess order confirmation? If so, how can we do that? I mean that which movement type can we use. Any help would be appreciated. Regards, Tiger

  • What type of tables are stored in TVDIR ???

    Hi Experts,                I have created one custom table " ZEMPLOYEE ". I activated it succesfully without any type errors.But it is not found in this table TVDIR. What might be the reason ? <b>What type of tables are stored in TVDIR ???</b> Regard

  • Screen exit in badi FTR_CUSTOMER_EXTENT for tcode FTR_EDIT

    Hi, I need to add new tab to standard screen interest rate instrument (SAP t-code FTR_EDIT).  In the new tab i need to add input parameter to save customised field in table vtbfha. I'm using SAP ECC6. When searching for any user exit or badi, i found

  • How to find the sapscripts using certain subroutines?

    Hi all, I have to find out the list of sapscripts using a subroutine of a program, i.e. inside the sapscripts, there is a script "perform XXX in program YYY". Any quick method to find out a list of sapscripts using subroutine XXX with program YYY? Th