Documents are marked for indexing but indexing is not happening

Hi All,
I have completed the configuration of Trex 7.10 ; and also I have tested the settings by executing the report "RCF_CHECK_SEARCH_SETTINGSu201D in SE38 and found no errors, but the problem here is documents are marked for indexing but not getting indexed.
I need some help to resolve this issue
Regards
Siva

Hi Siva,
This should help http://wiki.sdn.sap.com/wiki/x/gQ8oCw

Similar Messages

  • How can I unmark photos which are marked for republish to Flickr?

    I am currently using Lightroom 3 to publish photos to Flickr. I have a free Flickr account.
    My problem is that I have a set of photos I am publishing to flickr. For some reason some of my photos lost their keywords, only the files on my computer lost them, the photos on Flickr still have the keywords intact. Also I applied a colour code to a couple of the photos on my hard disk that are being published to Flickr.
    Now Lightroom has detected these changes and the photos appear under 'Modified Photos to repblish' the thing is the changes I made were either putting keywords back in that were already in Flickr anyway, and colour coding which makes no different to flickr. Because I have a free account if I republish the photos I will lose all the comments and stats on Flickr, so I don't want to republish them.
    Whenever I click the publish button I get a warning that republishing the changed photos will lose any information on flickr and I have the option to skip them, and just publish new photos. But if I ever do want to republish a photo I won't be able to do this without also republishing all the photos marked for republish.
    Is there any way I can remove these photos from the republish list?

    All,
    This is an issue with the LR programming, as it does NOT allow you to unmark images it feels need to be republished. Oftentimes it's only a matter of adding a keyword or tweaking the develop settings that triggers this. I for one wish that choice was available.
    Here's what you can do: simply disconnect from the Flickr service. Doing so will have NO detrimental effect on the images in Lightroom or the images you have already uploaded to Flickr. What you will lose, however, is the "library" of images that you have already uploaded to Flickr. Since this is really only a collection there's no harm. Besides, if you need to review which of your images have been uploaded to Flickr at a later time, just reference Flickr. Oh, you'll also lose Lightroom's ability to download any comments your Flickr contacts make on your uploaded images. If it's important for you have that data in Lightroom, rethink the disconnect option. After disconnecting, reconnect using the same parameters you had before. Your Lightroom/Flicker collection will be cleared of all previously uploaded images and you can begin adding new images to upload.
    Again, disconnecting has no effect on your Flickr content. However, if you REMOVE images from the collection using Lightroom, they will also be removed from Flickr. Please understand the distinction between disconnecting from the Service and removal of images using Lightroom.
    All that being said, republishing images from Lightroom to Flickr, in my experience, should not cost you anything in terms of number of views, favorites, comments, etc. It should be seamless.
    Judson Rhodes, Photographer
    www.flickr.com/jrcp/show
    www.judsonr.com
    Date: Tue, 29 Mar 2011 09:43:18 -0600
    From: [email protected]
    To: [email protected]
    Subject: How can I unmark photos which are marked for republish to Flickr?
    Hi,
    I'm using LR 3.2 and am having the same issue. I see that no one from Adobe has replied to this and that the previous reply was from August, 2010. There seem to be no answers to this one...
    I have several images that LR feels should be republished, and ONE image that I want to republish. I CAN'T republish just that one image though without republishing ALL the other images.
    Can someone (maybe someone from Adobe) help me with this? How can I simply UNmark the other images to not be republished? I do not want to remove them from the collection, but simply do not want to republish them at this time.
    Why can't Adobe simply ask us if an image should be republished or not? Why can't they allow us to UNmark an image to be republished once it's marked?
    Ideas??  HELP!
    Thanks!
    Steve
    >

  • Documents are appearing in J1INMIS but the same are not appring in Form 26Q

    Hi,
    Documents are appearing in J1INMIS but the same are not appearing in Consolidated Form 26Q.(J1INQEFILE).
    Can anyone give me the solution for above.
    Thanks & Regards,
    reddy

    Hi Reddy,
    So you have completed the challan & update of Bank challan steps?
    I implemented CIN in India in Summer 2009 & we found a number of issues & bugs with the standard code, particularly around the TDS process.   During the J1INMIS processing we found that a number of tables were not being updated (Challan update) & we had to copy & fix the code ourselves as J1INMIS (so I'm lead to believe) is not supported by SAP any longer.
    Good luck!
    Regards,
    Steve

  • A number of my apps are marked as waiting but nothing is being downloaded and I cannot use these apps?

    A number of my aps are marked as waiting but nothing is being downloaded or updatedA and I cannot use these aps. Does anyone have an idea?

    What I have noticed is that these may have been updates and I attempted to download a number of them at the same time. I just deleted the "waiting" apps and it has not appeared to affect the original downloaded apps. In the future I'll only download one app at a time.
    Thank you Diavonex for your comments which  I also believe are valid.
    This is my first time on this help site and I'm glad to see how helpful it is.

  • I can make individuals match to target areas (as there are tutorials for that) but i want each one

    hi in drag and drop  I can make individuals match to target areas (as there are tutorials for that) but i want each one to be able to slide in to any target area (and someday i want to create a solve button which will then place each element in the correct place).
    can any one help me with it

    I changed your mUp function to allow each movieclip to be placed on any target and to be reset to its original position if it is not on any target. I added the code for a button to position each movieclip to its correct target.
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    //Array to hold the target instances, the drop instances,
    //and the start positions of the drop instances.
    var hitArray:Array = new Array(hitTarget1,hitTarget2,hitTarget3);
    var dropArray:Array = new Array(drop1,drop2,drop3);
    var positionsArray:Array = new Array();
    //This adds the mouse down and up listener to the drop instances
    //and add the starting x and y positions of the drop instances
    //into the array.
    for (var i:int = 0; i < dropArray.length; i++)
              dropArray[i].buttonMode = true;
              dropArray[i].addEventListener(MouseEvent.MOUSE_DOWN, mdown);
              dropArray[i].addEventListener(MouseEvent.MOUSE_UP, mUp);
              positionsArray.push({xPos:dropArray[i].x, yPos:dropArray[i].y});
    //This drags the object that has been selected and moves it;
    //to the top of the display list. This means you can't drag
    //this object underneath anything.
    function mdown(e:MouseEvent):void
              e.currentTarget.startDrag();
              setChildIndex(MovieClip(e.currentTarget), numChildren - 1);
    //This stops the dragging of the selected object when the mouse is
    //released. If the object is dropped on the corresponding target
    //then it get set to the x and y position of the target. Otherwise
    //it returns to the original position.
    function mUp(e:MouseEvent):void
              var dropIndex:int = dropArray.indexOf(e.currentTarget);
              var target:MovieClip = e.currentTarget as MovieClip;
              target.stopDrag();
              for (var i:String in hitArray)
                        if (target.hitTestObject(hitArray[i]))
                                  target.x = hitArray[i].x;
                                  target.y = hitArray[i].y;
                                  return;
              target.x = positionsArray[dropIndex].xPos;
              target.y = positionsArray[dropIndex].yPos;
    // setRight is the instance name of the new button to reposition each
    // moveable movieclip to the correct target clip
    setRight.addEventListener(MouseEvent.MOUSE_UP,reset);
    // this function moves each movieclip to the correct target using a tween
    function reset(event:MouseEvent):void {
              for(var n:String in dropArray) {
              var myTweenX:Tween = new Tween(dropArray[n],"x",Strong.easeOut,dropArray[n].x,hitArray[n].x,3,true);
              var myTweenY:Tween = new Tween(dropArray[n],"y",Strong.easeOut,dropArray[n].y,hitArray[n].y,3,true);

  • Where did i find users that are marked for deletion ?

    Hi,
    Experts,
    As i want to check that the users present in table USR02 are marked for deletion or not? can u please suggest me soon on this.
    Thank u in advance,
    Shabeer Ahmed

    Deleted users list in SRM server

  • HT4847 all i want to do is scan a document and store in iCloud but printer says not set up for iCloud. do i have to link them in some way? am on wi fi and connected to my mac ok.

    all i want to do is scan a document and store in iCloud but printer says not set up for iCloud. do i have to link them in some way? am on wi fi and connected to my mac ok.

    iCloud doesn't store documents from your Mac (or scanner).  It will only sync documents and data from applications designed for iCloud syncing, such as Pages, Keynote, Numbers, etc.

  • I bought 2 iPhone 5 and received on 17 Dec but both are with rattling noise like loosing parts then I ask for replacement but courier has not come as appointment. Now I still have the defective iPhone 5 with me though I have planned to give as Xmas gift

    I bought 2 iPhone 5 and received on 17 Dec but both are with rattling noise like loosing parts then I ask for replacement but courier has not come as appointment. Now I still have the defective iPhone 5 with me though I have planned to give as Xmas gift.

    I bought 2 iPhone 5 and received on 17 Dec but both are with rattling noise like loosing parts then I ask for replacement but courier has not come as appointment. Now I still have the defective iPhone 5 with me though I have planned to give as Xmas gift.

  • HT1386 i have an iphone 4s. Im getting the iphone 5s for christmas, but i do  not have my phone backed up, and my phone is not working and my screen is covered with blue lines. I need help.

    My iphone is not working, i was planning on getting the iphone 5s for christmas, but i do not have my phone backed up on itunes. On my screen are these blue lines across on my screen, and i cant see anthing and i do not know what to do. I want to back up my phone but i cant see my screen to back it up. I need help badly. Thanks apple hope you can help me in this matter.

    You wouldn't need to see the screen to backup unless you have a passcode on the device. Is that the case? You should be able to plug the device into the computer with iTunes and just select backup now.

  • How can I burn a copy of my project to a DVD . I do not have IDVD because I have the Lion os. I did purchase Wondershare for burning but it will not load the iMovie events or projects

    How can I burn a copy of my project to a DVD . I do not have IDVD because I have the Lion OS. I did purchase Wondershare for burning but it will not load the iMovie events or projects

    There is no proper substitute for iDVD.
    Why is there no iDVD on my new Mac?
    https://discussions.apple.com/docs/DOC-3673
    UPDATE & ADDENDUM:
    But even though you can still buy iLife 11 that includes iDVD 7 from Amazon, Apple now make it difficult to install:
    Poster jhb21939 posted this in another thread:
    “when I attempted to load iDVD into a new iMac. A notice came up on the screen stating that the 'Authorisation Licence' had expired on 25 March this year (2012).
    I contacted the Apple support team and eventually, I was told that the Licence had been withdrawn and could no longer be used.”
    In other words Apple are now so adamant that we don’t use iDVD that they have tried to make it impossible to install.
    In response, Old Toad posted this solution:
    “You can still use it one all of your Macs.  If you get an invalid certificate message just set your Mac's clock to sometime before early 2011 and run the installer.  After you're done reset the time back to the correct time.” He added this comment:
    “It began after iDVD and iWeb were discontued and they were dropped from the Apple Store. All I can think of is the certificate was set to expire after a certain time period after the intitial iLife disc was released.
    I've been able to use the installer even without setting back the date.  I just clicked on the Continue button and it would work as expected.  For some it would not continue unless the date was set back.”
    The latest anorexic iMacs just announced do not even include a CD drive! Proof positive that Apple virtually prohibit the use of DVDs - although the newly announced Mac Minis do include a Superdrive.
    Yet, they still include iMovie! Heaven alone knows or understands what you are supposed to do with your newly edited masterpiece - except make a low quality version for YouTube?

  • I am trying to convert a PDF to word document. But it is not happening.

    I am trying to convert a PDF to word document. But it is not happening.
    When I click on the save as the document does not change.
    I am getting very frustrated trying to complete this action.
    I have signed in to acrobat.
    I have exported the document to acrobat.
    I have saved the PDF in acrobat cloud.
    I need this document as a word doc so that I can learn how to use my scientific calculator for an exam.
    could you please assist.
    Thanks
    Kaye

    Hi Sara
    From the document
            When I try the file save as other, nothing happens after I click on Word or Excel Online.
            There is no way I can click on the convert button on Export PDF.
            I am logged in as you can see.                                                                               
            When I go to Cloud Acrobat I can see the file there but only as a PDF.
            There is no word document there.
            As you can see I have tried this more than once.
    I just don’t know what to do from there.
    Hope you can help
    Many thanks
    Kaye

  • Hi I bought 2TB WD my passport for mac but I do not know what I can delete from the original macbook air. Thank you.

    Hi I bought 2TB WD my passport for mac but I do not know what I can delete from the original macbook air. Thank you.

    That depends on what you have on the MBA...if you have videos, move the videos to the external drive.  If you have a lot of music, create a folder/library for the music and point iTunes there for the music.  If you have a lot of photos for iPhoto, make a new library on the external drive and move our photos over there and then select that library as the default library for iPhoto to use.
    Those are the big files and should take a lot of the load off the internal storage.

  • My iPad is frozen with the message not enough storage.  Options are close and settings but it will not respond to buttons and will not allow me to turn it completely off.  How do I get past that message?

    My iPad is frozen with the message not enough storage.  Options are close and settings but it will not respond to buttons and will not allow me to turn it completely off.  How do I get past that message?

    Delete some apps, files, photos, videos, movies, etc to free up some space.
    How much space is your Other using? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
     Cheers, Tom

  • I purchased a book, payed for it but it will not play despite the cover page showing up in ITunes books.

    I purchased a book, payed for it but it will not play despite the cover page showing up in ITunes books.

    Did you accidentally buy an ibook?
    If so, these are print books that you read on your iphone/ipod touc/ipad.

  • I'm trying to export a file as .dwg for Autocad but it's not showing the dwg preview and it appears to be saving as code (lots of gobbledegook when reopening the file).  I'm on OS 10.5.8.  Never had a problem with this before.  What am I missing? Any idea

    I'm trying to export a file as .dwg for Autocad but it's not showing the dwg preview and it appears to be saving as code (lots of gobbledegook when reopening the file).  I'm on OS 10.5.8.  Never had a problem with this before.  What am I missing? Any ideas?

    First be sure login and password are OK. Sometimes the address starts wit "http://..." and sometime starts with "ftp://...". Try both normal FTP access and Scure FTP access (SFTP). At the end, contact the site's provider.

Maybe you are looking for