Why is the content of a fillable field missing?

I enter data in the fillable fields and save the document as a pdf file. I sent it to someone who opens it using an iPhone or iPad and the content of the fields is not visible.

Hi,
Did you send your form as an email attachment?
It is highly likely that the email recipient opened your PDF form in Apple Mail on an iPhone or iPad.
Please note that Apple Mail's preview does not show filled form data or annotations (Sticky Notes, Highlight, Freehand drawing, etc.) in a PDF document.  It's the known limitation in Apple Mail, iBooks, and Safari.
You can ask the email recipient to install Adobe Reader for iOS and use the "Open In" feature to open it in Adobe Reader.
Please take a look at the Mail section of the FAQ documents for the instructions on how to use "Open In".
For iPad, How to open PDF documents in Adobe Reader for iOS (iPad on iOS 7 or 8 version)
For iPhone, How to open PDF documents in Adobe Reader for iOS (iPhone on iOS 7 or 8 version)
Please let us know if you have additional questions.

Similar Messages

  • Any reasons why the content of a fillable form cannot be viewed or printed?

    I have created a 2-page form on Adobe Acrobat XPro. I emailed it to specific people and they filled it out, saved it and emailed it back. I am able to view what they typed in my monitor only, when I click on the field, but it will not print the content. Any reasons why the content of a fillable form cannot be viewed or printed?

    That's what I asked the people I emailed the form to and someone just emailed me saying: "I'll check my adobe. It keeps asking me to update and I keep ignoring it so maybe it was my fault". So there is the answer I guess. I saved the document as an Extended PDF and selected Enable Additional Features. Is there anything else I should consider?

  • Why did the contents of my states panel disappear?

    Why did the content of my States Panel disappear?

    Hello!
    I can recommend you do the following:
    1/ Quit Mail completely via the Mail-menu
    2/ Open the Finder and find the go-menu near the top left corner of your computer display (not the Finder-window) Choose go to folder.
    Copy-paste the following line into the field that appears, including the ~ :
    ~/library/mail/v2/maildata/
    3/ Move all files that start with "envelope" and "ExternalUpdate" to the trash. Don't empty the trash in case we need to restore these files (which is not likely, but still)
    4/ Restart OS X. Open Mail. Now it will re-import your existing mail. Is your issue solved after this?

  • Why is the contents of Safari's downloads folder different than the actual folder?

    Why is the contents of Safari's downloads folder different than the actual folder that resides in my users folder?

    Problem is if I delete that .plist I'll delete those downloads.  I'm still able to launch those downloads from that location so that tells that file is probably not corrupted. I need to be able to located that folder and transfer the downloads from it before I do anything like this.  So that begs the question, where is that folder located?  When I do a folder search I'm taken to a Downloads folder, but it's not the one that is showing up from within Safari as it's contents are too different. 

  • Why does the content of my emails not show on the main Mail page but does in the Inbox list of all emails?

    Why does the content of my emails not show on the main Mail page but does in the Inbox list of all emails?

    Try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. When the screen goes blank power On again in the normal way.] It is absolutely/appsolutely safe!

  • When I'm using facebook on Safari,why is the video icon on chatbox is missing?

    when I'm using facebook on Safari,why is the video icon on chatbox is missing?

    Because video chat is not available.

  • Why doesnt the Iphone come standard with a missed text, email or call alert

    Why doesnot the Ipone come standard with a missed text, email or call alert, after all it is suppose to be a smart phone

    The only visual aid the iPhone has for missed calls, text, email, etc. is the Notification center. After opening notification center, you chose each of the desired areas, i.e. phone calls, mail, etc. and select your notification. This can be badges, etc. If you miss a call, it will display a notice on the screen for a period of time and the screen will then go dark again. If you wake up the phone and you have missed calls or texts, they should show up on the screen, depending on your settings. The iPhone does not, and never has had a flashing light as some other phones have.
    Check the manual for setting the Notification Center. http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • Why does the content spill over and how do I position this under the menu and title?

    I was following this tutorial on how to add a scrolling image gallery to a Flash website.
    (http://www.republicofcode.com/tutorials/flash/xmlimagegallery/index.php)
    From what I understand from this tutorial, it is just a matter of copying the Actionscript code and pasting it onto the timelines then making modifications on the XML.
    (kindly see a screenshot of timeline layers I made and as to where I put the Actionscript code:
    http://i429.photobucket.com/albums/qq19/tsujzpie/imagegalleryproblem_01.jpg )
    I pasted the code onto the blank keyframe labeled "Gallery"...
    But all I get is this weird effect when I click on the button for the gallery...
    (kindly see a screenshot of it here: http://i429.photobucket.com/albums/qq19/tsujzpie/imagegalleryproblem_02.jpg )
    When you put a blank keyframe on a timeline, any content put in there is supposed to only be contained in that very frame, right? How come then that - whenever the gallery button is clicked on - the content from that section spills out onto the other sections even when I click on other button for the other areas?
    I just really couldn't think why this is happening - any reason why this is so?
    And how do I position the gallery right under the section header and menu bar?
    Here is its AS2 code, by the way:
              import mx.transitions.Tween;
              import mx.transitions.easing.*;
              var myGalleryXML = new XML();
              myGalleryXML.ignoreWhite = true;
              myGalleryXML.load("gallery.xml");
              myGalleryXML.onLoad = function() {
                        _root.gallery_x = myGalleryXML.firstChild.attributes.gallery_x;
                        _root.gallery_y = myGalleryXML.firstChild.attributes.gallery_y;
                        _root.gallery_width = myGalleryXML.firstChild.attributes.gallery_width;
                        _root.gallery_height = myGalleryXML.firstChild.attributes.gallery_height;
                        _root.myImages = myGalleryXML.firstChild.childNodes;
                        _root.myImagesTotal = myImages.length;
                        _root.thumb_height = myGalleryXML.firstChild.attributes.thumb_height;
                        _root.thumb_width = myGalleryXML.firstChild.attributes.thumb_width;
                        _root.full_x = myGalleryXML.firstChild.attributes.full_x;
                        _root.full_y = myGalleryXML.firstChild.attributes.full_y;
                        callThumbs();
                        createMask();
                        scrolling();
              function callThumbs() {
                        _root.createEmptyMovieClip("container_mc",_root.getNextHighestDepth());
                        container_mc._x = _root.gallery_x;
                        container_mc._y = _root.gallery_y;
                        var clipLoader = new MovieClipLoader();
                        var preloader = new Object();
                        clipLoader.addListener(preloader);
                        for (i=0; i<myImagesTotal; i++) {
                                  thumbURL = myImages[i].attributes.thumb_url;
                                  myThumb_mc = container_mc.createEmptyMovieClip(i,           container_mc.getNextHighestDepth());
                                  myThumb_mc._y = _root.thumb_height*i;
                                  clipLoader.loadClip("thumbs/"+thumbURL,myThumb_mc);
                                  preloader.onLoadStart = function(target) {
                                            target.createTextField("my_txt",target.getNextHighestDepth          (),0,0,100,20);
                                            target.my_txt.selectable = false;
                                  preloader.onLoadProgress = function(target, loadedBytes, totalBytes) {
                                            target.my_txt.text = Math.floor((loadedBytes/totalBytes)*100);
                                  preloader.onLoadComplete = function(target) {
                                            new Tween(target, "_alpha", Strong.easeOut, 0, 100, .5, true);
                                            target.my_txt.removeTextField();
                                            target.onRelease = function() {
                                                      callFullImage(this._name);
                                            target.onRollOver = function() {
                                                      this._alpha = 50;
                                            target.onRollOut = function() {
                                                      this._alpha = 100;
              function callFullImage(myNumber) {
                        myURL = myImages[myNumber].attributes.full_url;
                        myTitle = myImages[myNumber].attributes.title;
                        _root.createEmptyMovieClip("fullImage_mc",_root.getNextHighestDepth());
                        fullImage_mc._x = _root.full_x;
                        fullImage_mc._y = _root.full_y;
                        var fullClipLoader = new MovieClipLoader();
                        var fullPreloader = new Object();
                        fullClipLoader.addListener(fullPreloader);
                        fullPreloader.onLoadStart = function(target) {
                                  target.createTextField("my_txt",fullImage_mc.getNextHighestDepth          (),0,0,200,20);
                                  target.my_txt.selectable = false;
                        fullPreloader.onLoadProgress = function(target, loadedBytes, totalBytes) {
                                  target.my_txt.text = Math.floor((loadedBytes/totalBytes)*100);
                        fullPreloader.onLoadComplete = function(target) {
                                  new Tween(target, "_alpha", Strong.easeOut, 0, 100, .5, true);
                                  target.my_txt.text = myTitle;
                        fullClipLoader.loadClip("full_images/"+myURL,fullImage_mc);
              function createMask() {
                        _root.createEmptyMovieClip("mask_mc",_root.getNextHighestDepth());
                        mask_mc._x = _root.gallery_x;
                        mask_mc._y = _root.gallery_y;
                        mask_mc.beginFill(0x000000,100);
                        mask_mc.lineTo(_root.gallery_width,0);
                        mask_mc.lineTo(_root.gallery_width,_root.gallery_height);
                        mask_mc.lineTo(0,_root.gallery_height);
                        mask_mc.lineTo(0,0);
                        container_mc.setMask(mask_mc);
              function scrolling() {
                        _root.onEnterFrame = function() {
                                  container_mc._y += Math.cos(((mask_mc._ymouse)/mask_mc._height)          *Math.PI)*15;
                                  if (container_mc._y>mask_mc._y) {
                                            container_mc._y = mask_mc._y;
                                  if (container_mc._y<(mask_mc._y-(container_mc._height-mask_mc.          _height))) {
                                            container_mc._y = mask_mc._y-(container_mc._height-          mask_mc._height);

    You should create a manually movieclip symbol with nothing in it and take a copy of it from the library and place it in the frame where you intend for the gallery to display.  Give it an instance name of "container_mc" and remove the following line from your callThumbs function
    _root.createEmptyMovieClip("container_mc",_root.getNextHigh estDepth());
    You probably need to do the same for the mask and the full images since they appear to also be created using dynamic mc's.

  • How do I scan the content of a LONG field?

    I want to perform a search for a given character string in the
    content of a field of DATATYPE LONG. Must I use the package
    DBMS_SQL and break up this field into little pieces of character
    string and scan each of them, or is there an other way of
    performing this search with other tools?
    null

    Hi Keri,
    I can understand your concern & will help you to get this issue resolved.
    Window where you Insert date in Add Header & Footer, you will get the option of 'Page Number and Date Format'. Please click on it.
    Page Number and Date Format window will pop up on your screen, now you can select the date format from the drop-down list & click on OK to confirm the changes. Please refer to the screenshot below.
    Let me know if you still experience any issue.
    Regards,
    Aadesh

  • Clear the content of a text field

    hello guys,
    i have text fields in a screen which are been populated in the PBO. Now i want to clear the content of the  text field such that the user can input new values in those text field.
    so, anyone knows how i can achieve this.
    tried,
    text field name = ' ', space.
    clear text field name.
    but none worked.
    thanks you for ur help.

    Hi,
    I think you have doen some thing like this in PBO.
    screen_field_name = 'some value'.
    So now in PAI you can do the following.
    CASE sy-ucomm.
         WHEN 'F_CLEAR'.    " Fcode for the clear button in the screen.
          CLEAR : field_name.
      ENDCASE.
    If the field is a mandatory field then you need to create a AT EXIT module and write the same code in that.
    Hope it helps you.
    Thanks,
    Sri.

  • Why is the content missing from my messages in the Mail app?

    Yesterday, because my email addresses are changing, I modified the settings to my accounts in the email application Mail so that they properly connect to the new email addresses and settings.
    Most of the accounts are working fine. However, in one of them, it appears the content of nearly all the messages (both received and sent) are missing or not displaying. The program sees that there are different messages and lists them properly in the Inbox and Sent sections but when I try to preview or open them, a blank white screen with the message "Loading..." appears where the message content should.
    I did not delete anything that would have affected these accounts in this way, yet this is happening. I tried restarting Mail but the same problem persists. Again my other accounts in Mail seem to be fine.
    BTW, I use Mac OS X v. 10.7.5 (Lion).
    What can I do to restore the messages?

    Would rebuilding the mailbox help? Or have people not had a good experience with that?

  • Why is the content in the program tab "grey" and not clickable?

    Does anyone know why I can't synchronize individual programs in iTunes? When I connect my iPad to iTunes I can synchronize and back up the device but I can't do anything under the tab "programs" in iTunes. I can see my apps but I can't do anything

    I GOT IT FIXED!
    This is my solution to the grey songs, cant buy from iTunes app or App Store, and syncing problems.
    im just going to say it how it is and no robot instructions. it takes any where from 30 minutes to 1-2 hours depending on how much stuff is on your iPhone. so here is how i fixed mine
    1. Back up your iPhone whatever device you have
    2. Disconnect from iTunes and unplug your Apple device
    3. NOTE:NOT FROM YOUR COMPUTER, BUT go into the
    Settings app>General>Restore: Erase All Content and Settings
    4. Let it Restart and you will be prompted with the ios 5 Setup screen and continue setting up UNTIL you get to the part where it asks you about RESTORING from a back up via iTunes, iCloud, or setup as a new iPhone.
    5. select the iTunes option. connect to iTunes and right click your iPhone from the devices list and select "Restore from Backup..."
    6. select the backup you did just a few ago.
    7. let it backup, it may take a while from 10 minutes to 30. it took me 20 (so find something to do like watch a tv show or something. go on youtube and watch a video or two to pass the time)
    8. once restored, it will come up on the device list on iTunes. ONLY click the iPhone DO NOT click the music on the iPhone. click sync if it isn't already.
    9. after it is done, THEN click the music on the drop down selection on your iPhone. all the previous music that was gray/grey, should be black like normal, if not then press sync and then go back to music.
    this worked for me so hopefully it will work for you.
    this grey song issue ****** me off so much i wanted to throw my iPhone 4S at the wall and see all the glass shatter into a million pieces. nasdlfhsdfsdjfnl gahhh. everything is working like a charm now so you're welcome if this worked.
    if it didn't, then your screwed or keep trying again.
    joerayclark

  • Why is the trigger triggering on all fields in a table?

    I have a trigger and the text is as follows. The trigger should just write the emplid to the table PS_DM_ADDR_CHG_EMP whenever there is an update to the fields
    STREET1,STREET2 ,STREET3 ,CITY ,STATE ,ZIP ,COUNTRY in PS_PERSONAL_DATA. But some how it is writing emplid to the PS_DM_ADDR_CHG_EMP when any updateis done on any field on the 50 plus fields of the PS_PERSONAL_DATA table. Is there any reason why this happens. I looked at all other triggers and none of them writes any thing to this table though I found one more trigger on PS_PERSONAL_DATA for any insert or update or delete on any field and it uses insert in some other table. I did not see any other triggers related to the PS_PERSONAL_DATA table. So how to diagonize the issue of finding what is causing to write the data to this custom table.
    CREATE OR REPLACE TRIGGER HT0P.PERSDATA_RAU
    AFTER UPDATE OF STREET1,STREET2 ,STREET3 ,CITY ,STATE ,ZIP ,COUNTRY
    ON PS_PERSONAL_DATA
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    DECLARE
    v_Emplid ps_personal_data.emplid%type; -- Used for storing EMPLID
    BEGIN
    v_Emplid := :old.emplid;
    UPDATE ps_dm_addr_chg_emp a
    SET a.emplid = v_Emplid
    WHERE (((a.emplid = v_Emplid) and length(v_emplid) = 3)
    or ((substr(a.emplid, 1, 3) = substr(v_Emplid, 1, 3)) and length(v_emplid) = 4 and substr(v_emplid, -1, 1) in('B', 'C', 'J', 'K', 'P', 'U'))
    or ((a.emplid = v_Emplid) and length(v_emplid) = 4)
    or ((substr(a.emplid, 1, 4) = substr(v_Emplid, 1, 4)) and length(v_emplid) = 5 and substr(v_emplid, -1, 1) in('B', 'C', 'J', 'K', 'P', 'U'))
    or ((a.emplid = v_Emplid) and length(v_emplid) = 5)
    or ((substr(a.emplid, 1, 5) = substr(v_Emplid, 1, 5)) and length(v_emplid) = 6 and substr(v_emplid, -1, 1) in('B', 'C', 'J', 'K', 'P', 'U'))
    or ((a.emplid = v_Emplid) and length(v_emplid) = 6)
    or ((substr(a.emplid, 1, 6) = substr(v_Emplid, 1, 6)) and length(v_emplid) = 7 and substr(v_emplid, -1, 1) in('B', 'C', 'J', 'K', 'P', 'U')));
    IF SQL%NOTFOUND THEN
    INSERT INTO ps_dm_addr_chg_emp (emplid)
    VALUES (v_Emplid);
    END IF;
    END;

    Hi,
    It would be helpful if you could post formated code using tags. Learn more from FAQ
    To test your trigger - You may want to create a temparory table and have an insert statement for the temp table in your trigger and test it by updating other columns of your main table.
    Also you may want to ensure it is not the UPDATE statement which is causing the trouble for you by updating some unintended rows...
    Regards,
    Rakesh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How can I change the content of a text field in a PDF form with a defined variable?

    Hello all!
    First time poster, and getting pretty frustrated with trying to figure out this one issue. Here is the scenario: I am using Acrobat 10 Pro to design what is essentially a giant order form. I designed the document in InDesign, defined the various buttons and whatnot and then exported it to Acrobat to continue building the form.
    I have a Radio Button group called "conference_opportunities" which contains different options at different price points, so they are all named the same, but have different values (so that they belong to the same group and only one can be selected at a time).
    What I have done is created a "MouseDown" event on the radio button that sets a variable called "ConferenceOpportunity" which is equal to the title of the option they are picking. I then want to take that variable and display it in a text box called "Conference_Option". I am using a variable because the values of my radio buttons are all the actual prices of the option they are picking, so I can't define the value as the title of the option.
    So its an array of radio buttons, and at the bottom of the page there is the Option They Selected, the quantity (which can change) and the value (in dollars)
    I also then want to display this variable at the end of the document as a sort of summary of everything they chose to purchase as well but I imagine its the same code.
    I am not an expert Javascript person at all, so any code snippets would help greatly. I have looked over the Adobe Document on the SDK and API and have not been able to find a solution. I have also turned to the almighty google and still no luck.
    Any help would be greatly appreciated!
    Thanks Everyone

    All you now have to do is use that variable to the value property of your text field... So add this at the end of your code:
    this.getField("Conference_Option").value = ConferenceOpportunity;
    Also, I would use MouseUp, not MouseDown.

  • Why is the content that I try to play from my IPAD on to my tv restricted or shown as unauthorised device?

    I'M confused? Why am I not allowed to watch movies from my IPAD on my TV. I've had no problems in the past, but today the device, I guess my t.v is not authorised?

    Hello WashDC,
    The following article can help get iTunes to produce output normally again.
    iTunes and QuickTime for Windows: Audio does not play or plays incorrectly
    http://support.apple.com/kb/TS1362
    Cheers,
    Allen

Maybe you are looking for

  • Problem Reversing a Credit Card Payment

    I am having a problem reversing a Credit Card payment. Here is the the steps tha led up to the probplem: 1) Applied Payment to an Invoice, paying the total of the Invoice using the Payment Means of Credit Card 2) In Deposits, selected the Credit Card

  • [SOLVED] libva-intel-driver 1.3.2-1 breaks hardware acceleration

    Hello, I'm running Arch with XFCE on my Lenovo L540 (i5-4200M, HD4600) on the integrated full HD display and a second full HD screen attached with a mini-Displayport-DVI adaptor. Since yesterday's system update my laptop screen randomly shows visual

  • SAP Netweaver 7.01 trail on a dual boot MacBook Pro

    Hello, I would like to know if SAP Netweaver will work on a MacBook Pro. I am planning to dual boot  Windows 7 basic using a software called Bootcamp which is native to Mac OS X 10.5 System Spec : Model Name:     MacBook Pro   Model Identifier:     M

  • Imovie won't open up. it says "application not responding".

    this is the details and system configuration. Date/Time:       2014-04-21 00:42:22 -0400 OS Version:      10.9.2 (Build 13C64) Architecture:    x86_64 Report Version:  18 Command:         iMovie Path:            /Applications/iMovie.app/Contents/MacO

  • Duplicate Layers from Selection to Group

    I want to take the layers within a selection, copy only the portion of the the layer that is within the selection into a layer group but keep the layers from the selection separate when placed into the layer group ? I've been tinkering with how to do