Dynamic PDF field value doesn't display XFDF value when no keyboard focus

I created a simple PDF (test.pdf) file (one text field), and saved it as a "static PDF". I created a XFDF file, and when I double-click on the XFDF file, the sample PDF opens and the field is populated.
Here's the problem: I save test.pdf as a "dynamic pdf" file. I double-click on the xfdf file and the pdf opens up, but the data is not displayed in the field. If you click on the field, the text appears. If you click out of the field, it disappears. If you update the field value, and navigate away, the value stays.
There is nothing but the field on the page, no scripts, no subforms, nothing.
Is this a bug in Adobe Reader 7.0? or is there some weird setting in Live Cycle Designer that I'm missing?
Thanks

What is your xfdf file look like? Something like:<br /><br /><?xml version="1.0" encoding="UTF-8"?><br />     <xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve"><br />          <f href="file:///C|/test3.pdf" /><br />     <fields><br />          <field name="firstName"><br />               <value>William</value><br />          </field><br />          <field name="lastName"><br />               <value>White</value><br />          </field><br />     </fields><br /></xfdf>

Similar Messages

  • PDF conversion toolbar doesn't display

    I'm using Acrobat V9.5.5 w/ Internet Explorer V10.0.5. The PDF conversion toolbar doesn't display even though it's enabled under add ons. Looking for a resolution. Thanks.

    AA9 is not compatible with IE10. Print to the Adobe PDF printer or open the web page directly in Acrobat under Create from Web.

  • TextInput (with lookup reference) which doesn't display database value

    Hi,
    We are using JHeadstart 11.1.1.0.31 and have a problem with a field (varchar2 displayed as textInput) which references a lookup table. The value which is displayed is not the database value we expected but a number which seems to be the number of the record in the table. When we display the referenced field from the lookup table, we see the correct database value.
    When we run the service in the Model layer, this problem doesn't exist.
    Thanks for helping us,
    Petra Wernars / Jonathan Damen

    Hi,
    The issue here is that:
    - a model LOV has been defined on the View Object attribute
    - you are using a normal texinput to display the value
    - you are using something like #{bindings.MyField.inputValue} to bind the value
    The 'inputValue' will in this case assume a choicelist is rendered (because of the model LOV definition) so it will give the index within the choicelist, instead of the normal VO attribute value!
    Use 'attributeValue' instead in this case, so you will always show the real attribute value. Or remove the model LOV if you are not using it. Notice that with default options selected, JHeadstart will create a model LOV on each column that references another viewobject.
    Regards
    Evert-Jan de Bruin
    JHeadstart Team

  • Secondary Cost Element Values doesn't display in Profit Center Report

    Hi everyone,
    I'm having a problem with our Profit Center plan/actual/variance reports wherein it doesn't display the postings I made to the Secondary cost element when I executed an assessment cycle (KSU5). I already set in the configuration that all postings to be done in the cost centers, should have a parallel posting to the profit center assigned to it. I can see the postings in my cost center reports, but not in my profit center report. Could I have missed out on any procedure to enable the secondary cost element parallel posting in my profit centers? Any help would be appreciated. Thanks!

    it might be the configuration of the library or some parameter in the report (record type should be 0 and 2 for actual values, where 2 stands for distributed values and 1 and 3 for planned values)
    but it also might be that the reconciliation is done between different CC and same PC
    - check your CC organisation asignment
    - if sender cost center and receiver cost center have tha same PC it is probably the reason
    - I had that problem my self and didn't solve it
    cheers
    matej

  • Additional Field Infoset - how to display multiple values

    Hi all,
    I have created an extra field in an infoset and I can succesfully retrieve the value I need (with coding), only now I loop over a selection and then the last value that is retrieved is being displayed. How can you display all values of the selection, so you get several lines in the output?
    Many thanks!
    Nathalie

    I have a item list box and i have 3 enteries in it .If suppose i click on the first entry with out the action being called it displays the message but the same case is not getting happened with multiple value selection..means when i am clicking all the three fields none of the value is getting displayed. There is no action or no button created in for displaying the value which u click on.Can you tell me how to go on with this???

  • Bridge CC (German) doesn't display aperture values correctly

    Hi everyone,
    the German edition of Bridge CC still seems to have the same bug as Bridge CS6:
    Bridge displays aperture values as integer values both in the filter column and in the metadata box, e.g. f1.4 is shown as 1.0, f2.8 is shown as 2.0, f5.6 is shown as 5.0 etc.
    I've reported this bug last year to Adobe and they call it a "known issue" due to the decimal sign ("," instead of "."). Unfortunately, Adobe didn't care to correct it for the CC-Upgrade.
    It can be corrected manually by changing the variable "Decimal" from "," to "." in the file strings.txt which can be found in the folder "Content/Resources/de.lproj" (accessible, when right-clicking on Bridge.app, => "Show content"). You will need admin rights to do so.
    So far I've had to repeat these steps after each Camera Raw Upgrade which is a little annoying.
    I hope this can help other's having this issue.
    Cheers, Joe

    Thank you for bring that up again.  I too thought after you told then exactly what to do, and they acknowledged it the changes were made.
    If others having this problem (probably European languages) they have a workaround.

  • Count() doesn't display 0 values

    Hi everyone, how to display 0 values from query:
    SELECT TO_CHAR(first_time,'DD-MON-YY:HH24') DAY, COUNT(TO_CHAR(first_time,'MM-DD-YY HH24')) Switches_per_hour
      FROM v$log_history
      WHERE TRUNC(first_time) BETWEEN TRUNC(sysdate) - 6 AND TRUNC(sysdate)
      GROUP BY TO_CHAR(first_time,'DD-MON-YY:HH24')
      ORDER BY TO_CHAR(first_time,'DD-MON-YY:HH24');

    Similar query (doing the same in different way) displays 0 values
    SELECT TO_CHAR(first_time,'DD-MON') DAY,
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'00',1,0)) "00",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'01',1,0)) "01",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'02',1,0)) "02",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'03',1,0)) "03",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'04',1,0)) "04",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'05',1,0)) "05",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'06',1,0)) "06",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'07',1,0)) "07",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'08',1,0)) "08",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'09',1,0)) "09",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'10',1,0)) "10",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'11',1,0)) "11",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'12',1,0)) "12",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'13',1,0)) "13",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'14',1,0)) "14",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'15',1,0)) "15",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'16',1,0)) "16",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'17',1,0)) "17",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'18',1,0)) "18",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'19',1,0)) "19",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'20',1,0)) "20",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'21',1,0)) "21",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'22',1,0)) "22",
      SUM(DECODE(TO_CHAR(first_time,'hh24'),'23',1,0)) "23",
      COUNT(TO_CHAR(first_time,'MM-DD')) Switches_per_day
    FROM v$log_history
    WHERE TRUNC(first_time) BETWEEN TRUNC(sysdate) - 6 AND TRUNC(sysdate)
    GROUP BY TO_CHAR(first_time,'DD-MON')
    ORDER BY TO_CHAR(first_time,'DD-MON') ; Anyone?

  • JDev903 debugger doesn't display local variable when debugging into JDK src

    Hi,
    I found that JDev903 debugger doesn't display local variables in the "smart data" and "data" panels when debugging into the JDK src. For most of the time, it only shows "this" object.
    Is this right? How do I setup JDev903 to display local variables in debugger?
    thanks,
    Richard

    Hi Fred,
    Did you forget to put resultFormat=&quot;e4x&quot;?

  • Address bar doesn't display correct link when I open a new tab from a previous page, it displays the linkof the original page

    from a web page, right click on a link+open a new TAB. the link correctly opens in a new tab, but it is not displayed in the address bar.

    Do you have that problem when running in the Firefox SafeMode?<br/> ''A troubleshooting mode.''<br />
    1.You can open the Firefox 4.0 SafeMode by holidng the '''Shft''' key when you use the Firefox desktop or Start menu shortcut. <br />
    2. Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut to open it again.''
    If not, see this: <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • N8 doesn't display message icon when locked

    Hello
    My Nokia N8 stopped displaying the message icon when the phone is locked after the recent Anna update and service pack. The button still flashes, but the icon is gone just like it used to be pre-Anna.

    Open control panel.
    Choose Network and internet
    Select the VIEW NETWORK STATUS TASKS under NETWORK and SHARING CENTER section
    Choose wireless Network Connection or something similiar. If connected with ethernet then select it and press right button.
    Click the properties button
    Find Internet ''PROTOCOL VERSION 6(TCP/IPv6)''  anduncheck it, then click OK.
    Click CLOSE
    Restart your PC and try.
    Reason For Problem
    When u will use ipV6 , you have to setup your router and lan/wifi in ipv6 mode. Then bejour pass sound through ipv6 but when you use 2 mode ( ipv4 and ipv6 ) together benjour gets confuse some time it pass through in ipv6 and sometime ipv4 .if your router setup is ipv4 then, when banjour pass sound through ipv6 you will not see airplay button in itunes.
    Hope it's clear to everyone .
    Itunes

  • Installing Flash Player in Mac 10.8.4 : The installer doesn't display a window when launched

    Hello
    After accidentally uninstalling Flash Player, I tried to reinstall but I can not do it. I looked in the console and I found this:
    25/06/13 00:00:19,292 CoreServicesUIAgent[559]: Error: qtn_file_apply_to_path error: Read-only file system
    25/06/13 00:00:34,318 coreservicesd[61]: Application App:"Install Adobe Flash Player" [ 0x0/0x3b03b]  @ 0x0x7fb9c8e33790 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x3c03c:) ), so denying.
    25/06/13 00:00:34,319 WindowServer[77]: [cps/setfront] Failed setting the front application to Install Adobe Flash Player, psn 0x0-0x3b03b, securitySessionID=0x186a4, err=-13066
    25/06/13 00:00:34,323 authexec[570]: executing /bin/sh
    25/06/13 00:00:34,329 com.apple.launchd.peruser.501[354]: ([0x0-0x3b03b].com.solidstatenetworks.awkhost[562]) Exited: Killed: 9
    Can you help me? I looked for a solution on the Adobe web site and on the internet but I found nothing.
    Thank you in advance

    Solution trouvée =D
    solution found =D
    for people who are in the same situation: use this version available here
    for more questions my Facebook : z.lachgar
    Good luck!

  • Dynamic Text Field is not displaying foreign characters... HELP!

    I have a dynamic text field that is not displaying foreign characters properly. They appear as boxes.
    Here's what I've tried.
    Under properties for the text field, I clicked on the embed characters button. In there, I pasted all the special characters I would need and clicked okay. Shouldn't this be enough for the text to display properly? What am I missing? Please help...

    More info: I'm noticing that in the actual dynamic text field in my .FLA file, if I type a foreign character like é, it pops up as a block. My family font is set to New Caledonia... is it possible that New Caledonia doesn't have those particular glyphs? The thing that doesn't make sense to me though is, last year when I made this card, it worked fine with New Caledonia... Any help is greatly appreciated!!

  • Dynamic mandatory field error message is not getting displayed in webui

    Hi,
    In Appointment if the importance is HIGH i made Location as mandatory.For this i enhanced BT126H_APPT/ApptDetails. In the get_p_location() method of BTACTIVITYYH i have written the code.
    Now the problem is Error message for this dynamic mandatory field is not getting displayed in webui.
    I debugged in DO_FINISH_INPUT error message is getting generated but it is not getting displayed in ui.
    Can anybody tell where the problem is?
    Thanks,
    Hari.

    Hi Hari,
    Really sorry do not know how to convert this nug file to text
    How ever quick solution for your problem would be just keep your validation in 'DO_VALIDATE_INPUT' method of the view controller.
    Means even if the User clicks on SAVE , Since it fails here , it would not allow you to go further.
    Thanks,
    Rajesh P

  • Displaying blank value for the Rounding Value field in MM03 transaction

    Hello All,
    We are using BDC to create a material master record.Some users are not loading the rouding value in the MRP1 screen. The rounding value is stored in the MARC table which has the data type as QUAN. Thus when there is no value being passed it implicitly converts the blank value to 0.00. The users do not want the rounding value to be displayed as 0 when they view the material record using mm03. Kindly let me know if there is any way to display the rounding value as blank if no value is present.
    Thanks in Advance.
    Regards,
    Avinash Sai N S

    Hai siddharth,
    I have enabled the BADi HRPBSIN_ADDITIONAL_CHECKS to do validations for loans. Can u pls explain is there any FM or wat can be used to set default value for the field in portal.
    Pls give some suggestions,
    thnaks,
    Nalla B.

  • JSP doesn't display Oracle varchar2 Items on screen

    I recently bought new laptop with windows XP professional with service pack 2. Loaded Oracle 10g Client on it. I have a Dell server with Linux and Oracle database 9i. Accessed the this database through new laptop using SQL plus window and works OK. (With that it is sure that my hosts file updated correct with proper IP address of server and tnsnames.ora files).
    I have created a JSP application to access this database. It works perfectly OK in my old laptop with Windows XP home with service pack1. The connections are established through ODBC Data Source Administrator (Control Panel->Administrative Tools->Data Sources) by adding a System Data Source. The application works perfectly OK and displays all fields that I intended and coded for. Only thing is it has Oracle 9i client.
    But the same application in the new laptop doesn't work properly. It doesn't display Varchar2 values. It displays only Number and Date data types. This shows it is connecting to the database (oracle 9i). But varchar2 values are not displayed. The connections are established through ODBC Data Source Administrator.
    I'm using Tomcat server (jakart-tomcat-5.0.27) on both the laptop. Please help me here.

    Suggestion: don't use the ODBC driver to connect to Oracle. I presume you are using sun's JDBC-ODBC bridge?
    Oracle have got a reasonably good 100% java JDBC driver which is all you need, and is a lot better than the ODBC bridge. I would recommend using the Oracle thin driver.
    Your java code should remain largely unchanged. The only thing you would need to alter would be
    1 - driver class being loaded (oracle.jdbc.driver.OracleDriver)
    2 - driver url (default would be something like: jdbc:oracle:thin:@127.0.0.1:1521:ORCL)
    3 - You would need the oracle jdbc driver in the classpath (ojdbc14.jar) You can find that in [ORA_HOME]/jdbc/lib
    If you've written your database connection using a JNDI datasource, then all you would need to change would be the configuration in your tomcat server.
    Hope this helps,
    evnafets

Maybe you are looking for

  • Error Message: Information is needed before this report can be processed.

    Hi Experts, I am scheduling a Crystal Report from Infoview. Data Source for Report is BEx Query. While scheduling i am providing all  details like Parameters, Formats, Destination etc. But  Schedule is failing. The reason is parameter field is empty

  • Can't paste a password in Remote Desktop?

    I'm on OS X 10.9.5 trying to use RemoteApp in Remote Desktop to connect to remote.ie. I use pretty long passwords, managed with 1Password.  It seems like the password field in the app has copy and paste disabled, so I have to read and type them in.  

  • Create web service using java class

    Hi, I created the web service using java class then i deployed this web service in to the weblogic admin server.when i tested this process it is working fine. when I tested The generated WSDL to this process in browser(IE). it is not working. I need

  • Thread Methods but in Object class, y?

    Why wait, notify, notifyall methods are in object class instead of Thread class?

  • SPLASH IMAGE PROBLEM IN MIDLET

    hi guys nd gals i want to display an image splash at the start of my midlet am doing that successfully but d image comes in ut too big for the display dat way part of it is offscreen how can fit it into the display? thanks