Add "Tran. Block Reason" to search criteria's for Accounts

Hi experts,
I want to be able to search for all accounts with or without a blocking reason, the field I want to use is the standard field "Tran. Block Reason", see picture below:
and the field should be available in below search area:
The problem is that I can't find the field under AET (configuration area):
and I know that two other companies have it in this area. How can I add my field to above config. area and later on add it to the search critera for accounts?
Thank you in advance.
Best regards,
Hannes de Richelieu

Hi Hannes,
I’m not sure if I understood your requirement correctly, but isn’t it the standard field XBLCK (Central Block for Business Partner) that you are looking for?
That should be available by standard and part of the structure CRMT_BUPA_IL_HEADER_SEARCH. Please try to add it and check if it doesnt work.
Best regards
Niels

Similar Messages

  • Add a field in the Search Criteria in POWL for Invoice

    Hi,
    I am trying to add a field  or change Selection Parameters in Search criteria POWL for Invoice. But for SC, PO and Confirmation I can do it from DB Criteria. But for Invoice  I implemented these BADI's  and its not triggering.
    /SAPSRM/BD_POWL_CHNG_CUF_SRCH
    /SAPSRM/BD_POWL_CHNG_SELCRIT
    Any idea why its not trigeering? Am I missing anything?  I appreciate your help.
    Thanks,
    Carl
    Edited by: Shears80 on Sep 28, 2011 9:40 PM

    Hi Cral ,
    Add a field in the Search Criteria in POWL for Invoice
    append the custom attributes in this structure
    /SAPSRM/S_SEARCH_RESULT_INV
    goto tcode  sm30  /SAPSRM/V_SRC_CR enter the filed for  BO/ BUS2121(select the business object based on the requirement)
    the creation type must  be suitable  for the type
    criterion name : zzfield
    criterion name : parameter
    structure : /SAPSRM/S_SEARCH_RESULT_INV
    field name : zzfield
    this are the feeder class for invoice .
    /SAPSRM/CL_CLL_POWLT_INV_PROF
    /SAPSRM/CL_CLL_POWLT_INV
    /SAPSRM/CL_CLL_POWLT_INV_S
    based on the powl query you need to do the enhancement in the feeder class .
    Thanks & Regards
    Pradeep Kumar Dondeti

  • Add " define blocking reasons" under "status mangement" block in CRM

    Hello experts,
    I would like to add "define blocking reasons under the "status management" in the "status" tab in BP (Business Partner) transaction in CRM. So far the only option is status profile.
    If it is clear can someone help me find it?
    Thank you!!

    Hi Scaper.
    if you want to block a BP for using in transaction, then use 'Transaction Block Reason' of 'Overall Block'.
    if you want to block a BP centrally, throughout the CRM, then use 'Central Block' checkbox.
    i hope i have answered your question, if you need more information, please get back to me.
    Are you talking about blocking a BP in a single transaction?.. that means is this BP allowed to use in single transaction, if this is the case, i dont think Standard CRM supports it. But you can block a BP in all the transactions.
    Regards,
    Krishna

  • Error while trying to add a new field in search criteria by VO extension

    Hi,
    I am trying to add a new field by using the VO extension to a seeded OAF page used to search Repository contracts.
    I get the following error on opening the page after I have compiled my code on server and bounced apache.
    Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND. Tokens: VONAME =SSPN_AdvancedSearchAttributesPVO; APPLICATION_MODULE = oracle.apps.okc.repository.search.server.ContractsAdvSearchAM;
    I extended the AM also after this to include the extended VO but still the error comes.
    This page is a dynamic search page where the results change based on the different search criteria.
    Cheers
    Swati

    Hi,
    I extended the AM also after this to include the extended VO but still the error comes.There is no need to extend the AM for extending a VO. Hopefully the VO which u extending already attached to the AM oracle.apps.okc.repository.search.server.ContractsAdvSearchAM.
    Regards,
    Gyan

  • How to add one more values in Search Criteria,

    Hi All,
    OAF page Search Criteria :
    Search By "name"only Available already have in the search criteria .we are need to add Description in search criteria .How to add one more filed “Description” in Search Criteria,
    Please Help Me
    Thanks
    Rajavel

    "Set the Search Allowed property to True for any LOV result items you want to present to the user as searchable values. These items are listed in the search poplist the user sees in the LOV window.
    At a minimum you must set the Search Allowed property to True for the the result table item corresponding to the LOV field on the base page.
    This is from the devguide, I suggest you read it once at least if you have started work on the framework.
    Tapash

  • Add new dropdown value in search criteria for Invoices

    Hello,
    I want to add one more value in Drop-Down box of the search criteria of invoices.
    As on now there are 2 DropDown boxes
    in Your Referance No
    in Transaction No
    (New)
    in Order No (This will have search value as "Sales Order No")
    Can anyone tell how to add this inw value?
    I have created YDocumentListSelectorForm.java extending DocumentListSelectorForm.
    public static final String INORDERNO = "inorderno";
    if("inorderno".equals(attribute))
              documentListFilter.setId(attributeValue);
    YBillingStatusCRM.java is created which extends BillingStatusCRM.class
    com.sap.mw.jco.JCO.Function billingListJCO = connection.getJCoFunction("YCRM_ISA_INVOICE_LIST_GET");
    if(billingList.getFilter().getExternalRefNo() != null && !billingList.getFilter().getExternalRefNo().equals(""))
              importParams.setValue(billingList.getFilter().getExternalRefNo(), "ORDERNO_FROM");
    Accessing it in JSP organizer-content-doc-search.jsp
    YDocumentListSelectorForm yform =
        (YDocumentListSelectorForm)pageContext.findAttribute("YDocumentListSelectorForm");
    <option value="<%=YDocumentListSelectorForm.INORDERNO%>" <%=form.isAttribute(form.INORDERNO) ? "selected" : ""%>> New Value</option>
    Regards,
    Shaun
    Edited by: Shaun07 on Aug 5, 2010 7:29 AM

    Hello,
    I want to add one more value in Drop-Down box of the search criteria of invoices.
    As on now there are 2 DropDown boxes
    in Your Referance No
    in Transaction No
    (New)
    in Order No (This will have search value as "Sales Order No")
    Can anyone tell how to add this inw value?
    I have created YDocumentListSelectorForm.java extending DocumentListSelectorForm.
    public static final String INORDERNO = "inorderno";
    if("inorderno".equals(attribute))
              documentListFilter.setId(attributeValue);
    YBillingStatusCRM.java is created which extends BillingStatusCRM.class
    com.sap.mw.jco.JCO.Function billingListJCO = connection.getJCoFunction("YCRM_ISA_INVOICE_LIST_GET");
    if(billingList.getFilter().getExternalRefNo() != null && !billingList.getFilter().getExternalRefNo().equals(""))
              importParams.setValue(billingList.getFilter().getExternalRefNo(), "ORDERNO_FROM");
    Accessing it in JSP organizer-content-doc-search.jsp
    YDocumentListSelectorForm yform =
        (YDocumentListSelectorForm)pageContext.findAttribute("YDocumentListSelectorForm");
    <option value="<%=YDocumentListSelectorForm.INORDERNO%>" <%=form.isAttribute(form.INORDERNO) ? "selected" : ""%>> New Value</option>
    Regards,
    Shaun
    Edited by: Shaun07 on Aug 5, 2010 7:29 AM

  • Add country to BT108S_LEA component search criteria

    Hi,
    This is of immediate requirement...
    I need to add for lead search, the attribute COUNTRY in the search criteria....
    I found the BOL entity as BTQLeadDoc...so I will find its structure and enhance it...
    But further I have no idea...I need to use a BADI I think...
    Please suggest...

    Hi,
    Please find my comments below.
    1) Add new field using APPEND to attribute structure CRMST_QUERY_LEA_BTIL of object BTQLeadDoc.
    2) Configure the new field in WebUI.
    3) Implement the BADI CRM_BADI_RF_Q1O_SEARCH
    4) Put the logic in the SEARCH method.
    Regards,
    Varma

  • How to add a new  search criteria in Advance Search Page in OAF

    HI,
    In my application (R12) we can access customer related information from 2 places (2 different responsibilities as mentioned below), both are OAF pages.
    1. AX receivables
    2. Sales online
    From both the responsibilities we can perform search for customer related information as well (Simple as well as Advance Search).
    But Advance Search screen from 'Sales online' allows user to perform search, based on few additional fields as well such as 'Classification' (it's an lov based field).
    Now, User is asking to add that field on search page of AX receivables as well.
    So, how to add one more field (as search criteria), on an standard 'Customer' screen?
    Additional Info :
    1. LOV is based on HzPuiClassificationFilterVO
    2. And this VO is available on both pages. (oracle.apps.ar.hz.components.search.server.HzPuiClassificationFilterVO)
    So can we achieve this by Personalization only ? if yes plz share the steps as well.
    Regards,
    Adi

    Yes. It is possible through personalization.
    1. Create a criteria row under Advance Search
    2. Create a Result Item under advance table columns
    3. Create a Query Criteria Map based on the criteria and result item above.
    Please note the newly added criteria field should be in the Searchresults VO attributes list.
    Otherwise you need to extend the VO as well.
    Hope this helps.
    Regards,
    -Mukesh.

  • Add field in VA15 (as a search criteria)

    Hi
    I have requirement where i want to search the inquiry by the name of the person, which i capture in the ORDER-DATA tab NAME field.
    Now i want to Add this field as the Search Criteria in VA15  or VA15n Transaction .
    plz guide me as how i can add this BNAME-field name into the screen as a search criteria.
    Cheers
    Rishi B

    you will certainly need a developer to help you. But here is some clue on how to go about it
    1. Add the field BNAME into the structure VBCOM and add this custom field to screen 110. you will need to find a user exit in this screen.
    2. Find a user exit in program SAPMV75A to include the search logic as per the requirement.
    Hope this helps!
    Chandra Kiran

  • Add value to search criteria view

    Hello gurus,
    I use SAP CRM 7.0. I logon to CRM Web UI with salespro business role, then I go to Sales cycle -> Sales Orders. Search sales orders screen appears. There some values in the search creteria list: Sales order ID, Sold-to party, External reference, etc. But there is no Item category criteria there. I have to add Item category into the list of the search creteria so that I could find orders by Item category.
    Could you please suggest me with an appropriate solution for adding Item category value to the search criteria?
    Regards,
    Alex K Goodman

    Hi,
    To add a new field to search criteria, go to structure CRMST_QUERY_SLSORD_BTIL and append structure your new field.
    Go to component BT115S_SLSO view SlsOrdSQ and add the custom field to configuration.
    Implement BADI  CRM_BADI_RF_Q10_SEARCH with appropriate filter combinations.
    Refer these threads,
    Enhance product search
    BADI Implementation Error (BADI: CRM_BADI_RF_Q1O_SEARCH)
    Regards,
    Arun

  • How Add DFF filed in Search Criteria

    HI All,
    I want to add a DFF in the Search Criteria region of the Advanced Search in the standard Cotract page of Sales Contracts Workbench User Responsibility please let me know how to add and search the contarcts with the DFF basis as well
    Thanks
    KK

    Well - it's a report so there won't be a user exit. I think your options are what the others (and you) have suggested - change the standard program or make a copy.
    There are different opinions on the forum about which to do.
    Rob
    PS - you're not bothering anyone. We like problems.
    Message was edited by: Rob Burbank

  • How to Dynamically add Search Criteria in Advance Search Region.

    Hi All,
    I want to understand how can we add Search Criteria dynamically in the Advance Search Region.
    The Requirement is to add 4 additional search criteria for an org_id in a multi org structure. For other business those fields should not be visible.
    I did try this with the form personalization but could not Show/hide the additional search criteria programatically for the business as we can only see 4 search criteria at the time of page load and other criteria comes in the drop down list to add which can not be show/hide after page load.
    I thought of a solution to add search criterias dynamically for my org through extending controller.
    I found the OAAdvanceSearchBean (advance search Region in controller) object for my Advance Search but could you tell me how can I add the Criteria Row in that Advance Search (createWebBean function) and then add the item in criteria Row dynamically.
    Also please tell me how we can increase the showed criteria from default 4 to more, setDisplayedCriteriaCount(int) is not allowed and it is not working also.
    Thanks.
    Regards,
    Ashish Bansal

    Hi,
    As Lars said The "Search Option Set" and the "Search Component Set" offer you quite some flexibility.
    You can configure both of these component to customize your search.
    Once you did it, you can create a new basic search iview and set these components.
    On the other hand, you also customize the layout use to show result of search.
    Dont'f forget that you need to configure Trex and create an index.
    For instance, I configured the search criteria, the system only asked me some metadatas (created by us,whose value are dependents). Each time that you upload a document you set these attributes.
    Then when you want to search, appear a screen with these values
    Country :
    City:
    search field:
    Patricio.

  • Search: standard field as search criteria

    Hello,
    I have problem because of a search component within the webclient ui framework (background SAP Solution Manager).
    Background:
    There is a ui search component to search for change documents (which are plain entries within the table crmd_orderadm_h). I successfully have redefined the corresponding ui component. Now there is, let me say, a challenge.
    The change document among other things consists of an assignment block for approval management. But dont think about approval management so long. It could be any other assignment block. I have to integrate one standard field of that assignment block as a search criteria to the search component, to search for change documents.
    1. At first I navigated to the ui component of that assignment block and searched for the attribute structure of the right context node, where the attribute is placed.
    2. Second, I navigated to the ui component of the search and opened the attribute structure of the search context node.
    3. To that attribute structure I have appended the attribute with the corresponding data element from step 1.
    Now the attribute is available as a search criteria within the search component. But there are two open problems.
    First problem:
    The attribute has a special value range, that is not available at the moment. The search criteria currently only is a plain text field. Do I have to implement the getter- and setter-methods (respectively the v-getter) to Show up the possible search values in an drop-down list?
    Second problem:
    The name of the attribute is included within the search, but the search ignores it and I get an query error ("there is a problem with the query"). I have seen the attribute name at a breakpoint in CL_AI_CRM_IM_SAPDATA_SEARCH=>IF_CRM_RF_Q1O_SEARCH~SEARCH. But deeper within the code there is an query error raising up. Did I forget some customizing?
    Can anyone help me?
    best regards,
    raoul

    Hi Eli,
    Please go to the web ui configuration and search reason feild is available for the config view. If it is available please move from hidden to visible. If it is not available you can add using development or AET to add that feild in the view.
    Regards,
    karthik J

  • How to clear last search criteria in ADF form?

    I'm building an ADF form. This form uses JTextField controls. When I switch to Find Mode, I want to clear criteria of the last search that JDev remembered. I've tried to remove ActionListener of FIND button in Navigation Bar, then add a new ActionListener that I created to handle FIND action myself. But the results are not perfect as I expected: JDev still filled the last search criteria.
    For example, I searched with these criteria: Code = 'ABC', the next time enter Find Mode, I want this criteria to be cleared. My code is below:
    JButton btnFind = navApplication.getButton(navApplication.BUTTON_FIND);
    btnFind.removeActionListener(navApplication);
    btnFind.addActionListener(new ActionListener(){
           public void actionPerformed(ActionEvent e)
         navApplication.doAction(navApplication.BUTTON_FIND);
         if (navApplication.getModel().isFindMode())
              txtCode.setText("");
              txtName.setText("");
              txtAddress.setText("");
    });

    Hi,
    Could, some body please answer to my question I raised above.
    Cheers,
    Krishna.

  • Software Updates, multiple SAME search criteria ?

    Hi
    Does anyone know if you can have multiple SAME Software Update Search search criteria? 
    For example if I add the same search criteria twice I will get the OR and not
    AND criteria that I want. How would I go about doing that?

    Same question as the original poster. What I'm trying to do is setup a search to work like this:
    Bulletin ID contains "MS"
    AND Expired No
    AND Title does not contain "Itanium"
    AND Title does not contain "IA64"
    Using the default "OR" ends up showing both of the criteria that I am trying to filter out
    Can you just add multiple lines of text with some sort of delimiter on the filter line?  I've tried ,  and ; but neither work

Maybe you are looking for