Connecting and Receiving Inspection Data within Oracle EBS Quality Plans

Community,
This is my first post, so any guidance or direction would be greatly appreciated....
We are a medical device manufacturing looking to connect to our inspection equipment like CMM and Microvus. We would like to have the inspection data flow into Quality plans directly from them and then provide SPC.
Can anyone talk about how they connected or even if they have done this? Would truly appreciate the help and guidance.
Thanks,
David

Hi Ahmed,
In our case the ODI agent wasn't running correctly, after restarting it everything worked fine..
Marc

Similar Messages

  • Processes within Oracle EBS.

    Dear All,
    I just want to know how many processes are defined inbuilt within Oracle EBS.
    Processes like for eg. Procure to Pay, Order to Invoice, etc.
    And hence the details about each Process.
    Also From where i can find this information. Please help as this is very urgent.
    Regards
    Hitesh Parsawala

    Hi Hitesh,
    The scope of your question is very broad, and it is unlikely that you will be able to get a comprehensive answer on the forums. You will be better served by reviewing the user and implementation guides for the modules in which you are interested. You don't mention which version of EBS you're using, but here's a link to the latest documentation for Release 12.1: http://download.oracle.com/docs/cd/B53825_05/current/html/docset.html
    Regards,
    John P.
    http://only4left.jpiwowar.com

  • Simple Examples of data connectivity and transfer of data from an .asp.vb to javascript in an .aspx file

    What forum might be useful in solving this issue:
    Simple Examples of data connectivity and transfer of data from an .asp.vb to javascript in an .aspx file

    They'll help you here in the Microsoft ASP.net forums.
    http://forums.asp.net/
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Defining and Viewing BLOB Data in Oracle Application Express 3.2

    Hello All,
    There is a nice tutorial for working with images in Application Express 3.1 entitled "Defining and Viewing BLOB Data in Oracle Application Express 3.1". I have 3.2 and I am finding that I can't follow this tutorial... Is there any similar how to for 3.2?
    Thank you,
    Daniel

    Hi,
    I have just gone through the first steps in my OTN workspace app, and I do get the Implementation option (showing Interactive or Classic). In fact, my page at this point matches exactly the image shown in the tutorial.
    My OTN workspace app uses Apex version 3.2. The Interactive reports are relatively new, so older versions of Apex would not have this option. But you say that you are using version 3.2? If you just try to create a report page on, say, EMP, do you get the option to select Interactive or Classic?
    Andy

  • How to audit and audit features available in Oracle EBS

    Any one can help me how to audit and audit features available in Oracle EBS.
    Message was edited by:
    user470228

    - Set 'Sign-On: Audit Level' profile option to Form (Default is None)
    You can monitor the users in the System Administrator responsibility, navigate to Security > User > Monitor form

  • Send and receive UDP data package based on siemens TC65 module

    Everyone:
    I am newer for J2ME. I have a TC65 module, I want to get a sending and receiving UDP data package exeample codes running on TC65. who can help me? thanks!

    Hi deepspace,
    I programmed a demo codes and run it on TC65T, debug trace like :
    at^sjra=a:/NetDemo.jar
    OK
    NetDemo: Constructor
    NetDemo: startApp
    NetDemo: Profile could not be activated
    NetDemo: destroyApp(true)
    // below is demo codes, can you help me where error is?
    package example.netdemo;
    import javax.microedition.midlet.*;
    import java.io.*;
    import javax.microedition.io.*;
    import javax.microedition.io.Datagram;
    import javax.microedition.io.DatagramConnection;
    public class NetDemo extends MIDlet {
    public NetDemo()
    System.out.println("NetDemo: Constructor");
    public void startApp() throws MIDletStateChangeException
    System.out.println("NetDemo: startApp");
    try
    DatagramConnection conn = (DatagramConnection) Connector.open("datagram://58.185.157.91:12003");
    byte[] buffer = new byte[32];
    Datagram dgram = conn.newDatagram(buffer, buffer.length);
    for (int i = 0; i < 30; i++) {
    buffer[i] = (byte)('0' + (i % 10));
    conn.send(dgram);
    catch (Exception e)
    System.out.println("NetDemo: " + e.getMessage());
    destroyApp(true);
    public void pauseApp() {
    System.out.println("NetDemo: pauseApp()");
    public void destroyApp(boolean cond) {
    System.out.println("NetDemo: destroyApp(" + cond + ")");
    notifyDestroyed();
    }

  • Trying to login to Adobe Connect and receive the message that your account has expired.

    Trying to login to Adobe Connect and receive the message that your account has expired.

    Hi,
    The tenure of your account must have expired. You can contact Adobe Connect Support to extend your account's life.
    Thanks
    Sameer Puri

  • Posting to a URL connection and receiving a response...please help!

    Ok, here's the deal. Im trying to connect to a site, submit my username and password, and then retrieve the HTML source code for the page after I'm logged in so I can parse it and further manipulate it. So far, I'm establishing a connection and posting the info I want, but when I print the DataInputStream at the end, I keep getting the source code for the log in page, not the page after I'm logged in...so I'm guessing I'm not really getting logged in at all. I put my code below, please tell me whats wrong!! I really appriciate any help you can offer.
    -DFG
    import java.net.*;
    import java.io.*;
    import java.lang.String.*;
    public class URLReader {
    public static void main(String[] args) {
    try {
    URL url;
    URLConnection urlConn;
    DataOutputStream printout;
    DataInputStream input;
    url = new URL ("www.someURL.com");
    urlConn = url.openConnection();
    urlConn.setDoInput (true);
    urlConn.setDoOutput (true);
    urlConn.setUseCaches (false);
    urlConn.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
    printout = new DataOutputStream (urlConn.getOutputStream ());
    String content = "userid=" + URLEncoder.encode("username") +"&pass=" + URLEncoder.encode("password");
    printout.writeBytes(content);
    printout.flush();
    printout.close();
    input = new DataInputStream (urlConn.getInputStream ());
    String str;
    while (null != ((str=input.readLine()))) {
    System.out.println (str);
    input.close();
    catch(MalformedURLException mue) {
    System.out.println("exception");
    catch(IOException ioe) {
    System.out.println("exception");
    catch(Exception e) {
    System.out.println("exception");
    }

    Suppose the target website has the following pages:
    index.html (contains username, password fields and posts to login.html)
    login.html (processes the logging and displays the secured data).
    You should be posting the username and password to login.html. If so, I suspect that the login page you are posting to is not receiving the username and password and is simply outputting the login form again. Is this what happens when you open the url in a web browser and attempt to login with no username and password?

  • How to add in ODBC connection and configuration for data connection

    Hello expert,
    on my computor, there is a oracle client for oracle 10g. now there is new oracle 11g installed , I want to create a ODBC connection to this new database. but when I create ODBC , I can't find server type for oracle 11g , there only has driver for oracle 10g. will you please tell me how to create ODBC for this new DB? will you please tell me where is the configuration file for data source on my computor?
    Many Thanks,

    918440 wrote:
    Hello expert,
    on my computor, there is a oracle client for oracle 10g. now there is new oracle 11g installed , I want to create a ODBC connection to this new database. but when I create ODBC , I can't find server type for oracle 11g , there only has driver for oracle 10g. will you please tell me how to create ODBC for this new DB? will you please tell me where is the configuration file for data source on my computor?
    Many Thanks,So, on this machine you have
    - Oracle 10g client (only), and in a seperate ORACLE_HOME
    - Oracle 11g rdbms
    First, the 10g client will connect quite well to the 11g database
    Second, the 11g database includes the basic client admin software, but the odbc drivers are not installed by default. You have to run OUI and choose 'custom' installation, then select 'windows components' from the list of available components.
    I've never wanted to install the odbc driver as part of the database installation. Only on remote client installations.
    What are you really trying to achieve?

  • How to pull data from oracle GL to planning

    Hi all
    Can one suggest me how to pull data from oracle GL in to hyperion planning(we are using hyperion planning 9.3 with limited licence for analytic services). i guess we can use HAL ..any thing else
    any help is appreciable
    regards
    M.V

    Hi
    I appreciate for your response. Yep you are exactly right it is data only, but I do have a problem these people have their licence of limited version of Essbase.
    Let me give you the information of their licence agreement.
    The licence for the hyperion planning- sytem9 programs includes a limited use license for both the hyperion Essbase- system 9 and hyperion Financial reporting - system 9 programs. Such limited use license means that the hyperion Essbase- system 9 and Hyperion financial reporting -system 9 programs may only be used to access data from the Hyperion planning -system 9 program.
    Specifically, the hyperion essbase- system 9 program cannot be used to create Essbase cubes that do not contain data used by the Hyperion planning- system 9 program and the Aggregate storage option component of the Hyperion Essbase - system 9 program may not be used.
    1) what it(licence agreement) really means - can you install Essbase, if not how can you create dimensions dynamically using planning.
    2) Is it possible without Essbase as far as I know its not possible
    3) are we going to face any issues with this licence.
    4) Is it possibe to pull data with planning
    I appreciate if any one resolve this issue
    regards
    M.V

  • How to reverse the end date on Oracle Standard Benefits plan for a employee

    Hi,
    We tried to end date a medical benefit plan for an employee but did it wrong. It should show end dated 31-JAN-2010 and then we wanted to add a new plan starting from '01-FEB-2010'. But we wrongly end-dated as on 31-DEC-2010.
    Can anyone help me to identifiy how to remove the wrong end date from the benefit plan for the employee..
    Regards
    Arun Kumar S Rathod

    If you are using life events, just backout the life event and the end-date will go away. then create a fresh life event and make necessary changes.

  • Connection string to insert data to Oracle DB

    Hay guys,
    Now I am facing the problem to insert data to the oracle db. I already connect the db to my netbeans service tag & also found the db & tables. But does not know how to insert, delete etc from my JSF pages. I send my JSF code. You guys tell me in which position in the code I will set the connection string, as well as the pattern of connection string. You guys found that I add a button name "show". I want that when I press the "show" button then the relative data will show in the corresponding textfield. I would like to mention that my database server ip is "192.168.56.2". And my netbeans installed pc's ip is "192.168.56.1". My oracle SID is "orcl", user name: "Asystem", Password: "abc123", and the table I want to access is "user_info". Please guys help me.....
    THE CODE OF MY JSF PAGE IS TO:
    <?xml version="1.0" encoding="UTF-8"?>
    <!--
    Document : Page1
    Created on : Feb 15, 2010, 10:33:41 PM
    Author : Taibur
    -->
    <jsp:root version="2.1" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
    <webuijsf:page id="page1">
    <webuijsf:html id="html1">
    <webuijsf:head id="head1">
    <webuijsf:link id="link1" url="/resources/stylesheet.css"/>
    </webuijsf:head>
    <webuijsf:body id="body1" style="-rave-layout: grid">
    <webuijsf:form id="form1">
    <webuijsf:textField id="textField1" style="left: 168px; top: 72px; position: absolute"/>
    <webuijsf:button actionExpression="#{Page1.button1_action}" id="button1"
    style="left: 239px; top: 264px; position: absolute; width: 96px" text="Show"/>
    <webuijsf:textField id="textField2" style="left: 168px; top: 96px; position: absolute"/>
    <webuijsf:textField id="textField6" style="left: 168px; top: 192px; position: absolute"/>
    <webuijsf:textField id="textField3" style="left: 168px; top: 120px; position: absolute"/>
    <webuijsf:textField id="textField4" style="left: 168px; top: 144px; position: absolute"/>
    <webuijsf:textField id="textField5" style="left: 168px; top: 168px; position: absolute"/>
    <webuijsf:textField id="textField7" style="left: 168px; top: 216px; position: absolute"/>
    </webuijsf:form>
    </webuijsf:body>
    </webuijsf:html>
    </webuijsf:page>
    </f:view>
    </jsp:root>

    im not sure if you can make a query directly from your jsf,
    but its a better practice to do that in your backing bean

  • ABAP proxy client sending to XI   and Receive the data back from the DB

    Hi
    I am new to XI need a clarification on the following scenario
    I have a scenarion where ABAP Proxy (Clinet) from ECC will be sending the data to Data base server via XI,  and needs to return the values back to ECC
    ECC -
    > XI/PI -
    > Remote server  (Database)
          <-- XI/PI <--
    Can anyone give idea how can I develop this scenario.
    I am sure I would be using the Proxy BADI to send the data from ECC to XI in Asyscrounous mode,
    Thanks
    PR

    Hi,
    As you said the data will be sent asynchronously from BAPI to XI which means you will have to split up the scenario into two.
    First One -
    Sender Proxy - XI - Receiver JDBC.
    Second -
    Sender JDBC - XI - Receiver Proxy.
    You can set a flag to"1" when you insert data into table. the run a query on the database which will fetch record whose flay is set to "1" and also simultaneously rest the flag to "0" to indicate that this record is already send to SAP.You can make use of stored procedures too.
    Please award points if the reply is useful.
    Regards,
    Pragati

  • Ethernet Connection and Receive Airtunes?

    Hi
    Here is my set up:
    - iMac connected wirelessly (g) to router
    - router connected by ethernet (via Homeplugs) to Apple TV
    My problem:
    I want to keep the ethernet connection to the Apple TV because syncing is quicker (I guess the distance between the router and the Apple TV is too long to be able to sync effectively wirelessly). However, I also want to be able to use the Apple TV as an airtunes speaker from my iMac. This doesn't seem to work. Is the fact that the ethernet cable is plugged into the back of the Apple TV stopping it from receiving the signal? Can I force the signal to go to the router and then down the ethernet cable?
    Any help appreciated.
    Thanks
    Spencer

    The problem is not the ethernet and wifi mix, you should be able to use the tv as airtunes speakers. I'd take a look at your network settings as a possible cause.

  • I can't access my kindle app on my iPad even though I am wifi connected and receiving emails.  I am visiting France, but it has worked here before.  Help, please!

    I can't access my kindle app on my iPad even though I am wifi connected.  Am visiting in France right now but was able to get in yesterday and can't today. Help, please.

    What operating system does your iMac have? (please always post your operating system to prevent confustion).
    If it's pre-Lion you will have to set Mail up manually:
    Entering iCloud email settings manually in Snow Leopard or Leopard
    Entering iCloud email settings manually in Tiger

Maybe you are looking for

  • Keynote Exports to iPod

    I have posteed this to Keynote Feedback, but maybe someone else has an answer: I'm not sure if this is a Keynote problem or an iPod problem, but when exporting a Keynote 08 with narration (either through GarageBand or iTunes), the final m4v file won'

  • Local storage is low but after i free up lots of space i still cannot install an app

    I have tried to install the Fifa 13 app on my ipod but keep getting a message saying there is not enough available local storage. I have deleted lots of other apps etc and my available storage is 4.1 GB but I still keep getting the same message when

  • Songs not transferring correctly

    I got a new computer and in order to transfer the songs from my ipod to that computer i had to deauthorize any other devices linked with that ipod.when i plugged in my ipod and clicked "transfer purchases", nothing showed up in my library.. i tried s

  • Getting error "IntelliSense: cannot open source file "Environ.h"

    Hi, I have a VC++ project which adds tool bar to arobat reader. But when i build this project using VS 2010 it's giving a error "IntelliSense: cannot open source file "Environ.h" and some other header files. Please suggest me to resolve this issue. T

  • Mod_ssl and accelerator cards

    As anyone configured mod_ssl to work with accelerator cards? We are using 9iAS on Sun Solaris and wish to use an accelrator card for SSL key manipulation. A question for Oracle, if we replace the provided mod_ssl binary with one we have compiled from