File name to be considered while Trex Search in CV04N,

Dear Sap Gurus,
I know TREX can search and list the documents using any Word or Characters inside the original file, but i have a requirement to search the document by there File Names,i tried giving File names in CV04N Trex search window, but it is not giving any results for me,
how can i make the trex search consider the file names also while searching in CV04N,
In SAP DMS is there a standard search functionality to search the documents by there File name?
Awaiting response
Thanks and regards
Kumar

Thanks for your response,
i know we can search the documents through Classification or description details using CV04N, but
while searching any document the user wishes to fill up the details only at one field ie... the Trex search window in the CV04N screen, and he will not be interested in filling  the values at the classification TAB and the description Tabs,
we need a single point of search through Trex search Window in CV04N, ie... when this Trex search field is filled appropriately,( like the classification value, Long text value,) 
this values should search the documents with this Classification or Long text values in DIR and display the results,
i could not succeed in getting the trex search working with this values, is there any thing missing from DMS config????
FYI,
we have Portal Document search through DMS through DMS Connector, and in this Trex Search we could find the DMS documents using the file Names as well, but strangely  the same thing is not possible through CV04N trex Search,
Thanks and regards
kumar

Similar Messages

  • I have difficulty pasting text into the file name field(prefix only) while saving files.

    OS: WinXP sp3
    FF: 3.6.3
    I have difficulty pasting text into the file name field (prefix only) while saving files. example: File name is Pic123.jpg and I want to rename it ABC123.jpg and I have ABC loaded into the WinXPsp3 clipboard. When I highlight\right-click\delete "Pic" then attempt to paste the ABC, I get either no reaction, or upon multiple paste attempts, the ABC is appended to the end of the file, after the extension, as "Pic123.jpgABC". If I delete this unwanted suffix, or repeat the process several times, eventually I can delete the unwanted portion of the prefix and paste the desired text. Sometimes it works fine first try, but mostly it takes several tries. I'm using Firefox 3.6.3 but the problem existed in whatever previous version I had too. This issue only occurs when using the delete/paste; I can always manually change the name by typing. Thank you for your help.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    A possible cause is that the server sends a wrong response header.
    The server may not comply to RFC 5987 and sends a wrong Content-Disposition:attachment; filename header.
    * https://developer.mozilla.org/en/Firefox_8_for_developers#Network

  • A file activation error occurred. The physical file name may be incorrect while creating database

    Hi Experts,
       I am trying to create a database in my local system, while creating i am getting error like below can anyone please help me on this.
    Msg 5105, Level 16, State 2, Line 1
    A file activation error occurred. The physical file name ' C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\NewData\Demo_dynamic.mdf' may be incorrect. Diagnose and correct additional errors, and retry the operation.
    Msg 1802, Level 16, State 1, Line 1
    CREATE DATABASE failed. Some file names listed could not be created. Check related errors. 
    Awaiting for the response......!! 
    Niraj Sevalkar

    I have created earlier database in 'C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA'
    but now i have created one newdata folder and trying to create in it also i have checked the path what have you suggested above and the NewData folder is existed please check below snapshot
    Both folders files and NewData folder which don't have any files 
    Niraj Sevalkar

  • How do I find the file name on a picture while it is still in the iPhone?

    I have one picture file that won't download despite being a .jpg file.  iPhoto says it is an unrecognizable format. Trying to figure out what picture it is, or a way to delete the file and thus the annoying message with each sync.

    There is no app for reading iBooks on a Mac!

  • Can I type in a file name for the photo while it is ON the ipod?

    I can't find anywhere to give the photo a name right after I take the picture and before I upload it into iphoto. I like to type in the name of the people in the photo, and also give it a name.

    You can't edit a photo on the ipod, you'll have to do this in iphoto and sync the photos back to your device.
    Maybe there are 3rd party apps letting you do this.
    Message was edited by: Ingo2711

  • Photo file names not seen in PSE 12 editor while editing

    How can I see the file name of a photo while editing in Photoshop Element 12?

    Thanks for the answer.  However the name shows only when in the Expert mode not the Quick or Guided modes.
    I note that in the Expert mode only the relative size of the image on screen is shown as a percent in the lower right corner.  That is where I am used to see that in the PSE 9. 

  • Sorting files by file name rather than ID Tags

    Some of my files have incomplete or missing ID Tags ( a lot of mp3's from vinyl) making sorting more difficult and I typically find it more usefull to sort by file name rather than ID Tag anyway. Does anyone know how to sort by file name?

    Aloha!
    While this is not possible in iTunes right now, I might be able to help.
    It sounds like you've taken care to ensure that your music is properly labeled. That should make it easy to use a third party app to tag the lot as a batch. I am aware of one application that folks around here seem to like called "Tag & Rename" that can build a set of tags for you from folder and file names. I believe it has (or had) a free demo period as well. Try a google search or check out sites like versiontracker and you will find several apps that can do the task for you.
    Once done, iTunes will be able to handle the collection that has apparently been with you for some time. Hope this helps you decide on a course of action.

  • How to find out the file name

    Hi,
    In selection screen (parameter) user will give input TXT file from presentation server to upload to SAP. I need to capture the file name only but not the path and need to concatenate with date stamp and need to download error log in XLS file to presentation server.
    How to find out the file name from selection screen?
    I searched SCN threads but not found relavant solution.
    Thanks,
    R Kumar

    Hi
    This code gets only filename from selection screen :
    REPORT x.
    PARAMETERS p_file(100).
    DATA : gv_full_path LIKE  ibipparms-path,
           gv_full_path_string TYPE string,
           gv_filename(100),
           gv_file_ext(3).
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Ask user to select file with a popup :
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = gv_full_path.
    Get filename from path :
      gv_full_path_string = gv_full_path.
      CALL FUNCTION 'CH_SPLIT_FILENAME'
        EXPORTING
          complete_filename = gv_full_path_string
        IMPORTING
          extension         = gv_file_ext
          name              = gv_filename.
      CONCATENATE gv_filename '.' gv_file_ext INTO gv_filename.
      p_file = gv_filename.
    I hope it helps.

  • File name of Document stored through OAAD

    Hi Experts,
    We are using tcode - OAAD to store any document against employee.
    Following are the inputs provided to the system while storing the
    document.
    1. Business Object - The value used in our case is "PREL"
    2. Document type - The value used in our case is "HRIRESUME"
    3. Personnel Number
    4. Infotype number
    5. Date of origin
    6. File path - path from the presentation server
    We can display the document using tcode PA20.
    Every time the system generates a different file name.
    We are not able to find out the actual file name which was specified
    while entering the file path.
    Kindly help ......
    Regards,
    Santosh.

    Hi Santosh
    Please review below link if this helps
    http://help.sap.com/saphelp_47x200/helpdata/EN/dc/92d8345388482be10000009b38f83b/frameset.htm
    Best Regards

  • How do I create an Lightroom HTML Gallery and preserve the - in the file name?

    How do I create an Lightroom HTML Gallery and preserve the - in the file name?
    The hyphen (-) is more search engine friendly, so I label all my photos using hyphens (-) to separate the keywords in the file name
    Here's a sample file name - it's for the "Guess Where Berkeley" flickr site
    guess-where-berkeley-serkes-xx-s-curve.jpg
    I created a Lightroom HTML Gallery and posted it to the following link.
    http://www.berkeleyhomes.com/tests/lightroom/lightroom-test-1/
    Though it looksl like the HML gallery shows the original file name in the web page, it looks like Adobe Lightroom modified each photo's file name by changing the - (hyphen) to an underscore (_)
    Originally
    guess-where-berkeley-serkes-xx-s-curve.jpg
    After Adobe created the HTML photo gallery the name became
    guess_where_berkeley_serkes_xx_s_curve.jpg
    Is there any way to preserve the – rather than the _ character
    Thank you!
    Ira Serkes

    InDesign's interactive PDF support is a small subset of what you can do in Acrobat Profesional.
    I think you probably want to create a button (or change an existing button) in Acrobat Pro that causes Acrobat to close the document -- that should be analagous to "exitting the CD." I assume your autorun file is opening the PDF in Adobe Reader? You have not included it and are not specific, so it is tough to say.
    I believe in Acrobat Javascript you can close the document with this.closeDoc(). You'll probaly need to ask on the Acrobat forums (possiby Acrobat Scripting) for more detail.

  • Add Counter at the end of file name

    Hi all,
       I am using NFS protocol and trying to add counter at the end of the file. I have given the Prefix as  '-'
    Format : 1
    Step: 1
    Mode: After First File
    Is the prefix is right? Am i giving the values in right way? Please help me.
    The format required is: test_1.xml
    Thanks,
    Sri

    HI Arun,
    I m not so sure but i think prefix can not have any special character.
    You can do this by giving your file name in target->file name schema as File_* while configuring your communication channel.
    After that it will add automatically your required counter.
    thanks.

  • File name as Watermark

    Hi. While adding a text or graphic watermark is easy, I've not been able to figure out a way to have Lightroom use the photo's file name as a watermark. Is there already or could we see such a feature in the future???

    FUNNY YOU ASK,WE DESCUSED THIS ISSUE IN CLASS AT THE MENDOCINO ART GALLERY.[NOOOO] IT OR A COPY RIGHT CANNT BE DONE,THERE USEING ANOTHER PROGRAM TO COPY AND PAST.
      NOW MY ISSUE WITH THE 3 STARS APPEARING,WITH A BOX,AND A QUESTION MARK AT THE UPPER RIGHT HAND CONNER.WORKING WITH TEC SUPPORT ON LINE,IF A FOLDERS NAME IS CHANGED AFTER THE IMPORT OF PHOTOS,ALL THIS WILL APPEAR AS GONE,OFF LINE AND MISSING,BECAUSE LIGHTROOM CANT FIND THE FILE,SO TO CORRECT ,RIGHT CLICK ON THE OR ANY PHOTO AND GO UP TO THE TOP AND CLICK,IT WILL GIVE YOU THE ORIGINAL FILES NAME,AND IF YOU CAN FIND IT AND CHANGE IT BACK.ALL YOUR PHOTOS WILL BE ON LINE.NOW HERES THE SADDDDD PART AS I DELEATED 1200 PHOTOS,I REALIZED THAT THIS OFF LINE STUFF APPEARS ON TOP OF THE TOTAL AMOUNT OF PHOTOS,EVEN IF THERE ON LINE.AS I GOT DOWN TO 400,THE BOXES,STARS,? MARKS ALL WENT AWAY.NOW I WILL RELOAD THE FILES.SO THE LESSON LEARNED IS 1-DONT CHANGE YOUR FILES NAME AFTER A IMPORT,AND 2-IF IT SAYS THERE ALL OFF LINE OR MISSING,THERE NOT IT JUST READS ON ALL PHOTOS,INTELL THE ONE FILES NAME IS CORRECTED.
    Date: Mon, 21 Feb 2011 08:07:06 -0700
    From: [email protected]
    To: [email protected]
    Subject: File name as Watermark
    Hi. While adding a text or graphic watermark is easy, I've not been able to figure out a way to have Lightroom use the photo's file name as a watermark. Is there already or could we see such a feature in the future???
    >

  • How can I check original file name

    Hi all
    How can I check the original file name of a slide while in Keynote.
    Mike Hooley

    Hi Sara,
    Thankyou for your reply. What I meant was , how do you tell the original format , for example microsoft word, excel , powerpoint , jpeg, tiff , that the file was before it was converted to a PDF.
    So for example, i get a pdf file from someone and i want to know was it an exel file or a word file of  a Jpeg or scanned doc before they converted it to a pdf.
    It appears to me this information is not availabel in the file properties unless i am missing something.
    Regards
    Steven

  • How to upload data using utl_file when you dont know the exact file name

    Hi
    i want to upload data from a flat file to a table.
    i dont know the exact file name. i want to make a search for filename. like i want to make a search on file (say test*) which will give me all the files with test.
    i want to upload data using these files.
    how can i do this by using UTL_FILE.
    Regards
    Manish

    Thank you very much.
    Thing is previously we are using sqlloader and shell script for loading the data.
    now i am creating a procedure (if possible without parameters).
    Is there any other way i can do that.
    can i make a wild card search using utl_file.
    Thanks n Regards
    Manish

  • Document search by file name using TREX

    Hello,
    We have implemented searching of documents using TREX. At the moment TREX finds all documents where search term is included BOTH in the file name (title) AND the content of the document. We need to limit the search results only to the documents where the search term is a part of the file name/title and NOT the content.
    I know that searching for the term in the title and content is a standard functionality. Is there any way to limit searching for documents only to the title? Are there any parameters that I could place in the KM Document iView in the property 'query' that will limit searching to the file name?
    We use SAP NW 7.0 SP18.
    Best regards,
    Beata

    Hi Bobu,
    I have followed the suggested solution with the predifined properties - "cm_displayname(/default)" - in a new Search option set and a new Search  Component set containing only two aliases: search_predefined_props and standard_search, but it seems that searching is using the standard_search alias anyway. If I remove it from the search component, I do not have a full-search field for entering the value.
    BR
    Beata

Maybe you are looking for

  • Preview options in the "save for web" dialog

    According to the reference, the previews in the "save for web" dialog are there only for showing how the image can be seen on various platforms with different gamma values. But, if we open a non-sRGB image (ProPhoto for example) by the "save for web"

  • HT204053 How to have or create one Apple ID for iTunes, mail, iCloud, etc.?

    It seems I've created a password for iTunes, one for iCloud, etc.  How do I create one ID for all functions on my Macbook Pro?

  • Bapi /  FM to create VL01N

    any Bapi /  Fm to create DO

  • Settings in .PRM file not working

    Hi All, i'm using XI 3.1 with FP1.3 I want to change some settings in .PRM file (change operator 'like' to 'matches'). I do it in sqlsrv.prm which is located in BO-PATH\BusinessObjects Enterprise 12.0\win32_x86\dataAccess\connectionServer\odbc\ -> Th

  • Pop Up Screen-"must power off computer"

    I have been experiencing freezing and random shut downs of my Macbook. I recently had a gray screen pop up that said I needed to power off my computer, where it did not allow me to do anything else but shut down. Now, I am having difficulty turning i