Exception in Inbox Search filter

In the Inbox filter (the default search), if "In Process" option is checked the instances are being retrieved where as if all the options are checked - "In Process", "Aborted", "Completed" are checked, then no instances are being retrieved. Please let me know if there is any known issue in this regards.
There are below exceptions in the WLS of BPM engine. Can these be related?
####<Dec 29, 2009 2:12:29 PM GMT> <Warning> <RMI> <SCRBPWMDERUE652> <ENG_MS_2> <[ACTIVE] ExecuteThread: '34' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1262095949636> <BEA-080003> <RuntimeException thrown by rmi server: fuego.ejbengine.EJBProcessControl_1zamnl_EOImpl.getInstancesByFilter(Lfuego.papi.impl.j2ee.EJBSecureEngineInfo;Ljava.lang.String;Lfuego.papi.Filter;)
java.lang.ClassCastException: cannot assign instance of java.util.ArrayList to field fuego.view.FilterImpl.attributes of type java.util.Set in instance of fuego.view.FilterImpl.
java.lang.ClassCastException: cannot assign instance of java.util.ArrayList to field fuego.view.FilterImpl.attributes of type java.util.Set in instance of fuego.view.FilterImpl
     at java.io.ObjectStreamClass$FieldReflector.setObjFieldValues(ObjectStreamClass.java:2032)
     at java.io.ObjectStreamClass.setObjFieldValues(ObjectStreamClass.java:1212)
     at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1953)
     at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
     at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
     at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
     at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
     at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
     at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
     at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
     at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
     at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:197)
     at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:564)
     at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:193)
     at fuego.ejbengine.EJBProcessControl_1zamnl_EOImpl_WLSkel.invoke(Unknown Source)
     at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:589)
     at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
     at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:477)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
     at weblogic.security.service.SecurityManager.runAs(Unknown Source)
     at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:473)
     at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
Regards,
Supradeep

Hi,
It seems that you are using a different build# of PAPI in the engine and the workspace.
I suggest you recreating and reinstalling the engine and workspace ears.
By the way, have you installed any HF recently? If so, which build#?
Regards,
Ariel

Similar Messages

  • Removing "Standard" options from the WebUI search filter

    Hi Experts,
    I have configured the YMCR and Y**** transaction types for RFC, Urgent, Normal and other Changes.
    I have removed the SMCR transaction type for standard from dno_cust/04 and I do not see the standard transaction type anywhere now except for all of them showing up in the drop down Menu of the Search filter.
    Can you please advise how to remove these?

    Hi Ranjith,
    Can you make sure via SUIM that this object is not assigned via some other role to the user.
    there are other ways but if something can be achieved easily why you need to put extra efforts for the same.
    Unless someone authorized for SMCR should only see ZMCR for example and if this is not working then there is something definitely wrong because from business point of view if I have multiple customer and multiple transaction type I can view all which is not correct.
    I have done this for single and VAR scenario so know that this works.
    Or alternative
    Create a test user assign only few roles(relevant one's) to this user check it &  it must work
    e.g. I have logged on using the standard user CH_CM_SID of the system which is created via standard solman_setup and output is shown below for searching change request...........it shows only Z*
    Regards
    Prakhar

  • Query on CRM Inbox Search

    Hi All,
    This is with respect to Inbox Search for CRM 2005.
    We have customized "Assigned To" field so as to show all the employees under Call Center.
    Following is the code to do this
    DATA: lt_org_unit_list TYPE TABLE OF objec,
           ls_org_unit_list TYPE objec,
           lv_org_objid     TYPE hrobjid,
           ls_org_units     TYPE crmst_aui_org_unit,
           lv_org_unit      TYPE objektid,
           lv_key           TYPE valpos,
           ls_empl_***      TYPE crmst_aui_domvalues_dd,
           lt_p1000         TYPE TABLE OF p1000,
           lv_p1000         TYPE p1000,
           lv_partner_guid  TYPE bu_partner_guid,
           lv_plan_version  TYPE plvar,
           lv_bp            TYPE bu_partner,
           lv_lines         TYPE i,
           lv_org_otype     TYPE otype,
           lv_call_center_id TYPE objec-stext.
    Append Groups of the Agent
    1. Step: Get all assigned OrgUnits
       CALL FUNCTION 'RH_STRUC_GET'
         EXPORTING
           act_otype  = 'O'
           act_objid  = '50000607'
           act_wegid  = 'O-S-CP'
         TABLES
           result_objec = lt_org_unit_list
         EXCEPTIONS
           OTHERS     = 3.
       CHECK sy-subrc = 0.
       DELETE lt_org_unit_list WHERE stext <> 'Call Center'.
       LOOP AT lt_org_unit_list INTO ls_org_unit_list.
         lv_call_center_id = ls_org_unit_list-objid.
       ENDLOOP.
       CLEAR: lt_org_unit_list,ls_org_unit_list.
    Append Groups of the Agent
    1. Step: Get all assigned OrgUnits
       CALL FUNCTION 'RH_STRUC_GET'
         EXPORTING
           act_otype  = 'O'
           act_objid  = lv_call_center_id
           act_wegid  = 'OO-S-BP'
         TABLES
           result_objec = lt_org_unit_list
         EXCEPTIONS
           OTHERS     = 3.
       CHECK sy-subrc = 0.
       DELETE lt_org_unit_list WHERE otype <> 'BP'.
       lv_key  =  '0004'.
       LOOP AT lt_org_unit_list INTO ls_org_unit_list.
       lw_value-valpos = lv_key. "unique sequential number
       lw_value-ddtext = ls_org_unit_list-stext.
       APPEND lw_value TO c_responsibles.
       lw_orgunit-key = lv_key. "reference to group created in c_responsibles
       lw_orgunit-otype = ls_org_unit_list-otype.
       lw_orgunit-objid = ls_org_unit_list-objid.
       lw_orgunit-stext = ls_org_unit_list-stext.
       APPEND lw_orgunit TO c_org_units.
       lv_key  =  lv_key  +  1.
       ENDLOOP.
    The problem is when I am selecting an employee from the drop-down, it does not show the correct results i.e. it does not show the records for that employee, instead it populates all the records for that Call Center.
    Can someone please let me know what am I missing.
    Thanks,
    Nikhil

    Solved myself

  • Partial Reconciliation - Problem with Search Filter

    Hi All,
    I'm trying to do a partial reconciliation and am getting this error:
    INFO [ACTIVEDIRECTORY] ActiveDirectoryRecon/performReconciliation
    INFO [ACTIVEDIRECTORY] Search Filter (&(&(objectclass=user)(whenChanged>=20100312190553.0Z))(((&((objectclass=user)())(sn=Test)))))
    ERROR [ACTIVEDIRECTORY] Error during search : javax.naming.directory.InvalidSearchFilterException: Missing 'equals'; remaining name 'dc=dinghy,dc=hal,dc=test'
    INFO [STDOUT] javax.naming.directory.InvalidSearchFilterException: Missing 'equals'; remaining name 'dc=dinghy,dc=hal,dc=test'
    INFO [STDOUT] at com.sun.jndi.ldap.Filter.encodeSimpleFilter(Filter.java:305)
    Missing equals??? This is what I entered as the query filter:
    (&(objectclass=user)(sn=Test))
    I just want to do it on a user whose last name is Test. I took the query straight out of the documentation.
    I'm using an older adapter, 9.0.4, so they had me add this in the CustomizedReconQuery property of ITResource. The documentation also states:
    The CustomizedReconQuery attribute is used in conjunction with the
    isNativeQuery attribute. You use the isNativeQuery attribute to specify whether
    or not the query condition is in the native format.
    But I don't see a isNativeQuery property in either the ITResource or the Scheduled Task. I'm guessing that's not the issue anyway.
    Anyone see any obvious issue I'm missing?
    Thank you so much

    I have a flat file recon process that I believe is my trusted source and this Updates or Creates OIM users. I just want only certain users to update to AD.. only ones where OIM.EmployeeID = AD.EmployeeID.
    I got all the pieces together, except that all my OIM users have no EmployeeID, so I want to do a one time reconcliation from AD to get the AD.EmployeeID property into OIM.
    Since my ProcessForm's Employee ID field is being populated correctly from Reconciliation, I thought I could take that value and put it in the User form with a "Employee ID Updated" task, but that, for some reason, doesn't trigger as an update from Reconciliation, works when I click Save tho. I guess it's not meant to work that way.
    I've never heard of Entity Adapters, but I'll look into it now.
    Thanks much
    Alex
    EDIT - OK, so I see Entity is a type of Adapter.... how do I call this adapter? Do I make a process task that calls it? Do I do it as above and name it "MYFILED Updated", or do something else?
    Edited by: alecks29 on Mar 17, 2010 3:04 PM

  • Problem with the Inbox search of IC Web Client

    Hi Friends,
    Iam working on the Inbox search of the IC Web client.
    For the Inbox search, in the view AuiItems.htm, I have added two fields Main Reference Object and Account.
    But when I click on search, in the result list all the values except these two which I added. In the result list Iam getting the values as NULL for these two newly added fields. What could be the reason for this and how to solve this??
    Regards,
    Raju

    Hello Narayana,
    You can link user statuses to inbox status under customizing
    Interaction Center WebClient --> Agent Inbox --> Inbox Search Definitions --> Define Inbox Status.
    Here you can delete system status and add user statuses.
    After adding user status ,you need to map inbox status to element status in Customizing for Customer Relationship Management by choosing Interaction Center WebClient --> Agent Inbox --> Map Element Attributes to Inbox Attributes --> Map Element Status to Inbox Status.
    Read documentation on Map Element Status to Inbox Status customizing entry.
    You dont have make changes to the code for this customization.
    Thanks,
    Thirumala.

  • LDAP Search filter Jabber for Android

    Hi,
    I have this LDAP Filter which only shows me active users:
    <BaseFilter>(&amp;(objectclass=user)(objectcategory=person)(!UserAccountControl:1.2.840.113556.1.4.803:=2))</BaseFilter>
    I have the same line for Jabber for Android, but it doesn't work.
    <BDIBaseFilter>(&amp;(objectclass=user)(objectcategory=person)(!UserAccountControl:1.2.840.113556.1.4.803:=2))</BDIBaseFilter>
    I get 0 results for any search on Jabber Andorid. When I delete the "BDI" Line for the filter all together, then I get correct results - with photos and everything.
    I also tried a simple filter e.g:
    <BDIBaseFilter>(!UserAccountControl:1.2.840.113556.1.4.803:=2))</BDIBaseFilter>
    No search results either.
    Any ideas how to get Filter for Android working?
    Versions:
    Jabber for Android: 10.6
    CUCM: 9.1.2

    I think I found the coresponding messages in the log:
    csf.person.ldap: [LdapSearchQueryHandler.cpp(51)] [start] - reqId = 2
    02-26 09:18:59.851 15477 15645 D csf.person.ldap: [LdapDirectoryImpl.cpp(1482)] [sendSearchQuery] -
    02-26 09:18:59.851 15477 15477 I csf.person.xmpp: [XMPPPersonRecordSource.cpp(268)] [fetchContacts] - Entering.
    02-26 09:18:59.851 15477 15645 D csf.person.ldap: [LdapDirectoryImpl.cpp(1531)] [sendSearchQuery] -  filter  = (&(objectclass=user)(objectcategory=person)(!UserAccountControl:1.2.840.113556.1.4.803:=2)(|(sAMAccountName=at1sath))), baseDN=OU=Organization,DC=at,DC=customer,DC=net
    02-26 09:18:59.851 15477 15477 D services-dispatcher: [ServicesDispatcher.cpp(147)] [pumpNext] -  pumpNext.executed (ContactsAdapter::LoadContactsFromSource)
    02-26 09:18:59.851 15477 15645 D csf.person.ldap: [LdapDirectoryImpl.cpp(1576)] [sendSearchQuery] - ldap search error. rc= -7 ,msg=Bad search filter
    02-26 09:18:59.851 15477 15645 D csf.person.ldap: [LdapDirectoryImpl.cpp(1675)] [notifyListenersSearchRequestCompleted] - errorCode=-7
    02-26 09:18:59.851 15477 15477 D services-dispatcher: [ServicesDispatcher.cpp(145)] [pumpNext] -  pumpNext.executing (ContactsAdapter::LoadContactsFromSource)
    02-26 09:18:59.851 15477 15645 D csf.person.ldap: [LdapDirectoryImpl.cpp(1258)] [mapErrorNo] - Code = -7, Msg=Bad search filter
    02-26 09:18:59.851 15477 15645 D csf.person.ldap: [LdapSearchQueryHandler.cpp(84)] [onSearchRequestCompleted] - reqId = 1, errcode = 9
    02-26 09:18:59.851 15477 15645 D csf.person.ldap: [LdapDirectoryImpl.cpp(1531)] [sendSearchQuery] -  filter  = (&(objectclass=user)(objectcategory=person)(!UserAccountControl:1.2.840.113556.1.4.803:=2)(|(sAMAccountName=at1hafr))), baseDN=OU=Organization,DC=at,DC=customer,DC=net
    02-26 09:18:59.851 15477 15645 D csf.person.ldap: [LdapDirectoryImpl.cpp(1576)] [sendSearchQuery] - ldap search error. rc= -7 ,msg=Bad search filter
    02-26 09:18:59.851 15477 15645 D csf.person.ldap: [LdapDirectoryImpl.cpp(1675)] [notifyListenersSearchRequestCompleted] - errorCode=-7
    02-26 09:18:59.851 15477 15645 D csf.person.ldap: [LdapDirectoryImpl.cpp(1258)] [mapErrorNo] - Code = -7, Msg=Bad search filter
    02-26 09:18:59.851 15477 15645 D csf.person.ldap: [LdapSearchQueryHandler.cpp(84)] [onSearchRequestCompleted] - reqId = 2, errcode = 9
    The next question is now: Why is it a bad search filter? And what is the correct one? The same filter works on jabber for windows...
    BR, Dave

  • How can I create a search filter on my muse project?

    How can I create a search filter on my muse project like the 'sort by' function of this website? http://trufcreative.com/work
    By that I mean be able to narrow down the content displayed on a single page (preferably with an animation) without having the switch pages or reload the browser.
    I'm assuming this isn't something Muse can do natively, but if anyone knows the code, and how to make it work with Muse, that would be awesome.
    Cheers!

    yes i have same problem. i couldnt create one. please help me

  • New Field in Inbox Search

    Hi,
    I want to add one new field to inbox search i.e. 'Created By' , the purpose of this field is to search the service order on the basis of created by. could anyone please help me in solving this issue?
    do we need to enhance the class CL_CRM_AUI_QUERY_SERVICE and GET_1O_QUERY_RESULT?
    Regards,
    Kamesh Bathla

    Hi,
    Can you please tell me what I need to do in the method mentioned by you?
    Regards,
    Amit

  • Help needed in Inbox search for Custom attribute

    Hi,
    We have  a requirement where in we are having a custom attribute on Service request to store the ECC Order number.
    We have enhanced the Inbox search to retreive all the service requests havig the ECC order number. 
    Here we are encountering a problem. i just created a new crm service request and entered order number 1234. and now when i search for the same in Inbox search giving the criteria order number as 1234. I get no results found. But when i extend the max list to 2000, then i see the service request appearing in the result list. not sure about the algorithm that is designed for inbox search.
    Any pointers on how to resolve this issue would be of great help.
    Thanks,
    Udaya

    Hi,
    I do not have the time to research this completely, but I had a short look into the class you posted.
    In the GET_DYNAMIC_QUERY_RESULT there is a call to CL_CRM_QCOD_HELPER->PREPROCESS( )
    A little bit lower there are blocks marked by comments for the single searches that are handled by this class. I had a look into the campaign_serach() method. There if you scroll a little bit down (around line 123) they set all search parameters to SIGN = 'I' OPTION = 'EQ'. This is done several times below as well.
    Set a breakpoint in the proprocess() method and check which of the blocks is called and how they handle your search criteria.
    Hope it helps.
    cheers Carsten

  • Issues with Search Filter Criteria Button in Search Help

    Hi ,
    I have applied an elementary search help to a select option and this help is having four fields. The search help works fne and all the four fields are visible when i do a F4. Now , if i want to restrict the number of entries shown (the number of entries are huge) by clicking the "Search Filter Criteria" button , i dont see any of the four fields using which i can restrict the data . Do we need to do any configuration for this ??
    Regards
    Mayank

    Hi,
    in that search help itself you have a option called maximum number of hits, there is a impact if you restricted also.
    Thanks & Regards,
    Srinivasan.R

  • Sun idm LDAP Search Filter, logical operations.

    Hi
    Can any body please give me the solution on LDAP Search Filter
    I need to get all the users from a LDAP
    Whose attribute1 contains any of the values like (abc, bbc)
    OR
    Whose attribute2 contains any of the values like (xyz, yxz)

    we got the solution
    (|(|(attr1=abc)(attr1=bbc))(|(attr2=xyz)(attr2=yxz)))
    finally this worked.

  • Best approach to add Z custom field to IC Agent Inbox search and results view

    Hi Experts,
    We are having a requirement to add a Z custom field to IC Agent Inbox search and results view. I got multiple forums and ideas, but looking for the best approach for handling this. I am sure, you experts, would have already done this.
    Thanks in advance.
    Regards
    Siva

    Hi Sivakumar,
    AET is the best way by far to create a custom field in this area. It is easy and simple.
    Also, field once added in one business object it can be used at different objects as well.
    There is also a demo available for AET on sdn.
    Please let me know if any more help is required.
    Thanks,
    Bhushan

  • How do I get rid of "inbox search"? It is now where "Google search" used to be.

    ''''''
    I was down loading something but got "Inbox search" instead. It displaced "google search in the normal search box at the upper right corner of the screen.
    The search I get is now very limited. I am so frustrated that I now go back to Safari to be able to use google.
    I eliminated all by add-ons and went back to default mode to no avail.
    Also I put firefox in trash and reinstalled firefox but this "inbox search is still there. help
    ''''''''''''

    See
    * https://support.mozilla.com/en-US/questions/698166

  • Delete button not enabled on Inbox Search List

    We are using CRM 2007 sp4.  In one of our Web Interaction Centers we want to allow certain end users the ability to delete certain transactions from the inbox search list.  At present when an item in the result list on the inbox [Component ICCMP_INBOX (Inbox Items)] the delete button is not enabled whilst the Edit, Display and Interact are all enabled.  how do we enable the delete button.
    Thanks in advance

    Hey corrines,
    Here is an article for you that will help you troubleshoot this issue with your keyboard:
    One or more keys on the keyboard do not respond
    http://support.apple.com/kb/TS1381
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • May i know how can i include a search filter box in Muse?

    Hi, i'm going to set up a website which contain a lot of list and I would like to include a search filter box where user get to filter their search result in the list that I inserted. Is there any good tutorials or pre-post that i can refer? Thank you very much. =D

    Buddy hope this page will help you, I've done this using muse... http://chillbakes.com/specialities.html
    I've tried to sort all the products within a menu. Using triggers you can control the position area of a product.
    If it sorts your problem then mark your problem as solved so that it can help others.
    Cheers..!!

Maybe you are looking for

  • How we can get the deleted data details in sql server?

    Can we get the details like how much data was deleted? Thanks, Adi

  • CSS issues with FireFox

    I was wondering if anyone could help, the attached code displays fine in IE6 but the left hand column goes haywire in FF. Any suggestions? Thanks in advance! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1

  • Selection screen problem in module pool

    Hi friends, I am working on module pool programming, I need to put select screen on the screen of the module pool porgramming. I used Input/Output field to do that and activated. But I am getting message invalid field format (screen error) can any on

  • DSE Data Import Question

    Hi, When we receive data back from DSE after cleansing & normalization, are all the fields copied over the un-classified records (transaction) based on the key ? Or is it driven by the mapping between Classified DSO and Detail DSO ? According to that

  • Tethering W US Cellular

    Seen some information that if you tethered your phone that US C would cancel your account is there any truth to that? I pay for unlimited data a month so I don't see the problem. Don't forget to check your cinch!