CCM - ability to search by Supplier Name characteristic

Have implemented CCM 2.0 with SRM 5.0 (both at the latest support pack levels) and have two issues when searching for products:
1. I have to prefix and suffix search term words with an asterisk for the search to find products I am interested in. Eg. if looking for a product with "cardboard" in the short description, I have to enter: card and it then returns products with card in the description. If I simply enter card and press search, it returns no products. Should I have to enter asterisks around the search term?
2. I cannot currently search by supplier's name. I therefore have tried to amend characteristic /CCM/SUPPLIER_NAME in the procurement catalog. I select the following 2 flags: 'Relevant for Text-Based Search' and 'Can Be Sorted / Is Relevant for Searching in Results' (since these are not set as standard). But when I save these changes I receive error message: "Error when saving characteristic /CCM/SUPPLIER_NAME" and the ticks are automatically removed by the system. Is there any way to be able to set these flags so that I can search for products by supplier name?
Thanks
Neil

Hi
<u>Please provide the CCM support pack version details and meanwhile, please implement the following SAP OSS Note, if applicable:</u>
<b>Note 847952 Searching for items with supplier no. does not work</b>
<b><u>Don't forget to republish the procurement catalogue too, otherwise the changes won't be seen.</u></b>
<u>Related link -></u>
Re: Sorting by vendor on CCM bsp page
Do let me know.
Regards
- Atul

Similar Messages

  • 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

  • Could you please add the abillity to search through layers?

    Could you please add the abillity to search through layers?

    CS6 has search capabilities in the Layers panel. You can search by layer type, name, Layer Effect, Blend Mode, Layer Atribute (i.e. whether a layer is visible or not) and by Assigned Layer colors)

  • Sharepoint 2013 - Search for link names on a single page

    Hi
    I am messing around with SP13 and trying to get my search result web part to only search for link names and display all results.
    I have created the search source to point at the sub site. If I search for part of a link name it will list all links in one long row as a single result.
    Example: One single page contains all links. Each link points to a .aspx page. The search source is pointing at this page and it can display results but only as a single result containing all links as one line of text.
    Say I have 1000+ links of which 50 has names such as Link1-Item1-Basket1, Link1-Item1-Basket2 up to Link1-Item1-Basket50.
    When I search for Link1-Item1 I would like my search results to display 50 results as 50 individual links.
    Is this possible?

    Hi,
    Yes, you can format the search results as you expected.  But you have to create a custom display template to format your results such as extract the links from each results and display it as separate link.
    Once display template created you have to map the display template to your search results web part.
    Please refer to the following articles.
    SharePoint 2013 Customize Display Template for Content By Search Web
    Part (CSWP) Part-1
    Introduction to SharePoint 2013 Display Templates
    Display Template Overview
    Please mark it answered, if your problem resolved.

  • How can i print specific pages against searched word or name (in one print command) from 1000 pages

    how can i print specific pages against searched word or name (in one print command) from 1000 pages

    Thanks, Alex!
    ok, I try first approach in print4.vi, but Labview return an error (view jpg); if I cut From, To controls, the VI print all pages. The same things happen also if I trasform I32 in Variant.
    I don't try second approach, because at this time I have only one report
    I try also with VB macro: this is better (print3.vi) but.....if I use:
    Sub Print_Pages_From_To()
    ActiveDocument.ActiveWindow.PrintOut Range:=wdPrintFromTo, From:="2", To:="3"
    End Sub
    is ok; print the pages selected; if I use:
    Sub PrintPages()
    ActiveDocument.ActiveWindow.PrintOut  Pages:="2-3"  
    End Sub
    printer print all pages.
    what do you think?
    regards,
    Italo
    Attachments:
    print Problem.jpg ‏39 KB
    print4.vi ‏19 KB
    print3.vi ‏19 KB

  • Not being remove Blank space in Supplier Name

    Dear,
    Actully we have round more than 200 supplier having supplier name with space due to this client face problem especially in parameter while running reprots or sometime occur in oracle application, therefor i have developed this routine to remove space from the left & right side of suppliername, but not being update although some update get performed when package execute showig status sucessfull & error is blank as mentioned below.
    If any know about to update supplier name in Fron-End, right now we update supplier name but it's not wokrin could y please guide how can we upadate supplier name individulay so we can do it fron-end as per needed.
    DBMS_OUTPUT.PUT_LINE(' STATUS '||v_return_status||' ERROR '||v_error_msg);
    STATUS S ERROR
    declare
    v_return_status varchar2(100); --OUT NOCOPY VARCHAR2,
    v_error_msg varchar2(100); --OUT NOCOPY VARCHAR2);
    begin
    for i in (
    select s.*,par.jgzz_fiscal_code,par.sic_code,par.tax_reference,par.tax_name From ap_suppliers s,hz_parties par
    where ltrim(rtrim(s.vendor_name)) <> s.vendor_name
    and s.vendor_name = par.party_name
    and created_by_module = 'AP_SUPPLIERS_API'
    and vendor_name = 'ABC ' ) loop
    v_return_status := null;
    v_error_msg := null;
    POS_VENDOR_PUB_PKG.Update_Vendor
    p_vendor_id => i.vendor_id ,
    p_segment1 => i.segment1 ,
    p_vendor_name => ltrim(rtrim(i.vendor_name)),
    p_vendor_name_alt => i.vendor_name_alt ,
    p_summary_flag => i.summary_flag ,
    p_enabled_flag => i.enabled_flag ,
    p_segment2 => i.segment2 ,
    p_segment3 => i.segment3 ,
    p_segment4 => i.segment4 ,
    p_segment5 => i.segment5 ,
    p_employee_id => i.employee_id ,
    p_vendor_type_lookup_code => i.vendor_type_lookup_code ,
    p_customer_num => i.customer_num ,
    p_one_time_flag => i.one_time_flag ,
    p_parent_vendor_id => i.parent_vendor_id ,
    p_min_order_amount => i.min_order_amount ,
    p_terms_id => i.terms_id ,
    p_set_of_books_id => i.set_of_books_id ,
    p_always_take_disc_flag => i.always_take_disc_flag ,
    p_pay_date_basis_lookup_code => i.pay_date_basis_lookup_code ,
    p_pay_group_lookup_code => i.pay_group_lookup_code ,
    p_payment_priority => i.payment_priority ,
    p_invoice_currency_code => i.invoice_currency_code ,
    p_payment_currency_code => i.payment_currency_code ,
    p_invoice_amount_limit => i.invoice_amount_limit ,
    p_hold_all_payments_flag => i.hold_all_payments_flag ,
    p_hold_future_payments_flag => i.hold_future_payments_flag ,
    p_hold_reason => i.hold_reason ,
    p_type_1099 => i.type_1099 ,
    p_withhold_status_lookup_code => i.withholding_status_lookup_code ,
    p_withholding_start_date => i.withholding_start_date ,
    p_org_type_lookup_code => i.organization_type_lookup_code ,
    p_start_date_active => i.start_date_active ,
    p_end_date_active => i.end_date_active ,
    p_minority_group_lookup_code => i.minority_group_lookup_code ,
    p_women_owned_flag => i.women_owned_flag ,
    p_small_business_flag => i.small_business_flag ,
    p_hold_flag => i.hold_flag ,
    p_purchasing_hold_reason => i.purchasing_hold_reason ,
    p_hold_by => i.hold_by ,
    p_hold_date => i.hold_date ,
    p_terms_date_basis => i.terms_date_basis ,
    p_inspection_required_flag => i.inspection_required_flag ,
    p_receipt_required_flag => i.receipt_required_flag ,
    p_qty_rcv_tolerance => i.qty_rcv_tolerance ,
    p_qty_rcv_exception_code => i.qty_rcv_exception_code ,
    p_enforce_ship_to_loc_code => i.enforce_ship_to_location_code ,
    p_days_early_receipt_allowed => i.days_early_receipt_allowed ,
    p_days_late_receipt_allowed => i.days_late_receipt_allowed ,
    p_receipt_days_exception_code => i.receipt_days_exception_code ,
    p_receiving_routing_id => i.receiving_routing_id ,
    p_allow_substi_receipts_flag => i.allow_substitute_receipts_flag ,
    p_allow_unorder_receipts_flag => i.allow_unordered_receipts_flag ,
    p_hold_unmatched_invoices_flag => i.hold_unmatched_invoices_flag ,
    p_tax_verification_date => i.tax_verification_date ,
    p_name_control => i.name_control ,
    p_state_reportable_flag => i.state_reportable_flag ,
    p_federal_reportable_flag => i.federal_reportable_flag ,
    p_attribute_category => i.attribute_category ,
    p_attribute1 => i.attribute1 ,
    p_attribute2 => i.attribute2 ,
    p_attribute3 => i.attribute3 ,
    p_attribute4 => i.attribute4 ,
    p_attribute5 => i.attribute5 ,
    p_attribute6 => i.attribute6 ,
    p_attribute7 => i.attribute7 ,
    p_attribute8 => i.attribute8 ,
    p_attribute9 => i.attribute9 ,
    p_attribute10 => i.attribute10 ,
    p_attribute11 => i.attribute11 ,
    p_attribute12 => i.attribute12 ,
    p_attribute13 => i.attribute13 ,
    p_attribute14 => i.attribute14 ,
    p_attribute15 => i.attribute15 ,
    p_auto_calculate_interest_flag => i.auto_calculate_interest_flag ,
    p_validation_number => i.validation_number ,
    p_tax_reporting_name => i.tax_reporting_name ,
    p_check_digits => i.check_digits ,
    p_allow_awt_flag => i.allow_awt_flag ,
    p_awt_group_id => i.awt_group_id ,
    p_pay_awt_group_id => i.pay_awt_group_id ,
    p_awt_group_name => null ,
    p_pay_awt_group_name => NULL ,
    p_global_attribute1 => i.global_attribute1 ,
    p_global_attribute2 => i.global_attribute2 ,
    p_global_attribute3 => i.global_attribute3 ,
    p_global_attribute4 => i.global_attribute4 ,
    p_global_attribute5 => i.global_attribute5 ,
    p_global_attribute6 => i.global_attribute6 ,
    p_global_attribute7 => i.global_attribute7 ,
    p_global_attribute8 => i.global_attribute8 ,
    p_global_attribute9 => i.global_attribute9,
    p_global_attribute10 => i.global_attribute10 ,
    p_global_attribute11 => i.global_attribute11 ,
    p_global_attribute12 => i.global_attribute12 ,
    p_global_attribute13 => i.global_attribute13 ,
    p_global_attribute14 => i.global_attribute14 ,
    p_global_attribute15 => i.global_attribute15 ,
    p_global_attribute16 => i.global_attribute16 ,
    p_global_attribute17 => i.global_attribute17 ,
    p_global_attribute18 => i.global_attribute18 ,
    p_global_attribute19 => i.global_attribute19 ,
    p_global_attribute20 => i.global_attribute20 ,
    p_global_attribute_category => i.global_attribute_category ,
    p_bank_charge_bearer => i.bank_charge_bearer ,
    p_bank_branch_type => i.bank_branch_type,
    p_match_option => i.match_option ,
    p_create_debit_memo_flag => i.create_debit_memo_flag ,
    p_party_id => 2085 ,
    p_parent_party_id => i.parent_party_id ,
    p_jgzz_fiscal_code => i.jgzz_fiscal_code,
    p_sic_code => i.sic_code ,
    p_tax_reference => i.tax_reference,
    p_inventory_organization_id => NULL ,
    p_terms_name => NULL ,
    p_default_terms_id => NULL ,
    p_ni_number => NULL ,
    p_last_update_date => NULL ,
    x_return_status => v_return_status,
    x_error_msg => v_error_msg
    DBMS_OUTPUT.PUT_LINE(' STATU S '||v_return_status||' ERROR '||v_error_msg);
    end loop;
    end;
    Edited by: oracle0282 on Dec 24, 2011 3:36 AM
    Edited by: oracle0282 on Dec 25, 2011 9:51 PM

    Just a thought..
    How about creating a new supplier and then opt for Supplier Merge?
    Using supplier merge you may transfer all the open PO's and invoices of the old supplier to the new
    supplier. By using the supplier merge, the old supplier would be end date automatically by the
    system.
    P.S. I am NOT sure whether there exist a datafix to edit the supplier name.
    Regards,
    Srini

  • In iTunes 11.0.2.26, an Albums search by track names returns albums as if they only have one track on them, but I still want to access the entire album. How can I have the search results show the entire album (with just the searched for name highlighted)?

    Hello, all.
    In iTunes 11.0.2.26, an Albums search by track names returns albums as if they only have one track on them, but I still want to access the entire album. How can I have the search results show the entire album (with just the searched for name highlighted)? For instance, I'm wanting to play an album with a particular track on it or I'm searching for albums that include that track. iTunes incorrectly assumes that all I'm after is that one track and then incorrectly displays the album as if there is only one ttrack on it. This is a bonkers default setting. Can I change this?

    Click the search magnifying glass and uncheck "Search entire library".
    Type in the name of the track.
    Click the album of interest to show tracks.
    Select the track.
    Press the X in the search box to clear the search.
    Double click the track you want to start playing first.
    tt2

  • My iphone 4S only start whit cable plug in and then show battery very low (with red line end) then try to turn on but show searching in operator name command and not connecting and no work properly and when I plug out it turn off!!! what should I do?

    My iphone 4S only start whit cable plug in and then show battery very low (with red line end) then try to turn on but show searching in operator name command and not connecting and no work properly and when I plug out it turn off!!! what should I do?

    I'm afraid you'll have to get the phone serviced, dropping the phone must have damaged additional parts inside the phone.
    But Apple will not service the phone anymore, opening the phone and replacing the battery should only be done by authorized personal, not by users.
    You'll have to look for a 3rd party repair shop and see if they can fix this, sorry.

  • To get supplier name based on latest approved date

    hi
    in PO SUPER USER -Purchase Order Summary ,when we enter the item number in Item,rev field a new form Purchase Order Lines opens
    in this form there are many lines of PO numbers ,suppliers(vendors),approved date ,can we get the supplier name for which the approved date is most recent
    kindly guide
    thanking in advance

    hi
    in my system i can see the latest approved date wise but i have to add an inline query on the most recent vendor based on approved date to an already existing query
    meaning just the first row data(most recent supplier) should be captured in the query
    when i do the following query , i am taking an eg of the item_no 1020101001
    select msib.segment1,max(pha.approved_date) from
    po_headers_all pha,
    po_lines_all pla,
    po_vendors pv,
    mtl_system_items_b msib
    where
    pha.po_header_id = pla.po_header_id
    and pla.item_id = msib.inventory_item_id
    and pv.vendor_id=pha.vendor_id
    and msib.segment1='1020101001'
    --and pha.approved_date=max(pha.approved_date)
    group by
    --item_id.
    msib.segment1
    this is the output i get
    segment1           MAX(PHA.APPROVED_DATE)
    1020101001    1/9/2011 3:16:48 PMwhen i do the following query
    select msib.segment1,max(pha.approved_date) ,pv.vendor_name from
    po_headers_all pha,
    po_lines_all pla,
    po_vendors pv,
    mtl_system_items_b msib
    where
    pha.po_header_id = pla.po_header_id
    and pla.item_id = msib.inventory_item_id
    and pv.vendor_id=pha.vendor_id
    and msib.segment1='1020101001'
    --and pha.approved_date=max(pha.approved_date)
    group by
    --item_id.
    msib.segment1
    ,pv.vendor_name
    segment1           MAX(PHA.APPROVED_DATE)  VENDOR_NAME
    1020101001    7/21/2008 9:09:20 AM   TRIZAC  ABU DHABI
    1020101001   1/9/2011 3:16:48 PM        SAUDI CEMENT COMPANY
    1020101001   2/14/2010 4:03:46 PM     UNION CEMENT NORCEM CO.
    1020101001  5/19/2010 3:08:32 PM      AS CIMENTO SANAYI VE TICARET A.S.i require the most recent vendor_name for a particular item ( i require the output as below)
    segment1 MAX(PHA.APPROVED_DATE) VENDOR_NAME
    1020101001 1/9/2011 3:16:48 PM SAUDI CEMENT COMPANY
    kindly guide me
    thanking in advance

  • Using wildcards in CCM 2.0 search

    Hi experts
    we're using SRM 5.0 (SRM 5.5 Server) with CCM 2.0.
    Is it possible to use wildcards in catalog search?
    Are there any documents about wildcards in CCM ?
    Regards.
    Sven

    Hi
    Yes TREX is mandatory for CCM2.0 (written in the master guide). Please restart the TREX server and retry, if this does not in your case.
    I guess, There are two wildcard characters:
    ? stands for a single character
    stands for a sequence of any combination characters of any length.
    Related links ->
    CCM 2.0 Simple search on CSE does not show any result
    Re: Cross catalog search doesn't work for CCM 2.0
    Re: Search function for Catalogue CCM 1.0 SRM version 4
    CCM view rules - based on wild cards?
    Re: Is TREX required for CCM 2.0 search?
    Hope this answers your queries. Do let me know.
    Regards
    - Atul

  • Where is Search by File Name in Mountain Lion?

    My spotlight searches in 10.6 used to allow me to search either by contents or file name.  Now, in 10.8, I seem to be able to search by contents only.  Is there a way to get search by file name back?  Some preference somewhere?

    Use the box in Finder. Put the cursor there, hit the space bar, and you will get a + sign on the right. Hit it and you can select to search by name on the left.

  • For some artists in my Music app on my I-phone, the songs do not appear when I search by the artist.  However, if I search the album name, all the songs show.  How do I get the songs to show under songs?

    For some artists in my Music app on my I-phone, the songs do not appear when I search by the artist.  However, if I search the album name, all the songs show.  How do I get the songs to show under songs?

    Hi Spam_Valley,
    I understand that you are having issues with your music displaying correctly. This may be an issues with the metadata stored within that song, and iTunes interpretation of that info.
    We may need to repair this. See the following resources for information:
    iTunes 10 for Windows: If song titles don’t appear correctly
    http://support.apple.com/kb/PH1468
    Fixing Incorrect Song or Album Listings in iTunes
    http://support.apple.com/kb/TA24677
    Thanks,
    Matt M.

  • AP Trial Balance/Supplier Name

    Hi Experts,
    When I selected an inactive supplier for AP Trial Balance , I got a messte: Value XXX in segment Supplier Name has expired. I checked the value set :AP_SRS_VENDOR_NAME , there is no condition for active supplier, why can't I select an inactive supplier from LOV?
    Thank you very much.
    Best Regards,

    Hi,
    I knew the reason. Thanks.

  • BUG in iOS7: Post iOS7 upgrade, search option does not work for "Messages". If you want to search a contact name in Messages who is way below the list, the search will not yield any result.

    BUG in iOS7: Post iOS7 upgrade, search option does not work for "Messages". If you want to search a contact name in Messages who is way below the list, the search will not yield any result.

    These are user forums. You are not speaking to Apple here. Report your problem at Apple Feedback.

  • 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

Maybe you are looking for