Adobe 8 - Form create failed because document requires password

I created a one page form in LifeCycle designer 8 and it requires a open passowrd due to HIPPA requirements. When I go to distribute the form in adobe 8 professional and select "save and send", I can create the "dataset" pdf but when it tries to create the "pub" PDF I get the following error:
Failed to create a data set. Detailed error: This document requires authentication (e.g. a password).
When I opened the form PDF, it requested a password and it took the one I created in lifecycle designer.
If I remove PDF security in lifecycle designer, the 2 datasets are created; dataset & pub. If I try top add security to this pub file it fails due to reader 8 extensions.
How do I create a form with password open protection from lifecycle designer through professinal 8 and create the fillable and savable PDF ->pub.
Thanks much

Yes, I have set the PK. Actually this is happening when the number of columns are more than 63 columns. After I reduce the number of column, it is working fine.
Is it the actual problem???
fyi, I'm using jboss as the Application Server...

Similar Messages

  • Cannot load adobe indesign cc 2014 because it requires version 10.1 or later of the dynamic documents.indesignplugin plug-in. please contact vendor for compatible version of dynamic documents.indesignplugin

    cannot load adobe indesign cc 2014 because it requires version 10.1 or later of the dynamic documents.indesignplugin plug-in. please contact vendor for compatible version of dynamic documents.indesignplugin

    I had local IT install the software, I am unaware that any problems came up when installing. The error came up when trying to install updates from the Creative Cloud. I reinstalled InDesign and I think the problem was solved. I am running a Mac with OS X v10.9.5

  • Adobe form created in LiveCycle does not remember user input

    Adobe form created in LiveCycle does not remember user input when the file has been re-opened after it has been saved.
    Example:
    "Check box" that has been selected and who have registered Action script (may be that it should be disabled), seems to be reset when the file is re-opened, although it apparently is checked.
    Are there settings or script that can prevent this?

    Hi there,
    usually if the values are not kept in form after saving and re-opening the form, it would be because of your code... or because it is not Reader Extended PDF...
    If your code has a function which is to return a value to your field without it to be working based on your Design, it will reset any data..(variables)
    Which means...
    e.g.: You have an array/var/JSONobject which you populate varying on the data entered in the design, as long as you are in the actual form, without closing and re-opening the form, it will keep all values inside that array / variables / JSONobject. But, once the form closed and re-opened, if you have a function that returns a value to your field, whatever the field, from any variable in the script it will return nothing because every variables are reset. To avoid such a thing, you must repopulate all variables that were assigned previously before closing the PDF Form. To do so, I recommend to have a page(hidden) which contains every important values according to that function and you must repopulate those variables according to the values in the keepVar page...
    If you do not have any function that returns a value to a field based on your variables, this is not the solution you are looking for and I am not aware of the reason why it behaves like this... Maybe more information on the behaviour of your form would help locate the issue...
    Hope this help

  • SOS: javax.ejb.CreateException: Create failed because primary key is null

    Hello,
    I am desperately trying to get my application server to create a record through CMP 2. My app server is JRun 4.
    Here is the client:
    package com.parispano.tests;
    import java.util.Date;
    import java.util.Properties;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import com.parispano.account.entity.Account;
    import com.parispano.account.entity.AccountHome;
    public class ClientEJBDeuxTemp {
      public static void main(String[] args) {
        System.out.println("\nBegin account DemoClient...\n");
        try {
          // Create A Demo object, in the server
          // Note: the name of the class corresponds to the JNDI
          // property declared in the DeploymentDescriptor
          // From DeploymentDescriptor ...
          // beanHomeName demo.DemoHome
          Context ctx = getInitialContext();
          AccountHome ahome = (AccountHome) ctx.lookup("AccountEJBHome");
          //System.out.println("Creating Demo\n");
          Account account = ahome.create("toto","toto", "toto","toto","toto","toto","toto","toto","toto","toto","toto",new Date(),new Date());
        catch (Exception e) {
          System.out.println(":::::::::::::: Error :::::::::::::::::");
          e.printStackTrace();
        System.out.println("\nEnd DemoClient...\n");
      static String user     = "admin";
      static String password = "admin";
      static String url      = "ordi:2908";
       * Gets an initial context.
       * @return                  Context
       * @exception               java.lang.Exception if there is
       *                          an error in getting a Context
      static public Context getInitialContext() throws Exception {
        Properties p = new Properties();
        p.put(Context.INITIAL_CONTEXT_FACTORY, "jrun.naming.JRunContextFactory");
        p.put(Context.PROVIDER_URL, url);
        if (user != null) {
          System.out.println ("user: " + user);
          p.put(Context.SECURITY_PRINCIPAL, user);
          if (password == null)
            password = "";
          p.put(Context.SECURITY_CREDENTIALS, password);
        return new InitialContext(p);
    }and here is the exception I get:
    javax.ejb.CreateException: Create failed because primary key is null
    I don't understand why I get this as the primary key is "toto" and therefore is not null.
    Here is the DD:
    <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
      <ejb-jar>
        <display-name>Account EJB</display-name>
        <enterprise-beans>
          <entity>
            <display-name>Account EJB</display-name>
            <ejb-name>AccountEJB</ejb-name>
            <home>com.parispano.account.entity.AccountHome</home>
              <remote>com.parispano.account.entity.Account</remote>
            <local-home>com.parispano.account.entity.AccountLocalHome</local-home>
            <local>com.parispano.account.entity.AccountLocal</local>
            <ejb-class>com.parispano.account.entity.AccountEJB</ejb-class>
            <persistence-type>Container</persistence-type>
            <prim-key-class>java.lang.String</prim-key-class>
            <reentrant>False</reentrant>
            <cmp-version>2.x</cmp-version>
            <abstract-schema-name>account</abstract-schema-name>
            <cmp-field>
            <description>Login</description>
            <field-name>login</field-name>
            </cmp-field>
            <!-- -->
            <cmp-field>
              <description>Password</description>
              <field-name>password</field-name>
            </cmp-field>
            <cmp-field>
              <description>Surname</description>
              <field-name>surname</field-name>
            </cmp-field>
            <cmp-field>
              <description>First Name</description>
              <field-name>firstName</field-name>
            </cmp-field>
            <cmp-field>
              <description>Address One</description>
              <field-name>addressOne</field-name>
            </cmp-field>
            <cmp-field>
              <description>Address Two</description>
              <field-name>addressTwo</field-name>
            </cmp-field>
            <cmp-field>
              <description>Postcode</description>
              <field-name>postcode</field-name>
            </cmp-field>
            <cmp-field>
              <description>City</description>
              <field-name>city</field-name>
            </cmp-field>
            <cmp-field>
              <description>Country</description>
              <field-name>country</field-name>
            </cmp-field>
            <cmp-field>
              <description>Telephone</description>
              <field-name>telephone</field-name>
            </cmp-field>
            <cmp-field>
              <description>Email</description>
              <field-name>email</field-name>
            </cmp-field>
            <cmp-field>
              <description>Inscription Date</description>
              <field-name>inscriptionDate</field-name>
            </cmp-field>
            <cmp-field>
              <description>Last Visit Date</description>
              <field-name>lastVisitDate</field-name>
            </cmp-field>
              <primkey-field>login</primkey-field>
          </entity>
        </enterprise-beans>
      </ejb-jar>Can anyone tell me why I am getting this exception please?
    Thanks in advance,
    Julien Martin.

    Yes, I have set the PK. Actually this is happening when the number of columns are more than 63 columns. After I reduce the number of column, it is working fine.
    Is it the actual problem???
    fyi, I'm using jboss as the Application Server...

  • Installation failed because a required role service or feature could not be installed. WS 2008

    Hi guys, i have a problem with a Server Windows 2008 SP1 Standar x86, when i tried to reinstall the role of WSUS 3.1 the ServerManager show this Error and i could install again the role.
    Thanks for your help:
    The Error of the event viewer is the nexT:
    Log Name:      Setup
    Source:        Microsoft-Windows-ServerManager
    Date:          27/03/2009 05:53:21 p.m.
    Event ID:      1617
    Task Category: None
    Level:         Error
    Keywords:     
    User:          DOMAIN\Administrator
    Computer:      SOOB.DOMAIN.COM
    Description:
    Installation failed. A restart is required.
    Roles:
    Web Server (IIS)
       Error: The server needs to be restarted to undo the changes.
    Windows Server Update Services
       Error: Installation failed because a required role service or feature could not be installed.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-ServerManager" Guid="{8c474092-13e4-430e-9f06-5b60a529bf38}" />
        <EventID>1617</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x4000000000000000</Keywords>
        <TimeCreated SystemTime="2009-03-28T00:53:21.056Z" />
        <EventRecordID>23</EventRecordID>
        <Correlation />
        <Execution ProcessID="1100" ThreadID="2736" />
        <Channel>Setup</Channel>
        <Computer>SOOB.DOMAIN.COM</Computer>
        <Security UserID="S-1-5-21-696557799-1245526101-3093723089-500" />
      </System>
      <UserData>
        <EventXML xmlns:auto-ns3="http://schemas.microsoft.com/win/2004/08/events" xmlns="Event_NS">
          <message>
    Roles:
    Web Server (IIS)
       Error: The server needs to be restarted to undo the changes.
    Windows Server Update Services
       Error: Installation failed because a required role service or feature could not be installed.
    </message>
          <identifiers>WsusRole, WebServerRole, WebServerComponent, CommonHttpFeatures, StaticContent, DefaultDocument, Performance, DynamicContentCompression, ApplicationDevelopment, AspNetPages, InternetServiceApiExtensions, InternetServiceApiFilters, NetFxExtensibility, SecurityComponents, RequestFiltering, WindowsAuthentication, WebServerManagementTools, InternetInformationServices6ManagementCompatibility, InternetInformationServices6DatabaseCompatibility</identifiers>
        </EventXML>
      </UserData>
    </Event>
    Alberto

    The above suggestions did not resolve issue in my case;
    I did the below to resolve this after lot of research and same worked for me in 3 servers;
    1)     
    Disable UAC  by Disabling the setting "User Account Control: Run all administrators in Admin Approval Mode", under Computer
    Configuration\Policies\Windows Settings\Security Settings\Local Policies\Security Options. And reboot the server
    2)     
    Remove all existing installed  features of dotnet 3.5 and reboot the server
    3)     
    Install Windows Process activation service using add features and reboot the server
    4)      NowInstalled Web(IIS)
    role  features which resulted in successfull installation

  • Install fails because of SA password - horrible installer experience

    I'm really disappointed in the installer experience for SQL Server Express. I was prompted to enter a SA password. I did. It went through the download, installed, asked me to reboot, etc, and ended at a failure. Why? Because my SA password wasn't strong
    enough. Why in the heck didn't it tell me that when it prompted? 

    Hi,
    Antivirus software or password policy check failure could make the installation failed.
    I suggest you disable the antivirus software and follow the below steps to disable the password policy enforcement feature, then try install again, also check the setup log if installation failed
    Disable the password policy enforcement feature for the SQL Server login, please take these steps:
    1) Create a reg key by name “SQLArg3” of type REG_SZ in the registry location 
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\<Instance ID Created by the install>\MSSQLServer\Parameters and add the value “-T4606”
    Note: SQLArg3 should be replaced with a value higher than existing keys. So if you already have SQLArg0, SQLArg1, SQLArg2, SQLArg3 then add the value above with SQLArg4
    2) Stop SQL Server Service and click “Retry” in the setup window and setup should proceed further and complete successfully.
    Additional information:
    http://blogs.msdn.com/b/sqlsakthi/archive/2010/09/02/login-failed-for-user-sa-while-installing-sql-server-2005.aspx
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Reusability of Adobe form created in SFP in a WebDynpro Java application

    Hi Experts,
    Can some one advise me how I can use the pdf form created in ABAP side (Transaction SFP) in the WebDynpro Java application?
    What is the procedure to include this pdf object in the WebDynpro application development?
    Regards,
    Shobhit

    Hi,
    You can add customised UI elements by a right click in your library pallette/ ot by dragging the ui elelments into the pallette. Like wise you can put your layout into the library pallette and reuse them. You may refer the Adobe life cycle designer (ALCD) help for it.
    the second option i meant was after designing the layout in the SFP transaction, click on the PDF preview tab in the layout. Save the PDF.
    NOw on developing the Java application, open the ALCD and use tools-> import to import the PDF you have saved.
    Regards,
    Anto.

  • ADOBE Forms (Creating Dynamic Forms)

    I am currently creating a form using Adobe Professional 8. IT is three pages each created on separate form files (.pdfx). I combine the files into a PDF package.
    I want to link up the pages together so that when the user types in a value on the first page that it also appears on another box on the second and third page.
    I also want it to be filled using Adobe Acrobat Reader and saved, then submitted.
    If you want me to send you the forms so you know what im talking about please let me know.
    Let me know if you have any questions, comments, or concerns.
    Thanks for all your help in advance!
    Chris P.

    Ensure the fields which are required to be filled on multiple pages have
    the same field name, use the distribute form option and you're done.
    Jon

  • Size of Adobe form created

    I am a potential customer. But, had a question before signing up. Is there a size limit to the form you create through Adobeform? For an example, can the form be 7 pages, if needed. Thank you for any information.

    There is no limit on the number of pages or questions/fields you can have on a form.
    Randy

  • Adobe Forms in EP

    Hello! I'm very new to Adobe Forms in SAP.
    We are considering provide this kind of forms in SAP EP 7.0. The scenario is:
    1. EP will provide a forms menu where final users will be able to create, edit and preview forms depending on its permissions.
    2. Each form will take part of  a business flow: After edit a form, form will change it bussiness flow status an a mail will be sent to the next change participant. Final participant will submit all changes and a mail will be sent to alll participants.
    3. It is neccessary to attach files to forms.
    My questions are:
    1. Is it possible to upload Adobe forms as a KM document and manage document permissions, mails and bussiness flow with tools provided by KM?.
    2. If not, We should develop a Web Dynpro that integrates Adobe forms.
               2.1. Is it possible to manage forms preview/edit/create permisions? How?
               2.2. Is it possible to create a forms bussiness flow? how?
               2.3. Is it possible to send e-mails? How?
    Any idea will be very helpful.
    Best,
    Marta.

    Hello!
    I assume that you use the ISR/PCR framework when referring to Adobe Hire form.
    In this case you have a workflow that generates the work item for the approver and sends it to his/her inbox. The approver can access the work item via UWL. The UWL configuration together with parameters set by the workflow will generate a parameterized URL. Clicking on the work item in the UWL will open the Adobe form to allow the approver to review it and perform necessary actions.
    Opening the form simply happens via parameterized URL - you don't need UWL for that if you know how to generate the correct URL; you can also do this via ABAP - login to EP/WD is required though!
    Harald

  • Interactive adobe forms are not accessible in Mobiles

    Hi,
    We have a requirement to use password protected adobe forms generated from SAP ADS. We have developed such adobe forms using java scripts.
    Now the issue is that we are not able to open this XFA forms in mobiles. Could you kindly provide information on this. We need to know that the whether the interactive Adobe forms created from SAP ADS are accesable in mobiles.
    Thanking you.
    Regards,
    Raghu

    Hi,
    Adobe Reader/Acrobat DC mobile products do not support XFA forms.
    Please take a look at the Adobe LiveCycle Blog.
    Adobe Reader Mobile and XFA forms from LiveCycle Designer | Adobe LiveCycle Blog
    Thank you.

  • Using Interactive Adobe Forms in LEAD processing(SAP CRM 7.0)

    Hi,
    I am new to Adobe forms. I want to create it for lead. After creation of lead adobe form should get mailed to required partner automaticaly. This partner will fill the data and send back to update the system.
    Please suugest me any documentation to achieve this.
    Regards,
    Nikhil

    Dear Nitin,
    The first I am not sure, so hopefully someone else can help you with that.
    For the second, If you want a Z-field to be used in the action conditions, you should add an attribute to your BOR-object in SWO1.
    How to do this can be found here.
    [http://sapcrmweblog.blogspot.com/2011/01/adding-attributes-to-bor-object.html|http://sapcrmweblog.blogspot.com/2011/01/adding-attributes-to-bor-object.html]
    Hope it helps...
    Regards,
    Pieter Rijlaarsdam

  • Correspondence Type for F.27 with ADOBE form.

    Hi All,
    I am stuck into one issue. See the below details:
    Requirement: I want to create a new correspondence type with new PDF form which can be attached to F.27.
    What I did so far: I have created a new ADOBE form to fulfill the PDF requirement and created a fresh Z driver program to run it. Also Functional people attached this driver program and form with newly created correspondence type for particular company code. When I am running my Z program directly from SE38 it is running correctly and giving me PDF output in a proper way.
    My Problem: The problem is when I am running it from F.27, whatever user is giving parameters in F.27 selection screen is not passing to my Z program and the output is not coming as required. In this case what it is doing is simply going to my piece of code neglecting the user entered parameters and picking up the parameter given in variant of my Z program and giving me output.
    I am very new to correspondence type and all so kindly help me in fetching F.27's selection parameters into my program.
    Thanks a lot in advance.
    Best Regards
    Virendra Kedia

    Hi Raj,
    The selection screen for f.27 is coming from ob78. And the link of Correspondence program and correspondence is difined in OB78.
    Regards

  • Populate Default Dynamic Filename In Adobe Form (On Click of Save in Menu) - SAP

    Hi,
    We have a scenario in which we want to populate the file name dynamically in Adobe form integrated in SAP Webdynpro.
    Scenario - 
    A adobe form has been intergrated in the SAP webydnpro application which opens the form in Web Browser (IE).
    There is a save button which is part of standard adobe form menu and on click of that save button (circled - 1 in image )  the name of the form ( i.e techincal name of adobe form created in SAP {ZTESTSS} ( circled - 2 in image ) appears.
    We want to change the default name to (employee_date_time ) on click of save.
    We have found a approch by using the folder level javascripts (http://forums.adobe.com/message/2266799#2266799%232266799).
    In case we use folder level scripts "where should we write the JavaScript code in the Adobe Form to trrigger the this script on click of Save Button (in the menu)?"
    Also is there any other apporch which does not require folder level javascript as its a security issue also we need to maintain in all the user systems.
    Please let me know the approch to address the issue.
    Thanks .
    Tausif

    Hi,
    you can't change the behavior of the save button in the browser nor in Reader/Acrobat.
    You can add a custom button within your form which calls a custom script from a folder level script using the browserForDoc method.
    The browseForDoc methos is the only one whcih can change the name in the saveAs dialog.
    Here's an example., you can run from Acrobat console.
    You need to combine it with the solution from the other thread to make it work with your form.
    http://forums.adobe.com/message/2266799#2266799%232266799
    var oRetn = app.browseForDoc({
        bSave: true,
        cFilenameInit: "MyForm.pdf",
        cFSInit: "",
    if (typeof oRetn !== "undefined") {
        this.saveAs({
            cFS: oRetn.cFS,
            cPath: oRetn.cPath,
            bPromptToOverwrite: false

  • Problem with new page triggering in ADOBE Forms

    Hi all,
                 I am workin on a Purchase Order adobe form. I have a requirement to dispay Other stipulation text after completion of all the information. The text should be displayed on a fresh new page. I can able to display the text on new page, but if the text is not there then its displaying a blank page. How to avoid this blank page.
    Can anybody please help to solve this issue
                          Thanks.
                          Ranganadh.

    It is because you are calling a NEW-PAGE in the main window and you have not mentioned which should be the next page. For that you need to Go to SE71==> Pages==>Standard Attributes==> Mention the <b>Next page</b>
    Assign the same for both the pages !
    rgds,
    TM
    Please mark points if you got solution.
    Message was edited by: Thomas Mann

Maybe you are looking for

  • Database Adapter insert operation with return value

    Hi All, I have a table with auto generate parimary key in DB2 database. I need to have an insert operation ont this table which should return current value of primary key after insert. For this , I have created an insert operation in DB Adapter. But

  • Customised Oracle application and access to roles and users...please advise

    Hi Gurus! We are developing a customised Oracle application where we have users and roles...user - role mapping is done in the system administration module of the application. Now, we are also developing Oracle discoverer reports based on this. Using

  • Problems Creating Custom Connections In SQL Developer

    I have the Auto-Generated Local Connections available in SQL Developer 3.2.20.09 Build MAIN-09.87, but cannot create my own connections. I've searched the forums, but haven't had an "AHA" moment. I installed the 32-Bit Oracle 11gR2 and SQL Developer

  • Urgent Help About JTexField ??

    Hello All, i make an application in which user can write data in urdu. urdu is write from Right to Left, for that perpose i use JTextField.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT); after that methode my cursor is Aligen at Right si

  • How to run reports asynchronously with rwservlet?

    Hi, Is there any examples how to use rwservlet to call some PDF reports asynchronously? My application (deployed on the serverA https://www.myDomain.com/) constructs the redirection URL to display the desired report (and the reports servlet is instal