Not all worksheets in Excel are being included in PDF

I have an Excel spreadsheet with multiple worksheets. Two of the worksheets are not being included in the PDF. I have used both the Acrobat Add-in from within Excel and Adobe Acrobat X with the same result. The last worksheet is not printing. It does not matter if I move the worksheets around. Then also the third to last doesn't either.
I cannot seem to find anyone with a similar issue.
Any ideas?
Thanks
Laura

Hi Keith,
in your case I would check the following:
1. Flush your index manually. Maybe the documents are still staying in the queue. (System Administration -> Monitoring -> Knowledge Management -> TREX-Monitor -> Change queue status)
2. Check which parameters you set for the Queue. Maybe the documents will be indexed time interval dependent. (System Administration -> Monitoring -> Knowledge Management -> TREX-Monitor -> Edit queue parameter)
3. Check the permissions of the document in the repository. Maybe the index_service user is not allowed to access the document.
4. Check which status the documents in the queue have which were not indexed. (System Administration -> Monitoring -> Knowledge Management -> TREX-Monitor -> Show queue entries)
Best regards,
Denis

Similar Messages

  • HT4759 not all of my contacts are being uploaded to icloud from my iphone

    not all of my contacts are being uploaded to icloud from my iphone

    OK...sorry, couldn't delete my last 2 posts...
    You can change the default account to iCloud in the Notes settings. This way everytime you make a note it will automatically be in the iCloud folder. Now all I need to do is copy and paste my old notes into new iCloud ones

  • When trying to see app store purchased history on iPhone, not all of the apps are being displayed?

    I had purchased apps from the app store on my iPad and would like to install those purchased apps on my iphone4, but not all of the apps are displayed in the purchased history when I try to view it from the iPhone. Is there a limit that will display from the iPhone? How do I get all of the purchased history to display?

    Your iPhone has to be signed in to the Apple ID you used on your iPad when you originally purchased these apps in order for them to appear under Purchased on your iPhone (i.d., Purchased will only show apps purchased under the Apple ID you are currently signed into).  Find out which ID you used to purchase the apps (launch iTunes, highlight Apps on the left under Library, highlight each of the apps, go to File>Get Info and look for Account Name:  This will be the Apple ID that you used to purchase the app).
    Once you know the Apple ID, on your iPhone go to Settings>Store>Apple ID (at the bottom), Sign Out of the current ID, then sign into the new ID. Now go to Purchased and see if the missing apps are there. 
    Hope this helps!

  • I have just started to import CD's onto I tunes, all albums and tracks are being picked up but in the album view they are not being stored together, they appear as unknown album

    I have just started to import CD's onto itunes, all albums and tracks are being picked up, but in the album view they are not being stored together, they appear as unknown album

    Hello Flemcat,
    After reviewing your post, it sounds like you are missing content from iTunes library. I would recommend that you read this article, it may be able to help the issue.
    iTunes: Finding lost media and downloads - Apple Support
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • Why can I not open up photos that are being text to me?

    Why can I not open up photos that are being text to me?

    Hey Uptogetdown,
    Check out the following article:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    It is for troubleshooting issues with the Messages application on iOS devices, so I'd go through the steps listed and see if that resolves the issue.
    All the best,
    David

  • I just updated my Firefox browser to Firefox 8. I am a college student and practice with HTML and CSS for class assignments. The fonts in all my html documents are being overwritten online by your script typeface. How do I resolve this issue?

    I just updated my Firefox browser to Firefox 8. I am a college student and practice with HTML and CSS for class assignments. The fonts in all my html documents are being overwritten online by your script typeface. I did not have this issue in the older version. I use an iMAC running OS10.6.8. How do I resolve this issue?

    Starting with this, you have errors in your CSS code.
    body {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
      color: 151515;
      font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
      background-color: EFF5F8;
    body {
      margin:0;
      color: #151515;
      font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
      background-color: #EFF5F8;
      font-size: 100%;
    Related links:
    Windows Chrome, why do my fonts look so bad? - Lee Green
    css3 - Bad font rendering Chrome - Stack Overflow
    Nancy O.

  • Find all Z programs which are being modified in last month

    hii all,
    I want to find all Z programs which are being modified in last months.Is this possible??.is there any standard or z-program which can give me the detail of all Z-program which are modified.
    It is possible if i get last month Request but suppose if there are more than 100 request per month then it is not possible to go through each individual Request and find Z-programs.
      Waiting for ur reply.
    <removed_by_moderator> ... read [the rules|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement]!
    Thaking You.
    Edited by: Julius Bussche on Jul 17, 2008 7:16 PM

    Hello
    REPORT ZCHPROG.
    TABLES: D010SINF.
    DATA: PROGTXT(72) TYPE C OCCURS 0 WITH HEADER LINE.
    DATA: PROGTXT1(72) TYPE C OCCURS 0 WITH HEADER LINE.
    DATA:
       BEGIN OF MT OCCURS 0,
    PROG LIKE D010SINF-PROG,
    EDTX LIKE D010SINF-EDTX,
    R3STATE LIKE D010SINF-R3STATE,
    UNAM LIKE D010SINF-UNAM,
    CNAM LIKE D010SINF-CNAM,
    UDAT LIKE D010SINF-UDAT,
    UTIME LIKE D010SINF-UTIME,
    END OF MT,
    N(4),
    PROG(20) TYPE C,
    MIN(10) TYPE C.
    RANGES: UDAT1 FOR D010SINF-UDAT.
    RANGES: UTIME1 FOR D010SINF-UTIME.
    SELECT-OPTIONS: PROG1 FOR D010SINF-PROG,      "
                    UNAM1 FOR D010SINF-UNAM,      "
                    CNAM1 FOR D010SINF-CNAM.      "
    PARAMETERS DEN(4) TYPE C DEFAULT '1'.
    PARAMETERS SEC(5) TYPE C DEFAULT '30'.
    PARAMETERS DOP AS CHECKBOX DEFAULT ' '.
    START-OF-SELECTION.
    IF DOP NE SPACE.
    MIN = SEC * 60.
          UTIME1-SIGN = 'I'.
          UTIME1-OPTION = 'BT'.
          UTIME1-LOW = SY-UZEIT - MIN.
          UTIME1-HIGH = SY-UZEIT.
       APPEND UTIME1.
    ENDIF.
          UDAT1-SIGN = 'I'.
          UDAT1-OPTION = 'BT'.
          UDAT1-LOW = SY-DATUM - DEN.
          UDAT1-HIGH = SY-DATUM.
       APPEND UDAT1.
    SELECT PROG UNAM UDAT UTIME R3STATE EDTX CNAM
    INTO (MT-PROG, MT-UNAM, MT-UDAT, MT-UTIME, MT-R3STATE, MT-EDTX,MT-CNAM )
             FROM D010SINF  WHERE PROG IN PROG1
                                         AND UDAT IN UDAT1
                                         AND UTIME IN UTIME1
                                         AND CNAM IN CNAM1
                                         AND UNAM IN UNAM1.
    APPEND MT.
    ENDSELECT.
    N = 1.
    WRITE: / 'from', UDAT1-LOW, 'to', UDAT1-HIGH.
    SORT MT BY UNAM UDAT UTIME.
    LOOP AT MT.
    WRITE: / MT-CNAM,MT-PROG,MT-UNAM,MT-UDAT, MT-UTIME,
    MT-R3STATE, MT-EDTX.
    N = N + 1.
    ENDLOOP.
    WRITE: / N.

  • I am trying to install Lightroom and I am OK until it asks for a serial number. I purchased Lightroom from B&H and the have entered the seal number on the the B&H invoice. Nothing happens, not all the entry boxes are filled with the serial number that was

    I am trying to install Lightroom and I am OK until it asks for a serial number. I purchased Lightroom from B&H and the have entered the seal number on the the B&H invoice. Nothing happens, not all the entry boxes are filled with the serial number that was provided by B&H. I looked for a serial number on and in the box it came in, nada. Need a bit of help here, what can I do?
    RJ@

    Try to connect on Live chat one more time.
    Still not connected , better to contact Adobe Phone Support
    Click on Phone option and check once :
    Contact Customer Care

  • My computer was stolen, I just purchased a new one and I want to redownload my old purchases. Not all of my purchases are on my itouch. How do I get the other purchases back?

    My computer was stolen, I just purchased a new one and I want to redownload my old purchases. Not all of my purchases are on my itouch. How do I get the other purchases back?

    You can recover any purchased songs that are on iPods using the procedure here.
    If this is not available, you can ask Apple to allow you to download your music again. Note that, first, they DO NOT HAVE TO DO THIS. Purchase of music from the iTunes store entitles you to one download of that item. Second, note that if Apple does allow you to download a second time, they have to pay royalties on each download, whether you pay for it or not. Last, if they allow it, please back up your purchases.
    To request a redownload, contact iTunes support from the menus in iTunes or use this page.
    Best of luck.

  • Not all photos in iphoto are syncing to ipad

    I hope someone can help me with this!  I noticed that not all of my photos are syncing to my iPad (original) anymore even though I have "sync all" checked on the photos tab of my iPad in iTunes.  I have recently uploaded pictures from my sd-card onto my MacBook Pro from the little reader slot as well as photos from my iphone.  All of these photos are organized into Events in iPhoto.  My camera is about a year old so I've uploaded pictures many times before, but there are also pictures from two other cameras in the library.  There are pictures from the newer camera that HAVE synced onto the iPad.  For example, we have a ton of pictures from our trip to California (one event in iPhoto) last spring in which half of them show up on the iPad and the other half do not. 
    Also, if relevant, my iphone is about 2.5 years old (holding out for the new version!), and it seems like some of the pictures from the phone are synced onto the iPad from iPhoto and some aren't. 
    My ipad and laptop both have plenty of space for the pictures so I don't think that's the issue. 
    Advice I've seen so far...
    After searching through these boards and googling the issue, I've read a lot about deleting the iPod Photo Cache, but I don't know if this is really for the same issue. 
    Additionally, I found a post on another site that mentioned an issue if the images have the same file name.  It doesn't seem to matter to iPhoto if the names are the same, but it sounds like it may matter to the iPad (according to the one post that I read)?  If that's the case, I don't know how I would ever prevent this from happening because my DSLR will always number the pictures in order, which is what my Point & Shoots did as well.  I'm pretty sure that's standard for all cameras.  If I were taking a few pictures every so often, it wouldn't be a big deal to change the names of each image, but when I'm loading 500 pics at a time, which is generally the case, I can't rename them all.   
    Help with this is much appreciated!

    If the file format is compatible with the iPad, the photos should sync. The camera will name the files automatically as far as I know and if you never changed the names before - and simply imported the photos into iPhoto, that shouldn't matter.
    Deleting the iPod Photo Cache folder seems to work for many, many users with this problem. There is no guarantee that it will work, but it is easy to do and it's harmless since a new photo cache folder will be created when you sync again.
    Here is an article that explains how to delete the folder and where itcan be found.
    http://support.apple.com/kb/ts1314

  • I recently had to wipe my hard drive thanks to a download happy teen. In that process I lost my LR4 catalogs I was able to redownload the program but the catalogs are not there and not all of those pictures are on my external hard drive because same said

    In that process I lost my LR4 catalogs I was able to redownload the program but the catalogs are not there and not all of those pictures are on my external hard drive because same said teen decided they were going to borrow my external hard drive without telling me and "made room" on it. Is there a way to recover my catalogs? Please tell me there is because I was in the middle of working on a session when I had to wipe my drive and I would REALLY like to not have to go back and reshoot it. Any help would be wonderful!

    It depends on how you wiped your drive.  Depending on how you did it, only the directory was erased and the data can be found with drive recovery software.  Some are free, although there is a small charge for most of them (~$30).  You can usually download a trial version that shows if it will work and you have to pay to be able to save the found files.  Use Google to search for the software.  Different programs work differently and can find different things.
    Good luck.
    John

  • Not all of my bookmarks are coming thru

    Not all of my bookmarks are coming into my iPhone from my PC via the Firefox server. Only one folder of my bookmarks is coming in. Never had this problem before. Other sync instructions in Preferences can be changed and are properly executed (tabs vs. no tabs, history vs. no history, etc.). Have read other "solutions" in this area of Help (have signed out and signed back in, very good WiFi and 3G connections, plenty of room on my iPhone, even got a new sync key). Still only get about 5% of my bookmarks which was not a problem before. Have v.3.6.14, under Windows 7.

    Not all of my bookmarks are coming into my iPhone from my PC via the Firefox server. Only one folder of my bookmarks is coming in. Never had this problem before. Other sync instructions in Preferences can be changed and are properly executed (tabs vs. no tabs, history vs. no history, etc.). Have read other "solutions" in this area of Help (have signed out and signed back in, very good WiFi and 3G connections, plenty of room on my iPhone, even got a new sync key). Still only get about 5% of my bookmarks which was not a problem before. Have v.3.6.14, under Windows 7.

  • Not all appointments in outlook are syncing - Outlook 2003

    I've seen a number of threads about outlook not syncing at all with the iphone. My issue is different in that I am able to sync but not all my calander appointments are making it onto the phone. I dont see any common factor in the appointments that arent making it. Anyone else experiencing this? Any ideas?
    After 2 dayt Im close to getting the iPhone to where I need to be. This is the last of the major issues. I guess thats why its called the bleeding edge.

    Same problem here. Outlook 2003 Calendar only syncs some events, but not all. But, contacts sync both ways without any problems.
    Sure like to get the calendar to sync right.
    iPhone 8GB   Windows XP  

  • I've downloaded the 5.0 update and not all the new features are there.  Just the news stand, reminders and videos.  I double checked on the update and it says it's up to date.  What should I do now?

    I've downloaded the new 5.0 update and not all the new features are there.  Just the newsstand, reminders and videos icons plus icloud.  Everything else is the same as before.  What should I do now?  It says I have the latest update.  ???

    Hummmm, you might not be missing anything... From what I understand, really the only new visible add-on apps type programs are Newstand and Reminders. The Notification Center seems to be about how your info and alerts are pushed to your screen and you control that thru the phone settings>General>Notifications, the panel is accessed by swiping downward from the top of your screen. Weird I know, should be more obvious. Enjoy!
    Don't forget, you can now use the volume button on the side of your phone to take photos. I really like this!
    Here's the User Guide:
    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • What program can search old typewriter documents (1980) which are being scanned as PDF?

    What program can search old typewriter documents (1980) which are being scanned into PDF's?

    Scanned documents are just images, but using OCR on them will turn them into text documents.  Adobe Acrobat Pro can do that.  After saving the OCR-ed document, it will be searchable by any PDF viewer.

Maybe you are looking for

  • How can i export a separate FCP 10 project to a new hard drive

    I am using  FCPX 10.1.1 - My current EXT harddrive is getting full and I have a Grocery store client that I do weekly edits for. The project is a 30 second commercial and I always have to make price changes. Prior to the latest update I was able to c

  • SQL UPDATE from PL/SQL triggered by button

    I have a form with the normal buttons (create/save/delete) working. For 2 of the fields I want to introduce a calculation on demand system. What I did is: created a button compute and associated some PL/SQL with it. The button submits as "compute" (s

  • Is apple going to launch a new ipod classic??

    I want to buy a new ipod since mine is quite old, but I was wondering wether I should by the ipod Classic or wait so see if Apple is going to launch a new one any time soon... Does any one have any info on ti?? Thanks!

  • Ipod touch volume control

    volume control stuck/ not working...nothing recently changed any suggestions?  I'm not tech savvy, am at work and son texed me about this prob with his IPOD.  He's  a bit challenged.

  • IR Value exceed GR value

    Hi xpert, how to block IV from processing IR if the item value exceed GR item value.