Java script not working in 1 pdf, but same script is NOT working in other

Dear Experts,
I have a problem with java script.
I have created 2 PDFs with the same Form name and sub form names.
I have written a javascript and this script seems to be working in one (Demand2.pdf) and NOT working in the other (Sample.pdf).
The link for Demand2.pdf is
https://acrobat.com/#d=XIydWx1RIU4oNdTySHtHfg
and the link for sample.pdf is
https://acrobat.com/#d=sKPRs2dtDY57RSvMVtnh3w
Can you please guide me on this.
Many Thanks
BookFans

Hi,
The second file (Sample.pdf) is saved as Static. The script is changing the visual appearance of the form (showing and hiding objects). This requires the file to be saved as a Dynamic PDF. This is available in the save-as dialogue under the file name.
Good luck,
Niall

Similar Messages

  • Working on Tomcat Server but same code is not working on oc4j server of E-B

    Hello,
    I have a jsp page that is working properly in tomcat 6 server but when i deployed it on oc4j server 10.1.3.1.0 than it is not working. I am confuse.
    ERROR MESSAGE:
    500 Internal Server Error
    Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response. Please consult the application log for details.
    CODE JSP:
    <%@ page import="java.sql.*" %>
    <%@ page import="java.io.*" %>
    <!DOCTYPE html PUBLIC
         "-//W3C//DTD HTML 4.01 Transitional//EN"
         "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta
         http-equiv="Content-Type"
         content="text/html; charset=ISO-8859-1" />
    <meta
         name="author"
         content="MAX" />
    <title>Test Register Page</title>
    <link
         rel="stylesheet"
         href="css/style.css"
         type="text/css"
         media="screen" />
    </head>
    <body>
    <div id="content">
    <form name="demo" onsubmit="return validate_form()" action="RegisterServlet" method="post">
    <fieldset>
         <legend>VIEW USER</legend>
         <table border=1>
              <tr>
                   <td width="200px" align="center"><b>Bank Name</b></td>
                   <td width="200px" align="center"><b>User Name</b></td>
              </tr>
              <%
                        Connection connection = null;
                        String connectionURL = "jdbc:oracle:thin:@10.38.60.55:1521:edwdevdb";
                        ResultSet rs = null;
                   Statement statement = null;
                   try
                        // Get a Connection to the database
                        Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
                        connection = DriverManager.getConnection(connectionURL,
    "scott", "tiger");
                        statement = connection.createStatement();
                        rs = statement.executeQuery(" SELECT user_info.USER_KEY,user_info.FI_ID,d_fi.fi_nm, user_info.User_Name from user_info INNER join d_fi on user_info.fi_id = d_fi.fi_id order by fi_nm ");
                        //Set 'authentication' flag
                        while (rs.next())
         %>
                        <tr>
                                  <td width="200px"><a href="SearchUser?bankname=<%=rs.getString("USER_KEY")%">> <%= rs.getString("FI_NM")%></a> </td>
                                  <td width="200px"><%= rs.getString("User_Name")%></td>
                        </tr>
         <%                    
                   catch(SQLException e)
                   finally
                                            rs.close();
    statement.close();
    connection.close();
         %>
         </table>
         <label> </label>
    </fieldset>
    </form>
    </div>
    </body>
    </html>
    WEB xml:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app     xmlns="http://java.sun.com/xml/ns/javaee"
                             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    version="2.5">
    <description>Register</description>
    <display-name>Register</display-name>
    <!-- Declare Servlets -->
    <servlet>
         <servlet-name>BaseServlet</servlet-name>
         <servlet-class>BaseServlet</servlet-class>
    </servlet>
    <servlet-mapping>
         <servlet-name>CategoryServlet</servlet-name>
         <url-pattern>/Category</url-pattern>
    </servlet-mapping>
    <!-- Welcome File List -->
    <welcome-file-list>
         <welcome-file>login.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    Edited by: bappy007 on Oct 10, 2010 1:57 AM
    Edited by: bappy007 on Oct 10, 2010 1:58 AM

    ERROR IN LOG FILE:
    10/10/10 15:18:55.843 edwportal: Servlet error
    java.lang.NullPointerException
         at test.jspService(_test.java:93)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.1.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:619)

  • The scroll function on my mousepad is disabled when viewing a pdf file in firefox version 5.0. The scroll works on the pdf, but not on the other tabs. When the pdf is closed, the scroll function returns to normal. Any ideas?!

    The scroll function on my mousepad is disabled when viewing a pdf file in firefox version 5.0. The scroll works on the pdf, but not on the other tabs. When the pdf is closed, the scroll function returns to normal. Any ideas?!

    Hey thanx for the help, it worked like a charm.
    I think firefox changed the application lay out, as I used to be able to choose my PDF opener from the list at " Adobe Acrobat Forms Document' where I could choose Nitro-PDF reader, but it has now moved all the way to the bottom like you suggested to the obvious place of "Portable Document Format" section.
    If someone didn't tell me , I wouldn't have scrolled all the way down to be able to find it... it really should be with all its cousins up the top...
    Cheers again..

  • Sharepoint list dataheet view error "Cannot connect to the server at this time. You can continue working with this list, but some data may not be available"

    I have a List which is having around 14000 items in it.while opening that list in datasheet view it is giving error .
    Below is a summary of the issue:
    After selecting datasheet view beow error occurs:
        "Cannot connect to the server at this time.  You can continue working with this list, but some data may not be available."
        "Unable to retrieve all data."
        The item counts displays say 100 out of 14000 items.
    Exporting List to excel is giving only 2000 records out of 14000 records.
    Other Observations   -  
    This is happening to only one list on the site .There are other lists in the site whose no. of records is equal to 8000 to 9000.They are working absolutely fine without any error.
    Also, If I am saving this list as a template and creating another list with it ,then it is working absolutely fine with 14000 records,so the issue does not seem to be related with no. of records as the template list is working fine.
    I have checked the Alternate access mapping setting ,its fine.
    It should not be related to lookup,datefield or any other column as the list created from it template is working fine with all these columns.
    I checked below links also ,but doesn't seem to work in my case.
    http://social.technet.microsoft.com/forums/en-US/sharepointadminprevious/thread/974b9168-f548-409b-a7f9-a79b9fdd4c50/
    http://social.technet.microsoft.com/Forums/en-US/smallbusinessserver/thread/87077dd8-a329-48e8-b42d-d0a8bf87b082
    http://social.msdn.microsoft.com/Forums/en-US/sharepointgeneral/thread/dc757598-f670-4229-9f8a-07656346b9b0

    I have spent two days to resolve this issue. Microsoft has released two KBs with reference to this issue...but are not appearing in search results at the top.
    I am sharing my finding.
    1. First install the
    KB2552989 (Hopefully you might have already installed it. The KB detetcts it and informs the user.)
    2. Then update registry by adding new key for data fetch timeout as mentioned inKB2553007
    These two steps resolved the issue in our environment. Hope it might help others as well.
    Pradip T. ------------- MCTS(SharePoint 2010/Web)|MCPD(Web Development) https://www.mcpvirtualbusinesscard.com/VBCServer/paddytakate/profile

  • Broken 4s screen and no display. Siri worked to make calls but now says "Siri not available connect to internet" still waiting on new phone and need to make calls. How can I get Siri to work again?

    I broke my iPhone 4s screen and display. Siri worked to make calls but now says "Siri not available, connect to the internet". How do I make Siri work again till I get my new phone?

    If not connected to the Internet, either through WiFi or 3G, you can't.

  • I recently subscribed to the editing my pdfs but this option does not come up under tools menu

    I recently subscribed to editing my pdfs but this option does not come up under the tools menu - only convert, create, export, etc.

    Thanks for your response – But I went online chat with a customer service rep and my problem has been resolved.
    Thanks again.
    Gary

  • I have an ipad 2 the itunes program worked fine at first but now it will not connect to the store. it says 'secure link to itune store failed' i have uninstalled it and reinstalled it. what do i do

    i have an ipad 2 the itunes program worked fine at first but now it will not connect to the store. it says 'secure link to itune store failed' i have uninstalled it and reinstalled it. what do i do?

    Doublechecking before proceeding. Is iTunes endlessly saying "Accessing iTunes Store"? Or is something a bit different going on?

  • 3G not work in my iPad but EDGE and GPRS its work

    3G not work in my iPad but EDGE and GPRS its work ?

    Try resetting network settings: Settings>General>Reset>Reset Netwrok Settings.

  • Installed Snow Leopard OK, but when uploading the Mac os x Update Combined, it would not save. It said it could not connect to update server, but my internet connection is working?

    Installed Snow Leopard OK, but when uploading the Mac OS X Update Combined, it would not save. It said it could not connect to update server, but my internet connection is working. Any suggestions on fixing?

    Run software up date, write down the update name and version. Go to the Apple site and do a search for the updates one at a time and download them one at a time. Use an ethernet connection, sometimes software update "crushes large updates. I have experienced this before.  Hope it helps.  ATB

  • HT1937 My iPhone was working correctly with FaceTime but now it's not , say (waiting for activiation) what should I do ??  Kindly if you can help!!

    My iPhone was working correctly with FaceTime but now it's not , say (waiting for activiation) what should I do ??  Kindly if you can help!!

    Thanks for your answer...
    My iPhone was connected to a wifi internet when I tried to activate it and when I tried activation by iTunes I was using my laptop with windows 7 which was connected to internet by cable.
    I updated my iPhone to IOS 7 when I was in Egypt and I had no problems with updating it and I can't remember if finding my iPhone option was on or off before updating to IOS 7 and as i understood from searching internet that to use iCloud Finder on web from computer to find my iPhone it should be set up already on my iPhone and I didn't set up iCloud on my iPhone before and my Apple ID wasn't verified for iCloud till today, I verfied it by logging in iCloud from a friend iPad.
    I was considering already the option that my iPhone has been hacked but if this happened so how I would unlock my iPhone and activate it to back to work? who would help me with that? I'm so tired of being without my phone for almost 4 days and I started to consider not having any Apple product anymore... I think that this way to secure the consumer has a lot of conflicts...

  • Have recently updated Adobe Reader and now unable to open downloaded documents - Message received is could not open 'file name.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email a

    Have recently updated Adobe Reader and now unable to open downloaded documents - Message received is could not open 'file name.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded). When I check the file it shows Zero KB downloaded but the file appears - any suggestions?

    Obviously your download was not successful.
    What is your operating system?  How exactly do you download such files?

  • I buy new iPhone5s befor 11day but. Now don't work    I tried restore but same result I went to the nearest repairer and replace the battery and the charging port and the monitor but same result, I failed, said mother Bord (Raja solution)

    I buy new iPhone5s befor 11day but. Now don't work    I tried restore but same result I went to the nearest repairer and replace the battery and the charging port and the monitor but same result, I failed, said mother Bord (Raja solution)

    If you bought the iPhone from an authorized store/vendor, you should have taken the iPhone to them or any other Apple Store for evaluation under warranty.
    Once it has been opened by non-Apple entity, Apple will not do anything for this.

  • My iPhone 5 suddenly stopped opening the Apple Mail app.  It had worked flawlessly for years, but just stopped.  It worked on my iPad, and of course on the computer.  What's going on, and how do I fix it?  I've turned the phone on and off several tim

    My iPhone 5 suddenly stopped opening the Apple Mail app.  It had worked flawlessly for years, but just stopped.  It worked on my iPad, and of course on the computer.  What's going on, and how do I fix it?  I've turned the phone on and off several times, soft reset several times.  There was no change in any settings when this happened, nor any new apps were added.  Thank you for any help you can give.

    Does it not work either way? Sending and receiving? Did you check the settings and make sure that nothing has changed? If you can receive email, but not send it, check the outgoing mail server setting. Make sure that your username and password are in there.
    Settings>Mail, Contacts, Calendars>Your email account>Account>Outgoing mail server - tap the server name next to SMTP and check in the primary server and make sure your username and password are entered and correct - even if it says that the password is optional.

  • I work on a mac but occasionally I have to work on a PC.  Can I connect my PC to my mac so I don't have to use 2 different monitors

    I work on a mac but occasionally I have to work on a PC.  Can I connect my PC to my mac so I don't have to use 2 different monitors?

    Put the monitor on a KVM.  Might be able to do a wired mouse and keyboard as well.  KVM = keyboard, video, monitor switch.
    Connect the common monitor to the KVM out and each machine's video to KVM's in.  Then you switch the monitor so it is connected to the machine you want to currently use.
    The tricky part is finding an appropriate KVM to handle the video connections for the two machines and monitor.  No guarantees there.  Many current KVM's have USB connections so there is less potential hastle with mice and keboards.  But monitors use dvi, (mini-)displayport, vga, and hdmi.  And you may need adapters/converters.  So finding a appropriate KVM may be the hard part.

  • HT201401 The sounds are working on my iPhone but the ringer will not work...it only vibrates on incoming calls.  Volume is set high.

    The sounds are working on my i phone but the ringer will not work...it will only vibrate.  I have the volume set at high.

    Basic troubleshooting steps clearly outlined in the User Guide are restart, reset, restore from backup, restore as new device.
    Have you tried ALL the troubleshooting steps?  If you have and you're still having problems, then you'll need to bring your phone into Apple for evaluation and possible exchange.

Maybe you are looking for

  • Save As with file containing tags and fields

    We are using Windows XP, AcroProf 8.1.5. We create non-tagged PDFs directly from InDesignCS3. We manually tagged this doc. After making updates to the original InD file, we create a new PDF. We open the original PDF file containing all tags and field

  • Web Service Connection on fresh SUM formula is zero

    I am using Xcelsius SP1.  I have a field in the spreadsheet that has the formula "=SUM(H12:H16)".  I am using a Web Service Connection to refresh the data.  Following a refresh from the web service connection the field with the SUM formula is 0.  I h

  • Filter condition in query designer

    Hi Friends, Can any one please tell me? Query is done on Multiprovider (made of Cube 1 to Cube 6 ) and in query designer under filter tab i have seen case 1: 1) Fiscal year variant F4 2) Cube 1 Questions: 1) what is the use of Fiscal year variant F4

  • Apple TV Artwork bug?

    Hi Folks, hope you all keeping well. Looking at some general discussion on the web is there or is anyone else experiencing an artwork "bug" with their Apple TV?  I have iTunes Match etc enabled and all the artists, albums etc all show up and will str

  • How long does the update take???

    i started the update about an hour ago. the system restarted a couple of times, and i got the progress bar a couple of times, then it went off and it hasn't come back on sense? what's going on???