Search functionality not working in Purchase order

Hi all,
We are using extended classic scenerio's .But we are unable to search the Purchase orders against status "order ,awaiting approval etc"
However, we are able to search only "Status Held" PO's
Could you please tell me the soultion for this. Seems to be search functionality not properly activated.
Thanks and regards
Harish shetty

Hi Harish,
See if the following OSS notes are helpful:
Note 1138911 - BBP_POC - Search issue in purchase order
Note 1128758 - BBP_POC: Search Issue in Purchase Order
Thanks,
Pradeep

Similar Messages

  • Search Functionality not working in The Solution database

    Gurus,
    I habv currently configured Solution Database on my server . It is is getting updated by the Action Profile .
    Now when i am trying to serch for any  soultion , I am not able to search , also the Radiobutton ( Add to cart ) is not active in my case
    Any anwers for this
    Uday Borse

    Hi
    like to know did you manage to resolve your request, If yes please advise since i have the same issue, Trans CRMM_SEARCH the search function is working fine. But i'm unable to do a search via IS01
    any answers?
    Thanks
    your request below
    "Gurus,
    I habv currently configured Solution Database on my server . It is is getting updated by the Action Profile .
    Now when i am trying to serch for any soultion , I am not able to search , also the Radiobutton ( Add to cart ) is not active in my case
    Any anwers for this
    Uday Borse"

  • Stastical Condition Type is not working in Purchase Order

    Hi All,
    I created a pricing procedure and Bank charges are created as a condition type which is stastical. I assigned a account Key and Accural key for the same condition type. We activated Purchase Account Management
    Purchase order is raised with USD 100, ank charges(%) which will be calculated on Base price, for example Bank charges is 1% then bank charges will be USD1.
    I want these bank charges should not be added to the material cost. But when we are doing GR accounting entries as below.
    Stock account 101     +       
    GR/IR     100     -       
    Pur acc     100     +       
    Pur Offset     101     -       
    Bank chargesAccount key     10 +       
    Accural     10     -     
    In the above Bank Charges are added to Stock account which is not required.
    Even though I created the Bank charges Condition type as Statical still the value is adding to  the stock account.
    Thanks and Regards
    durga

    Hi Durga,
    Most importantly whenever we create a condition type with statistical check box it means that value will not be included in Net price calculation this is the only purpose of statistical check box.(Like any freight charges it will go to your stock a/c even though statistical check box is there in your Pricing procedure)
    When you create condition type for any charges with Cond.category B Delivery costs and Accrual check box in M/06 by default it will go to stock account, but you can restrict that by using a functionality
    Check this link for complete process
    http://wiki.sdn.sap.com/wiki/display/ERPLO/PostingplanneddeliverycosttoNon-inventoryaccount

  • Search function not working in Aperture

    The search function in Aperture 2.1.4 is not working,. No changes have been made to settings/preferences. Advanced keyword searching will no take place either.

    The upgrade from Aperture 2 to Aperture 3 has to be bought from the AppStore; it is not a free update.  But Aperture is no longer as expensive as it used to be, but still 69,99 € or 80 $ (US).
    Sometimes next year will the new Photos.app be released by Apple, and the migration from Aperture 3 to Photos will be supported, but I have no idea, if that will be possible for Aperture 2 libraries.
    I've never run Aperture with Lion or later, so I cannot be sure, which troubleshooting measures will be save on Mavericks. Check out this link:  Aperture 2: Troubleshooting Basics

  • RAISE form_trigger_failure not working in purchase order form

    Hi,
    I am working on a customization in Purchase Order Form (poxpoepo)
    This is what I tried to do.
    CURSOR 1_cur IS
    SELECT pol.LINE_NUM v_line
    ,gcc.segment1 v_seg
    FROM gl_code_combinations gcc
    ,PO_DISTRIBUTIONS_ALL pod
    ,po_lines_all pol
    WHERE SUBSTR(gcc.SEGMENT1,1,1) = 'X'
    AND gcc.code_combination_id = pod.code_combination_id
    AND pod.PO_LINE_ID = pol.PO_LINE_ID
    AND pol.po_line_id = v_po_line
    AND pol.PO_HEADER_ID = v_po_header;
    CURSOR 2_cur IS
    SELECT pol.LINE_NUM v_line
    ,gcc.segment1 v_seg
    FROM gl_code_combinations gcc
    ,PO_DISTRIBUTIONS_ALL pod
    ,po_lines_all pol
    WHERE SUBSTR(gcc.SEGMENT1,1,1) = 'X'
    AND gcc.code_combination_id = pod.code_combination_id
    AND pod.PO_LINE_ID = pol.PO_LINE_ID
    AND pol.PO_HEADER_ID = v_po_header;
    BEGIN
    v_error_found := false ;
    IF (form_name = 'POXPOEPO' AND
    (block_name IN ('PO_LINES' ,
    'PO_SHIPMENTS',
    'PO_DISTRIBUTIONS') AND
    event_name = 'WHEN-NEW-ITEM-INSTANCE') OR
    (block_name = 'PO_HEADERS' AND
    event_name = 'WHEN-NEW-RECORD-INSTANCE' AND
    name_in('SYSTEM.BLOCK_STATUS') = 'QUERY' ) OR
    (block_name = 'PO_APPROVE' AND
    event_name = 'WHEN-NEW-BLOCK-INSTANCE' )
    ) AND
    NAME_IN('PO_LINES.PO_HEADER_ID') IS NOT NULL AND
    NAME_IN('PO_LINES.PO_LINE_ID') IS NOT NULL AND
    name_in('PO_LINES.LINE_NUM') >= 1 ) THEN
    v_po_header_id := NAME_IN('PO_LINES.PO_HEADER_ID');
    v_po_line_id := NAME_IN('PO_LINES.PO_LINE_ID');
    v_line_num := NAME_IN('PO_LINES.LINE_NUM');
    IF block_name in ('PO_LINES' , 'PO_SHIPMENTS', 'PO_DISTRIBUTIONS') THEN
    v_seg := null;
    FOR cursor1 in 1_cur
    LOOP
    if cursor1.v_seg = 'X' THEN
    v_seg := 'X';
    v_line_num := cursor1.v_line;
    EXIT;
    end if;
    END LOOP;
    ELSIF block_name in ('PO_HEADERS','PO_APPROVE') THEN
    FOR cursor2 in 2_cur
    LOOP
    if cursor2.v_seg = 'X' THEN
    v_seg := 'X';
    v_line_num := cursor2.v_line;
    EXIT;
    end if;
    END LOOP;
    END IF;
    IF v_seg = 'X' then
    fnd_message.set_string('custom message to be displayed.');
    FND_MESSAGE.ERROR;
    IF block_name = 'PO_APPROVE' THEN
    go_block('PO_HEADERS');
    raise form_trigger_failure;
    END IF;
    END IF;
    END IF;
    END;
    I actually want to achieve somewhat like this. When ever the charge account field start with 'X' or in other words if segment1 is 'X' and if changes are made to that line like note to supplier is changed and saved then the user should not be allowed to approve/reapprove the order and it shall pop up the message and ONLY restrict from going further if the user hits the APPROVE button. Highlighted in bold should have actually taken care of the requirement from proceeding to the next level of approval but it is not. I have had several debug messages and I am pretty sure that it is satisfying the condition of going to the PO_APPROVE block and still not raising form trigger failure. Could you please help me handle this scenario?

    Your Raise works -- it will terminate your procedure, Change_Detail_Block_Status.
    But, how are you calling the procedure? It is in THAT place that you should look for your problem.
    If you call the procedure, and then have coded EXCEPTION WHEN OTHERS THEN.... or something similar, you might be ignoring the "Raise FTF".
    In addition, you probably need to add these lines in your form where navigation or a commit or similar code causes a trigger to call your procedure:
    If not Form_Success then
    Raise Form_Trigger_Failure;
    End if;

  • Search function not working on iphone4s

    The search function does not appear to be working on my phone. Help

    I am having similar problem with search function on my 4S
    Some time it works.........Recycling the power does not help
    After I disabled bluetooth, it seems to be working.

  • Search function not working correctly

    I have a problem searching in a specific document. For some reason, the search function only seems to sift through certain fonts, or types of text. The main text is not included in the search, but rather only (for example) the Table of Contents and some "examples" (in a special font) in the text. Everything else is omitted.
    When I copy/paste the main text, it's pasted as a strange code in this fashion, despite the fact that it's quite readable in it's original form:
    äíÉí=áåíÉ=Ü~ê=Ñí
    This is probably the reason why Search can't find terms in the main text, as searchable text looks quite right when copy/pasted. But how can I solve the problem?
    Thanks!
    David

    Did you check under the file Properties to see if the fonts are embedded? If they are not, you can reembed the fonts if you have Acrobat Pro using the Preflight tools.

  • Search function not working

    the search function on my macbook's mail app has just stopped working. every search term i type in returns 0 resultsi know the emails are there (i.e., typing in 'ebay' returns nothing, despite using my account for ebay)
    i have tried restarting the app, restarting the macbook and nothing seems to have sorted it
    any help is greatly appreciated
    thanks

    I am also having this issue....except in a different manner.
    When I use the search box whilst looking in a folder (EG Inbox) the return now incorporates 'everything' -sent mails, bin mails.
    It no longer is selective but seems to have switched to a generic search.
    How do I switch it back to selective searches for peoples names

  • Search function not working for few days ??

    I try to search for object that I have searched before and got results.
    now I don't get any result on any search query I give. yesterday I thought , OK I will wait for tomorrow then it will be resolved. but now it's still not working ?
    for instance search on CL_SALV_TABLE is giving no results ?
    am I the only one experiencing this problem or is it community wide ?
    kind regards
    arthur

    Hi Arthur,
    we are aware of the current search problem and our development team is working on it. In future please report such bugs to [email protected]
    Regards,
    Folkert

  • Search function not working on iPhone 5

    I've only had my phone since May 2013 and started messing around with music app about two weeks ago. Things seem to be working fine in the store, but now the search function won't work. The store loads, I click search and one of a couple things happen:
    1. It loads fine and I search
    2. It will load the last thing I searched for, but the search bar is missing so I can't change my search
    3. (this happens most frequently) It says search at the top, and then it's a completely blank screen
    I've removed the music app from my active activies and I've powered compeletely down, but nothing seems to fix the blank screen. I've talked with other iPhone users and no one else seems to have encountered this. Am I doing something wrong?

    Hi mandibriggs,
    Thanks for using Apple Support Communities.  Whenever you encounter that trouble, I would first try force quitting the Music and iTunes apps:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    If that doesn't resolve things, then a restart and possibly a reset may help:
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    Cheers,
    - Ari

  • App Store "app"  - search function not working....

    App Store works fine, search function stopped, it accepts text and provides suggestions, it's when you click on one of the suggestions, gray screen and spinning progress indicator forever.
    The same app can be located in the other category sections of App Store and it goes right to that app description.
    Anyone else experiencing?

    Looks like system wide issue. Too many people are complaining about this on other forums. If you must download apps, do it on you computer and sync to iphone or you can do google search for the app on safari on iphone and tap the link that shows up (make sure link address starts with itunes,apple.com) and it will take you to app store for you to download it.

  • Search function not working in mail

    Suddenly. When I do a search in mail on my devices I only find mail from months ago. Nothing recent. What's happened?

    Hello,
    What type of account is this -- POP, IMAP or .mac? If not POP, then settings in Mail Preferences/Accounts/Advanced will impact whether Search will work.
    More info, please.
    Ernie

  • Search function not working for outlook 2007

    another screen shot

    rajugeorge wrote:hi bhg, thank you for the community welcome , much appreciatedi had initially tried to uncheck her data files option , thru search options. restarted outlook, and checked them back again. but that didnt helpshes got windows 7 64 bit, we have exchange server 2010 in our organisation.Emails are dragged and put in to the archive folders manually, the archive folder is stored on her network drive ( H drive namely )once again appreciate your helpcheersI haven't dealt with '07 in a while so to be please bear with me here, but under Search OptionsIndexing Options(Possibly) Advanced...What is the indexing location? I'm looking through my '10 Outlook so this may not be relevant in '07. Also are you using .OST or .PST? I would assume the mailbox is an .OST and the archive is a .PST. And again I don't have '07 in front of me so...

  • Adobe Prelude CC search function not working correctly?

    Hey guys,
    In need of some help, I am using the "tag" feature in prelude CC, tagging clips with multiple words IE "Day One, Interview, Ben"
    When searching the footage the clips can be seen if I type the words "Day One" or "Ben" however if I type them back to back IE: "Day One Ben" Prelude can't find any footage.
    I really need to be able to search for multiple tags/comments at once. Have tried this in Premiere CC and it works perfectly just Prelude isn't.
    Has anyone else had this problem or can suggest a fix of how to search for multiple tags/comments.
    Thanks,
    Nico

    Hi -
    Prelude currently searches for exact string matches - including punctuation. 
    We are looking into providing a more capable search engine in the future.
    Regards,
    Michael

  • Search function not working in DS 5.2 Patch 4 help!!!

    I am using the java interface, and when I do a search for users or groups, no matter what critera I enter, I get 0 results, and also in my People listing and group listing, is there a way to sort alphabetically? Thanks for any help you can give me.

    I am afraid there is not enought information in your positing to provide you with proper diagnoses. First thing i would do is see if the searches are being logged into the access log and what their results are?

Maybe you are looking for

  • Downpayment request- error

    Dear frnds,                         I have created a sales order (billing plan) from which i directly create the down payment request. I am able to save the same but when i try to go bacak to the document it gives me the follwoing error  "Maintain de

  • A strange query of queries bug in CF11?

    Hi, I have this strange query of queries result that could be a bug in CF11.  The result is fine in CF10. Basically, I have 2 queries, qrA and qrB.  I do a join of the two in joinQr, after which I do a query of qrA.  Since I didn't alter qrA in any w

  • White screen and will not reset or sync

    i phone 3gs turns on and off with a white screen and also will not sync and i get a apple warning frm itunes whn it is plugged into laptop frm itunes which tells me to try later!!!

  • PSE 7 on Media Center

    I've just begun playing with viewing my photos through the PSE 7 Media Center plug-in. Its native support for viewing by album is a huge benefit. The problem I'm running into is that it wants to include/display every version of every picture in an al

  • Multi language Support - JDeveloper 11.1.1.0.0

    Hello everyone, We have an application developed using Rich ADF Faces(JDeveloper 11.1.1.0.0). We have to do a POC in order to support multi language in the input text labels for the JSF Screens. Any ideas please?