Can't understand why I am getting this table error!

Hi all. Any help here would be received with a ridiculous amount of appreciation.
I have cleaned up all accessibility errors in my PDF, however I have a heap relating to my (many) tables.
Errors all say:
TR element(s) with no Table, THead, TBody or TFoot parent. (How to Create Valid Table Structure)
Table Row is not a child of Table, THead, TBody, or TFoot
See an example in the attached.
It's my first time creating accessible PDFs - am I missing something simple?
Using CS4, but soon to upgrade to CS6 if that is going to make things any easier.
Thank you.

Greetings Axnich,
Are you getting the error from the built-in Acrobat accessiblity checker or another tool? How was the PDF generated?
In the example, it lools like <Table> is a child element of <Small_Sub_Head>, which looks odd to me. You might try moving <Table> up a level in the structure, so it is not underneath the other tag. One other thing, the example table has only one column? Are you sure it would not be better tagged as a list?
Hope this is helpful. Best Regards.

Similar Messages

  • Can anyone help why I am getting this error.

    I am seeing these errors when I try to test my database. I
    can't understand why. Does anyone have any ideas?
    The exact file with different field names works on a
    different table of the same database.
    Thanks for the help.
    Errors in ActionScript.
    Error: Error #2101: The String passed to
    URLVariables.decode() must be a URL-encoded query string containing
    name/value pairs.
    at Error$/throwError()
    at flash.net::URLVariables/decode()
    at flash.net::URLVariables()
    at flash.net::URLLoader/onComplete()
    AS3 CODE
    // Changed the mouse event.
    submit_btn.addEventListener(MouseEvent.CLICK, sendData);
    function sendData(evt:Event) {
    if (fname_txt.text!="" && lname_txt.text !=""
    && street_txt.text!="" && city_txt.text!=""
    && state_txt.text!="" && zip_txt.text!="") {
    //for those using PHP
    var myData:URLRequest = new URLRequest("
    http://**********************");
    myData.method = URLRequestMethod.POST;
    var variables:URLVariables = new URLVariables();
    variables.firstName = fname_txt.text;
    variables.lastName = lname_txt.text;
    variables.streetAddr = street_txt.text;
    variables.cityName = city_txt.text;
    variables.stateName = state_txt.text;
    variables.zipCode = zip_txt.text;
    myData.data = variables;
    var loader:URLLoader = new URLLoader();
    loader.dataFormat = URLLoaderDataFormat.VARIABLES;
    loader.addEventListener(Event.COMPLETE, dataComplete);
    loader.load(myData);
    } else {
    status_txt.text = "All fields are mandatory";
    function dataComplete(event:Event):void {
    status_txt.text = event.target.data.successMessage;
    //status1_txt.text = event.target.data.secondMessage;
    fname_txt.text = "";
    lname_txt.text= "";
    street_txt.text = "";
    city_txt.text = "";
    state_txt.text = "";
    zip_txt.text = "";
    PHP CODE:
    <?php
    //Capture data from $_POST array
    $fname = $_POST['firstName'];
    $lname = $_POST['lastName'];
    $street = $_POST['streetAddr'];
    $city = $_POST['cityName'];
    $state = $_POST['stateName'];
    $zip = $_POST['zipCode'};
    //Connection to database
    $connect = mysql_connect("localhost", "**********",
    mysql_select_db ("mttolcom_testDB", $connect);
    //Perform the query
    $result = mysql_query("INSERT into address (firstName,
    lastName, streetAddr, cityName, stateName, zipCode) values
    ('$fname','$lname','$street','$city','$state','$zip')");
    if($result) echo "writing=Ok&";
    else echo "writing=Error";
    echo 'var1=yes&successMessage=Response from server. The
    data has made the server!';
    // echo 'var2=yes&secondMessage=Your data has been
    received and processed!';
    ?>
    Thanks for the help.
    Mike

    Dear Jain,
    I used CA Type 10 CA Categories as Stock Split for corporate action as below.
    Configuration
    FWK0 posting
    Error Msg

  • Why am I getting this 530 error?

    I keep getting: "530 User anonymous unknown" every time I try to connect via FTP. This is after following the limited guidelines. And this is from Mac and PC. I do get on the PC side a return message that the server is available and the name of it and all kinds of information. But no access.
    I have spent the past couple of hours searching the complete Apple site and really miss the TILs. Now it looks like you have to have the secret code or divine knowledge to get into what should be readily accessible informational areas.
    Any assistance will be greatly appreciated.
    Oh also, anyone know where I can find documentation on all the different ways that you can access connected Macs and PCs via the Internet? I found links that said "How to", but the articles were "If you can't" and were serverely vague.
    Thanks
    G4 FW800   Mac OS X (10.4.4)   Totally Stuffed/Max'd Out

    Well I have good news, at least for me. I discovered a way to do what I wanted and it works perfectly. I had to mess around with the destination path and the process didn't take effect immediately. But it is doing exactly what I want and I don't get the errors.
    Enabling Anonymous FTP:
    http://digitalelf.net/archives/000030.html
    I sent out several test inquiries to PC users and will be checking how well this works. If I run into any snags, I'll post back.

  • Can't open re-installed Firefox - get this message: Error: platform version5.0 is not compatible with minVersion = 6.0 maxVersion = 6.0

    Had to uninstall Firefox as it stopped working. The went to website and downloaded Firefox once more. Pressed the .exe and the file went through the installation okay, but when I tried to open Firefox I get:
    Error: platform version5.0 is not compatible with
    minVersion > = 6.0
    maxVersion < = 6.0
    The only option i have is to press OK and nothing else happens.
    Can you offer any help - it is beyond me and I am missing Firfox and have lost all my bookmarks.

    The updater wasn't able to update all the files and some were left as older versions.<br />
    Do a clean reinstall.
    Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 6.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

  • Why am I getting this event error?

    I created a custom event to pass a parameter:
    package com.events
         import flash.events.Event;
         public class HotSpotEvent extends Event
              public function HotSpotEvent(type:String,  hotSpotNumber:int=0, bubbles:Boolean=true, cancelable:Boolean=false)
                   super(type, bubbles, cancelable);
                   this.hotSpotNumber = 0;
              public static const HOT_SPOT_CLICKED:String = "hotSpotEvent";
              public var hotSpotNumber:int;
              override public function clone():Event {
                   return new HotSpotEvent(type, hotSpotNumber);
    Then a function in one swf is triggered and dispatches the event:
    var eventObj:HotSpotEvent=new HotSpotEvent("hotSpotEvent");
    eventObj.hotSpotNumber=getHotSpotNumber(obj);
    dispatchEvent(eventObj);
    Then I have a listener on the scrollpane that loads this swf:
    private function swfLoadedHandler(e:Event):void {
       sp.content.addEventListener("hotSpotEvent", hotSpotHandler);
    Lastly, my event handler:
    private function hotSpotHandler(e:HotSpotEvent):void {
         trace("hot spot clicked = "+e.hotSpotNumber);
    Which is correctly tracing "hot spot clicked = 1" BUT also gives me:
    hot spot clicked = 1
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.events::Event@45b78a61 to com.events.HotSpotEvent.
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at HotSpot/clickedMe()
    What did I get wrong here?

    I didn't want to put the whole code, but there's such a method that returns an integer.
    it would seem this works, since the number is correctly getting to the trace statement in the parent app.
    What's odd is that the root app's event handler is firing, is correctly getting the property of the HotSpotEvent (hostSpotNumber), but then it complains about coercing the event type.
    So I have attached the whole code.  The "InspectorShell.as" is the main app's document class, the inspector.as is the doc class for the movie loaded into the scrollpane, and then the custom event.

  • Why am I getting this installation error?

    Exit Code: 7 Please see specific errors below for troubleshooting. For example, - Pastebin.com

    Hi taggertvinzant,
    Please ensure that you are logged in as administrator and anti-virus is disabled.
    You might another forum link discussing the same issue:
    Acrobat XI Pro Creative Cloud install fails
    Let me know if this works.
    Regards,
    Anubha

  • Why am I getting this error?

    Hello,
    I am trying to call my Java class from a JSP page. I am getting this error:
    Generated servlet error:
    C:\Program Files\Apache Tomcat 4.0\work\Standalone\localhost\em\jsp\Test_0005fSummarySBU_0005fscreen$jsp.java:82: Wrong number of arguments in constructor.
    strQuery=new ListReturn(strEssUser, strProcessingMonth, strProcessingYear);
    I don't understand why I am getting this error as I pass three paramters to the Java class, and I accept three parameters in the constructor.
    JSP:
    <!-- META TAG is necessary to ensure page recompiles--------------->
    <META Http-Equiv="Expires" Content="0">
    <META Http-Equiv="Pragma" Content="no-cache">
    <HTML>
    <!-- The two Java Classes used to build the AlphaBlox query -->
    <%@ page import="com.home.tool.reporting.*" %>
    <%@ page errorPage="run_error.jsp" %>
    <%@ page import="java.util.List,
                     java.util.Collection,
                java.net.URLDecoder" %>
    <HEAD>
    <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
    <TITLE>Economic Model - Summary SBU Report</TITLE>
    <!--Run the onload here, re-retrieve params BM and Breport, pass to onload---------->
    <BODY bgcolor=#ffffff>
    <%
                    Collection strQuery = null;
                    String strEssUser = "test";
                    String strProcessingMonth = "JUL";
                    String strProcessingYear = "2002";
                    strQuery=new ListReturn(strEssUser, strProcessingMonth, strProcessingYear);
                    System.out.println(strQuery);
    %>
    </BODY>
    </HTML>Java class:
    package com.home.tool.reporting;
    import java.net.URL;
    import java.sql.*;
    import java.io.*;
    import java.util.*;
    public class ListReturn extends ReportQueryBuilder
            public void ListReturn()
            public Collection ListReturn(String userID, String pMonth, String pYear)
                throws ReportQueryBuilderException
                //declare Collection store Value-Object pairs
                Collection c = new ArrayList();
                //declare and initialize variables
                CallableStatement cs = null;
                ResultSet rs = null;
                // declare call for stored procedure to pass in three parameters
                String pass = "{Call dbo.p_rep_srSbuList(?, ?, ?)}";
                try
                    //open CallableStatement using JDBC connection to SQL database
                    cs = con.prepareCall(pass);
                    //set IN parameters
                    cs.setString(1, userID);
                    cs.setString(2, pMonth);
                    cs.setString(3, pYear);
                    //execute call and return result set
                    rs = cs.executeQuery();
                    //loop through result set storing each record as a Value-Object pair
                    while(rs.next())
                        c.add(new ListBoxValueObjects(rs.getString(1), rs.getString(2)));
                catch (SQLException sqle)
              throw new ReportQueryBuilderException(replaceToken("Problems executing query: "+sqle.getMessage(), "'", "\\'"));
                finally
                    try
                        //close the Result Set and CallableStatement
                        rs.close();
                        cs.close();
                    catch(Exception e)
                        System.out.print("\nFATAL   : " + e);
                        System.out.print("\nFATAL   : " + e);
                return c;
    }Does anyone see whay I am getting this error??
    I can't figure out the problem!

    change this:
    <%
         Collection strQuery = null;
         String strEssUser = "test";
         String strProcessingMonth = "JUL";
         String strProcessingYear = "2002";
         strQuery=new ListReturn(strEssUser, strProcessingMonth, strProcessingYear);
         System.out.println(strQuery);
    %>To this:
    <%
         Collection strQuery=null;
         String strEssUser="test";
         String strProcessingMonth="JUL";
         String strProcessingYear="2002";
         lr=new ListReturn(strEssUser, strProcessingMonth, strProcessingYear);
         System.out.println(lr.getQuery())
    %>Then make a new public method in your Java called getQuery()
    public Collection getQuery();Do what you need to do to process it and return the value in getQuery. You will also probably need to make private variables in you declaration to do the processing on.

  • There was an error opening the database for the library "/Users/stacia134/Pictures/Aperture Library.aplibrary".  Why am I getting this message and how do I correct it so that I can open Aperture????  any suggestions would be most appreciated

    There was an error opening the database for the library “/Users/stacia134/Pictures/Aperture Library.aplibrary”.  Why am I getting this message and how do I correct it so that I can open Aperture????  any suggestions would be most appreciated

    Then I'd check the system drive, if it has problems.
    To check your System drive boot into the Recovery Partition, see: OS X Lion: About Lion Recovery
    Restart your Mac and hold down the Command key and the R key (Command-R), and keep holding them until the Apple icon appears, indicating that your Mac is starting up.
    You will see a panel, where you can use Disk Utility to check your System Drive.

  • Why am I getting this error message when I try to import? "The following files were not imported because they could not be read. (645)" I can see them :(

    Why am I getting this error message when I try to import? "The following files were not imported because they could not be read. (645)" I can see them
    Is was working this morning!

    Depends on your operating system
    Go to google, try typing in
    Change permissions Windows
    or
    Change permissions Mac

  • HT1414 Why do I get 'This message has no content' with some e-mails on my iPad when the same messages can be received on my MacBook Pro without any problem, and how can I fix it?

    Why do I get - 'This message has no content' - with some e-mails on my iPad when the same messages can be received on my Mac Book Pro without any problem and how can I fix it?

    Is this a POP (POP3) email account?  If so, you MacBook Pro may be retrieving the email and deleting it off the server before your phone can.  Another possibility is that both your Mac and your phone are trying to retrieving it at the same time, and the POP server, which will only allow a single email client connection at a time, is locking out your phone resulting in the "has not been downloaded from the server" error.

  • Why am I getting the following error message? You can't open the application "Microsoft Word" because PowerPC applications are no longer supported.  This is new...

    Why am I getting the following error message? "You can’t open the application “Microsoft Word” because PowerPC applications are no longer supported."  I never used to have a proble!

    Only Office for Mac 2008 and 2011 will run on Mavericks. Microsoft support for the former package ended in April 2013. If you do not want to spend the money, you might download and try the donation-ware (free) LibreOffice Suite. No ribbon bar crap. Supports about any document created on Windows.

  • Why am I getting this error?  How do I add confirm message to button press?

    Using Java Studio Creator.
    I do not understand why I am getting the following page error:
    Description: An unhandled exception occurred during the execution of the web application. Please review the following stack trace for more information regarding the error.
    Exception Details: java.lang.IndexOutOfBoundsException
    Index: 0, Size: 0
    Possible Source of Error:
    Class Name: java.util.ArrayList
    File Name: ArrayList.java
    Method Name: RangeCheck
    Line Number: 546
    ======================================================================
    I have a page that works.
    It has a button that is created in the session bean code with the following java:
    button = (HtmlCommandButton)application.createComponent(HtmlCommandButton.COMPONENT_TYPE);
    button.setActionListener( application.createMethodBinding("#{ScheduleEditSessionBean.mainApply}", new Class[]{ActionEvent.class} ));
    button.setId( "applyUndates" );
    button.setType( "submit" );
    button.setTitle( "Apply updates.");
    button.setValue( "Apply" );
    button.setStyle(style);
    children.add(button);
    When the button is pushed, it calls the following session bean method:
    public void mainApply(ActionEvent actionEvent)
    updateScheduleData();
    scheduleAdjustFlag = 1;
    dataApplied = true;
    dataSaved = false;
    addControls();
    This all works just fine - no errors
    ====================================================================
    I wanted to add confirmation to the button press, so I removed the action listener for this button and added
    a javascript function call for the onclick method
    button = (HtmlCommandButton)application.createComponent(HtmlCommandButton.COMPONENT_TYPE);
    style = "text-align: center; font-family: 'Arial','Helvetica',sans-serif; " + font + " height: 22px; width: 115px";
    // Commented out this line button.setActionListener( application.createMethodBinding("#{ScheduleEditSessionBean.mainApply}", new Class[]{ActionEvent.class} ));
    button.setOnclick("confirmApply()"); // Added this line.
    button.setId( "applyUndates" );
    button.setType( "submit" );
    button.setTitle( "Apply updates.");
    button.setValue( "Apply" );
    button.setStyle(style);
    children.add(button);
    I added a dummy button to the page that has the following call to execute the mainApply method in the sessioon bean.
    The button action just calls the mainApply() method in the session bean
    public String mainApplyBtn_action() {
    seb.mainApply();
    return null;
    Added the javascript to the page that simply pushes the dummy button if confirmed.
    function confirmApply()
    if( confirm( 'Are you sure you want to Apply these changes?' ) )
    form1["form1:mainApplyBtn"].click();
    The session bean method looks like this it is the same method as before, but without the action event argument.
    public void mainApply()
    lsb.logMsg( "<ScheduleEditBean.mainApply> Main apply pushed" );
    updateScheduleData();
    scheduleAdjustFlag = 1;
    dataApplied = true;
    dataSaved = false;
    addControls();
    ==================================================================================
    Now, when I push the original 'Apply' button, I get the confirmation box just like I expected.
    But when I confirm the question, I get the error at the top of this post.
    If I push the 'dummy button' directly, I do not get the error.
    I do not understand why I should be gettng this error.
    Can anyone give me a clue as to why this change would cause the problem?
    The error is related to an ArrayList.
    I use several of these on the page, but they should be filled with data in the preRender method of the page.
    Can anyone suggest a way that I can add confirmation to a button that is created under program control?
    Thanks

    Make use of the fact that when an onclick event of a button returns 'false', the action will not be taken.
    Pseudocode:<h:commandButton value="submit" action="#{myBean.action}" onclick="return confirm('Are you sure?');" />

  • Why do I get this errorThe server responded with "502" to operation CalDAVAccountRefreshQueueableOperation.

    Why do I get this message in iCal
    The server responded with
    “502”
    to operation CalDAVAccountRefreshQueueableOperation.
    And then it disappears it is very annoying, also for the mail program it gets password rejected by server. I have checked all the settings they are correct. What's the deal ATT says its me.

    Hi, is this Mail the old defunct MobileMe perchance?
    If so, do you have an iCloud account yet?
    I understand .mac mail will still come through. Do not delete the old account yet.
    You cannot use .mac or MobileMe as type of Account, you have to choose IMAP when setting up, otherwise Mail is hard coded to change imap.mail.me.com to mail.me.com & smtp.mail.me.com to smtp.me.com, no matter what you try to enter.
    iCloud Mail setup, do not choose .mac or MobileMe as type, but choose IMAP...
    On second step where it asks "Description", it has to be a unique name, but you can still use your email address.
    IMAP (Incoming Mail Server) information:
    • Server name: imap.mail.me.com
    • SSL Required: Yes
    • Port: 993
    • Username: [email protected] (use your @me.com address from your iCloud account)
    • Password: Your iCloud password
    SMTP (outgoing mail server) information:
    • Server name: smtp.mail.me.com
    • SSL Required: Yes
    • Port: 587
    • SMTP Authentication Required: Yes
    • Username: [email protected] (use your @me.com address from your iCloud account)
    • Password: Your iCloud password
    Also, you must upgrade your password to meet the new criteria:  8 characters, including upper and lower case and numbers.  If you have an older password that does not meet these criteria, when you try to setup mail on your mac, using all of the IMAP criteria listed above, it will still give a server error message.  Go to   http://appleid.apple.com         then follow directions to change your password, then go back to setting up your mail using the IMAP instructions above.
    Thanks to dpepper...
    https://discussions.apple.com/thread/3867171?tstart=0

  • When I want to scroll through My picks why do I get this Error message (A necessary data reference could not be resolved."

    When I want to scroll through My pictures  why do I get this Error message (A necessary data reference could not be resolved)

    Before anyone can help, they need information to work with. Basic stuff:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. What were you doing when the problem arose?
    - Did it ever work properly?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    Anything else you can think of that might allow someone else to understand your issue.
    With this kind of information somebody can develop a starting point for troubleshooting the issue.
    Posts that consist of "iPhoto doesn't work. Help" or "iPhoto won't print" or "Suddenly I have no photos!!!!!!!!!!" mean that any helper is simply guessing. With information, s/he may be able to get your issue resolved sooner.

  • TS1702 "The feature you are trying to use is on a network resource that is unabailable" Why am I getting this message when I try to updaate itunes or quicktime?

    The feature you are trying to use is on a network resource that is unabailable" Why am I getting this message when I try to updaate itunes or quicktime?

    Before trying the update again, use Microsoft's Fix it solution at http://support.microsoft.com/mats/Program_Install_and_Uninstall. Use it to uninstall iTunes and Quicktime. It bypasses this not uncommon problem. When the solution finishes, the selected program will be uninstalled. It can take several minutes and I have seen as much as half an hour.
    After iTunes & Quicktime are uninstalled, try the update again.

Maybe you are looking for