Example usage of hz_party_search.find_parties API

I have been having errors when trying to execute a search using find_parties. Could someone post example usage? Also, how do I find out what properties/attributes I can put on the records? I am still slightly new to PL/SQL (not new to programming) and I couldn't find out where those type definitions are located (e.g., p_contact_point_list, contact_list, etc.).

Hi,
1) Read about the HZ_PARTY_SEARCH API in the Oracle® Trading Community Architecture, Technical Implementation Guide Release 11I, Part No. B13890-03)
This document clearly explains the usage of the API and description about each parameter. It also gives the sample code for few API’s
1) The properties/attributes which you have pass to the API generally depends upon the Match Rule you want to use for identifying the duplicates. It depends on how you defined the match rule, attributes, score and threshold value.
See the API guide, the P_MATCH_RULE_ID is a mandatory parameter.
3) The type definitions are just PL/SQL record variables. Each record type contains parameter. Generally these PL/SQL records represent the TCA entities
For example, define a Match Rule (Match Rule Id = 1001) with has attributes , score and threshold value as below
Threshold value defined as 100
Party First Name score is 25
Party Last Name score is 25
Party Telephone Number is 25
Party Addess1 is 25
Party Email Address is 100
That means, while searching for parties, if the First Name, Last Name, Telephone Number and Address1 matches to any of the existing TCA party, the score becomes 100 which is equal to threshold, and the API identifies it as duplicate
If the above four attributes don’t match, then the score never reaches 100. Result is No duplicate
In other case, if the Email address match with any of the existing TCA party record, the score is 100 which is equal to threshold, API identifies it as duplicates. I have given the score for Email address as 100 because email address never duplicates.
Now, you can pass the above attributes to the HZ_PARTY_SEARCH.FIND_PARTIES API.
P_PARTY_SEARH_REC.first_name = 'ABC'
P_PARTY_SEARCH_REC.last_name = 'XYZ'
P_CONTACT_POINT_LIST(1).PHONE = '123456789'
P_PARTY_SITE_LIST(1).ADDRESS1 = 'Steet name'
Then call the API. Sorry, I don't have the complete code with me. Here I'm just giving an example with what I recalled on my experience. I have used FIND_PARTIES API successfully in the last assingment.
Regards,
Ram

Similar Messages

  • [SOLVED] Example usage of pyalpm library

    Hİ,
    I am trying to find my way around pyalpm library, but I couldn't be able to do much yet. So far, I have been able to get local database and sync databases but I couldn't be able to refresh databases, install/remove a new package etc.
    And also, it would be nice if someone explained to me the work flow of pyalpm, because so far I couldn't be able to fully understand what does exactly what.
    Thanks in advance
    Yaşar Arabacı
    Edit: I guess I just figured out everyday usage functionality of pyalpm. But I still need to see some pyalpm.transaction.init() examples. Especially, how are we passsing arguments to that. (e.g list, tuples, keywordargs,str??). And also, should I pass some arguments to pyalpm.transaction.prepare() or, just use it as it is?
    Edit:2
    Appearantly, pycman package have lots of them, so I am marking this thread solved.
    Last edited by yasar11732 (2011-07-01 23:16:21)

    I'm having the same issue. Has anyone found a solution?

  • AggregationCommand usage in 11g OLAP API

    I am trying to aggregate a measure in a cube using different methods (SUM, AVG, etc.) for different dimensions. So I have a loop on the dimensions in following code:
    ArrayList<ConsistentSolveCommand> solveCommands = new ArrayList<ConsistentSolveCommand>();
    (loop through all dimensions in a measure) {
    AggregationCommand aggrCmd = new AggregationCommand(aggrMethodForThisDimension, ARGS, dimension);
    solveCommands.add(aggrCmd);
    ConsistentSolveSpecification conSolveSpec = new ConsistentSolveSpecification(solveCommands);
    measure.setConsistentSolveSpecification(conSolveSpec);
    I couldn't figure out what I am supposed to provide for ARGS (which is of type FunctionArgument[]) and how it varies depending on the aggregation method.
    Any insight is much appreciated.

    I tried the way which you mentioned using a simple case but obtained a baffling error.
    So, I have 1 measure called REVENUE800000BE.
    It has 2 dimensions:
    dimX with aggregation method AVG.
    dimY with aggregation method SUM.
    Cube's MeasureStorage is set to INDEPENDENT and SparseType is set to COMPRESSED.
    ArrayList<ConsistentSolveCommand> solveCmds = new ArrayList<ConsistentSolveCommand>();
    for each dim {
    List<FunctionArgument> args = null;
    List<AggregationCase> aggrCaseList = new ArrayList<AggregationCase>();
    AggregationCase aggrCase = new AggregationCase(aggrMethod, args, measure); //measure is the one named REVENUE800000BE
    aggrCaseList.add(aggrCase);
    AggregationCommand aggrCmd = new AggregationCommand("SUM", args, aggrCaseList, dim, dim.getHierarchies(), ...other options set to default); // let SUM be the default, it shouldn't be used.
    solveCmds.add(aggrCmd);
    ConsistentSolveSpecification conSolveSpec = new ConsistentSolveSpecification(solveCmds);
    cube.setConsistentSolveSpecification(conSolveSpec);
    I got this error during commit time:
    The transaction is not committable: "An error has occurred on the server
    Error class: Express Failure
    Server error descriptions:
    DPR: Unable to create server cursor, Generic at TxsOqDefinitionManager::generic<CommitRoot>
    INI: XOQ-01600: OLAP DML Error "APPS.FIRST_11G_AW!AG_SALESFACTS_AW_REVENUE800000 is not a valid FIRST_11G_AW!AG_SALESFACTS_AW_MEASURE_DIM." while executing DML "SYS.AWXML!R11_MANAGE_AGGREGATION('AG_SALESFACTS_AW.SOLVE.AGGREGATIONDEFINITION' 'CREATE' NA SYS.AWXML!___R11_LONG_ARG_VALUE(SYS.AWXML!___R11_LONG_ARG_DIM 1) SYS.AWXML!___R11_LONG_ARG_VALUE(SYS.AWXML!___R11_LONG_ARG_DIM 2))", Generic at TxsOqStdFormCommand::execute
    Am I missing something? In the error message, "REVENUE800000" was used instead of "REVENUE800000BE".

  • Retrieving billing/usage through Azure API

    I'm looking to retrieve my account usage details through Azure API but couldn't find the relevant API for that.
    I know I can download the CSV file of usage details in Azure Portal Account->Subscriptions->Download Usage Details, and would need to retrieve the same through API.
    Any help is appreciated. Thanks in advance.

    Hi ksrishna,
    Thanks for your posting!
    Currently we don't got the billing usage file using API. You could download in the account page on the portal. Also, you could vote this feature via this customer feedback page:
    http://feedback.azure.com/forums/170030-billing/suggestions/1143971-billing-usage-api
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to get active component of other components component usage

    Hi all,
    let me try to describe you the issue.
    I've got three components interacting with another. Lets call them CA, C1 and C2.
    CA uses both C1 and C2, so CA has component usages CUA1 and CUA2. But C1 also uses C2 with component usage CU12.
    C1 calls an interface method of component usage CU12 (of component C2).
    But although I've got an active component on CA-level for CUA1 (lets call this active component ACT1), C1 does not call the interface method of ACT1. (Even events are not triggered.)
    How can I assign the active component of CUA1 to C1 at runtime and how do I call its interface method from C1?
    Can I search for active components within C1 by name (I've got several active components, how do I differentiate them)?
    Thank you for your help.
    ismail
    FYI: The scenario:
    CA uses C1 as a global search component.
    CA has several list components C2.1, C2.2 etc.
    C2.1 lists all arrival/departure flights from NY. It also offers a minor search functionality for flight regarding NY.
    C2.2 lists all arrival/departure flights from LA. It also offers a minor search functionality for flight regarding LA. etc...
    I want to use C1 as a global search which uses the minor searches of C2.1, C2.2 etc. The outcome of the minor searches shall be displayed in C1, but also in C2.1, C2.2 etc. when I switch to the C2.1, C2.2 etc.
    Example usage 1:
    1. At CA I go to C2.1 and search for all flights to NY from London.
    2. Then I switch to C2.2 and search for all flights from LA to Berlin.
    3. When I switch back to C2.1 the former results remain there, I can still see all flights to NY from London.
    Example usage 2:
    1. At CA I go to C1 and make a global search for all departures to London.
    2. If I now switch to C2.2 I want to see all flights from LA to London, without a search here.
    3. If I now switch to C2.1 I want to see all flights from NY to London, without a search here.

    You use a desktop pane, but save a reference as a JLayeredPane. So make the reference of type JDesktopPane and check out [the documentation API|http://java.sun.com/javase/6/docs/api/javax/swing/JDesktopPane.html#getSelectedFrame()].
    For the next time, bookmark [http://java.sun.com/javase/6/docs/api/] and use you browsers search function to quickly jump to the class you want. Swing component usually also have a link to the relevant tutorial.

  • Can't find virus scanning API JARs for J2EE application

    Hello, dear WebAS experts.
    There is an example usage code [in help.sap.com] for Virus Scan Provider usage but no mention which SAP WebAS JARs should be used to compile this example.
    I have manually found three JARs by trial and error (under j2ee/cluster/server/bin) which I needed to compile the example, however I am kinda reluctant to copy them over into our build environment since I am not sure if these are official API JARs.
    Also, there is nothing on the official WebAS API list.
    If you could please point me to some official SDK I would really appreciate it.
    Thanks!

    The Deploytool for App Server 7 shipped after the App Server as a seperate download.
    it is available here:
    http://wwws.sun.com/software/download/products/3ec10b05.html
    vbk

  • How to import legacy claims into Oracle Trade Management using API

    Oracle has provided OZF_Claim_PUB .create_claim API to create claim but there is no documentation about mandatory fields/examples. Please provide an example usage of API.

    I haven't used this particular API, but have used similar for claims. These API's are quite well documented in the doc:
    Oracle® Marketing
    API Reference Guide
    Release 11i
    Part No. B10587-01

  • DQM API Taking a long time

    I am using DQM API to check if there are any duplicates. The DQM API 'HZ_PARTY_SEARCH.find_parties' is taking a lot of time(nearly 10 hours) to process 150000 records. Is there any way to optimize this? Please let me know.
    -Thanks
    Pat

    I am using DQM API to check if there are any duplicates. The DQM API 'HZ_PARTY_SEARCH.find_parties' is taking a lot of time(nearly 10 hours) to process 150000 records. Is there any way to optimize this? Please let me know.
    -Thanks
    Pat

  • Invalid API Key Error in Ecosign API

    I'm using the sample soap code(Developer kit) given by echosign api for testping, but it always show invalid api key error while i'm executing from terminal. Please give the solution as soon as possible, and i'm not able to get solution from google also.
    This is my API Key:
    Client Secret:
    6IaJHev8N48JbsZcM4Itggzt0pAHF0iS
    I tried with this comment in terminal:
    php demo.php https://secure.echosign.com/services/EchoSignDocumentService20?wsdl 6IaJHev8N48JbsZcM4Itggzt0pAHF0iS test
    This is demo.php file:
    <?php
    // get input
    array_shift($_SERVER['argv']);
    $Url = array_shift($_SERVER['argv']);
    $ApiKey = array_shift($_SERVER['argv']);
    $cmd = array_shift($_SERVER['argv']);
    $params = $_SERVER['argv'];
    if (!$cmd) print_usage();
    $S = new SOAPClient($Url);
    call_user_func("cmd_$cmd", $params);
    function cmd_test() {
        global $Url, $ApiKey, $S;
        print "Testing basic connectivity...\n";
        $r = $S->testPing(array('apiKey' => $ApiKey));
        print "Message from server: {$r->documentKey->message}\n";
        print "Testing file transfer...\n";
        $text = file_get_contents('../test.pdf');
        $r = $S->testEchoFile(array('apiKey' => $ApiKey, 'file' => base64_encode($text)))->outFile;
        if (base64_decode($r) === $text) {
            print "Woohoo! Everything seems to work.\n";
        else {
            die("ERROR: Some kind of problem with file transfer, it seems.\n");
    function cmd_send() {
        global $Url, $ApiKey, $S;
        list($filename, $recipient) = reset(func_get_args());
        $r = $S->sendDocument(array(
            'apiKey' => $ApiKey,
            'documentCreationInfo' => array(
                    'fileInfos' => array(
                        'FileInfo' => array(
                            'file'     => file_get_contents($filename),
                            'fileName' => $filename,
                    'message' => "This is neat.",
                    'name'    => "Test from SOAP-Lite: $filename",
                    'signatureFlow' => "SENDER_SIGNATURE_NOT_REQUIRED",
                    'signatureType' => "ESIGN",
                    'tos' => array( $recipient ),
        print "Document key is: {$r->documentKeys->DocumentKey->documentKey}\n";
    function cmd_info() {
        global $Url, $ApiKey, $S;
        list($doc_key) = reset(func_get_args());
        $r = $S->getDocumentInfo(array('apiKey' => $ApiKey, 'documentKey' => $doc_key))->documentInfo;
        print "Document is in status: {$r->status}\n";
        print "Document History: ";
        foreach($r->events->DocumentHistoryEvent as $_) {
            $keytext =
              $_->documentVersionKey
              ? " (versionKey: {$_->documentVersionKey})"
            print "{$_->description} on {$_->date}$keytext\n";
        print "Latest versionKey: {$r->latestDocumentKey}\n";
    function cmd_latest() {
        global $Url, $ApiKey, $S;
        list ($doc_key, $filename) = reset(func_get_args());
        $r = $S->getLatestDocument(array('apiKey' => $ApiKey, 'documentKey' => $doc_key))->pdf;
        //$r = base64_decode($r);
        file_put_contents($filename, $r);
    function print_usage() {
        die(<<<__USAGE__
    Usage:
      demo.php <URL> <API key> <function> [parameters]
    where the function is one of:
      test
      send <filename> <recipient_email>
      info <documentKey>
      latest <documentKey> <filename>
    test will run basic tests to make sure you can communicate with the web service
    send will create a new agreement in the EchoSign system, and returns a documentKey
    info returns the current status and all the history events for a given documentKey
    latest saves the latest version of the document as a PDF with the given filename
    __USAGE__
    --------------------------  End of file ---------------------------------------------------------------

    This is my API Key:
    Client Secret:
    6IaJHev8N48JbsZcM4Itggzt0pAHF0iS
    Client secret is not the same as an api key!
    in addition to the above, integration key or access codes can be had by going to personal preferences>access code and clicking the plus sign.

  • Win32 API user32.dll SendInput function help

    I'm looking for and example that uses the Win32 API user32.dll SentInput function.

    Hi, you find the required information in the MSDN online:
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winprog/winprog/windows_api_reference.asp
    and more specific the "SendInput" at:
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/userinput/keyboardinput/keyboardinputreference/keyboardinputfunctions/sendinput.asp
    Regards,
    Mattias Ericsson
    Endevo (www.endevo.se)
    Gothenburg, Sweden

  • Are there REST APIs to retrieve entity metadata for  eloqua objects?

    There is a list of all the objects which can be accessed by REST for CRUD in this link: REST API - Documentation for Core Objects under the Core Objects section.
    For each of the objects listed under the  Core Objects section are there is a field metadata under the Properties section.
    For example for Email object, REST API - Accessing Emails , under the Properties section, there corresponding entries for fields of Emails object under the
    Name ,Type, Description and Validations headings.
    Is there a REST API for retrieving the same information i.e. the field metadata for an eloqua object programmatically ?
    If not , it is a serious hindrance to building systems that are metadata driven and also since SOAP support is being deprecated...

    Metadata is 'top level' information on the object, and available whether you query the individual object (a single form, or email asset) or query for multiple objects of that type (list all forms, list all emails). Consider using a depth of minimal or partial for faster performance if the specific configuration of those objects is not important..
    Example:
    GET /assets/forms?depth=minimal&count=2
    Returns:
      "elements":
        "type":"Form",
        "currentStatus":"Draft",
        "id":"19",
        "createdAt":"1409623550",
        "createdBy":"8",
        "depth":"minimal",
        "folderId":"7",
        "name":"zzztestCS_3-9381543541_AutocompleteTest",
        "permissions":"fullControl",
        "updatedAt":"1409623623",
        "updatedBy":"8"
        "type":"Form",
        "currentStatus":"Draft",
        "id":"22",
        "createdAt":"1409781207",
        "createdBy":"11",
        "depth":"minimal",
        "folderId":"466",
        "name":"daisychain1",
        "permissions":"fullControl",
        "updatedAt":"1412779449",
        "updatedBy":"20"
      "page":1,
      "pageSize":2,
      "total":130
    Without limiting the count to 2, this would return up to 1000 results if you had multiple forms in your system and give you a basic top level view of each. Similarly, you can use GET /assets/form/{id}?depth=minimal to get the same sort of information.
    Other endpoints can be found on the REST livedocs page here (requires authentication):
    https://secure.eloqua.com/api/docs/Dynamic/Rest/1.0/Reference.aspx
    Regards,
    Bojan

  • How to monetize an API

    I am looking to monetize current API by charging customers for usage. The Azure API Management portal doesn't offer billing and payments functionality so I am wondering how others are charging for API usage. Any recommendations on how to implement pricing
    rules, invoicing, credit card processing for API usage within the Microsoft Azure realm is appreciated. Thanks.

    Thank you for your quick reply, Miao. I was looking for a more managed way of doing this w/o much development effort, such as how this API management portal does:
    "Define and setup pricing rules to access your API resources, Generate invoices every month and accessible via API, Handle multiple types of credit card for payments"
    http://www.3scale.net/api-management/monetize
    Do you think Azure API Management portal will offer these kind of monetize features?
     

  • Parameters of Collaboration Suite API Web Services

    I wish to use the OCS API by invoking directly Web Services such as
    FileManager.wsdl, UserManager.wsdl etc from BPEL process.
    For example, when I use Java API I write
          NamedValue[] properties = RLM.login (username, password, null, null);but how can I pass those null's as parameters of Web Service when invoking
    RemoteLoginManager.wsdl directly ?
    Operation "login" requires 4 parameters:
    <wsdl:message name="loginRequest">
      <wsdl:part name="username" type="soapenc:string" />
      <wsdl:part name="password" type="soapenc:string" />
      <wsdl:part name="options" type="impl:ArrayOfNamedValue" />
      <wsdl:part name="userAttributes" type="impl:ArrayOfAttributeRequest" />
    </wsdl:message>When I assign only username and password (and do not assign other 2 parameters)
    a runtime error occurs...
    Another example.
    When I want to create folder I write:
         NamedValue[] folderDef = newNamedValueArray (
         new Object[][]
              { Attributes.NAME,          folderName   },
              { Attributes.DESCRIPTION,     folderDesc   }
         Item folder = FM.createFolder (workspace.getId(), folderDef, null);But how can I pass that array of arrays "folderDef" as a Web Service parameter
    when invoking FileManager.wsdl directly from BPEL process ?
    Will you show me example, please ?
    Message was edited by:
    Z-User

    I was also looking for something like this..I did not get any response.
    Did you tried to add bpel:exec ? you can call OCS api in the java blockc within BPEL. I am using this and creating folder from BPEL.

  • Frustrated that using OJMS/AQ requires using direct AQ apis

    Well, I'm sure I could be mistaken, but I'm coming to the conclusion that in order to get a workable JMS implementation with OC4J 9.0.2, you have to use AQ (this is known), but what is a surprise to me is that I am unable to get a raw JMS consumer and producer working without coding specific usage of the AQ api on both ends. Note that I'm trying to have a consumer process that is a standalone Java process, whereas the producer will be in EJB session code.
    It appears to be a little easier if you're using MDBs, but I am not.
    In particular, there appears to be no way to get a QueueConnectionFactory using the standard JMS api. You have to use the "AQjmsFactory.getQueueConnectionFactory()" method.
    Once I got past that, I discovered that my normal JMS-compliant lookups through JNDI for the queue name were not working. It's entirely possible I'm using the wrong name, but I've tried several different variations. So, I plugged in the "AQjmsSession.getQueue()" method. Not only is this another AQ-specific API, but I now have to get this in a different order than I did when using JMS-specific APIs. That is, I now have to have a QueueSession before I can get the Queue, which I didn't have to do with the JNDI lookup.

    Vivek,
    I get the following error message (JMS Error: invalid arguments in call). If I remove the connection factories specification in the orion-ejb-jar.xml this error goes away but the application does not run.
    [c:/tools/OC4J_9.03/j2ee/home> java -jar oc4j.jar
    Auto-unpacking C:\tools\OC4J_9.03\j2ee\home\applications\chapter07.ear... done.
    Auto-unpacking C:\tools\OC4J_9.03\j2ee\home\applications\chapter07\chapter07-web
    .war... done.
    Auto-deploying chapter7 (Assembly had been updated)...
    Error deploying file:/C:/tools/OC4J_9.03/j2ee/home/applications/chapter07/chapte
    r07-ejb.jar homes: JMS Error: invalid arguments in call
    Auto-deploying file:/C:/tools/OC4J_9.03/j2ee/home/applications/chapter07/chapter
    07-web/ (Assembly had been updated)...
    Oracle9iAS (9.0.3.0.0) Containers for J2EE initialized
    [c:/tools/OC4J_9.03/j2ee/home>
    Here are my configuration files:
    =======================> orion-ejb-jar.xml <==================================
    <orion-ejb-jar>
       <enterprise-beans>
       <message-driven-deployment name="ProcessApprovalMessageBean"
         destination-location="java:comp/resource/ojms/Topics/AQ_ADM.PROCESSTOPIC_Q"
         connection-factory-location="java:comp/resource/ojms/TopicConnectionFactories/theTopicConnectionFactory"
         subscription-name="topicSubscriber" >
        <resource-ref-mapping name="jms/emailMessageQueue"
            location="java:comp/resource/ojms/Queues/AQ_ADM.EMAILQUEUE_Q" />
        <resource-ref-mapping name="jms/emailMessageQueueConnectionFactory"
            location="java:comp/resource/ojms/QueueConnectionFactories/theQueueConnectionFactory" />
       </message-driven-deployment>
       <message-driven-deployment name="EmailMessageBean"
         destination-location="java:comp/resource/ojms/Queues/AQ_ADM.EMAILQUEUE_Q"
         connection-factory-location="java:comp/resource/ojms/QueueConnectionFactories/theQueueConnectionFactory">
       </message-driven-deployment>
       </enterprise-beans>
       <assembly-descriptor>
          <default-method-access>
             <security-role-mapping name="&lt;default-ejb-caller-role&gt;" impliesAll="true"/>
          </default-method-access>
       </assembly-descriptor>
    </orion-ejb-jar>
    =======================> ejb-jar.xml <==============================================
    <ejb-jar>
       <enterprise-beans>
         <message-driven>
             <description></description>
             <ejb-name>ProcessApprovalMessageBean</ejb-name>
             <ejb-class>purchase.ejb.mdb.ProcessApprovalMessageBean</ejb-class>
             <transaction-type>Container</transaction-type>
             <message-driven-destination>
               <destination-type>javax.jms.Topic</destination-type>
               <subscription-durability>Durable</subscription-durability>
             </message-driven-destination>
             <resource-ref>
                <description>The topic for EmailMessage</description>
                <res-ref-name>jms/emailMessageQueue</res-ref-name>
                <res-type>javax.jms.Queue</res-type>
                <res-auth>Container</res-auth>
             </resource-ref>
             <resource-ref>
                <description>The Factory used </description>
                <res-ref-name>jms/emailMessageQueueConnectionFactory</res-ref-name>
                <res-type>javax.jms.QueueConnectionFactory</res-type>
                <res-auth>Container</res-auth>
              </resource-ref>
         </message-driven>
         <message-driven>
          <description>EmailMessageBean</description>
             <ejb-name>EmailMessageBean</ejb-name>
             <ejb-class>purchase.ejb.mdb.EmailMessageBean</ejb-class>
             <transaction-type>Container</transaction-type>
             <message-driven-destination>
               <destination-type>javax.jms.Queue</destination-type>
             </message-driven-destination>
          </message-driven>
       </enterprise-beans>
    </ejb-jar>
    ============================> resource provider in application.xml <=======================
    <resource-provider
          class="oracle.jms.OjmsContext"
          name="ojms">
           <description>
              Oralce JMS resource provider.
           </description>
           <property name="url"
           value="jdbc:oracle:thin:@hostname:1521:sid"/>
           <property name="username" value="user"/>
           <property name="password" value="password"/>
        </resource-provider>
    ======================> end of configuration file changes <========================
    Is this the only thing I need to do?
    thanks
    Mathew                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • DMS API

    Hi,
    I was just going through the Dynamic Monitoring Service provided by Oracle9ias. I am having a few doubts.
    Can I access the DMS Metrics from my application(e.g servlet)?If so, How? I need this since I want to display some of the DMS metrics from my application.
    Is the javadoc available for the DMS API? Is there a detailed document that explains the usage of the DMS API.
    Regards,
    jagannath

    I am also interested in this topic. I have done a little research on DMS and have not found anything conclusive.
    I might've missed a whitepaper but, if anyone knows, please kindly direct me towards the proper direction.
    Thanks,
    Maxime

Maybe you are looking for

  • How do I obtain data from a web site???

    I am trying to use information from a sports stats page to automate scoring on a fantasy football site I am developing. After a game the weeks games have completed, I want to be able to extract the data, passing yards, passing TD's, etc. I can pull i

  • Making a trivia game.

    I was looking at making a sports trivia java game. I want to make it so it starts with 20 seconds and goes down and the faster you answer it the seconds left equals how many points you get. Does anyone have any left over code or a similar style of ga

  • Changing Query Component's criteria items at runtime

    Hi All, As per my requirement i am changing query component's criteria items on some user input. So initially there were 9 components on query panel form and after user input it will become 7. I programatically used to set this two component's UI Hin

  • OPENING A NEW BROWSER TAB/WINDOW WITHOUT NAVIGATING TO IT

    Hello there, I am using flex navigateToUrl( urlRequest, "_blank"); function to open a new browser window. What it does is it also navigates to newly opened window by default. I want to remain in the same page, but still open this new window without f

  • Lock/power button doesn't work and phone tries to turn itself off

    So this morning i woke up and for some reason my power/lock button on my iphone 4s doesn't work, but that's not the biggest problem because there are work around's. the real weird thing is that now my phone just decides its going to shut down. It wil