QTP 11.0 unable to identify PDF Form

I am trying to automate a PDF form (standalone).
I have installed QTP 11.0, Adobe Reader 11.0.6 and Adobe PDF Test Toolkit.
I am able to see 'acroQTP' add-in when I launch QTP and I have selected it. But, QTP is still not able to identify the objects.
When i object spy on the PDf form, QTP identifis itas Window("egexwndtitle:=Adobe Reader").WinObject("name:=AVPageView")
II would apould appreciate your responses.

Does AcroQP addin Work fine with Adoe Reader11.0.6

Similar Messages

  • Unable to Split pdf form containing Digital Signature using Assembler

    Hi All,
    I am trying to split a pdf form into multiple forms using Assembler service provided by Adobe LiveCycle. Normal pdf's are getting splitted but facing issues with pdf's containing Digital Signature is there any way to split those forms please suggest ?????
    Regards,
    Ali

    Hello,
      We have a livecycle form that allows people to save an image with an image field and other data in some text fields.
    The users having problems are using Acrobat Pro XI. They seem to be able to open the form, fill in some data and save the data just fine except for this image.
    The image does not display when the user re-opens the form. However, if another user opens that saved form then that user can see the image OK.
    Any ideas what might be happening?
    Thank you.

  • Unable to open PDF form using latest reader

    Unable to open this PDF: http://www.uscis.gov/files/form/i-130.pdf

    It is something we consider, but the cost to implement is pretty large and many more users encounter the forms that we do support. However, we do see a number of users request being able to fill this sort of form in the forums and that feedback is appreciated. Bottom line, this isn't something we have immediate plans to implement, but it's a request we hear and will continue to consider.

  • Unable to view PDF forms

    I use adobe live cycle to create forms for use in our company, these forms must be editable by our mobile employees by way of free text field and drop down boxes. The form work fine on  a PC running Adobe Reader X but I am unable to edit them when using Adobe reader X on my playbook. Does anyone else have this issue or can anyone else offer a solution.

    Hi ,
    I had searched the forum and i am aware of the solutions provided there. But that did not work for me. I found some SAP notes which say Vista is suported with NW04S SP 12 onwards. My issue is our server is running on SP11. I would have to migrate the forms to ZCI layout for it to work.
    Regards
    Prakash

  • Unable to edit the forms in Adobe Acrobat 9 Pro and adobe pdf reader.

    Hai ,
        i am unable to edit pdf forms . on clicking on the form text field error message comes as "font capture" message heading and content as
    "C:\Windows\system32/ATMLIB.dll is either not designed to run on Windows or it contains an error. Try installing the program again using the original installation media or contact your system administrator or the software vendor for support."
    if pressed ok . aplication get closed
    i reinstalled all aplication with old versions but sill have the same error .please give  a solution . thank you.

    thank you for the suggestion, but I do not have a "Send Email" or "Submit" button available in my version. I have "Attach to email" option which automatically opens a new message in MS outlook (which I did not set up, it just started doing so automatically) without any further dialogue boxes or options.
    Also, this is only for regular PDF files, not forms.

  • Is there any part of a PDF Form that is ignored when digitally signing?

    I'm building a simplified workflow process using PDF forms. Users would add a Submit button to a form that posted to an internal web service, which would add the forms to an internal document system for further processing.
    Part of the process involves subsequent users in the workflow opening the forms and adding additional signatures, then submitted them back into the system.
    I'm trying to find a way to identify PDF forms that have already been submitted vs. new forms that have not been seen before. I'd like to add an internal identifier (flag, ID value, something) to the PDF the first time we see it. But, I need to make sure not to invalidate the existing signatures. I don't want to change any of the form fields, or the visual content, or any other user-facing aspect of the PDF itself; I'm looking more for, say, a custom property, or new keyword, or something.
    Is there any portion of a PDF that does not get considered as "part" of the form when applying and validating the digital signatures?

    Yeah I kinda figured that... Really too bad. Seems lke it should be possible somehow. Anyway, do you all have any suggestions about the best way to combine a static form that is really just text fields and such (that comments and markup tools can be used in) with another page that is sections of narrative that would need to be able to flow?
    Or better yet, a way to draw lines on to a form without using the comment and markup function?
    I like your idea about connecting two forms - but I need to keep the final product as simple as possible. Once the user fills it out, they would be to be able to submit it and it show up as one file, even if that is just a flat file. I don't expect you all to tell me how to do this, but it would be nice to know its possible before I commit to the project and research. Thanks in advance.

  • Published pdf form is unable to connect with database

    Hi Guys!
    I have created a PDF form using Adobe Live Cycle Designer which have some text fields namely RECORD and NAME. I have connected this form with a Database. When I enter a record in the RECORD number field the NAME field of this form has been populated with the help of XFA Script which is written on the exit event of the RECORD text field. When we publish this form, a new interactive PDF is created which works fine and populates the NAME field from the an SQL database but when I access this PDF form (which is located on a shared location) from some another location (not on the same machine where i designed this form) it is unable to connect to the database and does not work as expected.
    I think there is some thing i am missing for the database connectivity.
    If any body on this forum can help me out.
    thanks
    Here is the Script for the above form which i used to populate the NAME FIELD on the basis of enetered RECORD number.
    ----- Document.Page1.txt_MRN::exit: - (JavaScript, client) -----------------------------------------
    /* This dropdown list object will populate two columns with data from a data connection.
    sDataConnectionName - name of the data connection to get the data from.  Note the data connection will appear in the Data View.
    sColHiddenValue  - this is the hidden value column of the dropdown.  Specify the table column name used for populating.
    sColDisplayText  - this is the display text column of the dropdown.  Specify the table column name used for populating.
    These variables must be assigned for this script to run correctly.  Replace <value> with the correct value.
    var sDataConnectionName = "DataSource";  // example - var sDataConnectionName = "MyDataConnection";
    var sColHiddenValue  = "RecordNum";   // example - var sColHiddenValue = "MyIndexValue";
    var sColDisplayText  = "Name";   // example - var sColDisplayText = "MyDescription"
    // Search for sourceSet node which matchs the DataConnection name
    var nIndex = 0;
    while(xfa.sourceSet.nodes.item(nIndex).name != sDataConnectionName)
    nIndex++;
    //var oDB = xfa.sourceSet.nodes.item(nIndex);
    var oDB = xfa.sourceSet.nodes.item(nIndex).clone(1);
    oDB.open();
    oDB.first();
    // Search node with the class name "command"
    var nDBIndex = 0;
    while(oDB.nodes.item(nDBIndex).className != "command")
    nDBIndex++;
    // Backup the original settings before assigning BOF and EOF to stay
    var sBOFBackup = oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("bofAction");
    var sEOFBackup = oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("eofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayBOF", "bofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayEOF", "eofAction");
    // Clear the list
    this.clearItems();
    // Search for the record node with the matching Data Connection name
    nIndex = 0;
    while(xfa.record.nodes.item(nIndex).name != sDataConnectionName)
    nIndex++;
    var oRecord = xfa.record.nodes.item(nIndex);
    // Find the value node
    var oValueNode   = null;
    var oTextNode   =  null;
    var sRecordNum  =  $.rawValue;
    for(var nColIndex = 0; nColIndex < oRecord.nodes.length; nColIndex++)
    if(oRecord.nodes.item(nColIndex).name == sColHiddenValue)
      oValueNode = oRecord.nodes.item(nColIndex);
    else if(oRecord.nodes.item(nColIndex).name == sColDisplayText)
      oTextNode = oRecord.nodes.item(nColIndex);
    var found= 0;
    while(!oDB.isEOF())
    if (oValueNode.value== sRecordNum)
      txt_FirstName.rawValue = oTextNode.value;
      txt_LastName.rawValue = oTextNode.value;
      found = 1;
      break;
      //this.addItem(oTextNode.value, oValueNode.value);
       oDB.next();
       if (found == 0)
        txt_FirstName.rawValue = "";
        txt_LastName.rawValue = "";
    // Restore the original settings
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sBOFBackup, "bofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sEOFBackup, "eofAction");
    // Close connection
    oDB.close();

    Finally achived the database connectivity for the published pdf form developed in the Adobe LiveCycle Designer 8.0.
    There must be the same driver version of the DSN on both machines. The machine which published the form and the one accessing it.
    Use the Admin account to add the DSN on both machines.
    Get rid of the error: Connection for Source "DataConnectionName" failed because the environment is not trusted.
    Thanks
    AbdulHafeez

  • I am unable to save my form responses as a pdf or excel file.

    I am unable to save my form responses as a pdf or excel file.  The error message states: Acrobat.com could not save this file. The file might be open in another application and cannot be overwritten.

    Did saving ever work or did it fail the first time you tried?
    Have you tried to save to multiple locations?  Maybe it has something to do with permissions on the directory you are trying to save to.
    Have you tried saving something from another web site to the same location?  Try creating and saving a file in/from https://workspaces.acrobat.com/app.html#o and see if that has the same result.
    Thanks,
    Josh

  • I am unable to copy fillable fields from a pdf form into Microsoft Word or notepad....Help! thank you!

    I am unable to copy fillable fields from a pdf form I created in Adobe X Pro into a Microsoft Word or Notepad document. Please help! Thank you!!

    I have created a fillable form. Part of the information from that form needs to be copied and sent to another department at work. Once i complete the fillable form (e.g. select options from a drop down, enter test in test boxes that are on the form) when i copy that section, i only get the non-fillable information pasted into word or notepad, the drop down selections and fillable text do not copy.

  • QTP unable to identify objects in a flex application

    Hi,
    I am having an application that runs on flex 3.6 SDK. I am trying to automate the same using QTP 10.0, but, I am unable to identify the objects. I have installed the Flex 4.5 add-in, but still unable to recognize objects.
    Upon browsing some forums, i found that I need to compile the files "automation.swc, automation_agent.swc, automation_dmv.swc, qtp.swc, automation_flashflexkit.swc" by including them in <include-libraries> ...</include-libraries>  tags in "flex-config.xml" file present under "C:\Program Files\Adobe\Flex Builder 3 Plug-in\sdks\3.6.0\frameworks". We did that, but still, not able to identify objects.
    It would be of great help to me if any some one could tell if I am missing out anything ?

    hello,
    not only need the objects be enclosed by their parent frame, but they also need to be "on top of it" ... meaning if you imagine your report layout as a set of layers that you look at from the side, your "layout surface" would be the bottom most layer and then all objects would be layered on top of each other. in this view, only objects that are in layers above a particular frame can become its children. after that the relationship is determined whether or not an object is inside a frame or not.
    you might want to check your object navigator to see whether or not the particular objects are actually in the right place in the hierarchy.
    thanks,
    ph.

  • PDF form has lock icon and I'm unable to view my information entered

    I've been working on a 127 page pdf form for a couple of weeks and have saved all of my information multiple times.  I recently opened the document to complete the form(I literally had 2 entries left) and I am unable to view any of the information I've entered.  The information is no doubt still there because the original form is 7mb, and my saved form is 7.26mb.  I am also able to see all of my information when I preview the document by opening the my documents window and clicking once to preview the form in the same window, however can not see any of my information when I attempt to edit it and open the form completely.  I am using a PC, windows 7.  I'm assuming I can't view my info. because I somehow locked it but I am not asked for a password when I open it.  I recently downloaded the original form again and typed in info. and there is no lock icon when I save it under a different name and I'm able to view the info. entered.  I have no idea how I locked the form or if this is the reason I can't view the info. when I open the documetn completely.  Any help would be greatly appreciated.  Thanks.

    There's not much you can do at this point. If you changed the passcode since the last time you synced, or the computer you were syncing with is not available, then there's no way to bypass it. You're going to lose the information.

  • Unable to apply syntax for upper case in pdf form

    Hi All,
    I am unable to apply syntax in adobe livecycle design to conver the case automatic in upper case.
    Please help me how to do this as I am selecting form calc , clien and pasting the script but it does not work.
    or please share me your email id so that I can share my pdf form.
    Regards,
    Md Afsar

    The upper method needs a parameter.
    Use this script.
    $ = Upper($)

  • Unable to see print preview for Sales PDF form SLS_FORM01 SD_SLS_PRINT01

    Hi,
       I tried to use pdf forms for my sales print forms . I maintained standad driver program SD_SLS_PRINT01 and pdf form SLS_FORM01 in NACE. But i am unable to see print preview . But i am able to view standard purchase order pdf form MEDRUCK_PO . When i debugged the code, i found an excetion " %fpcomp_usage_error '039' textkey-name" , it gives style does not exists . The exception detail is as follows .
    Exception : USAGE_ERROR
    Message Id : FPUIFB  Message Number : 039 .
    Message : Text object doesnot exixts .
          Kindly guide me to overcome this issue .
    Thanks and Regards,
    S.Sivakumar

    this is no adobe specific error, it's from your application. You've some entries in your customizing so that specific texts are expected by the form.
    go to the context, search your text there and check wheter the checkbox "no error when text is missing" is activated or not...
    if the textbox is not activated but the text is missing --> thats the behaviour you have

  • Validating PDF forms in QTP

    Hi Guys,
    I have an issue and I was wondering wether you can help me you with this.
    I am trying to use QTP with ADTT plug-in to test a pdf form. Recording is fine.
    However, when the script is played back Validation fails (after validate button is pressed).  the item appears to be selected (see code snipset below). Is there any other property which needs to be set by QTP I should be aware of?
    .....AcroXFAForm("EntryValue").AcroXFAListBox("xfa[0].form[0].Forms[0].MainFo").Select
    .....AcroXFAListBox("xfa[0].form[0].Forms[0].MainFo").SetValue "GBR"
    Many Thanks,
    Leonid

    Hi Leonid,
    I've encountered exactly the same problem in our form.
    Examine all the properties of the listbox from when it was recorded; an easy way I think is to go to the Object Repository, select the Test object and click the "Add Properties" button (a green +) to get a dialog of all the properties (click Cancel when done browsing).  You will probably see:
    value:  GBR
    rawvalue:  GBR
    displayvalue: United Kingdom
    Here's my theory:  I am not sure but I believe "rawvalue" is irrelevant.  The QTP subroutine SetValue sets the "value" property to "GBR", and then there is some eventing on your form that does a lookup and will update the "displayvalue" to United Kingdom.  The UI thread (and consequently the snapshot you show) waits for that eventing, but the next line of the QTP script doesn't (at least by default).  So if the next line is a CheckPoint that looks at "displayvalue", the CheckPoint will probably fail (it's actually a race-condition, so it may pass sometimes) saying that "value" is blank (or whatever it was before SetValue).  Then it takes a snapshot of the UI, which waits for the eventing thread, which shows "United Kingdom".  Frustrating and beguiling.
    Quick solution:
    Insert a "wait(1)" to always wait a second (or make it longer) for the line after SetValue (between SetValue and your Checkpoint).
    A more conservative solution:
    If sometimes your form's eventing is quite complex and you might need to wait a long time, but don't want every SetValue to be followed by a long pause, then insert a command which waits for eventing on the form to finish between SetValue and the Checkpoint, eg.
      PDFDoc("YourForm.pdf").WaitProperty "ready", true, 10000  ' waits for a maximum of 10 seconds
    In theory, this call might not wait at all, however my experience has been that it seems to wait a minimum of 1 second and polls in increments of 1 second.  So much for specifying a value in milliseconds.
    Hope that helps!
    - Brent

  • Unable to close open PDF  form after viewing it

    Hi All,
    We have an issue with a webdynpro application in Java. In this application, we are make using of the Interactive form to bring up  a PDF form that the users can print. Our issue is that there is no gracefull way to exit the window once the PDF is displayed.
    There's no way to close the browser window that opens PDF except shutting
    down the computer, and this happens only for few users and not for every one
    We are on EP6.0 SP18 and using Adobe 7.0.9
    Appreciate any help
    Thanks,
    Kiran

    Hi Kiran,
    Just try this .. I hope this should work.
    Can you please install the Adobe Reader 8.1.1 and try again?
    I have seen this problem in 8.0 but after installing the reader 8.1 it got solved.
    Cheers
    Satya

Maybe you are looking for