Filter in BBP_WF_LIST

Hi All,
We use SRM 5.0 classic scenario.
When we want to exclude goods PO from the requestors confirmation worklist in SRM, you can implement BaDI BBP_WF_LIST with method BBP_WF_LIST to filter out goods PO's.
Question: Were and in what way does the filter of good PO occures? Is that in the ECC back-end as a query on the ekpo or ekko table or in SRM?
Thanks in advance.
Regards,
Jorgen

Hi there,
Is there anyway PO data used from the back-end ECC.
I try to determine if a proposed solution is the wright, optiomal solution. I have the feeling it isn't.
Propesed solution is via the BaDI WF_PO_LIST to call a function in the ECC back-end and check the ekpo table.
I think all the data that is nececary is available in SRM, via the by you guys proposed FM's.
So when I understand it correctly: FM BBP_PO_LISTSEL and/or BBP_PO_LISTSEL_LOCAL call's BaDI BBP_WF_LIST. In this BaDI FM BBP_PD_PO_GETDETAIL is called, and a loop is made at IT_PDLIST  the check the producttype.
Is the correct?
Regards,
Jorgen
Edited by: Jorgen Elten van on Oct 5, 2010 12:05 PM
Edited by: Jorgen Elten van on Oct 5, 2010 12:08 PM

Similar Messages

  • BBP_WF_LIST Filter Values

    Hi All Experts,
    Im new to sap abap. Im in my first project.
    Im having a requirement that i need to do filter in BBP_WF_LIST badi for RFx invitation - purchaser.
    When i logged in as purchaser 1, i can see only the RFx created by Purchaser 1. Not by Purchaser2 or 3.
    Can u help me in this requirement that how and what to filter the values.
    Do i need to write any code in the methods(BBP_WF_LIST, BBP_WF_LIST_SOCO).
    Thanks,
    Rani.

    Hello,
    Badi BBP_WF_LIST is usefull when you want to restrict the result list display.
    Usually, only the RFX creator would be able to see his document. Document is not shared among users.
    Regards,
    Ricardo

  • Bidder Not able to filter Bid Invitations with custom fields

    Dear Community,
    Need some ABAP help.
    Know many experts are in our community.
    We have added 3 custom fields to the Bid Invitation and Bid header
    Coded Badi BBP_CUF_BADI_2 for them to appear in the Search criteria for Find Bid Invitation for both the logins(purchaser and bidder).
    The custom fields now appear in the Extended search for both.
    These custom fields extract values from custom tables.
    But we found that the search criteria seems to be filtering Bid Invitations only in the Process Bid Invitation screen(Find Bid Invitation) of the purchaser login.
    Template:       bbp_bid_inv/99/saplbbp_bid_inv_1010.html
    And NOT filtering Bid Invitations in the Process Bid screen(Find Bid Invitations and Auctions) of the Bidder login.
    bbp_quot/99/saplbbp_quot_ui_its_1010.html
    The ABAPer has already incuded the custom fields in structures INCL_EEW_PD_HEADER_CSF_BID and INCL_EEW_PD_HEADER_CSF_QUOT,
    What is required in addition so that the search criteria will work in the Bidder login as well??
    Thanks in Advance,
    Dinesh
    (Will appreciate with points)

    Thanks, Disha.
    We have alreday activated BBP_WF_LIST
    and tried some code in method
    BBP_WF_LIST_SOCO
    but did not help us.
    Can you suggest any specific code to try?
    You are right for template modification for values of this custom fields.
    If we do that Bidder CAN filter the BI correctly with these values of custom fields.
    But customer does not want that way because in future the values would be changing.
    and so it would be an additional task to correct templates.
    Also they have to redo these changes with every upgrade.
    So we are fetching the values from custom tables for these custom fields.
    Would like to again draw the attention towards purchaser's search with these custom fields.
    Why purchaser can search correctly with these custom fields fetching values from custom tables?
    Can we debug or take any hint from there?
    Any futher thoughts?
    Landscape - SRM 5.0 SP11 CLASSIC
    BR
    Dinesh
    Already raised an OSS for this issue.
    Will keep updated about any responce.

  • Why is BBP_WF_LIST not displaying the correct PO worklist?????????????

    Hi SRM Gurus,
    My requirement is to display only those Purchase Orders to the user that he has created once user clicks on Purchasing Tab->Ordered or Refresh Button .
    In order to achieve this requirement, I implemented the method 'BBP_WF_LIST' of BADI 'BBP_WF_LIST' for filter type = 'BUS2201'and inserted the following code:-
        li_list1[] = e_pdlist[].
      Looping at PO List
        LOOP AT li_list1 INTO lx_pdlist.
        Getting the PO details through function module
          CALL FUNCTION 'BBP_PD_PO_GETDETAIL'
            EXPORTING
              i_guid   = lx_pdlist-guid
            IMPORTING
              e_header = lx_header
            TABLES
              e_item   = li_item.
          IF NOT li_item IS INITIAL.
            SORT li_item BY number_int.
          Read first line item
            READ TABLE li_item INTO lx_po_item
                               WITH KEY number_int = c_num
                               BINARY SEARCH.
            IF sy-subrc = 0.
            Call FM to get details for shopping cart item
              CALL FUNCTION 'BBP_PD_SC_ITEM_GETDETAIL'
                EXPORTING
                  i_guid = lx_po_item-src_guid
                IMPORTING
                  e_item = lx_sc_item.
               IF NOT lx_sc_item IS INITIAL.
                  IF lx_sc_item-created_by = sy-uname.
                    APPEND lx_pdlist TO li_list.
                  ENDIF.
              ENDIF.
            ENDIF.
          ENDIF.
        ENDLOOP.
      ENDIF.
      refresh e_pdlist.
      e_pdlist[] = li_list[].
      SORT e_pdlist BY object_id.
    Now when I debugged this BADI , the logic is working fine and finally E_PDLIST[] holds only the list of Purchase Orders that meet our requirement but thw worklist that is finally displayed shows all the POs that exist in the system.
    Kindly provide me the solution for the same at the earliest.Have to deliver the object by tommorrow.
    Thanks in Advance,
    Swati

    Hi
    <u>Which SRM version are you using ?</u>
    <u><b>Please see the below mentioned SAP OSS Notes, which will help -></b></u>
    <u>Note 1113156 Post processing of BAdI BBP_WF_LIST not correct</u>
    Note 1018095 BBP_WF_LIST: Only documents for employees from one team
    <u>Note 557295 Changes in the interface of BBP_WF_LIST</u>
    Note 386468 Backend POs not taken into account in BADI BBP_WF_LIST
    <u>Note 549846 FAQ: Goods receipt confirmation</u>
    <u>Other related SAP OSS Notes -></u>
    Note 691300 Transfer of BE_ITEM_SRV to BADI BBP_WF_LIST
    Note 972773 No R/3 purchasing org or purchasing group in BBP_WF_LIST
    Note 549383 BBP_WF_LIST: Only documents for employees from one team
    Note 438793 Transfer of BE_ITEM_SRV to BADI BBP_WF_LIST
    Note 508386 Sorting the list during searching
    Note 457357 Worklist: Confirmation and invoice for desktop user
    Note 423518 Number of the purchase orders in list
    Do let me know.
    Regards
    - Atul

  • BADI BBP_WF_LIST implementation

    Hello,
    I would like to implement a the BBP_WF_LIST BADI for confirmation (BUS2203).
    Can someone explain me all the step I have to do. I never did this before and I don't know the step to do.
    thanks

    Hi
    Implement the BADI - BBP_WF_LIST using SE18 Transaction for the filter type - BUS2203 for doing this job.
    Here is the documetation of this BADI
    <b>BBP_WF_LIST BADI</b>
    Short Text
    Display Worklists and Search Results Lists
    With the Business Add-In BBP_WF_LIST , you can tailor the
    display of worklists and search results lists for purchase order documents (and Sourcing applications) in SRM Server according to your own criteria.
    Standard settings
    The following methods are available:
    BBP_WF_LIST for purchasing documents
    BBP_WF_LIST_SOCO for the Sourcing application
    In the standard version, the following differences exist between the display of worklists and search results lists:
    Normal employees see only their own requirements and documents
    The purchaser's worklist in Sourcing and in the application for processing purchase orders is dependent on assignment to an organizational unit.
    The goods recipient and invoicing party can find all purchase orders, confirmations, and invoices.
    As standard, the system sorts the purchasing documents in ascending order by the last date of processing.
    To distinguish between the worklists and search results lists of the SRM Server applications, the BAdI is implemented dependent on the following filters:
    BUS2201
    Filter value for the worklist in purchase order processing in SAP Enterprise Buyer
    BUS2203
    Filter value for the worklist in confirmation processing in SAP Enterprise Buyer
    BUS2205
    Filter value for the search results list in invoice processing in SAP Enterprise Buyer
    BUS2121
    Filter value for the worklist in shopping cart status check in SAP Enterprise Buyer
    BUS2200
    Filter value for the search results list in bid invitation processing in SAP Bidding Engine
    BUS2202
    Filter value for the search results list in bid processing in SAP Bidding Engine
    BUS2000113
    Filter value for the search results list in contract processing in SAP Enterprise Buyer
    Activities
    Implement and activate the BAdI if you wish to adapt worklists and search results lists.
    Note that the filter value Object type (field OBJECT_TYPE) determines for which application the BAdI implementation is active.
    Example
    Using the BadI BBP_WF_LIST you can sort the worklist by document number, for example, or remove documents belonging to a particular user from the worklist.
    The implementation of the BadI using Business object type BUS2205 allows you to change the list of invoices and the purchase orders associated with these invoices independently of one another. For example, you could sort the purchase orders by purchase order number and the invoices by the name of the user who created them.
    You can exclude bid invitations from a certain product category, for example, from the purchaser's search results list in SAP Bidding Engine.
    You can exclude contracts from a certain purchasing organization or purchasing group, for example, from the purchaser's search results list in SAP Enterprise Buyer.
    Further notes
    If the BadI is used for confirmations and purchase orders, it always accesses the list of the actual document and its purchase orders.
    The purchaser's worklist contains only requirements that, according to Customizing, are to be processed in the Sourcing application. See the IMG activity Define Sourcing for Product Categories.
    Change Output List Purchasing Documents
    Functionality
    With method BBP_WF_LIST in SAP Enterprise Buyer, you can adapt the display list of the worklist for purchasing documents and search results lists according to your own criteria.
    Parameters
    Importing
    FLT_VAL
    Filter value
    I_PDLIST_NEW
    Entry list of worklist or the search results list and additional information
    Changing
    E_PDLIST
    Output list of worklist or the search results list (contains only GUIDs)
    <b>And Here is the sample Code for the BADI Implementation...</b>
    METHOD if_ex_bbp_wf_list~bbp_wf_list.
      DATA: t_header_guids     TYPE TABLE OF bbp_guid_tab,
            t_pdlist           TYPE TABLE OF bbp_pds_pdlist,
            t_messages         TYPE TABLE OF bbp_pds_messages,
            t_sc_guids         TYPE TABLE OF bbp_guid_tab,
            t_ref_doc          TYPE TABLE OF bbps_sc_refdata,
            t_itemlist         TYPE TABLE OF bbp_pds_sc_itemlist,
            t_conf_pdlist      TYPE TABLE OF bbp_pds_pdlist.
      DATA: wa_sc_guids        TYPE bbp_guid_tab,
            wa_pdlist          TYPE bbp_pds_pdlist,
            wa_ref_doc         TYPE bbps_sc_refdata,
            wa_itemlist        TYPE bbp_pds_sc_itemlist,
            wa_conf_pdlist     TYPE bbp_pds_pdlist.
        IF sy-tcode EQ   'BBPCF02'.   
    *--- First Get all the Reference documents
    *--- Get all the Shopping Carts
          CALL FUNCTION 'BBP_PD_SC_GETLIST'
            TABLES
              i_header_guids = t_header_guids
              e_pdlist       = t_pdlist
              e_messages     = t_messages.
    *--- Sort the SC based on SC number
          SORT t_pdlist BY object_id.
    *--- Get all the Header Guids
          LOOP AT t_pdlist INTO wa_pdlist.
            wa_sc_guids-guid = wa_pdlist-guid.
            APPEND wa_sc_guids TO t_sc_guids.
          ENDLOOP.
    *--- Get all the Reference Document for the Header Guids
          CALL FUNCTION 'BBP_PD_SC_REF_GETLIST'
            EXPORTING
              i_item_not_deleted = 'X'
            TABLES
              it_header_guids    = t_sc_guids
              et_refdata         = t_ref_doc
              it_logical_systems = 'R3BACKENDSYSTEM' -> Give he R/3 backend system RFC Destination name here
            EXCEPTIONS
              nothing_found      = 1
              OTHERS             = 2.
    *--- Retain only the PO (Business Object 2012)
            DELETE t_ref_doc WHERE ( be_object_type NE 'BUS2012' AND
                                     be_object_type NE 'BUS2012001' ).
    *--- Sort all reference documents based on be_object_id - Purchase Order numbers.
          SORT t_ref_doc BY be_object_id.
    *--- Loop on all remaianing POs
    *---  Use SC Guid (Header)
          LOOP AT t_ref_doc INTO wa_ref_doc.
              DELETE e_pdlist WHERE object_id = wa_ref_doc-be_object_id.
          ENDLOOP.
    *--- Here make a call to the R/3 system by using your RFC Function module
    *---- and update e_pdlist [] table which finally will contain all the
    *--- detialed confirmations starting with Document type - "EB"
    *---- based on the document type "ECDP" and "ECPO" - Add one more document type "EB" ..
    *---- so when ever BBPCF02 is called in ITS it should disply the POs
    *--- which are based on document types as "ECDP" "ECPO" and "EB".
        ELSEIF sy-tcode EQ 'BBPCF03'. " Display All PO/Confirmations
    *--- Similar code as above
        ENDIF. "if sy-tcode eq 'BBPCF02'.
    ENDMETHOD.
    Hope this will help.
    Please reward suitable points, incase it suits your requirements.
    Regards
    - Atul

  • Filter Back-end PO's for transaction BBPCF02

    Hello,
    We have SRM 4.00.
    We have gave to some users the transaction BBPCF02. The problem is that all the PO's that exist in our backend system are appearing. We whant to restrict by document type. Is this possible?
    Thansk in adavance.
    Catarina Campos

    Hi,
    You can filter the list of confirmations to be shown by implementing the  logic in BADI "BBP_WF_LIST".
    Here is the documetation of the BADI -
    BBP_WF_LIST
    Short Text
    Display Worklists and Search Results Lists
    With the Business Add-In BBP_WF_LIST , you can tailor the
    display of worklists and search results lists for purchase order documents (and Sourcing applications) in SRM Server according to your own criteria.
    Standard settings
    The following methods are available:
    BBP_WF_LIST for purchasing documents
    BBP_WF_LIST_SOCO for the Sourcing application
    In the standard version, the following differences exist between the display of worklists and search results lists:
    Normal employees see only their own requirements and documents
    The purchaser's worklist in Sourcing and in the application for processing purchase orders is dependent on assignment to an organizational unit.
    The goods recipient and invoicing party can find all purchase orders, confirmations, and invoices.
    As standard, the system sorts the purchasing documents in ascending order by the last date of processing.
    To distinguish between the worklists and search results lists of the SRM Server applications, the BAdI is implemented dependent on the following filters:
    BUS2201
    Filter value for the worklist in purchase order processing in SAP Enterprise Buyer
    BUS2203
    Filter value for the worklist in confirmation processing in SAP Enterprise Buyer
    BUS2205
    Filter value for the search results list in invoice processing in SAP Enterprise Buyer
    BUS2121
    Filter value for the worklist in shopping cart status check in SAP Enterprise Buyer
    BUS2200
    Filter value for the search results list in bid invitation processing in SAP Bidding Engine
    BUS2202
    Filter value for the search results list in bid processing in SAP Bidding Engine
    BUS2000113
    Filter value for the search results list in contract processing in SAP Enterprise Buyer
    Activities
    Implement and activate the BAdI if you wish to adapt worklists and search results lists.
    Note that the filter value Object type (field OBJECT_TYPE) determines for which application the BAdI implementation is active.
    Example
    Using the BadI BBP_WF_LIST you can sort the worklist by document number, for example, or remove documents belonging to a particular user from the worklist.
    The implementation of the BadI using Business object type BUS2205 allows you to change the list of invoices and the purchase orders associated with these invoices independently of one another. For example, you could sort the purchase orders by purchase order number and the invoices by the name of the user who created them.
    You can exclude bid invitations from a certain product category, for example, from the purchaser's search results list in SAP Bidding Engine.
    You can exclude contracts from a certain purchasing organization or purchasing group, for example, from the purchaser's search results list in SAP Enterprise Buyer.
    Further notes
    If the BadI is used for confirmations and purchase orders, it always accesses the list of the actual document and its purchase orders.
    The purchaser's worklist contains only requirements that, according to Customizing, are to be processed in the Sourcing application. See the IMG activity Define Sourcing for Product Categories.
    Sample BADI code in foll threads ->
    Filtering content in the SRM confirmation worklist
    Re: Using BADi's BBP_PGRP_FIND  and BBP_WF_LIST  for Sourcing
    Re: Resctriction while displaying work items in sourcing cockpit..
    Re: Purchaser worklist
    BR,
    Disha.
    Do reward  points  for   useful  answers.

  • In the filter scheme driver, how to i get the filename in open() or handleOpen ()

    I want to implement filter scheme driver to monitor and prevent file open or read calls based on certain rules. For this I would need file name, user name and application process name. I did not find a way to extract this information. Any hint would be of great help.

    If the reset doe not work, connect tot he comouter and try to restore via iTunes.
    If the logo is still showing, let the battery fully drain. After charging for an hour, try the reset and restore again.

  • AND/OR + some nulls in filter

    I'm running into another problem with the AND/OR filter.
    The filter for selecting from object "a" and joining to objects b, c & d
    is:
    (b.theid==2 || c.theid==2 || d.theid==3) && active=="Y"
    The SQL that gets generated is:
    SELECT <...>
    FROM b t1, d t3, a t0, c t2
    WHERE ((((t1.theid = 2 AND t0.bid = t1.id) OR (t2.theid = 2 AND t0.cid
    = t2.id)) OR (t3.theid = 3 AND t0.did = t3.id)) AND t0.active = 'Y')
    This returns a number of instances of the same a object when some of the
    OR clauses do not match. For example, if there's no record
    with d.theid=3, then it will do a full join on table d.
    Do I need to specify something else to flag these as potentially null
    fields so that the filter parser adds that check in? The following SQL
    query works
    ok if I add some checks for NULL on those join fields:
    SELECT <...>
    FROM b t1, d t3, a t0, c t2
    WHERE ((((t1.theid = 2 AND t0.bid = t1.id OR t0.bid IS NULL) OR
    (t2.theid = 2 AND t0.cid = t2.id OR t0.cid IS NULL)) OR (t3.theid = 3
    AND t0.did = t3.id OR t0.did IS NULL)) AND t0.active = 'Y')
    Thanks,
    -Mike
    Mike Bridge

    Hi D,
    Thank you for your answer.
    I have seriously thought about that solution; but I don't think it's a smart way to do it.
    If i do it like that, i need to copy the whole table and paste it inside the if statements.
    I have two xml elements that I need to make the decisions on. POH_PO_TYPE & CP_RELEASE_NUM.
    POH_PO_TYPE can be: STANDARD, RELEASE or BLANKET.
    CP_RELEASE_NUM can be: '' or N
    If POH_PO_TYPE is RELEASE AND CP_RELEASE_NUM is not ''
    OR POH_PO_TYPE is STANDARD
    OR POH_PO_TYPE is BLANKET AND CP_RELEASE_NUM is ''
    THEN show table (which contains the whole PO).
    It shall show the content of the PO in any of these cases.
    BR Kenneth

  • Jabber Windows - no phone control with LDAP Custom filter

    I am unable to control the desktop phone from the Jabber 9.1 Windows client when the CallManager LDAP Directory uses a Custom Filter.
    Has anyone else experienced this?
    If I set the LDAP Custom Filter to <none> and save, then Desktop Phone control works great.
    If I set it to use my custom filter, then trying to enable Desktop control just gives me the spinning circle, then times out to the Red X symbol.
    I do not need to resync the LDAP Directory to get the error, just enable/disable the custom filter and save.
    In both cases calling from the Computer works great.
    This is an On-Prem deployment with full MS-AD LDAP integration.
    Versions are:
    Jabber - 9.1.0 build 12296
    CUPC - 8.6.4.11900-1
    CUCM - 8.6.2.22900-9
    I upgraded to CUCM 8.6.2 SU2 last night hoping that would fix the problem, but no luck.
    The LDAP filter is one I have used in numerous other clusters with no CTI issues.
    It allows me to sync to the root directory, but only import active user accounts with an entry in the ipPhone AD attribute:
    (&((objectclass=user)(ipPhone=*))(!(objectclass=Computer))(!(UserAccountControl:1.2.840.113556.1.4.803:=2)))
    Thanks, Randy

    Hi Randy,
    Have you specified this base filter in jabber-config.xml file? As per Admin Guide:
    "In some cases, base filters do not return query results if you specify a closing bracket in your Cisco Jabber for Windows  configuration file. For example, this issue might occur if you specify  the following base filter: (&(memberOf=CN=UCFilterGroup,OU=DN))
    To resolve this issue, remove the closing bracket; for example, (&(memberOf=CN=UCFilterGroup,OU=DN)"
    Thanks,
    Maqsood

  • In ALV Report Filter selection should be case sensitive

    Dear All,
    since one field is case sensitive in database table , i have to fetch that in alv report , but when i am applying  filter on that field its is simply fetching data with case description.  if its in caps it should fetch caps data but in   smaal case report showing no data
    Regards,
    Pankaj Vashista

    Hi,
    All text datas are case sensitive.
    To make it work perfectly You have to Use the Keyword translate to Upper Case than display
    Now filter can work.
    Without Transalation to Upper Case filter will not work.
    Regards
    Arbind

  • My Mac is bypassing a website filter... How can I stop it?

    I am a computer technician at our local high school. Right now, the school has about 800 Dell computers, but we are planning on introducing a few Macintosh labs within the next school year.
    Since they lack educational value, the school district's director of technology (my boss) has a web filter (Deep Nine) that blocks myspace, facebook, youtube, proxy sites, and other similar sites.
    Myspace is blocked via a keyword filter, any page containing the word "myspace" in the url, or in the document a set number of times, is automatically blocked. The other sites are simply blocked by URL. This filter works perfectly on our Dells, no one can access Myspace, Facebook, Proxies, etc.
    I brought my Macbook to work today, plugged it into the network, and logged onto the internet. I noticed instantly that my homepage (Facebook) loaded without being blocked at all. Curious, I tested myspace and youtube, and I could get on youtube fine, but myspace remained blocked.
    I checked on the Dell next to me, and all those sites will still being filtered and blocked. Yet my Macbook was able to access them without issue. So it would appear that my Macbook has some mystic ability to bypass the web address filter, but it can not bypass the keyword filter.
    I do not have any proxies configured. My Macbook connects to the network (and thus, the internet) the same exact way the other computers within the school do, with the exception of the other computers being within Active Directory.
    I need to find out if it is an issue with the Mac or with our Filter. I don't have any other Macs available to test with (Our only other Mac in the school is our DHCP server, and we do not use servers as "lab rat" computers).
    Has anyone had any similar issues with this? Or does anyone know of any way I can diagnose this with only one Mac and only one Filter?
    Specs: OS 10.5.5, Safari 3.1.2, wired networking.
    Message was edited by: Joey Hogan
    Message was edited by: Joey Hogan

    The DeepNines product works well and does much more than a simple URL filter. The problem lies entirely in your district setup and not in their product. If you're not using a proxy filter, then you have all access and routes designed to head out on typical port 80 traffic to your isp and ultimately the internet hence no proxy configs. The filter is integrated with LDAP accounts at each of your locations to tell it which users and groups are to get filtered at what level. That tie in is what breaks down who goes where. If you introduce new macs onto the network and they have not been configured to work with the DN appliance and are going out unfiltered... then there are 2 problems here. #1 is that you have computers attaching to the network, receiving leases and doing what they want. Use DHCP reservations or a whitelist to control who gets on your network. #2 is that your DeepNines filter has not been set to failover to BLOCK. Instead, it's allowing unknown users to bypass freely simply because it doesn't recognize their group/account. And Orange, stop slamming the company. They are a smaller business that has taken a much better approach to filtering than any other large corporation. Standard database driven URL filters DO NOT WORK....PERIOD! I challenge you to call any district that is running their appliance to get their opinion of it in comparison to any of the other basic url filters out there. I did just that last week and they had absolutely nothing but high praises for the DN product. One even laughed at Websense which they had before switching simply for the lack of ability to block anonymouse proxies.

  • How to use one Filter Pane to multiple Dataproviders

    Hi Experts.
    i have checked the threads on this but i did not get correct solution.
    we have issue in using single Filter pane web item in WAD for three different dataproviders ( three dataproviders have same free charecteristics and variable) charecteristics in row and keyfigures are different.
    thanks in advance.
    Regards
    Raj.

    Hi Gill,
    Thanks for your Quick responce.
    when we use the single filter pane, filter conditions are working for only first dataprovider (since data binding is to dataprovider 1. in affterted dataproviders i selected dataprovider 2 and 3, but filter pane is not active for other two dataproviders in tabs.
    thanks in advance.
    Any inputs please....
    Regards,
    Raj.
    Edited by: Rajsapbi on Apr 6, 2009 9:22 AM

  • How to use property of dimension to filter the 2nd dimension in Allocation?

    Hi experts,
    How do we use a property of one dimension to filter out the members of another dimension in allocation script engine?
    eg of two dimensions
    1.)Entity dimension - (entity dimension)
      memberset:                                        Channeltype (property)
                       Stores
                        Store1                           Boutique
                        Store2                           Kiosk
                        Store3                           Branch
                        Store4                           Concession
                        Store5                           Franchise
                      Nonstore
    2.)business Channel dimension - (user define)
       memberset:
                   Channeltype   
                       Boutique
                       Kiosk
                       Branch
                       Concession
                       Franchise
                       Nochannel
    in allocation code
    *runallocation
    *factor
    *dim entity                          what=Nonstore;                where=bas(Stores)
    *dim businesschannel        what=nochannel;             where= ? ;
    *endallocation
    The thing is that when the engine selected store 2 for entity it should select kiosk as its businesschannel.
    Please advise.
    Thanks as always,
    yajepe

    Hi,
    In this case, I believe, you should have the allocation within a for loop. But you should note that the performance might reduce.
    *FOR %VAR% = BAS(STORES)
       *RUNALLOCATION
       *FACTOR
       *DIM ENTITY WHAT = NONSTORE; WHERE = %VAR%
       *DIM BUSINESSCHANNEL WHAT = NOCHANNEL; WHERE = %VAR%.CHANNELTYPE
       *ENDALLOCATION
    *NEXT
    Hope this helps.

  • How can I create a filter for an exact set of characters?

    Hello! I am setting up a filter to catch messages with GG in the subject. Sometimes this will be at the beginning of the subject (no space at the front) and other times it will be somewhere in the middle. The problem I'm having is that this filter catches any word with "gg" in it, like "logged" or "baggage" (one of my customers has baggage in their name, but their messages should not be caught by this filter). How can I make this work? Thank you for your time!

    I think FiltaQuilla might be useful. It adds so-called Regular Expressions to the filter system, where you could use a construction like:
    "subject regex" "matches" "/\bgg\b/i"
    \b means a word boundary
    gg is your two letters
    \b is the trailing word boundary
    / and /i mean ignore the case, so it'll find gg, GG, Gg and gG.
    There lots of ways of doing this. You could have
    [ ]GG[ ]
    where it would require a space (explicitly; nothing else!) before and after, and capital letters. \b is usually superior as it matches at the beginning and end of the line, and recognizes regular punctuation in addition to spaces.

  • Lightroom 5 Beta – Radial Filter | What's New in Lightroom 5 Beta | Adobe TV

    Learn how easy it is to apply local adjustments including modifications to exposure, contrast, sharpening and more, using the new non–destructive Radial filter in Lightroom.
    http://adobe.ly/ZpT4bB

    Just keeps getting better

Maybe you are looking for

  • What's on your wish list for the NIke+ sportkit?

    Here's my wish list so far. What's on your wish list for the Nike+ Nano sportkit? (Already sent to Apple and Nike+ feedback so please don't tell me to do that. Apple & Nike+ do read the forum. ) Nike+: I would like to see: -- a date on the start of m

  • Must rename iPod every time I hook it to my PC

    I've had a few troubles with my iPod. I have installed music on it without difficulty, but then I started to get a "!" folder every time I hooked the iPod to my computer with a message that read "iTunes.exe -- Corrupt file. The file or directory \iPo

  • How do i remove extra space at the end of my song?

    when i first started my song in GB i set it to 17 mins, now the song is only 2 mins How do I easily remove those extra minutes on my song so that I can export a smaller file? Any help would be greatly appreciated.

  • Problem deleting search object connector template in template modeler

    Hi Experts By mistake I have created same search object connector in two different software components. Now in adminstration cockpit, template modeler when I try to create a connector, error message is displayed about the conflict in of same object n

  • How to balance huge spool request list at SP01

    Dear all, My invoice print smartform generates 250-300 spool requests from each locations / User ids. which are getting printed one by one. Can i load balance these spool requests according to diffrent loactions / User ids to speed up the printing. M