Re-send with more information on  Modem installation problem- list port fail in admintools

Background:
If admintool can set serial I could have set it with a click.
The error is "list port fail in "
I have following many example including Celeste (stokey.com), I am totally lost with her instruction. I am a new-hand in SUN SOLARIS 8 INTEL. NEED good guidance and helping to set up an external Zoom 56 K modem on com 1.
==============================================================
I was suspect a lot of work from internet is a copy of another.
===============================================================
#sacdm -l t ttymon
get:
zsmon ttymon - 0 ENBALE /usr/lib/saf/ttymon
#pmadm -l
get:
no service defined.
There is no cua * under /dev
These is nothing under /dev/term
I have a number of error with the following script and I can screen-print and copy and then paste here.
There are problem with the cua and term/$port.
SO please help and guide.
sunlearner.
#!/sbin/sh
# add_modem shell script. Must be run as root from bourne shell
# Change these parameters as needed for your particular needs.
# PARAMETER MEANING
# PORT Port you want to set up. "a" or "b"
# TTYSPEED Speed setting, from /etc/ttydefs
# LOGINMSG The login message which will be displayed.
# -p zsmon PMTAG, name of this port monitor
# -s ttya SVCTAG, modem is on ttya. you may want ttyb
# -d /dev/term/$PORT Actual port device.
# -l contty5H Ttylabel, defined in /etc/ttydefs file. (speed
# setting. contty5H=19200 baud)
# -b Flag for bidirectional port use
# -S n Turn software carrier off (modem supplies
# hardware carrier detect signal)
# "dial in/out on serial port" This is a comment you'll see on pmadm -l
LOGINMSG="Always be nice to your sysadm. You may now login. "
# set PORT = either a or b
PORT="a"
# choose your speed setting. See /etc/ttydefs for more, or build your
# own from the examples in the rest of this article.
# contty5H = 19200bps, 7 bits even parity, as supplied by Sun
# conttyH = 9600bps, 7 bits even parity, as supplied by Sun
TTYSPEED="contty5H"
# change ownership of outgoing side of port to user uucp, group tty.
# change ownership of incoming side of port to user root, group tty.
chown uucp /dev/cua/$PORT; chgrp tty /dev/cua/$PORT
chown root /dev/term/$PORT; chgrp tty /dev/term/$PORT
# Remove any existing port monitor on this port.
# You can ignore any error messages from this next command.
# If you see the message "Invalid request, ttya does not exist under zsmon",
# You may be trying to remove a port monitor which does not exist.
/usr/sbin/pmadm -r -p zsmon -s tty$PORT
# Create the new port monitor
/usr/sbin/pmadm -a -p zsmon -s tty$PORT -i root \
-v `/usr/sbin/ttyadm -V` -fu -m "`/usr/sbin/ttyadm \
-p "$LOGINMSG" -d /dev/term/$PORT -s /usr/bin/login -l $TTYSPEED -b \
-S n -m ldterm,ttcompat`" -y "dial in/out on serial port"
############ end of add_modem script ###################################

The lack of /dev/cua etc is worrying - apparently there is an ACPI
bug with certain BIOSes which means certain device nodes are not created (often floppy, printer, serial). Turning off ACPI in the BIOS if this option exists on your HW, followed by a reconfiguration boot (b -r) should help. When you have the device nodes in place, the guidance from Stokeley should work - you might also check the
archives of the solarisonintel list at www.egroups.com

Similar Messages

  • How to make a tree with more information in one line

    Hi
    I have seached this forum, and haven't find any information that I can use.
    I need a tree structure with following informations:
    arbpl
    _____aufnr________material_____ text
    _______extra informations
      |_____aufnr________material_____ text
      ....................................................... |_______extra informations
    My problem is that I can't get more than one information each line.
    Can anybody give me some input, and better good advice/examples hot to do.
    My code looks like this:
    *& Report  my report
    REPORT  myreport.
    type-pools : stree.
    data : wa_node type snodetext.
    data : node_table like wa_node occurs 0 with header line.
    TABLES: caufv, caufvd, IOOPER, marc, mara, resb, jest, tj02t.
    data: BEGIN OF gt_status_tab occurs 0,
          aufnr like caufv-aufnr,
          stat like jest-stat,
          txt04 like tj02t-txt04,
          end of gt_status_tab.
    data: g_objnr like jest-objnr.
    data: BEGIN OF gt_sele_tab OCCURS 0,
          werks like caufv-werks,
          fevor like marc-fevor,
          arbpl like IOOPER-arbpl,
          aufnr like caufv-aufnr,
          aufplA like caufv-aufpl,
          matnr like caufvd-matnr,
          gstrp like CAUFV-GSTRP,
          GLTRP LIKE CAUFV-GLTRP,
          rmatnr like resb-matnr,
          bdmng like resb-bdmng,
          GAMNG like caufv-GAMNG,
          aufpl like resb-aufpl,
          auart like caufv-auart,
          matkl like mara-matkl,
          istat like tj02t-istat,
         inact  like jest-inact,
    END OF gt_sele_tab.
    select-options:
    s_werks for CAUFV-werks,
    s_arbpl for iooper-arbpl,
    s_fevor for marc-fevor,
    s_aufnr for caufv-aufnr,
    s_sttxt for CAUFVD-STTXT,
    s_auart for caufv-auart,
    s_matnr for caufvd-matnr,
    s_matkl for mara-matkl,
    s_rmatnr for resb-matnr,
    s_gstrp for caufv-gstrp,
    s_gltrp for caufv-gltrp.
    start-of-SELECTION.
      SELECT  a~werks
              a~fevor
              a~aufnr
              a~PLNBEZ
              a~gstrp
              a~gltrp
              a~aufpl
              b~matnr
              b~bdmng
              a~gamng
              b~aufpl
              a~auart
              d~matkl
        into "CORRESPONDING FIELDS OF TABLE gt_sele_tab
        (gt_sele_tab-werks,
        gt_sele_tab-fevor,
        gt_sele_tab-aufnr,
         gt_sele_tab-matnr,
         gt_sele_tab-gstrp,
         gt_sele_tab-gltrp,
         gt_sele_tab-aufplA,
        gt_sele_tab-rmatnr,
        gt_sele_tab-bdmng,
        gt_sele_tab-GAMNG,
        gt_sele_tab-aufpl,
        gt_sele_tab-auart,
        gt_sele_tab-matkl)
         FROM  CAUFV as a
        join resb as b
        on b~rsnum = a~rsnum
        and b~rspos = b~rspos
        join afvc as C
        on c~aufpl = b~aufpl
        and c~aplzl = b~aplzl
        join mara as d
        on d~matnr = b~matnr
             WHERE  a~AUFNR  in s_aufnr
             AND    a~AUART  in s_auart
             AND    a~GLTRP  in s_gltrp
             AND    a~GSTRP  in s_gstrp
             AND    a~FEVOR  in s_fevor.
        append gt_sele_tab.
      ENDSELECT.
      loop at gt_sele_tab.
        clear g_objnr.
        concatenate 'OR' gt_sele_tab-aufnr into g_objnr.
    *append
        select *  from jest
          where objnr = g_objnr
          and   inact ne 'X'.
          gt_status_tab-aufnr = gt_sele_tab-aufnr.
          gt_status_tab-stat = jest-stat.
          append gt_status_tab.
        ENDSELECT.
        SELECT single arbpl into gt_sele_tab-arbpl
                 FROM  CRHD
               WHERE  OBJTY  = 'A'
               AND    OBJID  = gt_sele_tab-aufpl.
        gt_sele_tab-arbpl = '200'.
        MODIFY gt_sele_tab.
      endloop.
      perform fill_nodes.
      perform tree_display.
    **& Form FILL_NODES
    **text
    **--> p1 text
    **<-- p2 text
    form fill_nodes .
      DATA: L_ARBPL type arbpl.
      node_table-type = 'T'.
      node_table-name = 'Arbejdsplads'.
      node_table-tlevel = '01'.
      node_table-nlength = '15'.
    *  node_table-color = '4'.
      node_table-text = ''.
      node_table-tlength = '20'.
      node_table-tcolor = '3'.
      append node_table.
      clear node_table.
      loop at gt_sele_tab.
        at new arbpl.
          node_table-type = 'P'.
          node_table-name = gt_sele_tab-arbpl.
          node_table-tlevel = '02'.
          node_table-nlength = '20'.
    *      node_table-color = '4'.
          node_table-text = ''.
          node_table-tlength = '30'.
          node_table-tcolor = '3'.
          append node_table.
          clear node_table.
          L_ARBPL = gt_sele_tab-arbpl.
    *node_table-type = 'P'.
    *node_table-name = 'ITEM DATA'.
    *node_table-tlevel = '03'.
    *node_table-nlength = '20'.
    *node_table-color = '4'.
    *node_table-text = ''.
    *node_table-tlength = '30'.
    *node_table-tcolor = '3'.
    *append node_table.
    *clear node_table.
    break g-lmn.
          loop at gt_sele_tab where arbpl = l_arbpl.
            node_table-type = 'P'.
            node_table-name = gt_sele_tab-aufnr.
            node_table-tlevel = '04'.
            node_table-nlength = '20'.
    *        node_table-color = '4'.
    node_table-parent = '04'.
            node_table-text = ''.
            node_table-tlength = '30'.
            node_table-tcolor = '3'.
            node_table-TPOS2 = '2'.
            node_table-text2 = 'halløj'.
            node_table-TPOS3 = '3'.
            node_table-text3 = 'igen'.
            append node_table.
            clear node_table.
    *        break g-lmn.
            node_table-type = 'P'.
    *        node_table-name = 'Materiale'.
    *        node_table-tlevel = '04'.
    node_table-parent = '04'.
            node_table-nlength = '20'.
    *        node_table-color = '4'.
            node_table-text1 = gt_sele_tab-matnr.
            node_table-TPOS2 = '2'.
            node_table-text2 = 'halløj'.
            node_table-TPOS3 = '3'.
            node_table-text3 = 'igen'.
            node_table-tlength1 = '40'.
            node_table-tcolor1 = '3'.
            append node_table.
            clear node_table.
    *        node_table-type = 'P'.
    *        node_table-name = 'UNIT'.
    *        node_table-tlevel = '05'.
    *        node_table-nlength = '20'.
    **        node_table-color = '4'.
    *        node_table-text2 = 'test'.
    *        node_table-tlength2 = '30'.
    *        node_table-tcolor2 = '3'.
    *        append node_table.
    *        clear node_table.
    *node_table-type = 'P'.
    *node_table-name = 'QUANTITY'.
    *node_table-tlevel = '05'.
    *node_table-nlength = '20'.
    *node_table-color = '4'.
    *node_table-text = i_vbap-kwmeng.
    *node_table-tlength = '40'.
    *node_table-tcolor = '3'.
    *append node_table.
    *clear node_table.
    *node_table-type = 'P'.
    *node_table-name = 'DESCRIPTION'.
    *node_table-tlevel = '05'.
    *node_table-nlength = '20'.
    *node_table-color = '4'.
    *node_table-text = i_vbap-arktx.
    *node_table-tlength = '30'.
    *node_table-tcolor = '3'.
    *append node_table.
    *clear node_table.
    *endloop.
          endloop.
        endat.
    *loop at i_likp where vbelv = i_vbak-vbeln.
    *node_table-type = 'P'.
    *node_table-name = 'DELIVERY'.
    *node_table-tlevel = '03'.
    *node_table-nlength = '20'.
    *node_table-color = '4'.
    *node_table-text = ''.
    *node_table-tlength = '30'.
    *node_table-tcolor = '3'.
    *append node_table.
    *clear node_table.
    *node_table-type = 'P'.
    *node_table-name = i_likp-vbeln.
    *node_table-tlevel = '04'.
    *node_table-nlength = '20'.
    *node_table-color = '4'.
    *node_table-text = ''.
    *node_table-tlength = '30'.
    *node_table-tcolor = '3'.
    *append node_table.
    *clear node_table.
    *endloop.
    *loop at i_vbrk where vbelv = i_vbak-vbeln.
    *node_table-type = 'P'.
    *node_table-name = 'INVOICE'.
    *node_table-tlevel = '03'.
    *node_table-nlength = '15'.
    *node_table-color = '4'.
    *node_table-text = ''.
    *node_table-tlength = '20'.
    *node_table-tcolor = '3'.
    *append node_table.
    *clear node_table.
    *node_table-type = 'P'.
    *node_table-name = i_vbrk-vbeln.
    *node_table-tlevel = '04'.
    *node_table-nlength = '20'.
    *node_table-color = '4'.
    *node_table-text = ''.
    *node_table-tlength = '30'.
    *node_table-tcolor = '3'.
    *append node_table.
    *clear node_table.
    *endloop.
      endloop.
    endform. " FILL_NODES
    **& Form TREE_DISPLAY
    **text
    **--> p1 text
    **<-- p2 text
    form tree_display .
      call function 'RS_TREE_CONSTRUCT'
      exporting
      insert_id = '000000'
      relationship = ' '
    *LOG =
      tables
      nodetab = node_table
      exceptions
      tree_failure = 1
      id_not_found = 2
      wrong_relationship = 3
      others = 4
    *if sy-subrc = 0.
    *message id sy-msgid type sy-msgty number sy-msgno
    *with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    *endif.
      call function 'RS_TREE_LIST_DISPLAY'
      exporting
    *CALLBACK_PROGRAM =
      callback_user_command = 'USER_COMMAND'
    *CALLBACK_TEXT_DISPLAY =
    *CALLBACK_MOREINFO_DISPLAY =
    *CALLBACK_COLOR_DISPLAY =
    *CALLBACK_TOP_OF_PAGE =
    *CALLBACK_GUI_STATUS =
    *CALLBACK_CONTEXT_MENU =
      status = 'IMPLICIT'
      check_duplicate_name = '1'
    *color_of_node = '4'
    *color_of_mark = '3'
    *color_of_link = '1'
    *color_of_match = '5'
      lower_case_sensitive = ' '
      modification_log = ' '
      node_length = 30
      text_length = 75
      text_length1 = 0
      text_length2 = 0
      return_marked_subtree = ' '
      screen_start_column = 0
      screen_start_line = 0
      screen_end_column = 0
      screen_end_line = 0
      suppress_node_output = ' '
      layout_mode = ' '
      use_control = 'F'
    *IMPORTING
    *F15 =
    endform.                    "tree_display
    " FINAL_DISPLAY

    Hi,
    Have you checked the examples in SALV_OBJECTS?
    /wg

  • Analog Source Triggering with more than one channel in channel list

    Hello,
    I am trying to use an analog reference trigger with a channel list that contains more than one entry using a
    M Series 6289. I am aware that this is generally not possible to have more than one channel in the list due to hardware limitations. I was hoping if some sort of workaround exists.
    I am using the NIDAQmx C API to control the card.
    Using a second card that is syncronized via RTSI should
    allow me to use an analog reference trigger to control multiple analog IO channels ... Right ???
    Thanks for any advice!
    Best regards
    Peter

    Hello Peter,
    If you look at the NI-DAQmx Help, Analog Triggering Considerations for E Series, M Series, and S Series Devices section, it says that to pause multiple channels with an Analog trigger, you must wire that signal to APFI0 or APFI1. Therefore, it is possible to perform this operation.
    If you are sharing the AI Sample Clock across RTSI, then you would be able to stop multiple AI channels across multiple devices with the one Analog Reference Trigger.
    I hope this helps,
    Sean C.

  • Sales order with more than 9 items causing problem

    Hi,
    I have a situation here.
    A sales order is created in the system and since it is order related billing so its billing document is also generated. The billing document is not relevant for accounting. So, the only 2 documents are a sales order and its billing document.
    Due to some technical restrictions,if the number of lines is more than 9 the printout wont come.Henceforth,the user is unable to take a printout so I need to give him a solution.
    What shall I suggest him?

    Hi,
    >So, my question is that,should I ask the user to create a credit memo wrt the billing document and then split the sales order with 2 invoices(one with say 5 and the other invoice with the rest of the quantities)?
    So, if my undestanding is right then you want to create a credit memo after invoice ? If yes, then why are you splitting the sales order ? Also, this is something strange kind of ABAP logic which would not allow to print an invoice with more than 9 line items... Now, as you said if your sales order is having more than 9 line items then only print doesn't come.. right ? then in your case at this moment there are only 9 line items so ideally you'd be able to get a print.. right ?
    I think there is some confusion out here with your two posts.. kindly clarify...
    Hrishi

  • I have to send mail to multiple recipients. Is there a group send with Thunderbird as I have delivery problems.

    My email is a yahoo account. The yahoo help advises I create a group then I won't have the problem. Can I do this in Thunderbird or do I have to use yahoo?

    Yes, you can define a group (such as a family) within your address book. Then you can use that group name in addressing an email.

  • SCCM 2012 installation problem..prerequisite fails

    Hi there, 
    I am trying to install SCCM 2012 on Server 2012 and its seems that the prerequisite checker fails on 3 checks, all related to SQL. 
    SQL Server service running account
    required SQL Server Collation
    SQL Server sysadmin rights
    And I wonder how exactly the installation of SCCM 2012 is looking for the SQL Server?
    Is it through Active directory? What if i had 4 different SQL Servers. How can he knows where to look his server?
    I do not remember that i entered during the wizard any SQL Server name. 
    I think i am getting those errors because, the installation can't find any SQL Server. 
    I have 3 Virtual machines: 
    1. Server 2012 as DC
    2. Server 2012 as SQL Server 2012 RTM with CU3
    3. Server 2012 as Sccm 2012 R2 x64 
    Any ideas how to troubleshoot this problem?
    Log file
    https://onedrive.live.com/redir?resid=D99573B9FC48B9D4!266&authkey=!AId9aroJCts64AM&ithint=file%2c.log
    Thank you very much
    Amir

    Try removing Use typical installation options for a stand-alone primary site option.
    When using this option, Setup automatically configures the site as stand-alone primary site, uses a default installation path, a
    local installation of the default instance of SQL
    Server for the site database, a local management point, a local distribution point, and configures the site with English and the display language of the operating system on the
    primary site server if it matches one of the languages that Configuration Manager supports.
    http://technet.microsoft.com/en-us/library/gg712320.aspx

  • Installation Problem - Component Install Failed

    My Adobe Illustrator CS3 software stopped working for no apparent reason - the error messgae stated "Licensing for this product has stopped working".
    As instructed, I therefore attempted to resolve the problem by uninstalling and then reinstalling the product. A reinstall has however been unsuccessful. Each time I am told there are 2 component errors (Adobe Illustrator 3 and Shared Components).
    I have tried contacting Adobe, but they are not willing to help.
    I have been trying for the best part of 2 weeks now to resolve the issue myself using the online solutions featured on the Adobe website. I have worked through the suggested fixes for both the licensing issue and the component install issue - I am still unable to reinstall the software. Perhaps I am not doing something right?
    Any help would be most gratefully appreciated - thank you in advance.

    Hi Mylenium,
    Thanks for the feedback.
    I've ran another fresh install - how do I get the installer log to you/attach to the post?
    Really appreciate your time.
    Steve

  • Need more Information about setupvscanrfc

    <b>Hello,</b>
    we need more Information from SAP about the <b>setupvscanrfc_78-10003831.exe</b>.
    Do you have more Information about this Installation (Documation?)?
    The Customer use a SAP Enterprise Portal (Sun OS) without a SAP Gateway.
    So we installed the SAP Gateway on Windows 2003 with AntiVir VSA.
    The memoryscan is running, but file their are bigger as 100 kb must be copy to the AntiVir VSA on Windows 2003 Server and this copycommand is not running.
    Logfile:
    ERROR file opened at 20070125 170340 W. Europe Stan, SAP-REL 700,0,79 RFC-VER 3 859699 MT-SL
    T:4328 Error in program 'vscan_rfc': ======> CPIC-CALL: 'SAP_CMNOREGTP'
    LOCATION CPIC (TCP/IP) on local host
    ERROR partner '10.35.43.32:3300' not reached
    TIME Thu Jan 25 17:03:40 2007
    RELEASE 700
    COMPONENT NI (network interface)
    VERSION 38
    RC -10
    MODULE nixxi.cpp
    LINE 2764
    DETAIL NiPConnect2
    SYSTEM CALL connect
    ERRNO 10061
    ERRNO TEXT WSAECONNREFUSED: Connection refused
    COUNTER 1
    ERROR file opened at 20070125 170341 W. Europe Stan, SAP-REL 700,0,79 RFC-VER 3 859699 MT-SL
    T:5016 Error in program 'vscan_rfc': ======> CPIC-CALL: 'SAP_CMNOREGTP'
    LOCATION CPIC (TCP/IP) on local host
    ERROR partner '10.35.43.32:3300' not reached
    TIME Thu Jan 25 17:03:41 2007
    RELEASE 700
    COMPONENT NI (network interface)
    VERSION 38
    RC -10
    MODULE nixxi.cpp
    LINE 2764
    DETAIL NiPConnect2
    SYSTEM CALL connect
    ERRNO 10061
    ERRNO TEXT WSAECONNREFUSED: Connection refused
    COUNTER 1
    ERROR file opened at 20070125 175912 W. Europe Stan, SAP-REL 700,0,79 RFC-VER 3 859699 MT-SL
    T:5548 Error in program 'VSCAN_FE0BOS192': <* RfcIsValidHandle [1] : returns 18:RFC_INVALID_HANDLE
    com.sap.security.core.server.vsi.api.exception.VSIServiceException: The virus scan server VSCAN_FE0BOS192 is not running on localhost!
    Thanks for your help.
    Greetings,
    Steve Neubert
    Avira GmbH

    Thanks for your Posting.
    No thats not the Problem.
    The Customer use a SAP Portal on Sun OS without a SAP Gateway.
    Enterprise Portal Server --> VSCAN Destination  to --> over TCP /IP --> another Server (Windows 2003) with AntiVir VSA und vscan_rfc + SAP Gateway
    Now the Customer use the installation from SAP  "setupvscanrfc_78-10003831.exe"
    Content for this Installation is: SAP Gateway + vscan_rfc
    The Problem is that the VSI Interface shows a errormessage by scanning file bigger as 100kb:
    If Files bigger as 100 kb the Destination must copy the File to the Virus Scan Apdater, but thats not working.
    com.sap.security.core.server.vsi.api.exception.VSIServiceException: The virus scan server VSCAN_FE0BOS192 is not running on localhost!
    VSCAN_FE0BOS192 is the Destination on Portal-Site...
    Need this Installation also a SAP Gateway on the Portal Site or whats the Problem?
    Thanks for your Feedback.
    greetings,
    Steve Neubert

  • Update row with more data - JTable with Abstracttablemodel

    Hello!
    I got some problems with my program, im using jtable with abstracttablemodel.
    First I include content into the jtable by pressing &rdquo;New Content&rdquo;, then it will pop up a dialog which I fill with information as you can see in the picture.
    http://img42.imageshack.us/img42/6969/jtable.jpg
    But when its done, I want to borrow it and update that row with more information as you can see if its loaned, if it is their shall be a checkbox, name and phone there. I don&rsquo;t really know how to do this. Suppose I should do a similar metodh as when I&rsquo;m adding and removing content. The question is how do I do that? I&rsquo;ve been looking at some tips and hints on google. It seems to me that should use &ldquo;fireTableRowsUpdated&rdquo; but not really sure if its right and how to. When I&rsquo;m borrowing the specific row I guess I need to check which row is clicked before borrowing and then fill in the information and update the table.The borrow button will also pop up a dialog with 3 fields to fill. Here is the code I wrote for adding and removing. I&rsquo;ve tried with the update but its not right which I&rsquo;m going to use when borrowing objects from the database. Please help!
    Code from the abstracttablemodel
    private ArrayList<Objects> obj = new ArrayList<Objects>();
         public void add(Objects o) {
              obj.add(o);
              fireTableRowsInserted(obj.size()-1, obj.size()-1);
         public void remove(int o) {
              int index = obj.indexOf(o);
              obj.remove(o);
              fireTableRowsDeleted(index, index);
         public void update (Objects o){
              // Not sure how to do here
              //int index = obj.indexOf(o);
              //fireTableRowsUpdated(index,index);
         }Code for the button in the main program.
    if (arg.getSource() == borrow) {
    // How should I do here? I need to implement the BorrowDialog, check if a row is pressed then update? How do I do that?
                   BorrowDialog newLoan = new BorrowDialog(frame);
                   if(table.getSelectedRow() == -1)
                        JOptionPane.showMessageDialog(frame,"Select the row before loan");
                   else
                        dir.update(newLoan.getLoan());
                        table.repaint();
              }Code for BorrowDialog
    public class BorrowDialog extends JDialog implements ActionListener {
            //implements JTextFields, Buttons,Labels and Panels.
         public BorrowDialog(JFrame parent) {
         //Setting buttons to panels and such
         public Objects getLoan(){
              return loan;
         public void setLoan()
                    // Not sure if this is right, as I leave some fields empty, will it be empty when its updating aswell?
                    // I tried with add data then it just will be a new row, when I will update a specific row
                    loan = new Objects("", "" , "" , "" , "" ,"", loanField.getText(),nameField.getText(), phoneField.getText());
         public void actionPerformed(ActionEvent arg) {
              if (arg.getActionCommand().equals("Save")) {
                   System.out.println("save");
                   setLoan();
                   dispose();
    }All help is appreciated!
    Edited by: iTech34 on Feb 22, 2010 3:27 AM
    Edited by: iTech34 on Feb 22, 2010 3:31 AM
    Edited by: iTech34 on Feb 22, 2010 3:58 AM

    Look up for the rest of the code!
    I explained everything on the first post, so please read there so you know the problem I got.
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    public class Database implements ActionListener {
         private final int WIDTH = 800;
         private final int HEIGHT = 800;
         private JTable table = new JTable();
         private JFrame frame = new JFrame("Database");
         private JButton addContent = new JButton("New content");
         private JButton borrow = new JButton("Borrow");
         private JButton returnObject = new JButton("Return");
         private JButton remove = new JButton("Remove");
         private JButton save = new JButton("Save");
         private JButton load = new JButton("Load");
         private JButton exit = new JButton("Exit");
         private Directory dir = new Directory();
         private JPanel buttonPanel = new JPanel();
         private JPanel mainPanel = new JPanel();
         public Database() {
              // BUTTONS
              buttonPanel.add(addContent);
              buttonPanel.add(remove);
              buttonPanel.add(borrow);
              buttonPanel.add(returnObject);
              buttonPanel.add(save);
              buttonPanel.add(load);
              buttonPanel.add(exit);
              // ACTION LISTENERS
              addContent.addActionListener(this);
              remove.addActionListener(this);
              borrow.addActionListener(this);
              returnObject.addActionListener(this);
              save.addActionListener(this);
              load.addActionListener(this);
              exit.addActionListener(this);
              // JTABLE
              table = new JTable(dir);
              table.setAutoCreateRowSorter(true);
              table.setRowHeight(25);
              JScrollPane JScroll = new JScrollPane(table);
              // PANELS
              mainPanel.setLayout(new BorderLayout());
              mainPanel.add("North", buttonPanel);
              mainPanel.add("Center", JScroll);
              // FRAME
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setSize(WIDTH, HEIGHT);
              frame.getContentPane().add(mainPanel);
              frame.pack();
              frame.setLocationRelativeTo(null);
              frame.setVisible(true);
         public void actionPerformed(ActionEvent arg) {
              if (arg.getSource() == addContent) {
                   Dialog newDialog = new Dialog(frame);
                   dir.add(newDialog.getItem());
              if (arg.getSource() == remove) {
                   if (table.getSelectedRow() == -1)
                        JOptionPane.showMessageDialog(frame,"Select the row before remove");
                   else
                        dir.remove(table.getSelectedRow());
              if (arg.getSource() == borrow) {
                   // Not sure how to do here! I need to check which row I've clicked and take that row into BorrowDialog as argument i suppose.. please explain
                   BorrowDialog newLoan = new BorrowDialog(frame);
                   if(table.getSelectedRow() == -1)
                        JOptionPane.showMessageDialog(frame,"Select the row before loan");
                   else
                        dir.update(newLoan.getLoan());
                        table.repaint();
              if (arg.getSource() == returnObject) {
              if (arg.getSource() == save) {
                   dir.writeFile();
              if (arg.getSource() == load) {
                   Objects[] tempObject = dir.readFile("info.txt");
                   for (int i = 0; tempObject[i] != null; i++)
                             dir.add(tempObject);
              if (arg.getSource() == exit){
                   frame.dispose();
         public static void main(String[] argv) {
              new Database();
    }import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    public class BorrowDialog extends JDialog implements ActionListener {
         private final int WIDTH = 300;
         private final int HEIGHT = 400;
         private JButton exitDialog = new JButton("Exit");
         private JButton saveDialog = new JButton("Save");
         private JTextField loanField = new JTextField();
         private JTextField nameField = new JTextField();
         private JTextField phoneField = new JTextField();
         private JLabel loanLabel = new JLabel("Loan");
         private JLabel nameLabel = new JLabel("Name");
         private JLabel phoneLabel = new JLabel("Phone");
         private JPanel eastPanel = new JPanel();
         private JPanel southPanel = new JPanel();
         private JPanel westPanel = new JPanel();
         private GridLayout layout = new GridLayout(3, 1);
         private Objects loan;
         public BorrowDialog(JFrame parent) {
              super(parent, "Borrow", true);
              southPanel.add(saveDialog);
              southPanel.add(exitDialog);
              westPanel.add(loanLabel);
              eastPanel.add(loanField);
              westPanel.add(nameLabel);
              eastPanel.add(nameField);
              westPanel.add(phoneLabel);
              eastPanel.add(phoneField);
              westPanel.setLayout(layout);
              eastPanel.setLayout(layout);
              add("West", westPanel);
              add("Center", eastPanel);
              add("South", southPanel);
              saveDialog.addActionListener(this);
              exitDialog.addActionListener(this);
              setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
              setResizable(false);
              setSize(WIDTH, HEIGHT);
              getContentPane();
              setVisible(true);
         public Objects getLoan(){
              return loan;
         public void setLoan()
              // Can I really do like this? Will the the specific row I've chosen be overwriten entirly with blank elements in the six columns as I left empty(see below, when I send the arguments into the constructor)?
              loan = new Objects("", "" , "" , "" , "" ,"", loanField.getText(),nameField.getText(), phoneField.getText());
         public void actionPerformed(ActionEvent arg) {
              if (arg.getActionCommand().equals("Save")) {
                   System.out.println("save");
                   setLoan();
                   dispose();
              if (arg.getSource() == exitDialog) {
                   dispose();
    Edited by: iTech34 on Feb 22, 2010 11:19 AM
    Edited by: iTech34 on Feb 22, 2010 11:20 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Excel 2007 to Sql server table. Column with more than 255 characters.

    Hi there,
    I am facing a problem while converting data from Excel 2007 to SQL server 2005 table. I am using BIDS 2005.I have an excel file where one particular column has more than 255 characters. I use OLEDB connection for excel file as there is no driver for Excel
    2007 in BIDS2005. I am using Microsoft Office 12.0 Access Database Engine OLE DB Provider for Excel file.
    Next, I changed advanced properties for the column to DT_NTEXT. But when I am getting errors on execution. They are:
    [OLE DB Source [1949]] Error: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E21.
    [OLE DB Source [1949]] Error: Failed to retrieve long data for column "action".
    [OLE DB Source [1949]] Error: There was an error with output column "action" (2046) on output "OLE DB Source Output" (1959). The column status returned was: "DBSTATUS_UNAVAILABLE".
    [OLE DB Source [1949]] Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR.  The "output column "action" (2046)" failed because error code 0xC0209071 occurred, and the error row disposition on "output column "action"
    (2046)" specifies failure on error. An error occurred on the specified object of the specified component.  There may be error messages posted before this with more information about the failure.
    Please advise on how can I deal with columns having more than 255 characters in Excel file.
    Thanks!

    Here is what your connection string should look like for excel source
    Provider
    =Microsoft.Jet.OLEDB.4.0;Data
    Source=c:\temp\test.xls;Extended
    Properties="EXCEL 8.0;HDR=YES";
    http://sqlworkday.blogspot.com/

  • XI 3.0 Installation Problem: no central managment server running

    Hi, I am totally new to BO our company just purchased the application and I have installed XI 3.0 on one of our server. I have setup the DB and the installation finished successfully. However I can't find CMS anywhere on the server. It seems like all the other XI 3.0 components are there Business view manager, central configuration manager, etc. they are all in the program list.
    The only thing I didn't install is Tomcat. In Central configuration Manager ther Server Intelligence Agent is running. When I try to connect to the server in Business view Manager I receive the following error "The system servername cannot be contacted, but there is no Central Managment Server running at port 6400."
    During the installation for "Web Application Server" part I checked the "other" option since I want to use IIS. I have a feeling I need to do some type of post configuration for IIS? Where do I perform this?
    Our setup is:
    Window Server 2003 SP2 with all the latest window updates
    The latest XI 3.0 (I downloaded it from the product page)
    My questions are:
    1. Does XI work with IIS at  all?
    2. Do I need to install Tomcat and run some kind of connector to have IIS work?
    3. What am I missing for my XI 3.0 it seem the core component is missing (CS)?
    Edited by: Amy Williams on Sep 24, 2008 11:18 AM
    Moved from Xcelsius forum to BOE Administration

    Hi Allan,
    In answer to your questions - XI 3.0 does not have an IIS interface right now.  You will need to install a java application components in order to access the end user interface for viewing reports (InfoView), the report viewers, the web services and SDKs and the management console (CMC).  The easiest way to do this is to choose the default Tomcat components in the installation and work from there.
    If you left everything else as default, then you will have all the necessary application components installed to get the system up and running.  It may just be that your CMS has not started for some reason.  Try stopping and restarting the Server Intelligence Agent (SIA) in the Central Config Manager (CCM) - found in the Start/Programs/Business Objects group.
    Once started, try clicking on the "Manage Servers" icon of the CCM (the one with a server and a check mark on it).  This should allow you connect to the system and see which servers have started.  IF you cannot connect, the next step would be to check the windows Event Log.  See if the CMS service started OK.  If it didn't the log should provide you with more information, which you can post here for further assistance.
    If it did, and you still cannot connect, you may need to review your network firewall settings and/or your DEP status (see the properties panel for My Computer, choose the Advanced tab, select the Performance settings button, then the Data Execution Prevention tab).
    Happy hunting.
    Derek.

  • Problems with 11g on OEL5 (update 3) / net configuration assitant fails

    While installing 11g on OEL 5 the net configuration assistant failed:
    Oracle Net Services Configuration:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0xb7e772f3, pid=7352, tid=3084941520
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # C {noformat}[libc.so.6+0x6f2f3] index+0x63{noformat}
    # An error report file with more information is saved as hs_err_pid7352.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    According to the existing articles on this problem the solution is using a static IP and/or adding the IP to /etc/hosts.
    So did I, but: Net Configuration Assistant is still failing!
    This is my /etc/hosts:
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    192.168.1.4 localhost locahlhost.localdomain
    127.0.0.1 localhost.localdomain localhost
    Additionally, network is configured without DHCP! Although while checking the prerequisites the installer throw a warning ("... using DHCP may cause problems ...") which puzzles me.
    I should be thankful for any hints/advices.
    Edited by: user6877544 on Aug 29, 2009 2:45 PM: deleted square brackets around libc.so
    Edited by: user6877544 on Aug 29, 2009 3:23 PM
    Edited by: user6877544 on 30.08.2009 00:47 added square brackets around libc.so

    After a reboot the "DHCP-check" is passed:
    INFO: Checking DetectIfDHCPAssignedIP
         This is a prerequisite condition to test whether the primary IP address of the system is DHCP-assiged or static.
    INFO: Detecting the IP.....:192.168.1.4
    INFO: Checking the network interface display name.... :eth0
    INFO: Checking the network reference name..... :eth0
    INFO: Checking the platform .......46
    INFO: Checking the LINUX vendor .... :enterprise
    INFO: Inspect interface file :/etc/sysconfig/network-scripts/ifcfg-eth0
    INFO: Check complete. The overall result of this check is: Passed
    But net configuration assistant is still failing.

  • OpenSolaris 2008.05 Installer problem

    I am new to Solaris and i would be very to all of you who can help me with the following problem:
    Description:
    The following message appears on the screen:
    Installation did not complete normally.
    For more information see the installation log file:
    <OM Oct 11 13:11:53> Timezone setting will be TZ=UTC
    <OM Oct 11 13:11:53> Set timezone
    <OM Oct 11 13:12:37> disk partition info changed
    <OM Oct 11 10:13:29> Timezone setting will be TZ=Europe
    <OM Oct 11 10:13:29> Set timezone
    <OM Oct 11 10:18:27> Set user root in password and shadow file
    <OM Oct 11 10:18:27> User name not specified
    <OM Oct 11 10:18:27> list_ufs_db:: The entry 'naskoo' was not found in the /etc/passwd table
    <OM Oct 11 10:18:27> Set user naskoo in password and shadow file
    <OM Oct 11 10:18:27> Renaming table /etc/inet/AAAjnaGGb to /etc/inet/hosts
    <OM Oct 11 10:18:27> Disk was changed
    <OM Oct 11 10:18:27> Disk contains valid Solaris partition
    <OM Oct 11 10:18:27> whole_disk = 0
    <OM Oct 11 10:18:27> diskname set = c3d0
    <OM Oct 11 10:18:27> Set fdisk attrs
    <TIDM_E Oct 11 10:18:27> fdisk: fdisk -n -F failed. Couldn't create fdisk partition table on disk c3d0
    <TIMM_E Oct 11 10:18:27> Couldn't create fdisk partition table on disk <c3d0>
    <OM Oct 11 10:18:27> Could not create fdisk target
    <OM Oct 11 10:18:27> TI process completed unsuccessfully
    <OM Oct 11 10:18:27> ti_create_target exited with status = -1
    <OM Oct 11 10:18:27> Target instantiation failed exit_val=-1
    <OM Oct 11 13:20:28> Timezone setting will be TZ=UTC
    <OM Oct 11 13:20:28> Set timezone
    <OM Oct 11 13:20:28> Timezone setting will be TZ=UTC
    <OM Oct 11 13:20:28> Set timezone
    <OM Oct 11 13:20:28> Timezone setting will be TZ=UTC
    <OM Oct 11 13:20:28> Set timezone
    <OM Oct 11 13:21:01> disk partition info changed
    <OM Oct 11 10:21:14> Timezone setting will be TZ=Europe
    <OM Oct 11 10:21:14> Set timezone
    <OM Oct 11 10:22:05> Set user root in password and shadow file
    <OM Oct 11 10:22:05> Set user naskoo in password and shadow file
    <OM Oct 11 10:22:05> Renaming table /etc/inet/AAAm7a4Jb to /etc/inet/hosts
    <OM Oct 11 10:22:05> Disk was changed
    <OM Oct 11 10:22:05> Disk contains valid Solaris partition
    <OM Oct 11 10:22:05> whole_disk = 0
    <OM Oct 11 10:22:05> diskname set = c3d0
    <OM Oct 11 10:22:05> Set fdisk attrs
    <TIDM_E Oct 11 10:22:05> fdisk: fdisk -n -F failed. Couldn't create fdisk partition table on disk c3d0
    <TIMM_E Oct 11 10:22:05> Couldn't create fdisk partition table on disk <c3d0>
    <OM Oct 11 10:22:05> Could not create fdisk target
    <OM Oct 11 10:22:05> TI process completed unsuccessfully
    <OM Oct 11 10:22:05> ti_create_target exited with status = -1
    <OM Oct 11 10:22:05> Target instantiation failed exit_val=-1
    I have a separate partition for the solaris installation (35 GB, linux-swap, primary)
    I have no idea why i cannot start the installation process ?!
    Thank in advance for the help!

    Hi all,
    I am facing the same problem when I try to install oracle 10g under fedora 9
    But after work around arrive to change the file which include the line the oracle check it during the installation which include fedora 9
    Remove this line and run installation again after complete the installation
    Restore the original file again and all thing working normally
    But I don’t know if the action can be done on unix opensolaris or not
    Thanks in advance

  • Palm Desktop 6.2 installation problems!

    I had some older version of Palm Desktop and thought it would be a good idea to update to the latest version so that I can sync to Outlook 2007.  I downloaded from the palm site and ran the installation, only to encounter a runtime error.  the runtime error says "Runtime Error.  Program: ...ROGRA~1\COMMON~1\INSTAL~1\Driver\11\INTEL3~1\IDriver.exe.  This application has requested the runtime to terminate in an unusual way.  Please contact the application's support team for more information".  The installation still appeared to run through to the end, but now I cannot open Palm Desktop (it crashes immediately) at all.  I have tried this several times (downloading anew each time, restarting my computer etc etc) and also unistalled and then installed etc.  Same thing each time.  All of my data is still safely in my palm device (Z22), but I cannot access on the desktop anymore, which is quite scary.  Please help!!!
    Post relates to: Palm Z22

    Can anyone help me?  It's frustrating to not have a desktop version of the palm software.  Palm also doesn't seem to have an alternative version available for download. 

  • Installation Problem error when trying to create WSDL resource in OSB proje

    Hi everybody!
    I'm getting following error while trying to create a WSDL resource in OSB console:
    Caused By: com.bea.wli.sb.common.UserException: Diagnostics for WSDL send-sms/resources/teasdf
    WARNING: <0> Installation Problem??? Couldn't load messages: Can't find bundle for base name org.apache.xmlbeans.impl.regex.message, locale en_US
    at com.bea.wli.sb.resources.wsdl.helpers.WsdlEntryHelper.createEntry(WsdlEntryHelper.java:644)
    at com.bea.wli.sb.resources.wsdl.helpers.WsdlEntryHelper.createEntry(WsdlEntryHelper.java:687)
    at com.bea.wli.sb.management.configuration.WsdlConfiguration.createEntry(WsdlConfiguration.java:64)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.alsb.console.support.ConsoleSideMBeanInvocationHandler.__invoke(ConsoleSideMBeanInvocationHandler.java:113)
    at com.bea.alsb.console.support.ConsoleSideMBeanInvocationHandler.invoke(ConsoleSideMBeanInvocationHandler.java:71)
    at $Proxy187.createEntry(Unknown Source)
    at com.bea.alsb.console.resources.wsdl.WsdlRepositoryHelper.createEntry(WsdlRepositoryHelper.java:183)
    at com.bea.alsb.console.resources.wsdl.actions.EditWsdlAction.execute(EditWsdlAction.java:88)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2044)
    at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:91)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2116)
    at com.bea.alsb.console.common.base.SBConsoleRequestProcessor.processActionPerform(SBConsoleRequestProcessor.java:91)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853)
    at com.bea.alsb.console.common.base.SBConsoleRequestProcessor.process(SBConsoleRequestProcessor.java:191)
    at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631)
    at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158)
    at com.bea.console.internal.ConsoleActionServlet.process(ConsoleActionServlet.java:256)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
    at com.bea.console.internal.ConsoleActionServlet.doGet(ConsoleActionServlet.java:133)
    at com.bea.alsb.console.common.base.SBConsoleActionServlet.doGet(SBConsoleActionServlet.java:49)
    at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199)
    at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1129)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:687)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal(ScopedContentCommonSupport.java:142)
    at com.bea.portlet.adapter.scopedcontent.StrutsStubImpl.processAction(StrutsStubImpl.java:76)
    at com.bea.portlet.adapter.NetuiActionHandler.raiseScopedAction(NetuiActionHandler.java:111)
    at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:181)
    at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:167)
    at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiContent.java:225)
    I couldn't find anything related to this error in this forum or the web.
    Thank you in advance,
    Daniel.

    Can you post your WSDL here please.

Maybe you are looking for

  • ABAP transaction replacement in PI 7.3?

    Hello. I'm currently using a new PI 7.3 When using integrated scenario - the ABAP section is being skipped. Is there a replacement for old ABAP transactions like IDX5 for example? Is there any documentation on the subject? Thanks, Imanuel Rahamim.

  • Minimize all frames

    i've got a program running, which if one of the window is being minimized all of the opened windows which is opeened will be minimized, and if clicked ffrom the taskbar all will be restored .. here is the code .... private void iconifyAllWindows(int

  • How do you change the bottom state colors in CC?

    I am about to pull my hair out. I have been using Muse for 2 years and I guess there has been an update or bug. I added a horizontal nag bar, but I can't seem to find the menu or "pop up" box to change the colors of the menu states. I can't launch th

  • JHS-00114: Date $CURRENT_DATE$ must be of format MM-dd-yyyy

    I am using jheadstart 10.1.2.2(build 32) in jdeveloper 10.1.2.1.0(build 1913). I need to display current date for a date field as a default value when inserting new rows. I set $CURRENT_DATE$ in default display value for that date field. The default

  • WD My Book World Edition II  2TB

    I bought WD My Book World Edition II 2TB (it has ethernet port only and all software on cd is for windowz) and I would like to make it work on mac... Please, if somebody has tutorial or follow-up or something... Thank you very much... PS: I saw here,