Collections search by folder numbers

It would be real nice, when making a collection of sub folders, if Bridge could base it's search on the folder numbers.
For example:
collection based on folder numbers 1-50.
Am I correct this is currently not possible? thanks.

Anything is possible, but the most likely enhancements are those which will clearly serve the general workflows of a whole bunch of people. It sounds like yours is a fairly narrow workflow, but perhaps it could be encompassed within something larger. Maybe simple regular expression use in Find would help?
You might be able to rig up what you are after in today's Bridge, though. If your folders are consistently named, you might be able to set up a search to find a given set of folders, save that as a collection, and then do another search on the collection. It probably won't be as flexible as you'd like, but it's a start.
-- Jim

Similar Messages

  • FM : to call collective Search help and update two fields in SSCR

    Hi Experts,
         I have problem while using collective serach help.
        My scenario is using Collective Search help thru that i want to update 2 fields in my selection screen.
    Thru this function module F4IF_INT_TABLE_VALUE_REQUEST  i can mapping and update two fields using DYNP_VALUE_UPDATE but using this function module i can't able to call my Collective Search help
    in other way
    Thru F4IF_FIELD_VALUE_REQUEST  i can able to call the collective search help but _i can't mapping field and can't updated the
    selection screen field_
    Is any otherway to do it, Please help me ASAP.
    Regards,
    Florian.

    Hi Friends,
    I have the similar kind of requirement. Upon click on a Button on screen i need to call a search help, and collect one or more selected material numbers.
    The search help is working fine and i am getting the entries with the following code.
    The problem is i am finding extra popup on screen.
    CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
    tabname         =  space
    fieldname       =  space
    SEARCHHELP      =  'MAT1'
    MULTIPLE_CHOICE =  'X'
    STEPL           =  0
    value           = 'MATNR'
    *dynpprog        =  progname
    *dynpnr          =  dynnum
    *dynprofield     = 'CARRIER'
    CALLBACK_PROGRAM          = 'ZTEST_1_PRA'
    CALLBACK_FORM             = 'F4CALLBACK'
    TABLES
    RETURN_TAB                = RETURN_TAB
    EXCEPTIONS
    FIELD_NOT_FOUND           = 1
    NO_HELP_FOR_FIELD         = 2
    INCONSISTENT_HELP         = 3
    NO_VALUES_FOUND           = 4
    OTHERS                    = 5.

  • Jabber - Search for phone Numbers (extensions)

    Hi there,
    as on the old Cisco Personal Communicator there was a possibillity to search for extension numbers on the search field. If I enter an extension number on the Jabber Client on Windows, there is no Name and Picture shown from this employee. For example, if you type in 1234 in the field it just says "call 1234" but I want so find the employee which extension is 1234.
    On the jabber-config.xml I already tryed the UDS and EDI method.
    So I'm just asking if there is a general problem with this function or if this is just an configuration issue. If it would help, I'll post the jabber-config.xml.
    Thanks for a reply.
    regards
    Marc

    Hi Marc,
    Currently this is not supported. It is tententively planned for 9.4 which has no current release date.
    Thanks,
    - Colin

  • Collective search help in SRM 7.0

    Hello all,
    Does any body has an idea why the custom elementary search helps wont get displayed in SRM7.0 When we add for a collective search help.
    For ex.. BBP_BUPA* SOURCE_OF SUPPLY is the standard collective search help where we added custom search helps to it,
    While upgrading we try to implement the same in 7.0 also, But theya re not at all visible in the  Drop down of Preferred supplier.
    I tried to check web dynpro componenet  WDR_F4_COLLECTIVE method   in debug mode  but was unable to trace it out,
    Can any body help me how can i include them to standard collective search helps  in web dynpro.
    Thanks and Regards
    geetha

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • How to create Search help exit, and then assign it to a collective search

    hi gurus,
    i have an intersting question for you, well my scenario is like i have to create a search help exit using some function module cause i didt found table for my search help but i can find the value through FM, i know we can create a search help exit and then assign it to collective search help,
      my problem is what are the parameters i need to pass to this search help exit FM, and in the function module i want to use the value entered on the f4 selection screen to extract data through FM. i need to give a solution  asap.
    any reply will be highly appreciated
    n rewards points for sure.
    thanks mandy

    Hi mandy,
    Have a look at this code,
    FUNCTION SHLP_SHOW_LIST.
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(PLANT) TYPE  WERKS_D OPTIONAL
    *"     VALUE(DISPLAY_ONLY) TYPE  FLAG OPTIONAL
    *"  EXPORTING
    *"     REFERENCE(ITEM_SELECTED) TYPE  CHAR20
    *"  EXCEPTIONS
    *"      POPUP_CANCELED
    TYPE-POOLS SHLP .
    CONSTANTS:
            co_shlpname            TYPE shlpname   VALUE 'SHLP_CONTAINER',
            co_shlpfield_itemalias TYPE ddshlpsfld VALUE 'CONTAINER'.
      DATA: l_shlp         TYPE shlp_descr_t,
            l_subrc        TYPE sysubrc,
            l_return_tab   TYPE STANDARD TABLE OF ddshretval,
            l_return_wa    TYPE ddshretval,
            l_interface_wa TYPE ddshiface.
    Get details for search help
      CLEAR l_shlp.
      l_shlp-shlpname  = co_shlpname.
      l_shlp-shlptype  = 'SH'.
      CALL FUNCTION 'DD_SHLP_GET_HELPMETHOD'
           CHANGING
                shlp = l_shlp.
    Assign virtual screen field
      READ TABLE l_shlp-interface INTO l_interface_wa
      WITH KEY shlpfield = co_shlpfield_itemalias.
      l_interface_wa-value      = space.
      l_interface_wa-valtabname = 'X2'.    "virtuel screen field
      l_interface_wa-valfield   = 'Y2'.    "virtuel screen field
      MODIFY l_shlp-interface FROM l_interface_wa INDEX sy-tabix.
    Call F4 popup
      CALL FUNCTION 'F4IF_START_VALUE_REQUEST'
           EXPORTING
                shlp          = l_shlp
                disponly      = display_only
           IMPORTING
                rc            = l_subrc
           TABLES
                return_values = l_return_tab
           EXCEPTIONS
                OTHERS        = 0.
      IF sy-subrc = 0 AND l_subrc = 0.
      Value selected
        READ TABLE l_return_tab INDEX 1 INTO l_return_wa.
        item_selected = l_return_wa-fieldval.
      ELSE.
      Popup canceled / no value selected
        RAISE popup_canceled.
      ENDIF.
    ENDFUNCTION.
    make sure to call these FMs and populate accordingly...
    Thanks
    Madhu

  • Windows 8.1 PC, using reader, when searching a folder containing approx 100 doc's. If i search for a word, no results are returned. only the doc names can be found but nothing from within the doc. This is a new problem and was not the case before.

    Windows 8.1 PC, using reader, when searching a folder containing approx 100 doc's. If i search for a word, no results are returned. only the doc names can be found but nothing from within the doc.
    This is a new problem and was not the case before.

    Works perfectly fine for me with the latest Reader version (11.0.09).
    You write that it worked "before"; before what?  An update?  Update from what version to what version?

  • DIR Search at Folder Level

    Hi all,
    Is SAP DMS has the functionality to search the document using classification within the Particular Folder.  so far i have only seen the document Search is at classification charateristics or at the Document Text level.
    Pls Let me know, whether Searching at folder level is possible or not?
    Regards,
    S Anand

    hi,
    Find in Structure
    To find the folder in the SAP Easy Document Management structure in which a document was originally created, proceed as follows:
           1. Select a document or folder in the directory structure of SAP Easy Document Management, for example, in the Search
               Result folder.
           2. Choose Find in Structure in the context menu of the document or select the Find in Structure indicator in the search
               dialog  for documents .
               Microsoft Windows Explorer highlights the folder in which you originally created the document.
    Benakaraja
    ??p

  • How to create an elementary and collective search help in webdynpro

    Hi all,
    my requirement is i have to create an collective search help. and that should be same as other tcode search help functionality.
    and now the ztcode is in r3 system and my webynpro development is going on bw system how to copy that tcode from r3 to bw system. and then for my input field is cost center and for this input field i should create the search help functionalty.kindly help me how to achieve this functionality i am new to this webdynpro so kindly send me the detail steps.
    Thanks & Regards,
    Naveen

    Hi Naveen,
    There's no difference to using a collective search help or a regular search help.
    in the attribute of the context that you want the search helps to appear for - specify that the input help is of type dictionary search help, then specify that the input help is your collective search help.
    Search helps in WDA, if search help is available at dictionary level, no need to create any search help, you get automatically.
    If you want to create search help for any input field, another option is using OVS. we have WDR_OVS component for search helps, you need to reuse this component in your custom component, just change some coding according to your requirements you get search help.
    Go through these documentation and helps...
    http://help.sap.com/saphelp_nw73/helpdata/en/cf/21ee45446011d189700000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw73/helpdata/en/3d/e53642e2a3ab04e10000000a1550b0/content.htm
    OVS search help..
    http://wiki.sdn.sap.com/wiki/display/Snippets/OVSSearchHelpinWebDynproAbap
    freely programmed inputhelp
    http://wiki.sdn.sap.com/wiki/display/WDABAP/Freelyprogrammedinput+help
    http://wiki.sdn.sap.com/wiki/display/WDABAP/UsingSearchhelpattachmentsforWebDynproABAP
    Thanks,
    Kris.

  • In Photoshop V5 -How do I keep photos in the same order when Exporting a Collection to a Folder

    Hi
    In order to resize photos ready for Premiere Elements, I am Exporting my Collection to a folder, from the Organiser.
    I then resize that Folder using Process multiple Files.
    I then can import that Folder into PE.
    BUT, the export seems to change the photo order to an apparent random order.
    The Collection is in the right order, and there seems no options in the export dialogue to impact the order in the exported file.
    Thanks
    Chris
    PS I am about to upgrade to version 7, but would like to get my process sorted out before then. maybe 7 does it differently.

    Hi DJ
    Thanks for the quick reply.
    The good news is that what you suggest simplifies my process a lot. So thanks for that.
    The bad news in the order in still wrong. I.E it's not as the collection order, but it is the same order as the Process Multiple file route!
    So a step forward, but not quite there yet.
    Thanks so far!
    Chris

  • Finder will NOT search current folder

    I've searched online and the Apple Community for an answer but none correct my problem. 
    My Finder window will NOT search the current folder.  I have gone into Finder Preferences to ensure that SEARCH CURRENT FOLDER is chosen.  It is.  I have rebooted my computer and Finder, cleared the cache etc to no avail.  iMac 10.7.5 and  Macbook Pro  10.7.5
    These are the instructions I'm following, which require a search on sub. 
    http://www.webtechgadgetry.com/2013/12/mac-osx-tip-add-icloud-photo-stream-finde r-sidebar/
    ~/Library/Application Support/iLifeAssetManagement/assets/sub
    When I type CMD + F, I only get a search on whatever folder was selected at the time I searched, not sub.  Ugh. Worked perfectly on my Macbook Pro.  Not so much on my iMac. Thanks in advance for you assistance. 
    Picture below:  Go to folder search
    Next Pic: Search above finds sub folder and it is highlighted.
    Next Pic: After  CMD + F, You can see in the search bar, SUB is not shown. 

    The folder is not indexed by Spotlight. Open the Spotlight preference pane and check the Privacy settings. If the folder, or a parent folder, isn't listed, add it to the list and then remove it to rebuild the index.

  • Choose default Search Help in a collective Search Help

    Hello,
    In a collective search help, when it was launched, I want to open the same search help by default. In fact, the SAP standard keep in memory the last search help opened and when we re-opened it, the last search help in open.
    Thanks in advance.
    Best regards,
    Xavier.

    In found a solution.
    There are no standard solution BUT, in the Collective Search Help Exit, you can do a DELETE or a MODIFY on the DDSHDEFSH table (Default value - search help per user and collective s.h.).
    Xavier.

  • Option to search a folder name in the Mail App

    It would be great, event indispensable for people who's organizing their mailbox in multiple folders, to have the possibility to search a folder name whatever it's in the hierarchy view of the all the folders in the mailbox or when you want to file an email to a specific folder.
    A simple search field on the top of the folders view would be great! That's one thing executive people's that are switching from BlackBerry to iPhone are complaining about.

    tell Apple
    http://www.apple.com/feedback/iphone.html

  • Search by folder name? Monitor folders for changes?

    Im a long time PC user that LOVED how Picasa automatically indexed any locations that I told it to keep track of. I just got Aperture - but so far I am utterly disappointed in the search function.
    When I used to import all of my photos the folder that each import would go under would be the events title.
    For instance if I shot a wedding I would name the folder "John Smith" because in picasa I could just search for "Smith" and it would have all of the files in that folder as results - regardless of their metadata.
    So here I am with a 2 week old Macbook that I love - but I cant find any of the photos that I want to find.
    My library has roughly 40K images - so without the ability to search by folder names it takes me forever to find the files I am looking for.
    *Surely I am an idiot and just dont know how to search by folder name - can someone enlighten me?*
    Also - is it possible for Aperture to monitor certain folders for changes - for instance if I save something to my library folder from photoshop - do I then have to import that one file I just saved? Picasa would just display it under the folder its in - is there any programs for Macs that behave like this?

    aperture can indeed search on the project title. a little harder to find in the filter dialog, but it is there.
    but again, you'll have to import your data differently than i think you did the first time.
    i'm sorry that you're not happy with Aperture doing what you want, but then again, you're upset because it doesn't work with you're old folder structure. Not every application can be expected to be designed for every possible methodology that someone used to manage their existing data. It was set up to be used more visually than your old method and if you can't take the time to organize your photos when you import them to Aperture, then you're right, it probably isn't for you.
    i would suggest you watch the tutorial on searching to see all of the additional metadata you can search by, maybe it would help in some way.... but if not, good luck with LR

  • Can i search data in Numbers app?

    Can i search data in Numbers app for iPad like i do with an excel spreadsheet (ctrl+F)?
    Or i have to look though the whole spredsheet to find what i am looking for?

    "Find" is the second option under the tools menu (The wrench icon at the top of the Numbers screen)

  • Prob in collective search help.

    Hi ,
    I am facing problem in collective saerch help creation.
    i assigned two elementry search helps which are of for fields name and id.
    i assigned this collective search help to these fields(neme and id).
    but when i am checking for both fields its displaying only one field values either id or name.
    why its happening like this,
    Thanks & Regards,
    raji.

    Hi
    Please check with the following link
    [Collective search help|http://help.sap.com/saphelp_nw70/helpdata/EN/cf/21ee86446011d189700000e8322d00/content.htm]
    Hope this helps you
    Regards,
    Rajani

Maybe you are looking for

  • How to process multiple images and each image has multipl links dynamically

    I saw this web site http://escience.invitrogen.com/ipath/iPath.jsp?cn=united+states&mapid=479&highlightGene=ADAM10 when the small icons in the left map is clicked, the corresponding information of the icon display on the right. For one map, I know I

  • Printer Settings

    Hello Experts, Currently we are having problems with printer settings. When we are using the LOCL printer, the Ukranian characters get displayed (PDF, SMARTFORM printing and print preview - only minor overlapping of characters in PDF). However when w

  • Unable to create the material

    HI ALL Why is that it is not possible to create the material, when i enter the oranization data at while i creating the material. it says that invalid Sales Area thought the assignment of Sales Organization to Distribution channel is done all most al

  • Format first and last record of result query

    Hello I have the following query <tt>select 1 seq, 'This is First record' data from dual union all select 2, 'Data ' || tname from tab union all select 3, 'This was last record Last record' from dual order by 1</tt> When i spool this statement to a l

  • Adding new fields in Custom Infotype

    Hi, I need to change some fields of Custom Infotype. But project is already gone live for 1 country. will making changes to infotype affect for existing live country? Safe side....We are thinking Adding new fields in Custom Infotype. & displaying cor