OPC -- Labview interface. What kind of structure is good?

Hello,
My target is build interface between OPC and Labview. Main functions of interface is: unit conversion, signal filtering, signal status generation etc. Because there is at least 300 OPC-tags configuration should be easy as possible. Measurement scales and other parametric information are read from .csv file. So there is two different inputs  shared variables (OPC) and .csv file. Output information is one cluster in shared variable.
I tryed to program structure which generate a new case if there is a new tag. I used enum control and case-structure.  This works almost okay but still I have major problems. If I change order of tags (in .csv file) I have to program almost all cases again. Every tag  must be fully configurable. E.g sometimes you can read measurement scales from OPC and sometimes from .csv file. So that was the reason why I tested case structure. I think that because every tag is different they need own case. When this interface is running these tags are updated e.g. at 1s intervals.
Does anyone have any idea how to build this kind of interface ?         

what kind of a score is a good score for a
or a fresher who has taken the SCJP exam?
Is scoring 59% ok, or is it really not worth
mentioning?Given that with my career plan I wouldn't even
mention an SCJP at all, I think 59% is a pretty low
rate. Frankly, I didn't expect that someone passes at
that level. (I'm used to tests where you fail if you
don't reach 80%)Passing score for SCJP 1.4 is 52% (half + 1 question). I too was surprised it is that low.
Luckily the passing score for SCJD is a lot higher (85% I think).

Similar Messages

  • SCXI-1125: what kind of A/D Converter structure?

    Hello,
    Im a student and actually Im writing my diploma thesis.
    For this I need some information about the SCXI-1125.
    What kind of structure does the A/D Converter have?
    What is the resolution of the 1125?
    How many Bits does it have?
    What ist the accuracy of the CJC sensor?
    All other additional information about tht 1125 could be helpfully, so kindly help.
    Best regards
    Christian

    Hello Christain,
    The SCXI 11125 user manual that you shall find here should help you
    Mind you, SCXI 1125 is only a signal conditioning module
    You need to interface it to a suitable DAQ card for any A/D conversion and that DAQ card's A/D architecture, resolution etc shall be your determining factors
    Regards,
    Dev

  • What kind of Seriliziation? or Diffirent than

    Hello friends,
    I am working at java app. that makes exam user on computer in network lab. so, the server needs to distribute questions and answers to clients.
    My question is what kind of structure that I use?
    Two way comes to my mind.
    First,
    Xml structure;
    <Q1>
    <Id>1</Id>
    <Question>what is your name?</Question>
    <Choice1>a</Choice1>
    <Choice2>b/Choice2>
    <Answer>a</Answer>
    </Q1>
    Second,
    class structure;
    public class Exam extends Seriliazable {
    int Id;
    String[] Question;
    String[] Answers;
    String[][] Choice;
    Which one is better or is there better one?

    Doesn't matter that much if you have control of both ends and both ends are written in Java. Xml is the right choice if you want to implement clients in other languages.
    Kaj

  • What kind of sad compatible with my 2007 iMac 7.1?

    Recently, my beloved treasure imac 24inch 2007 7.1 begin to running a little bit slow, I was thinking about to upgade it to a ssd, since my brother got a new macbook retina 512 ssd, i want to match it up a little bit.
    I was googling a bit, it seems someone already done it, but hte video is quiet old, i am not sure what kind of hard drive they used.
    do you guys know what kind of brand is good, with reasonable price?

    If I were doing it, I'd definitly use these...
    http://eshop.macsales.com/shop/SSD/OWC/?APC=XLR8YourMac09

  • What kind of computer do I need for Premiere and AE CS5.5?

    Hello everyone,
    I want to build a strong computer that will be able to work fluently with full-HD layers in Premiere and After Effects CS5.5, and Avid Media Composer 5.5.
    My budget is around 1800-2000$ while I don't need any other hardware.
    I'll be very happy for any kind of advise.
    Thank you very much!

    The reason for the question is the upcoming SB-E CPU, but that is outside your budget.
    Look at Benchmark Results to see what kind of systems are good for editing. Also press the Overview button at the top of the forum page and read the articles listed under the FAQ section.

  • What kind of joystick are supported by labview 7.0?

    Dear all,
    I'm going to use a USB 3D joystick (very normal one, which people used
    to ues it to play game) to control a 3D XYZ stage movement.
    now I'm caring what kind of 3D joystickk works in Labview 7.0? need any special joystick?
    thank you very mcuh
    Wei

    weichengatech,
    I've looked into the specifics of the using a joystick and found a very good article that I think will point you in the right direction. Check out the knowledge base titled Can I Monitor a Joystick or Gamepad in LabVIEW 7.x? Basically, the vi's can be used with the USB HID (Human Interface Device) class of hardware. Please post if you have questions.
    Best Regards,
    Chris C
    Applications Engineering
    National Instruments
    Chris Cilino
    National Instruments
    LabVIEW Product Marketing Manager
    Certified LabVIEW Architect

  • What kind of function(s) (in dlls) have to be call by a Labview application to be able to manage the PC's power supply

    Assume that a Labview application is running on a PC. The PC has a DC battery. When a "power off" is detected on the AC line, data should be saved, Labview application and Windows should be closed.
    What kind of function(s) (of which dll) should be called by a Labview application to realize this data and system management in a safe manner ?

    UPS (Uninterrupted Power Supply) systems can send messages to the PC through the serial port when the AC is lost and when battery is low. I'm not sure how this message is sent but I suspect they use Windows Messaging. If you could find this out, you could write your vi to constantly look for this message and shutdown when it sees the message.
    - tbob
    Inventor of the WORM Global

  • What kind of data structure should I use?

    I have a user input dialog basically like following which need user input the sample number to specifiy each file belongs to which sample:
    user input the sample number in the following dialog:
    file name             sample
    test 1                  1
    test2                   2
    test3                   1
    test4                   2In another words, each sample could include multiple files, each file has a column of data. I tried to get
    a data structure which specifies the sample and file relationship, to get an idea of what kind of files are in
    one sample. I tried to use hashmap or hashtable, but they ask the key must be unique. What I need is to get the sample data structure for the later data processing.
    thanks in advance!

    You could make a Sample object, which creates a List of file names. Then put SampleNumber and SampleObject into a Map...
      class Sample {
        java.util.List fileNames;
        Sample()
        {  fileNames = java.util.ArrayList(5); }
        addFile(String fName)
        { fileNames.add(fName); }
        String[] getFileNames()
          String[] names = new String[fileNames.size()];
          for (int a = 0; a < names.length; a++)
          { names[a] = fileNames.get(a).toString(); }
          return names;
      Map samples = new HashMap();
      Sample samp1 = new Sample();
      samp1.addFile("Test1"); samp1.addFile("Test3");
      Sample samp2 = new Sample();
      samp2.addFile("Test2"); samp2.addFile("Test4");
      samples.add("1", samp1);
      samples.add("2", samp2);
      String selected = //String user selects...
      Sample sampNeeded = (Sample)samples.get(selected);
      String[] files = sampNeeded.getFileNames();

  • What kind of FIR filter in Labview SignalExpress Tektronix Edition?

    I am using FIR filter in Labview SignalExpress Tektronix Edition to process signal acquired from the TDS3032B.But i dont know what kind of this filter(Window,least-squares,or equiripple...).Does any one know about this?

    Check out some of NIs links:
    Virtual Instrumentation Empowers Digital Signal Processing Design
    http://zone.ni.com/devzone/cda/tut/p/id/4759
    Designing Filters Using the NI LabVIEW Digital Filter Design Toolkit
    http://zone.ni.com/devzone/cda/tut/p/id/3237
    lots of information about different FIR can be found by searching on google as well.
    National Instruments

  • Adaptation of LIFA (LabVIEW Interface For Arduino) to other Arduino compatible boards

    Hello evryone,
     I am trying to use a ''Sakura board", which is an Arduino compatible board, having similar programming as Arduino. This board is manufactured by Renesas; more specifications on it can be found on the following link: http://sakuraboard.net/gr-sakura_en.html
    What I would like to know, is if the firmware used for LIFA to interface Arduino with labview, or the ChipKit firmaware, can be used to this kind of Arduino compatible boards.
    My aim, is to use the Sakura Board for acquiring signals from various pins(Be it digital or analog), and setting other pins (Digital) parralelly, using labVIEW, as this is done using LIFA, or LabVIEW interface for ChiKit!!
    Thanks in advance for your support.

    I haven't had any experience with the Sakura board, so can only go on the information on the website.
    I've used the Arduino LabVIEW interface previously, and it basically uses serial communications between the PC and the Arduino. This serial interface is provided by the on-board USB-serial converter (an ATMega8u2 running custom firmware).
    From what I can tell about the Sakura, it appears as a storage device when plugging into a PC, and doesn't seem to have a USB to serial converter. If this is the case, then the LIFA toolkit won't work. That said, my understanding of the Sakura board may be incorrect (for example I'm unsure what operation modes the slide switch changes between). If you can confirm it has a USB-serial port then LIFA may work. I guess the key thing is that the serial port is required.
    You may be able to use a software serial port (http://arduino.cc/en/Reference/SoftwareSerial) on the Sakura to communicate with a PC, though that would require a PC with a serial port, or an external USB-serial converter. This approach would also require you to modify the LIFA arduino code (located in vi.lib\LabVIEW Interface for Arduino\Firmware\LIFA_Base) to reference the software serial port. It's probably a long shot that this will work, as the software serial library has been written for AVR chips, making use of their specific internal timers.

  • What kind of design pattern is this?

    Hi ,
    I am just learning the designpattern. So when I went through different kinds of design pattern, I got some doubts as it looks same some design patterns. could anybody please tell what kind of design pattern is the following one?
    public interface IExporter{
         void export();
    public class ExcelExporter implements IExporter{
    public void export(){
    //TODO implementation
    public class CVSExporter implements IExporter{
    public void export(){
    //TODO implementation
    }thanks in advance..

    Well - in structure, it is nearest to the Command pattern as far as I can tellOr Strategy. Or Builder. Several design pattenrs may share the same class structure, the difference is in the context, forces, and the parts one want to be flexible. And if someone wants to make it explicit which pattern is applied, they should name things accordingly.
    As Saish said this example shows little more that inheritance at work. Not a pattern in itself, but a core element of the language. Trying to "identify" a pattern that is not obvious from the context is either:
    - a sign that the original coder completely missed the point of using a pattern (which is, as Saish said too, assentially about communication)
    - a sign that the maintenance coder is looking for patterns where there aren't
    - an exercise question
    but it differs in so much as its motivation is to polymorphically allow the use of different exporters rather than provide a set of action commands.That shouldn't count as a difference, merely as an "application" (it's perfectly valid to have a hierarchy of commands all devoted to exporting, although, as stated, if the original coder applied the Command pattern, he should have made it explicit, by renaming the interface, e.g. to ExportCommand).

  • 'what kind of error 'plzzz help

    hi all
    plz check the following code and error which it is givn 2 me. how shld i rectify it? not able to get what kind of error it is.
    *& Report  ZNBS_FI_FS10N
    REPORT  ZPRAC_FI_VENDORSTATEMENT.
    Report Title          : Display Line item balances for VENDORs with opening balances
    Functional Consultant : Mr ShreeHari
    ABAPER                : Sanjay K, NBS
    TYPE-POOLS slis.
    DATA   :   fcat               TYPE slis_t_fieldcat_alv WITH HEADER LINE,
               ls_event               TYPE slis_alv_event,
               repid                  LIKE sy-repid.
    DATA   :   b_layout               TYPE slis_layout_alv.
    DATA   :   gt_events              TYPE slis_t_event WITH HEADER LINE.
    DATA   :   lt_list_commentary     TYPE slis_t_listheader,
               l_logo                 TYPE w3_qvalue.
    TABLES : BSAK, ska1, bsis, bkpf, thead, t003, t003t, LFA1, skat.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS pbukrs FOR bsis-bukrs default '1000'.
    SELECT-OPTIONS pLIFNR FOR LFA1-LIFNR  default '410028'.
    SELECT-OPTIONS pbudat FOR bsis-budat OBLIGATORY default '20060401' to '20061219'.
    SELECTION-SCREEN END OF BLOCK b1.
    DATA : BEGIN OF itab OCCURS 0,
           belnr LIKE bsis-belnr,
           bukrs LIKE bsis-bukrs,
           gjahr LIKE bsis-gjahr,
           blart LIKE bkpf-blart,
           bldat LIKE bkpf-bldat,
           budat LIKE bkpf-budat,
           LIFNR LIKE LFA1-LIFNR,
           dmbtr LIKE BSAK-dmbtr,
           wrbtr LIKE BSAK-wrbtr,
           shkzg LIKE BSAK-shkzg,
           ltext LIKE t003t-ltext,
           END OF itab.
    DATA TEXT(60). " LIKE t003t-ltext.
    DATA jtab LIKE itab OCCURS 0 WITH HEADER LINE.
    DATA : BEGIN OF final OCCURS 0,
            belnr LIKE bsis-belnr,
           bukrs LIKE bsis-bukrs,
           gjahr LIKE bsis-gjahr,
           blart LIKE bkpf-blart,
           bldat LIKE bkpf-bldat,
           budat LIKE bkpf-budat,
           LIFNR LIKE LFA1-LIFNR,
           debit LIKE BSAK-dmbtr,
           credit LIKE BSAK-wrbtr,
           shkzg LIKE BSAK-shkzg,
           balance LIKE BSAK-dmbtr,
           ltext LIKE t003t-ltext,
           END OF final.
      DATA : BEGIN OF output OCCURS 0,
             belnr LIKE bsis-belnr,
             bukrs LIKE bsis-bukrs,
             gjahr LIKE bsis-gjahr,
             blart LIKE bkpf-blart,
             bldat LIKE bkpf-bldat,
             budat LIKE bkpf-budat,
             LIFNR LIKE LFA1-LIFNR,
             ddebit LIKE BSAK-dmbtr,
             ccredit LIKE BSAK-wrbtr,
             shkzg LIKE BSAK-shkzg,
             balance LIKE BSAK-dmbtr,
             ltext LIKE t003t-ltext,
             hkont LIKE bsis-hkont,
             bschl LIKE bsis-bschl,
             TXT50 LIKE SKAT-TXT50,
             END OF output.
    ********FOR OPENING BALANCE.
    DATA : BEGIN OF open OCCURS 0,
           wrbtr LIKE BSAK-wrbtr,
           dmbtr LIKE BSAK-dmbtr,
           bukrs LIKE BSAK-bukrs,
           shkzg LIKE BSAK-shkzg,
           END OF open.
    DATA clear LIKE open OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF bal OCCURS 0,
          dbal LIKE bsis-wrbtr,
          cbal LIKE bsis-dmbtr,
          shkzg LIKE bsis-shkzg,
          END OF bal.
    DATA date TYPE sy-datum.
    MOVE pbudat-low TO date.
    date = date - 1.
    DATA: BEGIN OF balance OCCURS 0,
          debit LIKE bsis-wrbtr,
          credit LIKE bsis-dmbtr,
          total LIKE bsis-dmbtr,
          END OF balance.
    DATA : BEGIN OF line OCCURS 0,
           belnr LIKE bsis-belnr,
           dmbtr LIKE bsis-dmbtr,
           wrbtr LIKE bsis-wrbtr,
           hkont LIKE bsis-hkont,
           gjahr LIKE bsis-gjahr,
           bukrs LIKE bsis-bukrs,
           shkzg LIKE bsis-shkzg,
           budat LIKE bsis-budat,
           blart LIKE bsis-blart,
           bschl LIKE bsis-bschl,
           TXT50 like skat-txt50,
           END OF line.
    TOP-OF-PAGE.
      PERFORM top_of_page.
    START-OF-SELECTION.
    *perform integrate.
      PERFORM fetch.
      PERFORM build_catalog.
      PERFORM layout.
    END-OF-SELECTION.
      PERFORM display .
    *&      Form  Fetch
          text
    -->  p1        text
    <--  p2        text
    FORM fetch .
      SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF open WHERE bukrs IN pbukrs AND budat LE date  AND LIFNR IN pLIFNR.
        COLLECT open.
      ENDSELECT.
      SELECT * FROM BSAK INTO CORRESPONDING FIELDS OF clear WHERE bukrs IN pbukrs AND budat LE date AND LIFNR IN pLIFNR.
        COLLECT clear.
      ENDSELECT.
      LOOP AT open.
        MOVE : open-dmbtr TO bal-dbal,
               open-wrbtr TO bal-cbal,
               open-shkzg TO bal-shkzg.
        IF open-shkzg = 'H'.
          open-dmbtr = open-dmbtr * -1.
          open-wrbtr = open-wrbtr * -1.
        ENDIF.
        COLLECT bal.
      ENDLOOP.
      LOOP AT clear.
        MOVE : clear-dmbtr TO bal-dbal,
               clear-wrbtr TO bal-cbal,
               clear-shkzg TO bal-shkzg.
        IF clear-shkzg = 'H'.
          clear-dmbtr = clear-dmbtr * -1.
          clear-wrbtr = clear-wrbtr * -1.
        ENDIF.
        COLLECT bal.
      ENDLOOP.
      CLEAR bal.
      LOOP AT bal.
        IF bal-shkzg = 'H'.
          MOVE  : bal-dbal TO balance-debit.
          CLEAR bal-dbal.
        ELSE.
          MOVE        bal-cbal TO balance-credit.
          CLEAR bal-cbal.
        ENDIF.
        COLLECT balance.
        CLEAR balance.
      ENDLOOP.
    ********FOR LINE ITEMS
      SELECT * FROM bkpf INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN pbukrs AND budat IN pbudat .
        SELECT * FROM BSAK INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN
        pbukrs  AND belnr = itab-belnr AND gjahr = itab-gjahr.
          IF itab-shkzg = 'H'.
            itab-dmbtr = itab-dmbtr * -1.
            itab-wrbtr = itab-wrbtr * -1.
          ENDIF.
          SELECT ltext FROM t003t INTO itab-ltext WHERE spras = 'EN' AND blart = itab-blart.
            APPEND itab.
          ENDSELECT.
        ENDSELECT.
      ENDSELECT.
      SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN pbukrs AND budat IN pbudat AND LIFNR IN pLIFNR.
        IF itab-shkzg = 'H'.
          itab-dmbtr = itab-dmbtr * -1.
          itab-wrbtr = itab-wrbtr * -1.
        ENDIF.
        SELECT ltext FROM t003t INTO itab-ltext WHERE spras = 'EN' AND blart = itab-blart.
          APPEND itab.
        ENDSELECT.
      ENDSELECT.
      DELETE itab WHERE LIFNR NOT IN pLIFNR.
    <b>Error: <%_L002> IS NOT AN INTRNAL TABLE-THE OCCURS SPECIFICATION IS MISSING)</b></b>
    error at delete statement.
    its urgent.
    thanks all in advance.
    appropriate reward will b given.

    hi gaurav,
    u created internal table itab with out header line and u r trying to delete it from internal body itself which isn't possible.
    so do like this,
    create workarea [wa_itab] of same structure of itab [internal table] and give delete statement as
    delete wa_itab from itab where condition.
    if helpful reward some points.
    with regards,
    suresh babu aluri.

  • How to know what kind of product is installed

    I need to know what kind of product is installed in a machine.
    Is it Oracle Business Intelligence Suite Enterprise Edition ?
    The following is the output of opatch lsinventory -details:
    Result:
    PRODUCT NAME VERSION
    ============ =======
    ADF Business Components Config Assistant for agent 10.1.2.0.2
    ADF Business Components Config Assistant 10.1.2.0.2
    ADF Business Components Runtime for OracleAS 10.1.2.0.2
    ADF Business Components Runtime Library 10.1.2.0.2
    Advanced Queueing (AQ) API Patch 10.1.0.4.2
    Advanced Queueing (AQ) API 10.1.0.2.0
    Agent Required Support Files Patch 10.1.0.4.2
    Agent Required Support Files 10.1.0.2.0
    Apache Configuration for Oracle Java Server Pages 10.1.2.0.0
    Apache Module for Oracle Distributed Authoring and Versioning 10.1.2.1.0
    Assistant Common Files Patch 10.1.0.4.2
    Assistant Common Files 10.1.0.2.0
    Authentication and Encryption Patch 10.1.0.4.2
    Authentication and Encryption 10.1.0.2.0
    Bali Resource Translation System 2.0.6.0.0
    Bali Share 1.1.18.0.0
    Character Set Migration Utility Patch 10.1.0.4.2
    Character Set Migration Utility 10.1.0.2.0
    Database SQL Scripts Patch 10.1.0.4.2
    Database SQL Scripts 10.1.0.2.0
    DataDirect Connect JDBC Drivers 10.1.2.0.2
    DBJAVA Required Support Files Patch 10.1.0.4.2
    DBJAVA Required Support Files 10.1.0.2.0
    Development Environment Layer 10.1.2.0.2
    Discoverer Libraries 10.1.2.1.0
    Discoverer Management Plugin 10.1.2.1.0
    Discoverer Services 10.1.2.1.0
    Discoverer Servlets 10.1.2.1.0
    Discoverer Shared Components 10.1.2.0.0
    Documentation Required Support Files 10.1.0.3.0
    Enterprise Manager Agent for OracleAS 10.0.2.0.1
    Enterprise Manager Agent 10.1.0.4.2
    Enterprise Manager Common Files 10.1.2.0.1
    Enterprise Manager Minimal Integration 10.1.0.2.0
    Enterprise Manager plugin Common Files 10.1.0.2.0
    Enterprise Manager plugin Common Files 10.1.0.4.2
    Enterprise Manager Process Utility 10.0.2.0.1
    Export/Import 10.1.0.2.0
    Export/Import 10.1.0.4.2
    Extended Windowing Toolkit 3.3.18.0.0
    Forms Services Management Agent Plugin 10.1.2.0.2
    Forms Services Management UI Plugin 10.1.2.0.2
    HTTP Server Files 1.3.31.0.0
    Installation Common Files Patch 10.1.0.4.2
    Installation Common Files 10.1.0.2.0
    Installer SDK Component 10.1.0.4.0
    Integration Layer of GUI core 10.1.2.0.2
    Java Naming and Directory Interface Libraries 10.1.0.2.0
    Java Naming and Directory Interface Libraries 10.1.0.4.2
    Java Runtime Environment 1.4.2.0.4
    Java Security Configuration Assistant 10.1.2.0.2
    JDBC Common Files Patch 10.1.0.4.2
    JDBC Common Files 10.1.0.2.0
    JDBC/OCI Common Files for Instant Client Patch 10.1.0.4.2
    JDBC/OCI Common Files for Instant Client 10.1.0.2.0
    JDBC/OCI Common Files Patch 10.1.0.4.2
    JDBC/OCI Common Files 10.1.0.2.0
    LDAP Required Support Files 10.1.2.1.0
    MM-GUI Component 10.1.2.0.2
    Netca Configuration for Oracle Application Server 10.1.2.0.0
    Netca Patch 10.1.0.4.2
    New Database ID Patch 10.1.0.4.2
    New Database ID 10.1.0.2.0
    Object Type Translator Patch 10.1.0.4.2
    Object Type Translator 10.1.0.2.0
    OC4J for Oracle Enterprise Manager 10.0.2.0.1
    Oracle Advanced Security 10.1.0.2.0
    Oracle Apache Modules 10.1.2.1.0
    Oracle Application Server 10g 10.1.2.0.2
    Oracle Application Server Core Products 10.1.2.0.0
    Oracle Application Server Core to non-Core Upgrade 10.1.2.0.2
    Oracle Application Server Forms Services Configuration Assistant 10.1.2.0.2
    Oracle Application Server Forms Translations 10.1.2.0.2
    Oracle Application Server High availability components (BR, AFC, DR)10.1.2.1.0
    Oracle Application Server High availability components for midtier10.1.2.0.2
    Oracle Application Server Instance Dialog 10.1.2.0.2
    Oracle Application Server Instance 10.1.2.0.2
    Oracle Application Server Middle Tier Products 10.1.2.1.0
    Oracle Application Server Object in OID 10.1.2.0.2
    Oracle Application Server Reports Services Configuration Assistant10.1.2.0.2
    Oracle Application Server Repository API 10.1.2.0.2
    Oracle Application Server Single Sign On Registration 10.1.2.0.0
    Oracle Application Server UIX Configuration 2.2.20.0.0
    Oracle Application Server Upgrade Assistant 10.1.2.1.0
    Oracle Browser component 10.1.2.0.2
    Oracle Business Intelligence Beans (common files) 10.1.2.65.0
    Oracle Business Intelligence Beans (graph files) 10.1.2.65.0
    Oracle Client Required Support Files Patch 10.1.0.4.2
    Oracle Client Required Support Files 10.1.0.2.0
    Oracle Code Editor 1.2.1.0.0I
    Oracle Common Area 10.1.2.0.2
    Oracle Core Required Support Files 10.1.0.2.0
    Oracle Core Required Support Files 10.1.0.4.2
    Oracle Data Foundation Class 10.1.2.0.2
    Oracle Database User Interface 2.2.13.0.0
    Oracle Database Utilities Patch 10.1.0.4.2
    Oracle Database Utilities 10.1.0.2.0
    Oracle Delegated Administration Service 10.1.2.1.0
    Oracle Discoverer EUL Java Command Line for Java 10.1.2.1.0
    Oracle Display Fonts 10.1.2.0.0
    Oracle Distributed Configuration Management 10.1.2.1.0
    Oracle Distributed Software Assistant Client 10.1.2.0.2
    Oracle Distributed Software Assistant Common 10.1.2.0.2
    Oracle Distributed Software Assistant Server 10.1.2.0.2
    Oracle Distributed Software Assistant 10.1.2.0.2
    Oracle Dynamic Monitoring Service 10.1.2.1.0
    Oracle Dynamic Services Core 10.1.2.0.0
    Oracle Dynamic Services Midtier Common 10.1.2.0.0
    Oracle Dynamic Services Midtier 10.1.2.0.0
    Oracle Dynamic Services Server 10.1.2.0.0
    Oracle EM agent 10.1.2.0.1
    Oracle Enterprise Manager Application Server Control 10.0.2.0.1
    Oracle Extended Windowing Toolkit 3.4.38.0.0
    Oracle Forms BuildAPI 10.1.2.0.2
    Oracle Forms Compiler 10.1.2.0.2
    Oracle Forms Generic Online Help 10.1.2.0.2
    Oracle Forms Runtime Engine 10.1.2.0.2
    Oracle Forms Server Online Help 10.1.2.0.2
    Oracle Forms SQL component 10.1.2.0.2
    Oracle Forms 10.1.2.0.2
    Oracle Globalization Support Patch 10.1.0.4.2
    Oracle Globalization Support 10.1.0.2.0
    Oracle GUI Component 10.1.2.0.2
    Oracle Help For Java 4.2.6.1.0
    Oracle Help for the Web 2.0.8.0.0
    Oracle HTTP Server 10.1.2.1.0
    Oracle Ice Browser 5.2.3.6.0
    Oracle interMedia Java Advanced Imaging Patch 10.1.0.4.2
    Oracle interMedia Java Advanced Imaging Taglib 10.1.2.1.0
    Oracle interMedia Java Advanced Imaging 10.1.0.2.0
    Oracle interMedia Java Client Patch 10.1.0.4.2
    Oracle interMedia Java Client 10.1.0.2.0
    Oracle interMedia Java Media Framework Client 10.1.0.2.0
    Oracle Internet Directory Client Common Files 10.1.2.1.0
    Oracle Internet Directory Client 10.1.2.1.0
    Oracle Internet Directory Tools 10.1.2.1.0
    Oracle Java Object Cache 10.1.2.1.0
    Oracle Java Portal Development Kit 10.1.2.0.1
    Oracle Java Tools Patch 10.1.0.4.2
    Oracle Java Tools 10.1.0.2.0
    Oracle JDBC Thin Driver for JDK 1.1 10.1.0.2.0
    Oracle JDBC Thin Driver for JDK 1.2 Patch 10.1.0.4.2
    Oracle JDBC Thin Driver for JDK 1.2 10.1.0.2.0
    Oracle JDBC Thin Driver for JDK 1.4 for Instant Client Patch 10.1.0.4.2
    Oracle JDBC Thin Driver for JDK 1.4 for Instant Client 10.1.0.2.0
    Oracle JDBC Thin Driver for JDK 1.4 10.1.0.2.0
    Oracle JDBC Thin Driver for JDK 1.4 10.1.0.4.2
    Oracle JDBC/OCI Driver for JDK 1.1 10.1.0.2.0
    Oracle JDBC/OCI Driver for JDK 1.2 10.1.0.2.0
    Oracle JDBC/OCI Driver for JDK 1.4 10.1.0.2.0
    Oracle JDBC/OCI Interfaces 10.1.0.2.0
    Oracle JFC Extended Windowing Toolkit 4.2.33.0.0
    Oracle JInitiator 1.3.1.21.0
    Oracle Locale Builder Patch 10.1.0.4.2
    Oracle Locale Builder 10.1.0.2.0
    Oracle LogLoader 10.1.2.1.0
    Oracle Mod PL/SQL Gateway 10.1.2.0.0
    Oracle Net Configuration Assistant 10.1.0.2.0
    Oracle Net Listener Patch 10.1.0.4.2
    Oracle Net Listener 10.1.0.2.0
    Oracle Net Manager Patch 10.1.0.4.2
    Oracle Net Manager 10.1.0.3.0
    Oracle Net Patch 10.1.0.4.2
    Oracle Net Required Support Files Patch 10.1.0.4.2
    Oracle Net Required Support Files 10.1.0.2.0
    Oracle Network Utilities 10.1.0.2.0
    Oracle Net 10.1.0.2.0
    Oracle Notification Service 10.1.2.1.0
    Oracle OC4J Module 10.1.2.1.0
    Oracle OLAP Reports 10.1.2.60.0
    Oracle One-Off Patch Installer 10.1.0.4.0
    Oracle Portal Configuration Assistant 10.1.2.0.1
    Oracle Portal Documentation 10.1.2.0.1
    Oracle Portal Images 10.1.2.0.1
    Oracle Portal Midtier Components 10.1.2.0.1
    Oracle Portal Monitoring 10.1.2.0.1
    Oracle Portal NLS 10.1.2.0.1
    Oracle Portal Performance Reporting 10.1.2.0.1
    Oracle Portal Servlets 10.1.2.0.1
    Oracle Portal SQL Component 10.1.2.0.1
    Oracle Portal Util Scripts Component 10.1.2.0.1
    Oracle Portal 10.1.2.0.1
    Oracle Process Management Notification 10.1.2.1.0
    Oracle Property Inspector 4.1.21.0.0
    Oracle RAC Required Support Files Patch 10.1.0.4.2
    Oracle RAC Required Support Files-HAS Patch 10.1.0.4.2
    Oracle RAC Required Support Files-HAS 10.1.0.2.0
    Oracle RAC Required Support Files 10.1.0.2.0
    Oracle Reports Core 10.1.2.0.2
    Oracle Reports Server Doc 10.1.2.0.2
    Oracle SOAP Client files 2.2.0.0.2a
    Oracle SOAP Server 2.2.0.0.2a
    Oracle SQL Manager 10.1.2.0.2
    Oracle UIX 2.2.20.0.0
    Oracle Ultra Search Common Files Patch 10.1.0.4.2
    Oracle Ultra Search Common Files 10.1.0.3.0
    Oracle Ultra Search Extension for EM Agent 10.1.2.0.0
    Oracle Ultra Search Extension for EMD 10.1.2.0.0
    Oracle Ultra Search Middle-Tier Patch 10.1.0.4.2
    Oracle Ultra Search Middle-Tier 10.1.0.3.0
    Oracle Universal Installer 10.1.0.4.0
    Oracle Wallet Manager Patch 10.1.0.4.2
    Oracle Wallet Manager 10.1.0.2.0
    Oracle XML SQL Utility Patch 10.1.0.4.2
    Oracle XML SQL Utility 10.1.0.2.0
    Oracle10g Real Application Clusters Common Files Patch 10.1.0.4.2
    Oracle10g Real Application Clusters Common Files 10.1.0.2.0
    OracleAS Configuration for OC4J 10.1.2.1.0
    OracleAS Discoverer 10.1.2.0.0
    OracleAS J2EE 10.1.2.1.0
    OracleAS Mapviewer 10.1.2.1.0
    OracleAS Port Tunnel 10.1.2.1.0
    OracleAS Web Cache 10.1.2.1.0
    OracleAS Web Services 10.1.2.1.0
    OracleAS WebCache Core to non-Core Upgrade 10.1.2.0.0
    OracleAS Wireless Server Agent 10.1.2.1.0
    OracleAS Wireless Server Management 10.1.2.1.0
    OracleAS Wireless Server 10.1.2.1.0
    Parser Generator Required Support Files Patch 10.1.0.4.2
    Parser Generator Required Support Files 10.1.0.2.0
    Pasta IX Library 10.1.2.0.2
    Perl Interpreter 5.6.1.0.2d
    Personalization 10.1.2.0.2
    PL/SQL Required Support Files 10.1.0.2.0
    PL/SQL Required Support Files 10.1.0.4.2
    PL/SQL 10.1.0.2.0
    PL/SQL 10.1.0.4.2
    Platform Required Support Files Patch 10.1.0.4.2
    Platform Required Support Files 10.1.0.2.0
    Precompiler Common Files Patch 10.1.0.4.2
    Precompiler Common Files 10.1.0.2.0
    Precompiler Required Support Files Patch 10.1.0.4.2
    Precompiler Required Support Files 10.1.0.2.0
    Pro*C/C++ Patch 10.1.0.4.2
    Pro*C/C++ 10.1.0.2.0
    RDBMS Required Support Files Patch 10.1.0.4.2
    RDBMS Required Support Files 10.1.0.2.0
    Recovery Manager Patch 10.1.0.4.2
    Recovery Manager 10.1.0.2.0
    regexp 2.1.9.0.0
    Reports Doc common 10.1.2.0.2
    Reports Runtime 10.1.2.0.2
    Reports Services Management Agent Plugin 10.1.2.0.2
    Reports Services Management UI Plugin 10.1.2.0.2
    Repository Config Assistant 10.1.2.0.2
    Required Support Files 10.1.0.2.0
    ROS Component 10.1.2.0.2
    Secure Socket Layer Patch 10.1.0.4.2
    Secure Socket Layer 10.1.0.2.0
    Secure Socket Layer 10.1.0.2.0
    SQL*Loader 10.1.0.2.0
    SQL*Loader 10.1.0.4.2
    SQL*Plus Required Support Files Patch 10.1.0.4.2
    SQL*Plus Required Support Files 10.1.0.2.0
    SQL*Plus 10.1.0.2.0
    SQL*Plus 10.1.0.4.2
    SQLJ Runtime 10.1.2.1.0
    SSL Required Support Files for InstantClient Patch 10.1.0.4.2
    SSL Required Support Files for InstantClient 10.1.0.2.0
    SSL Required Support Files Patch 10.1.0.4.2
    SSL Required Support Files 10.1.0.2.0
    Sun Java Plug-in 1.4.2.0.4
    Sun JDK extensions 10.1.2.0.0
    Sun JDK 1.4.2.0.6
    Toolkit Component 10.1.2.0.2
    Tools Utilities 10.1.2.0.2
    UAT - GUI Component 10.1.2.0.2
    UCOL-GUI Component 10.1.2.0.2
    UT - GUI Component 10.1.2.0.2
    Utilities Common Files Patch 10.1.0.4.2
    Utilities Common Files 10.1.0.2.0
    Virtual Graphic System 10.1.2.0.2
    Visigenics ORB 3.4.0.0.0
    Visigenics ORB 3.4.0.0.0c
    XDK Required Support Files Patch 10.1.0.4.2
    XDK Required Support Files 10.1.0.2.0
    XML Class Generator for Java Patch 10.1.0.4.2
    XML Class Generator for Java 10.1.0.2.0
    XML Parser for Java Patch 10.1.0.4.2
    XML Parser for Java 10.1.0.2.0
    XSQL Servlet Patch 10.1.0.4.2
    XSQL Servlet 10.1.0.2.0
    ZRC Component 10.1.2.0.2
    There are 283 components installed.

    You might get a better overview of the different Homes etc. if you open up OUI (the Universal Installer) and check Installed Products...

  • What is Organization structure in IS Utilities

    Dear Experts,
    I'm new to IS Utilities, Can any one explain bellow concepts:
    1. What is Organization Structure in IS Utilities and How it helps?
    2. How and Where can we configure that?
    3. any Building Block for this concept?
    Kindly provide me the relavent links/Docs for further understanding... many thanks in Advance
    Srujan

    Org, structure defn can be different for different industries, but in general it can be defined as mentioned below.
    Org. Structure is:
    You use the organizational structure to represent and process
    disciplinary assignments, remuneration flows and statistical aggregations.
    As asked by you 1 example for this is:
    In an insurance company, the organizational structure models the
    hierarchical picture of an organization (generally sales and distribution), in particular for
    the derivation of overriding commissions.
    One more definition for Org. Structure which can throw more light in understanding this is:
    "A hierarchy in which the organizational units in an enterprise are arranged according to tasks and functions.
    The organizational structure differs from the administrative enterprise or personnel structure, whose
    structural elements are relevant to payroll accounting and accounting."
    Please mark thread as answered if you get satisfactory answer.
    Thanks,
    Abhishek

  • I need in Formula Node to assign to the variable value 4000000000!!! What kind of variable it should be???

    i've just tryed to write unsigned in32, but it does not understand 'unsogned'... But i need variable to be unsigned, because the max value = 4000000000... So, how can i solve this probleme???

    Hi,
    I don't see exactly what you're trying to do here.
    Where do you want to assign the variable 4000000000 to? If you want it as an
    input, just use a dbl, with only zeros behind the coma.
    Note that an integer is a number without any decimals. An integer in LabVIEW
    is this, but with an extra limitation that it can only be 32 bits... So a
    dbl can be an integer.
    If the input dbl is not an integer, use round, round to -inf or round to
    +inf to make it one. This can also be done if the output needs to be an
    integer.Inside the formula node floor(x), int(x), intrz(x) or ceil(x) can be
    used to make integers.
    I hope this is what you mean... I can't see any problems doing this.
    Regards,
    Wiebe.
    "DrON" wrote in message
    news:506500000008000000E
    [email protected]..
    > I need in Formula Node to assign to the variable value 4000000000!!!
    > What kind of variable it should be???
    >
    > i've just tryed to write unsigned in32, but it does not understand
    > 'unsogned'... But i need variable to be unsigned, because the max
    > value = 4000000000... So, how can i solve this probleme???

Maybe you are looking for

  • Can I use flashback database to flashback a pluggable database?

    Hi All, I created a container database and then created a pluggable database. In the pluggable 12.1 datbase, I loaded the user data. I performed the below sqlplus / as sysdba; create restore point CLEAN_DB guarantee flashback database; And I performe

  • Kernel Panic during hdd intensive process

    Hi there, I have been suffering from kernel panic tipicaly during hdd intesinve process like fixing disk permission, but it often happen during shutdown phase. AHT extended version ran well indicating no problem. Onyx says startup disk should be fine

  • How do you remove or change red border in Livecycle required

    How do you remove or change red border in Livecycle required field? When I make a field required, it makes the pdf show a thick ugly red border. How can I change that?

  • SC - Approved but status is 'Awaiting Approval' and no follow-on document

    Hi, If a shopping cart is approved, the approval preview shows that all approvers have approved it & it is complete. However, when you check the status of the Shopping Cart, it still shows 'Awaiting Approval'. In addition, BBP_PD states that no follo

  • Error in startup the petstore application

    Dear all When i run the petstore with our DB.It is create table with the SEQUENCE column name.But Sequence is the keyword in our DB.Then how it is created the table with this column name.Plz give any suggestion. Through which file it is creating the