Not able to fetch the audit trail details from dehydration store.

Hi
While i am trying to fetch the audit trail details from the dehydration store using oracle soa 11g api, i am getting the below error.
The complete stack trace is as below.
javax.naming.NameNotFoundException: Unable to resolve 'FacadeFinderBean'. Resolved '' [Root exception is javax.naming.NameNotFoundException: Unable to resolve 'FacadeFinderBean'. Resolved '']; remaining name 'FacadeFinderBean'
     at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
     at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
     at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
     at weblogic.jndi.internal.ServerNamingNode_1033_WLStub.lookup(Unknown Source)
     at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:405)
     at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:393)
     at javax.naming.InitialContext.lookup(InitialContext.java:392)
     at oracle.soa.management.internal.ejb.EJBLocatorImpl.lookupBean(EJBLocatorImpl.java:738)
     at oracle.soa.management.internal.ejb.EJBLocatorImpl.lookupFinderBean(EJBLocatorImpl.java:716)
     at oracle.soa.management.internal.ejb.EJBLocatorImpl.<init>(EJBLocatorImpl.java:167)
     at oracle.soa.management.facade.LocatorFactory.createLocator(LocatorFactory.java:35)
     at com.test.GetPayload.getCompositeInstancePayload(GetPayload.java:65)
     at com.test.GetPayload.main(GetPayload.java:129)
Caused by: javax.naming.NameNotFoundException: Unable to resolve 'FacadeFinderBean'. Resolved ''
     at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1139)
     at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:252)
     at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:182)
     at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:206)
     at weblogic.jndi.internal.RootNamingNode_WLSkel.invoke(Unknown Source)
     at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:667)
     at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
     at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:522)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
     at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:518)
     at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
My code is as below
Hashtable jndiProps = new Hashtable();
jndiProps.put(Context.PROVIDER_URL, "t3://localhost:7001");
jndiProps.put(Context.INITIAL_CONTEXT_FACTORY,
"weblogic.jndi.WLInitialContextFactory");
jndiProps.put(Context.SECURITY_PRINCIPAL, "weblogic");
jndiProps.put(Context.SECURITY_CREDENTIALS, "welcome1");
jndiProps.put("dedicated.connection", "true");
Locator locator = LocatorFactory.createLocator(jndiProps);
CompositeInstanceFilter filter = new CompositeInstanceFilter();
filter.setECID(ecid); //Set the composite ECID
filter.setId(compInstanceId); //Set the composite instance id
Any Suggestion in this regard will be helpful.
Thanks
Abhijit
Edited by: 945736 on Jul 11, 2012 4:20 PM
Edited by: 945736 on Jul 11, 2012 4:20 PM

If it just for a particular message then another simple solution is to open the message and go to details in pimon.
http://wiki.scn.sap.com/wiki/display/PIS/AdapterMessageMonitoringVi+service+and+it%27s+methods

Similar Messages

  • Not able to fetch the data by Virtual Cube

    Hi Experts,
    My requirement is I need to fetch the data from Source System (From Data base table) by using Virtual Cube.
    What I have done is I have created Virtual Cube and created corresponding Function Module in Source System.
    That Function MOdule is working fine, if Data base table is small in Source System.But If data base table contains huge amount of data (millions of record), I am not able to fetch the data.
    Below is the code I have incorporated in my function module.
    c_th_mapping TYPE CL_RSDRV_EXTERNAL_IPROV_SRV=>TN_TH_IOBJ_FLD_MAPPING.
      DATA:
        l_s_map TYPE CL_RSDRV_EXTERNAL_IPROV_SRV=>TN_S_IOBJ_FLD_MAPPING.
      l_s_map-iobjnm = '0PARTNER'.
      l_s_map-fldnm  = 'PARTNER'.
      insert l_s_map into table l_th_mapping.
    create object l_r_srv
        exporting
           i_tablnm              = '/SAPSLL/V_BLBP'
          i_th_iobj_fld_mapping = l_th_mapping.
      l_r_srv->open_cursor(
        i_t_characteristics = characteristics[]
        i_t_keyfigures      = keyfigures[]
        i_t_selection       = selection[] ).
       l_r_srv->fetch_pack_data(
        importing
          e_t_data = data[] ).
      return-type = 'S'.
    In the above function Module,Internal table L_TH_MAPPING contains Info Objects from Virtual Cube and corresponding field from Underlying data base table.
    The problem where I am facing is, in the method FETCH_PACK_DATA, initially program is trying to fetch all the recordsfrom data base table to internal table.If Data base table so lagre, this logic is not working.
    So would you please help me how to handle these kind of issues.

    Hi Experts,
    My requirement is I need to fetch the data from Source System (From Data base table) by using Virtual Cube.
    What I have done is I have created Virtual Cube and created corresponding Function Module in Source System.
    That Function MOdule is working fine, if Data base table is small in Source System.But If data base table contains huge amount of data (millions of record), I am not able to fetch the data.
    Below is the code I have incorporated in my function module.
    c_th_mapping TYPE CL_RSDRV_EXTERNAL_IPROV_SRV=>TN_TH_IOBJ_FLD_MAPPING.
      DATA:
        l_s_map TYPE CL_RSDRV_EXTERNAL_IPROV_SRV=>TN_S_IOBJ_FLD_MAPPING.
      l_s_map-iobjnm = '0PARTNER'.
      l_s_map-fldnm  = 'PARTNER'.
      insert l_s_map into table l_th_mapping.
    create object l_r_srv
        exporting
           i_tablnm              = '/SAPSLL/V_BLBP'
          i_th_iobj_fld_mapping = l_th_mapping.
      l_r_srv->open_cursor(
        i_t_characteristics = characteristics[]
        i_t_keyfigures      = keyfigures[]
        i_t_selection       = selection[] ).
       l_r_srv->fetch_pack_data(
        importing
          e_t_data = data[] ).
      return-type = 'S'.
    In the above function Module,Internal table L_TH_MAPPING contains Info Objects from Virtual Cube and corresponding field from Underlying data base table.
    The problem where I am facing is, in the method FETCH_PACK_DATA, initially program is trying to fetch all the recordsfrom data base table to internal table.If Data base table so lagre, this logic is not working.
    So would you please help me how to handle these kind of issues.

  • Not able to get the Aduit log details through webservices

    Hi Team,
    I am trying to get the audit log details using according to Michal's PO/PI tips: Audit Logs from a native WS - new feature  but i am getting following result 
    i have used
    key = new MessageKey(msg.getMessageId(), msg.getMessageDirection()); -------------> to generate the message key
    generated value: 02766515-d1fe-11e3-b52d-0000008030fe(OUTBOUND)
    and i have placed that value in the messagekey as shown above but i am not getting any output and it is returned saying fault String please some buddy help me in solving the problem.
    Thanks in advance.
    Regards,
    Avinash.

    If it just for a particular message then another simple solution is to open the message and go to details in pimon.
    http://wiki.scn.sap.com/wiki/display/PIS/AdapterMessageMonitoringVi+service+and+it%27s+methods

  • Not able to fetch the specification limits  results in the quality certific

    Hi ,
    I am facing an issue in outgoing Quality certificate. I am able to fetch the specifications for the the inspection characteristic& their result in the quality certificate.Although some of the are reflecting but some are not.
    Please advice.
    Regards,
    Vivek Sharma

    Helli Vivek,
    What is misleading in the information I gave you?
    The transaction QC03 is used to view the Quality certificate.
    The text element is found on the characteristics overview screen.
    You should be able to determine the certificate type used.
    Furthermore you must distinguish if you are using quantitive or qualitative characteristics.
    If you are using qualititive characteristics you might need text 0002
    Regards,
    Isabelle
    Edited by: Isabelle Britten on Jul 17, 2008 10:33 AM

  • I have a new computer and I am not able to use the $12.58 in my itunes store acct.

    why am i not able to use the $12.58 in my itunes acct to purchase items - I am using a new computer and it requests the code on the back of the itunes gift card which I no longer have available but Itunes is telling me I still have that amount in my acct.

    You don't have a copy of it on your backup of your downloads and you've checked your computer's hard drive for it ? What you can re-download will show under the Purchased link under Quicklinks on the right-hand side of the iTunes store homepage on your computer's iTunes. If other films show there but not that one and it's still in your country's iTunes store then check to see if it's hidden : http://support.apple.com/kb/HT4919
    If it's not hidden and it's still in your country's store then you can try contacting iTunes Support and see if they wil grant you a re-download : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Not able to open the existing PDF files from Content Server in VL02N

    Hi All,
    In Delivery transaction VL02N, we are not able to open the PDF file attachments which were created in the Past (Ex. 01/01/2014) from the Content Server. Recently upgraded to Enhancement Pack 7 and not sure whether the issue is due to this upgrade.
    Kindly check and do the needful.
    Thanks,
    Parasuram

    Hello,
    What error or information did you met?
    Are there any information in transaction SLG1?
    Regards,
    David

  • Not able to fetch the correct line in interactive list

    Dear All,
    I am making an interactive report wherein I want to fetch the data as per the line clicked by the user.
    e.g.
    Particulars        value
    ABC                  12
    PQR                  14
    XYZ                    20
    Whenever I am clicking the list on ABC, the system is fetching the last value in the internal table.
    Can anyone please guide me on this?

    Hi Aasim,
    Please look into the below code. for simple interactive report
    DATA : BEGIN OF itab OCCURS 0,
             name(10),
             num TYPE i,
           END OF itab.
    itab-name = 'ABC'.
    itab-num = 123.
    APPEND itab.
    itab-name = 'BDC'.
    itab-num = 125.
    APPEND itab.
    itab-name = 'xyz'.
    itab-num = 345.
    APPEND itab.
    LOOP AT itab.
      WRITE : / itab-name,
                itab-num.
      HIDE itab-name.
    ENDLOOP.
    AT LINE-SELECTION.
      WRITE : itab-name.
    Regards
    Kumar M.
    Edited by: mukesh kumar on Oct 29, 2008 6:54 AM
    Edited by: mukesh kumar on Oct 29, 2008 6:55 AM

  • Not able to fetch the explain plan

    whenever i fire this query, its giving table does not exits
    SQL> EXPLAIN PLAN for SELECT
    S_CONTACT.ROW_ID,
    2 3 S_CONTACT.MODIFICATION_NUM,
    4 S_CONTACT.LAST_UPD
    5 FROM
    6 S_CONTACT,
    7 S_CONTACT_FNX,
    8 S_ETL_I_IMG_118 IMG
    9 WHERE
    10 (
    11 IMG.ROW_ID = S_CONTACT_FNX.ROW_ID
    12 AND
    13 S_CONTACT_FNX.PAR_ROW_ID = S_CONTACT.ROW_ID
    14 )
    15 AND NOT EXISTS
    16 ( SELECT 'X'
    17 FROM
    18 S_ETL_I_IMG_12 IMG1
    19 WHERE
    20 IMG1.ROW_ID = S_CONTACT.ROW_ID
    21 )
    UNION ALL
    22 23 SELECT
    24 S_CONTACT.ROW_ID,
    25 S_CONTACT.MODIFICATION_NUM,
    26 S_CONTACT.LAST_UPD
    27 FROM
    28 S_CONTACT,
    29 S_ETL_I_IMG_109 IMG
    30 WHERE
    31 (
    32 IMG.ROW_ID = S_CONTACT.PR_SPECIALTY_ID
    33 )
    AND NOT EXISTS
    34 35 ( SELECT 'X'
    36 FROM
    37 S_ETL_I_IMG_12 IMG1
    38 WHERE
    39 IMG1.ROW_ID = S_CONTACT.ROW_ID
    40 )
    41 UNION ALL
    42 SELECT
    43 S_CONTACT.ROW_ID,
    44 S_CONTACT.MODIFICATION_NUM,
    45 S_CONTACT.LAST_UPD
    46 FROM
    47 S_CONTACT,
    48 S_ETL_I_IMG_113 IMG
    49 WHERE
    50 (
    51 IMG.ROW_ID = S_CONTACT.MED_SPEC_ID
    52 )
    53 AND NOT EXISTS
    54 ( SELECT 'X'
    55 FROM
    56 S_ETL_I_IMG_12 IMG1
    57 WHERE
    58 IMG1.ROW_ID = S_CONTACT.ROW_ID
    59 )
    UNION ALL
    60 61 SELECT
    62 S_CONTACT.ROW_ID,
    63 S_CONTACT.MODIFICATION_NUM,
    64 S_CONTACT.LAST_UPD
    65 FROM
    66 S_CONTACT,
    67 S_ETL_I_IMG_125 IMG
    68 WHERE
    69 (
    70 IMG.ROW_ID = S_CONTACT.REGION_ID
    71 )
    72 AND NOT EXISTS
    73 ( SELECT 'X'
    74 FROM
    75 S_ETL_I_IMG_12 IMG1
    76 WHERE
    77 IMG1.ROW_ID = S_CONTACT.ROW_ID
    78 );
    S_ETL_I_IMG_118 IMG
    ERROR at line 8:
    ORA-00942: table or view does not exist

    Not really a good idea to do it a SYS user, but it's up to you.
    I bet the tables are not in the SYS schema and you're not prefixing the names with the schema name in you select statement. So unless you have private synonyms in SYS schema or public synonyms for all those tables they're not visible by SYS without the prefix e.g.
    TABLE_OWNER.TABLE_NAME

  • Not able to fetch the item level rating for the document programatically in sharepoint 2013

    Hi,
    I am trying to get the current logged in user rating for items in document libraries . However. It is giving rating as 0 for the all the documents. I am using below code
     SPSite site = new SPSite(SPContext.Current.Web.Url);
                        SPWeb web = site.OpenWeb();
      string fileUri = "http://svdvspapp01:2015/" + webUrlSplit;
                                Uri urifileUrl = new Uri(fileUri);
                               SPServiceContext context = SPServiceContext.GetContext(site);
                                SocialRatingManager mySocialRatingManager = new SocialRatingManager(context);
                                SocialRating aRating = mySocialRatingManager.GetRating(urifileUrl);
                                string myRating = aRating.Url + ": " + aRating.Rating;                       
                                objtopRated.myRating = myRating; } }In the above code fileUri is the docuemnt url of the item in doc libraryeg. http://svdvspapp01:2015/ProductsandPricing/Pricing/Pricing_Document 1.xlsxI refrred the below msdn linkhttp://msdn.microsoft.com/en-us/library/ff407954.aspx

    Hi Labhesh,
    I understand that you want to search the date field in the document library inline search.
    I recommend to use the managed property for the dates column in the query.
    For example, if the managed property for the date column is called testdate, then type “testdate:2014-11-28” in the search box in the library for searching the date.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Not able to Remove the ZEN 20GB Safely from compu

    Hi All
    When i connect my Zen 20Gb to my comp win xp sp2, it gets detected and i am able to get a new icon under removable dri've and am able to save data's in the Zen's dri've but when i want to disconnect it from the comp, i right click on the usb icon on system tray and click on safely remove the device, i select usb mass storage ZEN ( F: ) and click on stop, now it comes with an error msg that some application is still in use, i am sure i have closed all application and none are running, it happened y'dsday also, and i get the icon on the zen which says do not disconnect, finally i have to shut down the pc to remove the device why so, what could be the reason

    It's important to shut down every program at least. There are tasks like Explorer though that shouldn't be shutdown ideally, and of course Explorer is one of those programs that might well have its hooks into the player. Again though, as long as you're not actually using it then you can most likely disconnect safely.
    If the worst comes to the worst then just shut down the PC. You know it's not using it then!

  • Not able to get the alarms in DFM from 7609-S router in LMS 4.0

    Hi Team,
    We are facing some problem with DFM alerts for  SPA-4XOC3-POS modules. Alerts are not getting generated for these modules. I can the the modules in Cisco View and inventry. Its operation status is also UP. Please provide help to find out the issue.
    Attached show version & show module of problematric routers.
    Regards
    Dheeraj Gupta

    The code below looks correct. Is that the expected behavior of your app?
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script>
    <![CDATA[
    public var ValueP2:Number = 0;
    private var grossValue:Number = 0;
    private var totalValue:Number = 0;
    private var finalTotalP2:int = 0;
    public function test():void {
    if (Number(TextInput2.text) == 1 || Number(TextInput2.text) == 2)
    ValueP2 = 1;
    totalValue = grossValue + ValueP2;
    else if (Number(TextInput2.text) == 3 || Number(TextInput2.text) == 4) {
    ValueP2 = 5;
    totalValue = grossValue + ValueP2;
    else if (Number(TextInput2.text) == 5 || Number(TextInput2.text) == 6) {
    ValueP2 = 9;
    totalValue = grossValue + ValueP2;
    trace("totalValue "+totalValue);
    finalValueP2(totalValue);
    public function finalValueP2(tVP2:int):int {
    var tallyP2:int = 0;
    if (tVP2 < 3)tallyP2 = 1;
    if (tVP2 >= 3 && tVP2 <5)tallyP2 = 2;
    if (tVP2 >= 5 && tVP2 <10)tallyP2 = 3;
    finalTotalP2 = tallyP2 * 7;
    trace("finalTotalP2 " +finalTotalP2);
    return(finalTotalP2);
    ]]>
    </mx:Script>
    <mx:TextInput id="TextInput2" enter="test()"/>
    </mx:Application>

  • Not able to trigger the Leave Request Workflow from EP

    Hi,
       There is a problem that I am getting as follows and I need an urgent help :
    I am using the Leave Request Workflow WS20000081 in R/3 4.7. The problem that I am getting when I login as "A" who is a boss of "B" and got the mail in inbox in corresponding workflow for Approve or Reject the Leave Request. Now when I "Approve" the Leave Request from R/3 Inbox, then the workflow move for the processing, but if the same Leave Request is to be "Approve" from EP having either the SAP Transaction iView or IAC iView, it doesn't process the Workflow further neither for Approval nor for Rejection. And the workitem remains as such in EP Inbox.
    Can someone tell me what to do so that it will trigger from EP too.
    Regards
    Deep

    Hi,
    If u have no authorization, even the job log finishes the request won't be deleted.
    Once chk the log step by step.....to have some more inf reg authoriations...
    Or once goto RSRQ and give the request no there and chk the status of the request whether it is deleted or not?
    Atlast try to log-off and refresh the session completely and try.
    rgds,

  • Not able to access the native c code from servlet

    I want to call c function from servlet using JNI . I created the .so file and gave the library path . But when i try to load the library it says "Unsatisfied link error ". I am using tomcat on linux .. any more setting has to be done in order to call native code from servlets ?

    You need to post a little bit of code. What does your LoadLibrary() call look like?

  • Not able to pass the BEx date prompts from liveoffice

    Dear Team ,
    Environment : BI 4.1 SP3 ,Dashboards 4.1 Sp3 and Live office 4.1 SP3 .
    Bex query has date range variable ,we built dashboard with Live office .Issue is we are failing to pass date variables from dashboard .To pass 1- March -2015 , We tried with 20150301 ,[20150301] ,01.03.2015 ,03.01.2015 ,01/03/2015 and so on .It shows L00 error .
    Please share your toughts/expertise .
    Thanks in advance.

    Hi sateesh,
    try to convert the date into datevalue
    and pass the datevalue ouput to the bex

  • Not able to get the taxonomy field value of meta data field type

    Hi Everyone,
    Not able to get the taxonomy filed value from the metadata filed type.
    Any one can help me on this.
    Label, TermGuid, ValidatedString are showing empty when i debug the code.
    Below is the code which i used to get the taxonomy filed value

    Hi,
    Can you please try getting this way?
    var taxonomyField = listItem.Fields.GetFieldByInternalName(fieldName) as TaxonomyField;
    if (taxonomyField.AllowMultipleValues)
    var fieldValuesCollection = listItem[taxonomyField.Title] as TaxonomyFieldValueCollection;
    return fieldValuesCollection.Select(x => new Guid(x.TermGuid)).ToList();
    else
    var fieldValue = listItem[taxonomyField.Title] as TaxonomyFieldValue;
    return new List<Guid>() { new Guid(fieldValue.TermGuid) };
    Hope it helps!
    Thanks,
    Avni Bhatt
    If this helped you resolve your issue, please mark it Answered

Maybe you are looking for