Form Error Message: Invalid relation attribute on pageSet xfa

Hi,
I've developed a form that many folks are using without any issues. However, I do have a small number of users that get the following error message when opening the form.
Error Message:  Invalid relation attribute on pageSet xfa[0].template[0].form1[0].#pageSet[0]
This error only appears to come up if they are using Adobe Acrobat Pro Version 8. No issues on versions 9 or 10 (X). The form is suppose to be compatible back to version 7.
My main form is called (form1). Then there are 4 major sub forms under (form1), The top drop down (on the masterpage) hides or displays one of the major sub forms based on user selection.
I have a hunch that something with the generated code not jiving well with Acrobat 8.
Here's a snippet of the code if you'd like to look through it.
form1.#pageSet[0].MasterPage1.FormActionDropDown::change - (JavaScript, client)
//+ GENERATED - DO NOT EDIT (ID:D2FF16C4-6D1F-45D4-ACB7-0DB7CE14229F CRC:3650232787)
//+ Type: Action
//+ Result4: SetPresence("$Node5","hidden")
//+ Result3: SetPresence("$Node4","visible")
//+ Result2: SetPresence("$Node3","hidden")
//+ Result1: SetPresence("$Node2","hidden")
//+ Node5: form1[0].ChangePAForm[0]
//+ Node4: form1[0].Non-PAForm[0]
//+ Node3: form1[0].DeletePAForm[0]
//+ Node2: form1[0].PAForm[0]
//+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
//+ Condition1: ListField("$Node1","textselected","ADD NON-PA User")
//+ ActionName: DropDown.change.NonPA
if ($.boundItem(xfa.event.newText) == "ADD NON-PA User") {
  this.resolveNode("PAForm").presence = "hidden";
  this.resolveNode("DeletePAForm").presence = "hidden";
  this.resolveNode("Non-PAForm").presence = "visible";
  this.resolveNode("ChangePAForm").presence = "hidden";
//+ GENERATED - DO NOT EDIT (ID:662A28BD-A30A-4E6D-92CD-6FF22B0EFB5D CRC:2945493746)
//+ Type: Action
//+ Result4: SetPresence("$Node5","hidden")
//+ Result3: SetPresence("$Node4","hidden")
//+ Result2: SetPresence("$Node3","visible")
//+ Result1: SetPresence("$Node2","hidden")
//+ Node5: form1[0].ChangePAForm[0]
//+ Node4: form1[0].Non-PAForm[0]
//+ Node3: form1[0].DeletePAForm[0]
//+ Node2: form1[0].PAForm[0]
//+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
//+ Condition1: ListField("$Node1","textselected","DELETE EXISTING PA")
//+ ActionName: DropDown.change.DeletePA
if ($.boundItem(xfa.event.newText) == "DELETE EXISTING PA") {
  this.resolveNode("PAForm").presence = "hidden";
  this.resolveNode("DeletePAForm").presence = "visible";
  this.resolveNode("Non-PAForm").presence = "hidden";
  this.resolveNode("ChangePAForm").presence = "hidden";
//+ GENERATED - DO NOT EDIT (ID:66B7091F-75C5-4A73-8ACA-885AE42D0308 CRC:2169512649)
//+ Type: Action
//+ Result4: SetPresence("$Node5","visible")
//+ Result3: SetPresence("$Node4","hidden")
//+ Result2: SetPresence("$Node3","hidden")
//+ Result1: SetPresence("$Node2","hidden")
//+ Node5: form1[0].ChangePAForm[0]
//+ Node4: form1[0].Non-PAForm[0]
//+ Node3: form1[0].DeletePAForm[0]
//+ Node2: form1[0].PAForm[0]
//+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
//+ Condition1: ListField("$Node1","textselected","CHANGE / MODIFY EXISTING PA")
//+ ActionName: DropDown.change.ChangePa
if ($.boundItem(xfa.event.newText) == "CHANGE / MODIFY EXISTING PA") {
  this.resolveNode("PAForm").presence = "hidden";
  this.resolveNode("DeletePAForm").presence = "hidden";
  this.resolveNode("Non-PAForm").presence = "hidden";
  this.resolveNode("ChangePAForm").presence = "visible";
//+ GENERATED - DO NOT EDIT (ID:C87B58DB-765D-426C-81BB-5A7ECFF42B63 CRC:2949030955)
//+ Type: Action
//+ Result4: SetPresence("$Node5","hidden")
//+ Result3: SetPresence("$Node4","hidden")
//+ Result2: SetPresence("$Node3","hidden")
//+ Result1: SetPresence("$Node2","visible")
//+ Node5: form1[0].ChangePAForm[0]
//+ Node4: form1[0].Non-PAForm[0]
//+ Node3: form1[0].DeletePAForm[0]
//+ Node2: form1[0].PAForm[0]
//+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
//+ Condition1: ListField("$Node1","textselected","CREATE NEW PA")
//+ ActionName: DropDown.change.NewPA
if ($.boundItem(xfa.event.newText) == "CREATE NEW PA") {
  this.resolveNode("PAForm").presence = "visible";
  this.resolveNode("DeletePAForm").presence = "hidden";
  this.resolveNode("Non-PAForm").presence = "hidden";
  this.resolveNode("ChangePAForm").presence = "hidden";

You should post this question in the LiveCycle Designer forum here. This forum is for forms created in Acrobat (Acroforms).

Similar Messages

  • Error Message: Invalid relation attribute on pageSet xfa

    Hi,
    Searching through the forums and on the net, I cannot seem to locate an answer to this problem so I'm trying here...
    I've developed a form that many folks are using without any issues. However, I do have a small number of users that get the following error message when opening the form.
    Error Message:  Invalid relation attribute on pageSet xfa[0].template[0].form1[0].#pageSet[0]
    This error only appears to come up if they are using Adobe Acrobat Pro Version 8. No issues on versions 9 or 10 (X). The form is suppose to be compatible back to version 7.
    My main form is called (form1). Then there are 4 major sub forms under (form1), The top drop down (on the MasterPage1) hides or displays one of the major sub forms based on user selection.
    I have a hunch that something with the generated code not jiving well with Acrobat 8.
    Here's a snippet of the code if you'd like to look through it.
    form1.#pageSet[0].MasterPage1.FormActionDropDown::change - (JavaScript, client)
    //+ GENERATED - DO NOT EDIT (ID:D2FF16C4-6D1F-45D4-ACB7-0DB7CE14229F CRC:3650232787)
    //+ Type: Action
    //+ Result4: SetPresence("$Node5","hidden")
    //+ Result3: SetPresence("$Node4","visible")
    //+ Result2: SetPresence("$Node3","hidden")
    //+ Result1: SetPresence("$Node2","hidden")
    //+ Node5: form1[0].ChangePAForm[0]
    //+ Node4: form1[0].Non-PAForm[0]
    //+ Node3: form1[0].DeletePAForm[0]
    //+ Node2: form1[0].PAForm[0]
    //+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
    //+ Condition1: ListField("$Node1","textselected","ADD NON-PA User")
    //+ ActionName: DropDown.change.NonPA
    if ($.boundItem(xfa.event.newText) == "ADD NON-PA User") {
      this.resolveNode("PAForm").presence = "hidden";
      this.resolveNode("DeletePAForm").presence = "hidden";
      this.resolveNode("Non-PAForm").presence = "visible";
      this.resolveNode("ChangePAForm").presence = "hidden";
    //+ GENERATED - DO NOT EDIT (ID:662A28BD-A30A-4E6D-92CD-6FF22B0EFB5D CRC:2945493746)
    //+ Type: Action
    //+ Result4: SetPresence("$Node5","hidden")
    //+ Result3: SetPresence("$Node4","hidden")
    //+ Result2: SetPresence("$Node3","visible")
    //+ Result1: SetPresence("$Node2","hidden")
    //+ Node5: form1[0].ChangePAForm[0]
    //+ Node4: form1[0].Non-PAForm[0]
    //+ Node3: form1[0].DeletePAForm[0]
    //+ Node2: form1[0].PAForm[0]
    //+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
    //+ Condition1: ListField("$Node1","textselected","DELETE EXISTING PA")
    //+ ActionName: DropDown.change.DeletePA
    if ($.boundItem(xfa.event.newText) == "DELETE EXISTING PA") {
      this.resolveNode("PAForm").presence = "hidden";
      this.resolveNode("DeletePAForm").presence = "visible";
      this.resolveNode("Non-PAForm").presence = "hidden";
      this.resolveNode("ChangePAForm").presence = "hidden";
    //+ GENERATED - DO NOT EDIT (ID:66B7091F-75C5-4A73-8ACA-885AE42D0308 CRC:2169512649)
    //+ Type: Action
    //+ Result4: SetPresence("$Node5","visible")
    //+ Result3: SetPresence("$Node4","hidden")
    //+ Result2: SetPresence("$Node3","hidden")
    //+ Result1: SetPresence("$Node2","hidden")
    //+ Node5: form1[0].ChangePAForm[0]
    //+ Node4: form1[0].Non-PAForm[0]
    //+ Node3: form1[0].DeletePAForm[0]
    //+ Node2: form1[0].PAForm[0]
    //+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
    //+ Condition1: ListField("$Node1","textselected","CHANGE / MODIFY EXISTING PA")
    //+ ActionName: DropDown.change.ChangePa
    if ($.boundItem(xfa.event.newText) == "CHANGE / MODIFY EXISTING PA") {
      this.resolveNode("PAForm").presence = "hidden";
      this.resolveNode("DeletePAForm").presence = "hidden";
      this.resolveNode("Non-PAForm").presence = "hidden";
      this.resolveNode("ChangePAForm").presence = "visible";
    //+ GENERATED - DO NOT EDIT (ID:C87B58DB-765D-426C-81BB-5A7ECFF42B63 CRC:2949030955)
    //+ Type: Action
    //+ Result4: SetPresence("$Node5","hidden")
    //+ Result3: SetPresence("$Node4","hidden")
    //+ Result2: SetPresence("$Node3","hidden")
    //+ Result1: SetPresence("$Node2","visible")
    //+ Node5: form1[0].ChangePAForm[0]
    //+ Node4: form1[0].Non-PAForm[0]
    //+ Node3: form1[0].DeletePAForm[0]
    //+ Node2: form1[0].PAForm[0]
    //+ Node1: form1[0].#pageSet[0].MasterPage1[0].FormActionDropDown[0]
    //+ Condition1: ListField("$Node1","textselected","CREATE NEW PA")
    //+ ActionName: DropDown.change.NewPA
    if ($.boundItem(xfa.event.newText) == "CREATE NEW PA") {
      this.resolveNode("PAForm").presence = "visible";
      this.resolveNode("DeletePAForm").presence = "hidden";
      this.resolveNode("Non-PAForm").presence = "hidden";
      this.resolveNode("ChangePAForm").presence = "hidden";

    You should post this question in the LiveCycle Designer forum here. This forum is for forms created in Acrobat (Acroforms).

  • Forms Error Message

    Hi,
    I am using Forms 9i Version 9.0.2.9.0 and Database Oracle 9i Enterprise Edition Release 9.0.1.1.1.
    Database and Developer are in the same computer (Windows XP Professional). Folders are ora90 and 9iDSHome respectively. OC4J is running properly. My problems are:
    1)After building a form, when I am running it after
    compilation, it shows Error FRM-90928 : Positional
    parameter after key on command line. I don't know the
    reason. Even I have made a control block without any
    database item, and when running, it is still showing
    the same message.
    2)I don't know how to get Forms Error message or
    Database Error messages. In earlier versions of Oracle
    there were ways to get these messages, but I could
    not get any in Oracle 9i.
    Could anybody please help me in this regard?
    Sarwar

    The Member Feedback forum is for suggestions and feedback for OTN Developer Services. This forum is not monitored by Oracle support or product teams and so Oracle product and technology related questions will not be answered. We recommend that you post this thread to the Oracle Technology Network (OTN) > Products > Developer Suite > Forms forum.
    OTN

  • Unable to email a document.  Keep getting error message:  Invalid Date Enter 2-digit month

    Unable to email a document.  Keep getting error message:  Invalid Date Enter 2-digit month
    Does not happen with all forms which emante from same USG webpage
    Any adivice?

    If i am using 11G andrtp is 11g but on rtp side if they configure SSL, is it mandatory to do it from our side also?No it not mandatory to enable SSL at your end however you have to configure identity and trsut at your end.
    Any update on my regular question(The main forum question)?You mentioned that you are posting message from 10g to 11g and as per log you are sending it to URL - https://dev-nog.server:443/b2b/transportServlet
    So few things which I see as a problem are-
    1. You should use URL https://hostname:soa_server_ssl_port/b2b/httpReceiver instead of https://dev-nog.server:443/b2b/transportServlet
    2. SOA server SSL port should be enabled (SSL should be enabled on SOA server)
    3. You should configure wallet at 10g side to contain trust cert of 11g server
    Regards,
    Anuj

  • Locating Oracle Forms Error Messages File to Load into Table

    I would like to create a procedure to suppress and replace Form errors and messages via ON-ERROR and ON-MESSAGE triggers.
    Is there a file that I can load the ERROR Messages from using SQLLDR?
    I have loaded the Oracle error file, $ORACLE_HOME/rdbms/mesg/oraus.msg as identified by Tom Kyte in the following link,
    http://asktom.oracle.com/pls/ask/f?p=4950:8:13189517973890228983::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:558822941373
    but it did not contain Forms Errors Messages such as:
    FRM-40106: No navigable items in destination block.
    FRM-40202: Field must be entered
    FRM-40401: No changes to save
    FRM-40405: No changes to apply
    etc.
    Any help in getting these error messages in a table, other than typing or copy/paste from Forms online help would be greatly appreciated.

    kolipaka wrote:
    Need to write control file to read .csv file for sql*load utility into oracle table.
    Thanks
    KLRWe're sorry that google is broken for you at this time.
    Please try our alternative search site...
    http://lmgtfy.com/?q=oracle+sql*loader+control+file+example
    or
    http://lmgtfy.com/?q=oracle+external+table+example

  • I am trying to export the combained PDF based on BOOK opetion using below scripts. but i am getting following error message "Invalid value for parameter 'to' of method 'exportFile'. Expected File, but received 1952403524". anyone knows, please suggest me

    Dear ALL,
    i am trying to export the combained PDF based on BOOK opetion using below scripts. but i am getting following error message "Invalid value for parameter 'to' of method 'exportFile'. Expected File, but received 1952403524". anyone knows, please suggest me solutions.
    var myBookFileName ,myBookFileName_temp;
                    if ( myFolder != null )
                            var myFiles = [];
                            var myAllFilesList = myFolder.getFiles("*.indd");    
                            for (var f = 0; f < myAllFilesList.length; f++)
                                        var myFile = myAllFilesList[f]; 
                                        myFiles.push(myFile);
                            if ( myFiles.length > 0 )
                                        myBookFileName = myFolder + "/"+ myFolder.name + ".indb";
                                        myBookFileName_temp=myFolder.name ;
                                        myBookFile = new File( myBookFileName );
                                        myBook = app.books.add( myBookFile );  
                                       myBook.automaticPagination = false;
                                        for ( i=0; i < myFiles.length; i++ )
                                                   myBook.bookContents.add( myFiles[i] );             
                                        var pdfFile =File(File(myFolder).fsName + "\\"+myBookFileName_temp+"_WEB.pdf");
                                        var bookComps = myBook.bookContents;
                                        if (bookComps.length === 1)
                                                       bookComps = [bookComps];
                                         var myPDFExportPreset = app.pdfExportPresets.item("AER6");
                                        app.activeBook.exportFile(ExportFormat.PDF_TYPE,File("D:\\AER\\WEBPDF.pdf"),false,myPDFEx portPreset,bookComps);
                                      //myBook.exportFile (ExportFormat.pdfType, pdfFile, false);
                                      //myBook.exportFile(pdfFile, false, pdfPref, bookComps);
                                        myBook.close(SaveOptions.yes);      

    Change the below line:
    app.activeBook.exportFile(ExportFormat.PDF_TYPE,File("D:\\AER\\WEBPDF.pdf"),false,myPDFExp ortPreset,bookComps);
    to
    app.activeBook.exportFile(ExportFormat.PDF_TYPE,File("D:\\AER\\WEBPDF.pdf"),false,myPDFExp ortPreset);
    Vandy

  • When installing iTunes 10 I get an error message "Invalid Drive: F:|". ANy advice?

    All I want to do is upgrade from 9 to 10 so that I can run my ipad.
    When installing iTunes 10 I get an error message "Invalid Drive: F:|". ANy advice?

    Bissley,
    I have received this error in the past and it is usually caused by Windows automatically changing your external drive letters when you install. There are two ways around it; first, follow the directions provided by b noir. Second, within iTunes go to Edit > Preferences > Advanced
    Under the advanced options you'll see a recessed section called "iTunes Media folder location". Although you may have set this in the past it, if Windows changed your drive letters it will no longer be valid. Default is usually "C:\blah\blah\mymusic"
    Changing it just a matter of clicking "change" and finding your music folder again or change your drive letter back (if it changed at all).
    If Windows is changing your drive letters, it is best to set them yourself so that everytime you plug in the devices they use the letter you assigned. Here is a link for that process:
    http://windows.microsoft.com/en-US/windows-vista/Change-add-or-remove-a-drive-le tter
    Hope it helps.

  • My computer recently froze whilst updating Itunes, and has subsequently removed Itunes from my computer. When i have tried to reinstall the programme, i get the following error message "Invalid Drive:G:\" any ideas?

    My computer recently froze whilst updating Itunes, and has subsequently removed Itunes from my computer. When i have tried to reinstall the programme, i get the following error message "Invalid Drive:G:\" any ideas?

    Try the following user tip:
    "Invalid drive X:\" install errors

  • When I try and install i keep getting an error message invalid drive

    When I try and install iTunes I keep getting an error message "invalid drive".

    Try the following user tip:
    "Invalid drive X:\" install errors

  • I deactivated Acrobat 9 Pro from a Windows 8 laptop and installed it on a new Windows 8 laptop and got the error message "Invalid Serial Number." I am entitled to this installation, can someone help?

    I deactivated Acrobat 9 Pro from a Windows 8 laptop and installed it on a new Windows 8 laptop and got the error message "Invalid Serial Number." I am entitled to this installation, can someone help?

    I see that the number in my Adobe Account is a MAC serial number – I purchased both the Mac and Windows versions of the program. I tried to enter the serial number of the Windows version into my account and it says it’s already registered. But when I installed the Windows version on a Windows computer I got the invalid serial number message. They have two different serial numbers! Can you help me with this?

  • How to change the error message Invalid login credentials

    Hi all,
    How to change the default error messages .
    1) In the Login page while giving wrong username or password .It showing
    Error message "Invalid login credentials".
    But requirement is change the above error message.
    2) I need to change the error message instead of "1 error has occureed"
    Thanks in Advance
    Sudhakar

    On the Login Page of the application create a 'Before Header' process with this code if  apex_application.g_notification ='Invalid Login Credentials' then
             apex_application.g_notification :='Your Altered Failed Login Message Here';
      end if;varad

  • Error # 3021 - Invalid Relation. --- MS Access to Oracle APEX

    Hello everybody.
    I have 3 years working with Oracle APEX and now I have the need to migrate an Access database to Oracle and APEX.
    I have:
    - MS Access 2003 database
    - Oracle SQL Developer 3.0.04.34
    - Oracle 10g Database
    I will try to provide all the relevant information.
    I used the Access Exporter for Access 2003 tool from Oracle SQL Developer to creat both .xml (for SQL Dev) file and .sql file (for APEX) but the process show me an error mesassge that said: "Error # 3021 - Invalid Relation. No current record".
    I read in OTN forum that it was because the migration tool can not access the system tables and that I need to modify permisions to allow "Read Data". I did this process and I was able to create .xml file, however if I chose Application Express to create .sql file or the option to create both files the same error shows.
    I have been reading in this forum but didn't find a way to solve it.
    Does any body knows how to solve this issue?
    Any help is appreciated.
    Thanks in advance for your help.

    Hello,
    I can't reproduce your issue.
    Have you double-checked that the tables MSysAccessObjects, MSysACEs, MSysObjects, MSysQueries and MSysRelationships are visible and that the Admin user has at least Read Design and Read Data permission on those tables?
    If that is the case, and the problem still happens, and you are able to give a copy of your .mdb file to Oracle, then I suggest to open a Service Request with Oracle Support so that the issue can be investigated.
    Regards
    Wolfgang

  • Forms Error Message Documentation

    Dear Colleague,
    Could someone please give me a link to documentation that contains the explanations of the Forms Error Messages, e.g. FRM-99999 etc.
    I have not been able to find it in OTN.
    Kind regards,
    Randy

    Yes, there are all available from the online help of the Forms builder.
    click the Summary panel, then the reference -> All Forms error messages link
    Francois

  • Error message "invalid menu handle"

    When I convert files to .pdf, I cannot open it and receive an error message "invalid menu handle." How do I remedy this?

    It does sound as though your computer is in a different state than you had it, and I can't provide any support for that. This forum is for users of Adobe's Acrobat.com services.
    If you need help with Adobe Reder, try posting in that forum: http://forums.adobe.com/community/adobe_reader_forums
    Perhaps it's just a matter of making Reader your default program for opening PDF files.
    Good luck!

  • HCM Form Error messages

    Hi,
    I need a solution on the Adobe form error messages, here the requirement is to throw the error message, if the employee belongs to employee group=3. This error message need to show when the form opens (After Form selected in the process step) . This error message show on the header message area  not on the form header.
    Please let me know if any one have solution.
    Thanks

    Hey Nagaraju,
    The problem with throwing errors when the form loads, is that you can't right now.  Errors in the framework can only be thrown when you do a check and send, or run an operation to the backend.
    What I've done in the past for throwing an error message for when a form loads, is to have a hidden field somewhere in the form, and if a flag is set detecting an error, then change the status of the field from hidden to visible, and pass the error message to the field.
    The other way is to force the form to refresh itself when it loads so the error shows up in the framework.
    Hope this helps...
    Cheers,
    Kevin

Maybe you are looking for

  • Safari 5.1.2 will not install

    Downloaded Safari 5.1.2 from the Apple web sit, running OS X.7.2 on a Quad Core Mac Pro. Software will not install.  On installation window reads "Waiting for other installations to complete".  Does not compete nor install after 30 mintes. No other p

  • Updating web galleries ridiculously slow

    I created a web gallery, published it, then decided to add two more photos. When I clicked "publish" from Aperture, it asks me if I want to update. I say yes. Then it tells me it will take an hour! That's the same amount of time it took to publish! D

  • PAGESTREAM file names

    Hi ! How to set file names of PAGE STREAM-ed desformat=HTML of destype=FTP reports? It got automatically FileNameSomeNumber_PageNo.htm name (FileName47611262_10.htm) ,and I would like to get custom name like FileName_PageNo.htm (without that 47611262

  • Switching from Parallels to Fusion.  How hard is it?

    I'm strongly considering switching from Parallels, which I currently use, to Fusion. However, I do not want to open myself up to a mind numbing, drive to drink experience. Has anybody made this switch? How hard is it? The only thing I use Parallels f

  • Tidying up objects and listeners (basic)

    A newbie wannabe-AS3 question. My difficulty is (I think) removing unwanted objects and listeners as I move from one mode to another in my project ... altho my difficulty behind that is probably inadequate understanding of Display List basics. In one