Form doesn't show -- HZ_CUST_ACCOUNT_ROLE_V2PUB.create_role_responsibility

Hi All,
Created Role responsibilities using HZ_CUST_ACCOUNT_ROLE_V2PUB.create_role_responsibility. API returned responsibility_id and I could check record in HZ_ROLE_RESPONSIBULITY table. But when I view it from Contact Roles screen, No value but If I click on the field then value appears on screen.
I am setting below values. Can you please share your thoughts on it.
l_role_responsibility_rec_type.cust_account_role_id:=335599;
l_role_responsibility_rec_type.responsibility_type:='DELIVER_TO';
l_role_responsibility_rec_type.created_by_module:='API_V2';
HZ_CUST_ACCOUNT_ROLE_V2PUB.create_role_responsibility (
p_init_msg_list => FND_API.G_TRUE,
p_role_responsibility_rec => l_role_responsibility_rec_type,
x_responsibility_id=> x_resp_id,
x_return_status =>x_return_status,
x_msg_count =>x_msg_count,
x_msg_data => x_msg_data
Thank

Try setting the primary flag to 'Y' i.e.
l_role_responsibility_rec_type.primary_flag:='Y';
Also have a look at the steps listed at the following link and confirm that you have created all the listed entities.
http://tenthsense.blogspot.com/2011/08/oracle-apps-create-customer.html
Thanks,
Hiten

Similar Messages

  • Forms doesn't show up after R12 fresh install on OEL5

    Application Version : 12:11
    OS Version: OEL5
    All Services came up but the forms sessions are not opening up !
    I compiled all the forms still it was not showing up ! by throwing error.
    Restarted Forms Server couple of time but still it was showing below error
    FRM-92101. There was a failure in the Forms Server during startup. this could
    happen due to invalid configuration. Please look into the web-server for the details.
    Details...
    Java Exception:
    Oracle.forms.net.ConnectionException:Forms Session<74> failed during startup: no response from runtime process
    at oracle.forms.net.HTTPNStream.getResponse(unknown source)
    at oracle.forms.net.HTTPNStream.doFlust(unknown source)
    at oracle.forms.net.HTTPNStream.flush(unknown source)
    at java.io.DataOutputStream.flush(unknown source)
    at oracle.forms.net.HTTPconnection.connect(unknown source)
    at oracle.forms.engine.formsDispatcher.InitConnection(unknown source)
    at oracle.forms.engine.Formsdispatcher.init(unknown source)
    at oracle.forms.engine.Runform.initConnection(unknown source)
    at oracle.forms.engine.Runform.startRunform(unknown source)
    at oracle.forms.engine.Main.createRunform(unknown source)
    at oracle.forms.engine.Main.Start(unknown source)
    at sun.applet.appletPanel.run(unknown source)
    at java.lang.Thread.run(unknown source)
    I was not even able to open not even one form session
    With metalink and google I am not able to get hit to resolve this problem
    Thanks for reading the post !
    Edited by: user644525 on Dec 2, 2009 11:17 AM

    Hi,
    Did you install all pre-req. software packages and OS?
    I can see couple of hits on Metalink, so did you go through all the documents? Please see (Note: 880088.1, 465926.1, 454427.1, 468429.1, 549055.1, and 429627.1).
    Did AutoConfig complete successfully on the application tier node?
    Regards,
    Hussein

  • Spry Contact Form doesn't show all the information on email

    Hi there,
    So I have created a contact form with the spry text fields.
    The text fields are:
    Name
    Email
    Message
    Onced tested the email shows:
    Name     : [email protected]
    Email     :  (blank)
    Message: (blank)
    So The two issues is that is shows the email shows under name and the email and message sections dont show any infomation at all.
    Link is here
    Thanks in advance
    Ash

    The best way is to have no separate action page and lump the whole lot into one document.
    The following is an example of this
    <?php
    if(isset($_POST['Email'])) {
        // EDIT THE 2 LINES BELOW AS REQUIRED
        $email_to = "[email protected]";
        $email_subject = "Your email subject line";
        function died($error) {
            // your error code can go here
            echo "We are very sorry, but there were error(s) found with the form you submitted. ";
            echo "These errors appear below.<br /><br />";
            echo $error."<br /><br />";
            echo "Please go back and fix these errors.<br /><br />";
            die();
        // validation expected data exists
        if(!isset($_POST['Name']) ||
            !isset($_POST['Email']) ||
            !isset($_POST['message'])) {
            died('We are sorry, but there appears to be a problem with the form you submitted.');     
        $name = $_POST['Name']; // required
        $email_from = $_POST['Email']; // required
        $comments = $_POST['message']; // required
        $error_message = "";
        $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
      if(!preg_match($email_exp,$email_from)) {
        $error_message .= 'The Email Address you entered does not appear to be valid.<br />';
        $string_exp = "/^[A-Za-z .'-]+$/";
      if(!preg_match($string_exp,$name)) {
        $error_message .= 'The Name you entered does not appear to be valid.<br />';
      if(strlen($comments) < 2) {
        $error_message .= 'The Comments you entered do not appear to be valid.<br />';
      if(strlen($error_message) > 0) {
        died($error_message);
        $email_message = "Form details below.\n\n";
        function clean_string($string) {
          $bad = array("content-type","bcc:","to:","cc:","href");
          return str_replace($bad,"",$string);
        $email_message .= "Name: ".clean_string($name)."\n";
        $email_message .= "Email: ".clean_string($email_from)."\n";
        $email_message .= "Comments: ".clean_string($comments)."\n";
    // create email headers
    $headers = 'From: '.$email_from."\r\n".
    'Reply-To: '.$email_from."\r\n" .
    'X-Mailer: PHP/' . phpversion();
    @mail($email_to, $email_subject, $email_message, $headers);
    ?>
    <!-- include your own success html here -->
    <p class="message">Thank you for contacting us. We will be in touch with you very soon.</p>
    <?php
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationTextarea.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationTextarea.css" rel="stylesheet" type="text/css" />
    <style>
    .message {
        font-size: 1.4em;
        color: #F00;
    </style>
    </head>
    <body>
    <h1>Contact Us</h1>
    <p>Please use any of the below methods to contact us for any enquiries or questions you may have</p>
    <p>Email : <a href="mailto:[email protected]">[email protected]</a></p>
    <form id="formmail" name="formmail" method="post" action="">
      <p id="nametextfield2">
        <label for="Name"></label>
        <input type="text" name="Name" id="Name" />
        <span class="textfieldRequiredMsg">A value is required.</span>
        <span class="textfieldMinCharsMsg">Minimum number of characters not met.</span>
        <span class="textfieldMaxCharsMsg">Exceeded maximum number of characters.</span>
      </p>
      <p id="emailtextfield3">
        <label for="Email"></label>
        <input type="text" name="Email" id="Email" />
        <br />
        <span class="textfieldRequiredMsg">A value is required.</span>
        <span class="textfieldInvalidFormatMsg">Invalid format.</span>
      </p>
      <p id="messagetextarea1">
        <label for="message"></label>
        <textarea name="message" id="message" cols="45" rows="5"></textarea>
        <span id="countmessagetextarea1"> </span>
        <span class="textareaRequiredMsg">A value is required.</span>
        <span class="textareaMinCharsMsg">Minimum number of characters not met.</span>
        <span class="textareaMaxCharsMsg">Exceeded maximum number of characters.</span>
      </p>
      <p>
        <input type="submit" name="Submit" id="Submit" value="Submit" />
      </p>
    </form>
    <script type="text/javascript">
    var sprytextfield2 = new Spry.Widget.ValidationTextField("nametextfield2", "none", {hint:"Name", minChars:1, maxChars:50, validateOn:["blur"]});
    var sprytextfield3 = new Spry.Widget.ValidationTextField("emailtextfield3", "email", {validateOn:["blur"], hint:"Email"});
    var sprytextarea1 = new Spry.Widget.ValidationTextarea("messagetextarea1", {minChars:1, maxChars:400, validateOn:["blur"], counterType:"chars_remaining", counterId:"countmessagetextarea1", hint:"Message"});
    </script>
    </body>
    </html>
    Down the track you will be able to hide the form once it has been submitted.
    Gramps

  • Problem in assigning Database Value to jTextfield (form doesn't show up)

    Hi,
    I'm trying to get an integer value from database, add 1 to it and assign it to a jTextfield in formInternalFrameOpened event, but this causes the form not to open.
    If I remove just this thing the rest of the form works fine.
    The open event has no problem it works fine, I have checked with jOptionDialog.
    heres the code
        private void formInternalFrameOpened(javax.swing.event.InternalFrameEvent evt) {                                        
    // Get last driver ID, add 1 to it and assign it to driver ID JTextField
            Connection con = null;
            try
                MyDBConnection myDBConnection = new MyDBConnection();
                myDBConnection.init();
                con = myDBConnection.getMyConnection();
                Statement pullStmt = con.createStatement();
                ResultSet pullRs = pullStmt.executeQuery("SELECT key_driverId FROM drivers ORDER BY key_driverId DESC LIMIT 1");
                pullRs.first();
                driverId.setText(String.valueOf(pullRs.getInt("key_driverId")+1));
                pullRs.close();
                con.close();
            catch(SQLException e){}
        }   

    Thanks, here it is.... Remember, I'm trying to insert a value from database into jTextfield in formInternalFrameOpened event.
    * NewDriver.java
    * Created on August 9, 2007, 9:14 AM
    package LimoApp;
    import java.sql.*;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import javax.swing.JOptionPane;
    * @author  NKA
    public class NewDriver extends javax.swing.JInternalFrame {
        /** Creates new form NewDriver */
        public NewDriver() {
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            jPanel1 = new javax.swing.JPanel();
            driverId = new javax.swing.JTextField();
            firstName = new javax.swing.JTextField();
            jLabel1 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            jLabel3 = new javax.swing.JLabel();
            jLabel4 = new javax.swing.JLabel();
            lastName = new javax.swing.JTextField();
            jLabel5 = new javax.swing.JLabel();
            address = new javax.swing.JTextField();
            jLabel6 = new javax.swing.JLabel();
            city = new javax.swing.JTextField();
            jLabel7 = new javax.swing.JLabel();
            state = new javax.swing.JComboBox();
            jLabel8 = new javax.swing.JLabel();
            zipcode = new javax.swing.JTextField();
            jLabel9 = new javax.swing.JLabel();
            workPhone = new javax.swing.JTextField();
            jLabel10 = new javax.swing.JLabel();
            extention = new javax.swing.JTextField();
            jLabel11 = new javax.swing.JLabel();
            homePhone = new javax.swing.JTextField();
            jLabel12 = new javax.swing.JLabel();
            mobilePhone = new javax.swing.JTextField();
            jLabel13 = new javax.swing.JLabel();
            dispatchEmail = new javax.swing.JTextField();
            personalEmail = new javax.swing.JTextField();
            jPanel3 = new javax.swing.JPanel();
            licenseNumber = new javax.swing.JTextField();
            jLabel18 = new javax.swing.JLabel();
            socialSecurityNumber = new javax.swing.JTextField();
            jLabel19 = new javax.swing.JLabel();
            dateOfBirth = new javax.swing.JTextField();
            jLabel20 = new javax.swing.JLabel();
            hireDate = new javax.swing.JTextField();
            jLabel21 = new javax.swing.JLabel();
            vehicleAssigned = new javax.swing.JComboBox();
            jLabel22 = new javax.swing.JLabel();
            jPanel4 = new javax.swing.JPanel();
            payWaitingTime = new javax.swing.JCheckBox();
            payExtraStops = new javax.swing.JCheckBox();
            payEarlyLate = new javax.swing.JCheckBox();
            payTolls = new javax.swing.JCheckBox();
            payParking = new javax.swing.JCheckBox();
            payGasSurcharge = new javax.swing.JCheckBox();
            gratuity = new javax.swing.JTextField();
            jLabel14 = new javax.swing.JLabel();
            jLabel15 = new javax.swing.JLabel();
            commission = new javax.swing.JTextField();
            perHourRate = new javax.swing.JTextField();
            perMileRate = new javax.swing.JTextField();
            jLabel16 = new javax.swing.JLabel();
            jLabel17 = new javax.swing.JLabel();
            btNewDriverSave = new javax.swing.JButton();
            setClosable(true);
            setIconifiable(true);
            setTitle("New Driver");
            addInternalFrameListener(new javax.swing.event.InternalFrameListener() {
                public void internalFrameActivated(javax.swing.event.InternalFrameEvent evt) {
                public void internalFrameClosed(javax.swing.event.InternalFrameEvent evt) {
                public void internalFrameClosing(javax.swing.event.InternalFrameEvent evt) {
                public void internalFrameDeactivated(javax.swing.event.InternalFrameEvent evt) {
                public void internalFrameDeiconified(javax.swing.event.InternalFrameEvent evt) {
                public void internalFrameIconified(javax.swing.event.InternalFrameEvent evt) {
                public void internalFrameOpened(javax.swing.event.InternalFrameEvent evt) {
                    formInternalFrameOpened(evt);
            jPanel1.setBorder(javax.swing.BorderFactory.createTitledBorder(null, "Driver", javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION, javax.swing.border.TitledBorder.DEFAULT_POSITION, new java.awt.Font("Tahoma", 1, 11), new java.awt.Color(102, 0, 0)));
            driverId.setEditable(false);
            driverId.setHorizontalAlignment(javax.swing.JTextField.RIGHT);
            firstName.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    firstNameFocusLost(evt);
            jLabel1.setText("Dispatch Email");
            jLabel2.setText("Personal Email");
            jLabel3.setText("Driver ID");
            jLabel4.setText("First Name");
            lastName.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    lastNameFocusLost(evt);
            jLabel5.setText("Last Name");
            jLabel6.setText("Address");
            jLabel7.setText("City");
            state.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "AL", "VA" }));
            jLabel8.setText("State");
            zipcode.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    zipcodeFocusLost(evt);
            jLabel9.setText("Zipcode");
            workPhone.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    workPhoneFocusLost(evt);
            jLabel10.setText("Work Phone");
            extention.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    extentionFocusLost(evt);
            jLabel11.setText("Extention");
            homePhone.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    homePhoneFocusLost(evt);
            jLabel12.setText("Home Phone");
            mobilePhone.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    mobilePhoneFocusLost(evt);
            jLabel13.setText("Cell");
            dispatchEmail.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    dispatchEmailFocusLost(evt);
            personalEmail.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    personalEmailFocusLost(evt);
            javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
            jPanel1.setLayout(jPanel1Layout);
            jPanel1Layout.setHorizontalGroup(
                jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jPanel1Layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(jPanel1Layout.createSequentialGroup()
                            .addGap(8, 8, 8)
                            .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                                .addComponent(jLabel12)
                                .addComponent(jLabel10)
                                .addComponent(jLabel4)
                                .addComponent(jLabel3)
                                .addComponent(jLabel6)
                                .addComponent(jLabel7)))
                        .addComponent(jLabel1)
                        .addComponent(jLabel2))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                        .addGroup(jPanel1Layout.createSequentialGroup()
                            .addComponent(firstName, javax.swing.GroupLayout.PREFERRED_SIZE, 111, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(jLabel5)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(lastName))
                        .addComponent(address)
                        .addComponent(dispatchEmail)
                        .addGroup(jPanel1Layout.createSequentialGroup()
                            .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
                                .addComponent(workPhone, javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(city, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 112, Short.MAX_VALUE)
                                .addComponent(homePhone, javax.swing.GroupLayout.Alignment.LEADING))
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                                .addGroup(jPanel1Layout.createSequentialGroup()
                                    .addComponent(jLabel8)
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                                        .addGroup(jPanel1Layout.createSequentialGroup()
                                            .addGap(10, 10, 10)
                                            .addComponent(jLabel11)
                                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                            .addComponent(extention, javax.swing.GroupLayout.PREFERRED_SIZE, 71, javax.swing.GroupLayout.PREFERRED_SIZE))
                                        .addGroup(jPanel1Layout.createSequentialGroup()
                                            .addComponent(state, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                            .addComponent(jLabel9)
                                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                            .addComponent(zipcode))))
                                .addGroup(jPanel1Layout.createSequentialGroup()
                                    .addComponent(jLabel13)
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addComponent(mobilePhone, javax.swing.GroupLayout.PREFERRED_SIZE, 111, javax.swing.GroupLayout.PREFERRED_SIZE))))
                        .addComponent(personalEmail)
                        .addComponent(driverId, javax.swing.GroupLayout.PREFERRED_SIZE, 63, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            jPanel1Layout.setVerticalGroup(
                jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jPanel1Layout.createSequentialGroup()
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel3)
                        .addComponent(driverId, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel4)
                        .addComponent(jLabel5)
                        .addComponent(lastName, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(firstName, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel6)
                        .addComponent(address, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel7)
                        .addComponent(city, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(state, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jLabel8)
                        .addComponent(jLabel9)
                        .addComponent(zipcode, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(workPhone, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jLabel10)
                        .addComponent(jLabel11)
                        .addComponent(extention, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel12)
                        .addComponent(jLabel13)
                        .addComponent(mobilePhone, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(homePhone, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel1)
                        .addComponent(dispatchEmail, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel2)
                        .addComponent(personalEmail, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            jPanel3.setBorder(javax.swing.BorderFactory.createTitledBorder(null, "Documents", javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION, javax.swing.border.TitledBorder.DEFAULT_POSITION, new java.awt.Font("Tahoma", 1, 11), new java.awt.Color(102, 0, 0)));
            licenseNumber.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    licenseNumberFocusLost(evt);
            jLabel18.setText("License #");
            socialSecurityNumber.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    socialSecurityNumberFocusLost(evt);
            jLabel19.setText("Social Security #");
            dateOfBirth.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    dateOfBirthFocusLost(evt);
            jLabel20.setText("Date of Birth");
            hireDate.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    hireDateFocusLost(evt);
            jLabel21.setText("Hire Date");
            vehicleAssigned.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
            jLabel22.setText("Vehicle Assigned");
            javax.swing.GroupLayout jPanel3Layout = new javax.swing.GroupLayout(jPanel3);
            jPanel3.setLayout(jPanel3Layout);
            jPanel3Layout.setHorizontalGroup(
                jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jPanel3Layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(jPanel3Layout.createSequentialGroup()
                            .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                                .addComponent(jLabel18)
                                .addComponent(jLabel19))
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                                .addComponent(socialSecurityNumber)
                                .addComponent(licenseNumber, javax.swing.GroupLayout.DEFAULT_SIZE, 104, Short.MAX_VALUE))
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 19, Short.MAX_VALUE)
                            .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                                .addComponent(jLabel20)
                                .addComponent(jLabel21))
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                                .addComponent(hireDate)
                                .addComponent(dateOfBirth, javax.swing.GroupLayout.PREFERRED_SIZE, 77, javax.swing.GroupLayout.PREFERRED_SIZE)))
                        .addGroup(jPanel3Layout.createSequentialGroup()
                            .addComponent(jLabel22)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(vehicleAssigned, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)))
                    .addContainerGap())
            jPanel3Layout.setVerticalGroup(
                jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jPanel3Layout.createSequentialGroup()
                    .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(jPanel3Layout.createSequentialGroup()
                            .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                .addComponent(jLabel18)
                                .addComponent(licenseNumber, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                .addComponent(jLabel19)
                                .addComponent(socialSecurityNumber, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)))
                        .addGroup(jPanel3Layout.createSequentialGroup()
                            .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                .addComponent(jLabel20)
                                .addComponent(dateOfBirth, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                .addComponent(hireDate, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                                .addComponent(jLabel21))))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 9, Short.MAX_VALUE)
                    .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(vehicleAssigned, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jLabel22))
                    .addContainerGap())
            jPanel4.setBorder(javax.swing.BorderFactory.createTitledBorder(null, "Payroll Stettings", javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION, javax.swing.border.TitledBorder.DEFAULT_POSITION, new java.awt.Font("Tahoma", 1, 11), new java.awt.Color(102, 0, 0)));
            payWaitingTime.setText("Pay Waiting Time");
            payWaitingTime.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
            payWaitingTime.setMargin(new java.awt.Insets(0, 0, 0, 0));
            payExtraStops.setText("Pay Extra Stops");
            payExtraStops.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
            payExtraStops.setMargin(new java.awt.Insets(0, 0, 0, 0));
            payEarlyLate.setText("Pay Early / Late");
            payEarlyLate.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
            payEarlyLate.setMargin(new java.awt.Insets(0, 0, 0, 0));
            payTolls.setText("Pay Tolls");
            payTolls.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
            payTolls.setMargin(new java.awt.Insets(0, 0, 0, 0));
            payParking.setText("Pay Parking");
            payParking.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
            payParking.setMargin(new java.awt.Insets(0, 0, 0, 0));
            payGasSurcharge.setText("Pay Gas Surcharge");
            payGasSurcharge.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
            payGasSurcharge.setMargin(new java.awt.Insets(0, 0, 0, 0));
            gratuity.setHorizontalAlignment(javax.swing.JTextField.RIGHT);
            gratuity.setText("0");
            gratuity.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    gratuityFocusLost(evt);
            jLabel14.setText("Gratuity %");
            jLabel15.setText("Commission %");
            commission.setHorizontalAlignment(javax.swing.JTextField.RIGHT);
            commission.setText("0");
            commission.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    commissionFocusLost(evt);
            perHourRate.setHorizontalAlignment(javax.swing.JTextField.RIGHT);
            perHourRate.setText("0");
            perHourRate.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    perHourRateFocusLost(evt);
            perMileRate.setHorizontalAlignment(javax.swing.JTextField.RIGHT);
            perMileRate.setText("0");
            perMileRate.addFocusListener(new java.awt.event.FocusAdapter() {
                public void focusLost(java.awt.event.FocusEvent evt) {
                    perMileRateFocusLost(evt);
            jLabel16.setText("Per Mile Rate");
            jLabel17.setText("Per Hour Rate");
            javax.swing.GroupLayout jPanel4Layout = new javax.swing.GroupLayout(jPanel4);
            jPanel4.setLayout(jPanel4Layout);
            jPanel4Layout.setHorizontalGroup(
                jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jPanel4Layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(jPanel4Layout.createSequentialGroup()
                            .addGap(16, 16, 16)
                            .addComponent(jLabel14)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(gratuity, javax.swing.GroupLayout.PREFERRED_SIZE, 52, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addGap(9, 9, 9)
                            .addComponent(jLabel16)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(perMileRate, javax.swing.GroupLayout.PREFERRED_SIZE, 51, javax.swing.GroupLayout.PREFERRED_SIZE))
                        .addGroup(jPanel4Layout.createSequentialGroup()
                            .addComponent(jLabel15)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(commission, 0, 0, Short.MAX_VALUE)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(jLabel17)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(perHourRate, 0, 0, Short.MAX_VALUE))
                        .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel4Layout.createSequentialGroup()
                            .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(payWaitingTime)
                                .addComponent(payEarlyLate)
                                .addComponent(payExtraStops))
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 45, Short.MAX_VALUE)
                            .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                                .addGroup(jPanel4Layout.createSequentialGroup()
                                    .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                        .addComponent(payParking)
                                        .addComponent(payTolls))
                                    .addGap(36, 36, 36))
                                .addComponent(payGasSurcharge))))
                    .addContainerGap())
            jPanel4Layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {commission, gratuity, perHourRate, perMileRate});
            jPanel4Layout.setVerticalGroup(
                jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jPanel4Layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                            .addComponent(jLabel14)
                            .addComponent(gratuity, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                        .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                            .addComponent(jLabel16)
                            .addComponent(perMileRate, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)))
                    .addGap(14, 14, 14)
                    .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                            .addComponent(jLabel15)
                            .addComponent(commission, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                        .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

  • Matrix doesn't show row in SBO 2005

    Hi,
    i am trying to convert an addon from sbo 2004 to 2005.
    In 2004 eveything works fine but in 2005 i have the problem that the matrix on my form doesn't show a row. The columns of the matrix are binded to a datasource. I have done this by using an .srf file (see below).
    I use this code to add an empty row:
            Dim LastRow As Integer
            LastRow = m_dbdsPROJLINE.Size
            m_dbdsPROJLINE.InsertRecord(LastRow)
            With m_dbdsPROJLINE
                .SetValue("U_DOCNUM", LastRow, m_intCurrentDocNum.ToString)
                .SetValue("U_LINENUM", LastRow, m_intCurrentLineNum.ToString)
                .SetValue("U_PROCESS", LastRow, "00")
                .SetValue("U_HOURS", LastRow, 0)
                .SetValue("U_EMPLCOST", LastRow, 0)
                .SetValue("U_REMARKS", LastRow, "")
                .SetValue("U_MACHINID", LastRow, 0)
                .SetValue("U_MACHHOUR", LastRow, 0)
            End With
            m_udsChanged.Value = "N"
            m_dbdsPROJLINE.Offset = LastRow
            m_udsNUM.Value = m_dbdsPROJLINE.Size
            'add empty row in every case
            m_mtxPROJLN.AddRow()
            'increase line number
            m_intCurrentLineNum += 1
    The .srf file:
    <?xml version="1.0" encoding="UTF-16"?>
    <Application>
       <forms>
          <action
           type="add">
             <form
              appformnumber="2000009400"
              client_height="376"
              client_width="715"
              color="0"
              default_button=""
              height="410"
              left="277"
              pane="0"
              title="Projektzeiterfassung"
              top="39"
              type="0"
              uid=""
              visible="0"
              width="720">
                <datasources>
                   <dbdatasources>
                      <action
                       type="add">
                         <datasource
                          tablename="@PROJHEAD"></datasource>
                         <datasource
                          tablename="@PROJLINE"></datasource>
                      </action>
                   </dbdatasources>
                   <userdatasources>
                      <action
                       type="add">
                         <datasource
                          size="4"
                          type="0"
                          uid="SY_NUM"></datasource>
                         <datasource
                          size="1"
                          type="9"
                          uid="SY_CHANGE"></datasource>                     
                         <datasource
                          size="8"
                          type="12"
                          uid="SY_DATE2"></datasource>
                      </action>
                   </userdatasources>
                </datasources>
                <menus></menus>
                <items>
                   <action
                    type="add">
                      <Item
                       description=""
                       disp_desc="1"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="105"
                       linkto=""
                       right_just="0"
                       tab_order="1"
                       to_pane="0"
                       top="2"
                       type="113"
                       uid="cmbPROJECT"
                       visible="1"
                       width="150">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1">
                            <ValidValues>
                               <action
                                type="add"></action>
                            </ValidValues>
                            <databind
                             alias="U_PRJCODE"
                             databound="1"
                             table="@PROJHEAD"></databind>
                         </Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="7"
                       linkto="cmbPROJECT"
                       right_just="0"
                       tab_order="0"
                       to_pane="0"
                       top="1"
                       type="8"
                       uid="lblPROJECT"
                       visible="1"
                       width="80">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          caption="Projekt"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1"></Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="0"
                       from_pane="0"
                       height="14"
                       left="553"
                       linkto=""
                       right_just="0"
                       tab_order="0"
                       to_pane="0"
                       top="2"
                       type="16"
                       uid="txtDOCNUM"
                       visible="1"
                       width="130">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1">
                            <databind
                             alias="U_DOCNUM"
                             databound="1"
                             table="@PROJHEAD"></databind>
                         </Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="444"
                       linkto=""
                       right_just="0"
                       tab_order="0"
                       to_pane="0"
                       top="2"
                       type="8"
                       uid="lblDOCNUM"
                       visible="1"
                       width="80">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          caption="Buchungsnr."
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1"></Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="1"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="105"
                       linkto=""
                       right_just="0"
                       tab_order="2"
                       to_pane="0"
                       top="20"
                       type="113"
                       uid="cmbEMPLOY"
                       visible="1"
                       width="150">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1">
                            <ValidValues>
                               <action
                                type="add"></action>
                            </ValidValues>
                            <databind
                             alias="U_EMPID"
                             databound="1"
                             table="@PROJHEAD"></databind>
                         </Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="7"
                       linkto="cmbEMPLOY"
                       right_just="0"
                       tab_order="0"
                       to_pane="0"
                       top="19"
                       type="8"
                       uid="lblEMPLOY"
                       visible="1"
                       width="66">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          caption="Mitarbeiter"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1"></Specific>
                      </Item>
    <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="553"
                       linkto=""
                       right_just="0"
                       tab_order="0"
                       to_pane="0"
                       top="20"
                       type="16"
                       uid="txtDATE2"
                       visible="0"
                       width="130">
                         <Specific
                          AffectsFormMode="0"
                          backcolor="-1"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1">
                            <databind
                             alias="SY_DATE2"
                             databound="1"
                             table=""></databind>
                         </Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="553"
                       linkto=""
                       right_just="0"
                       tab_order="4"
                       to_pane="0"
                       top="20"
                       type="16"
                       uid="txtDATE"
                       visible="1"
                       width="130">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1">
                            <databind
                             alias="U_DOCDATE"
                             databound="1"
                             table="@PROJHEAD"></databind>
                         </Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="444"
                       linkto=""
                       right_just="0"
                       tab_order="0"
                       to_pane="0"
                       top="20"
                       type="8"
                       uid="lblDATE"
                       visible="1"
                       width="79">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          caption="Datum"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1"></Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="1"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="105"
                       linkto=""
                       right_just="0"
                       tab_order="3"
                       to_pane="0"
                       top="38"
                       type="113"
                       uid="cmbITMCODE"
                       visible="1"
                       width="150">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1">
                            <ValidValues>
                               <action
                                type="add"></action>
                            </ValidValues>
                            <databind
                             alias="U_ITEMCODE"
                             databound="1"
                             table="@PROJHEAD"></databind>
                         </Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="7"
                       linkto="cmbITMCODE"
                       right_just="0"
                       tab_order="0"
                       to_pane="0"
                       top="37"
                       type="8"
                       uid="lblITMCODE"
                       visible="1"
                       width="80">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          caption="Artikelnr."
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1"></Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="510"
                       linkto=""
                       right_just="0"
                       tab_order="5"
                       to_pane="0"
                       top="38"
                       type="16"
                       uid="txtPCSOK"
                       visible="1"
                       width="40">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1">
                            <databind
                             alias="U_PCSOK"
                             databound="1"
                             table="@PROJHEAD"></databind>
                         </Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="444"
                       linkto=""
                       right_just="0"
                       tab_order="0"
                       to_pane="0"
                       top="38"
                       type="8"
                       uid="lblPCSOK"
                       visible="1"
                       width="60">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          caption="Stückzahl i.O."
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1"></Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="643"
                       linkto=""
                       right_just="0"
                       tab_order="6"
                       to_pane="0"
                       top="38"
                       type="16"
                       uid="txtPCSNOK"
                       visible="1"
                       width="40">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1">
                            <databind
                             alias="U_PCSNOK"
                             databound="1"
                             table="@PROJHEAD"></databind>
                         </Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="14"
                       left="553"
                       linkto=""
                       right_just="0"
                       tab_order="0"
                       to_pane="0"
                       top="38"
                       type="8"
                       uid="lblPCSNOK"
                       visible="1"
                       width="51">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          caption="nicht i.O."
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1"></Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="281"
                       left="7"
                       linkto=""
                       right_just="0"
                       tab_order="7"
                       to_pane="0"
                       top="66"
                       type="127"
                       uid="mtxPROJLN"
                       visible="1"
                       width="700">
                         <Specific
                          AffectsFormMode="1"
                          SelectionMode="2"
                          backcolor="-1"
                          font_size="-1"
                          forecolor="-1"
                          layout="0"
                          supp_zeros="0"
                          text_style="-1">
                            <columns>
                               <action
                                type="add">
                                  <column
                                   AffectsFormMode="1"
                                   backcolor="-1"
                                   description=""
                                   disp_desc="0"
                                   editable="0"
                                   font_size="12"
                                   forecolor="-1"
                                   right_just="0"
                                   supp_zeros="0"
                                   text_style="-1"
                                   title="#"
                                   type="16"
                                   uid="Col0"
                                   val_off="N"
                                   val_on="SY_NUM"
                                   visible="1"
                                   width="20">
                                     <databind
                                      alias="SY_NUM"
                                      databound="1"
                                      table=""></databind>
                                  </column>
                                  <column
                                   AffectsFormMode="0"
                                   backcolor="-1"
                                   description=""
                                   disp_desc="0"
                                   editable="1"
                                   font_size="12"
                                   forecolor="-1"
                                   right_just="0"
                                   supp_zeros="0"
                                   text_style="-1"
                                   title="LINENUM"
                                   type="16"
                                   uid="Col7"
                                   val_off=""
                                   val_on=""
                                   visible="0"
                                   width="20">
                                     <databind
                                      alias="U_LINENUM"
                                      databound="1"
                                      table="@PROJLINE"></databind>
                                  </column>
                                    <column
                                   AffectsFormMode="0"
                                   backcolor="-1"
                                   description=""
                                   disp_desc="0"
                                   editable="1"
                                   font_size="12"
                                   forecolor="-1"
                                   right_just="0"
                                   supp_zeros="0"
                                   text_style="-1"
                                   title="CHANGED"
                                   type="16"
                                   uid="colCHANGE"
                                   val_off="N"
                                   val_on="Y"
                                   visible="0"
                                   width="30">
                                     <databind
                                      alias="SY_CHANGE"
                                      databound="1"
                                      table=""></databind>
                                  </column>
                          <column
                                   AffectsFormMode="1"
                                   backcolor="-1"
                                   description=""
                                   disp_desc="1"
                                   editable="1"
                                   font_size="12"
                                   forecolor="-1"
                                   right_just="0"
                                   supp_zeros="0"
                                   text_style="-1"
                                   title="Arbeitsgang"
                                   type="113"
                                   uid="Col4"
                                   val_off=""
                                   val_on=""
                                   visible="1"
                                   width="120">
                                     <ValidValues>
                                        <action
                                         type="add"></action>
                                     </ValidValues>
                                     <databind
                                      alias="U_PROCESS"
                                      databound="1"
                                      table="@PROJLINE"></databind>
                                  </column>
                                  <column
                                   AffectsFormMode="1"
                                   backcolor="-1"
                                   description=""
                                   disp_desc="0"
                                   editable="1"
                                   font_size="12"
                                   forecolor="-1"
                                   right_just="0"
                                   supp_zeros="0"
                                   text_style="-1"
                                   title="Stunden"
                                   type="16"
                                   uid="Col3"
                                   val_off="N"
                                   val_on="U_HOURS"
                                   visible="1"
                                   width="50">
                                     <databind
                                      alias="U_HOURS"
                                      databound="1"
                                      table="@PROJLINE"></databind>
                                  </column>
                                  <column
                                   AffectsFormMode="1"
                                   backcolor="-1"
                                   description=""
                                   disp_desc="1"
                                   editable="1"
                                   font_size="12"
                                   forecolor="-1"
                                   right_just="0"
                                   supp_zeros="0"
                                   text_style="-1"
                                   title="Maschine"
                                   type="113"
                                   uid="Col6"
                                   val_off=""
                                   val_on=""
                                   visible="1"
                                   width="150">
                                     <ValidValues>
                                        <action
                                         type="add"></action>
                                     </ValidValues>
                                     <databind
                                      alias="U_MACHINID"
                                      databound="1"
                                      table="@PROJLINE"></databind>
                                  </column>
                                  <column
                                   AffectsFormMode="1"
                                   backcolor="-1"
                                   description=""
                                   disp_desc="0"
                                   editable="1"
                                   font_size="12"
                                   forecolor="-1"
                                   right_just="0"
                                   supp_zeros="0"
                                   text_style="-1"
                                   title="Std. Satz Maschine"
                                   type="16"
                                   uid="Col5"
                                   val_off="N"
                                   val_on="Y"
                                   visible="1"
                                   width="80">
                                     <databind
                                      alias="U_MACHHOUR"
                                      databound="1"
                                      table="@PROJLINE"></databind>
                                  </column>                         
                                  <column
                                   AffectsFormMode="1"
                                   backcolor="-1"
                                   description=""
                                   disp_desc="0"
                                   editable="1"
                                   font_size="12"
                                   forecolor="-1"
                                   right_just="0"
                                   supp_zeros="0"
                                   text_style="-1"
                                   title="Std. Satz MA"
                                   type="16"
                                   uid="Col2"
                                   val_off="N"
                                   val_on="U_EMPLCOST"
                                   visible="1"
                                   width="80">
                                     <databind
                                      alias="U_EMPLCOST"
                                      databound="1"
                                      table="@PROJLINE"></databind>
                                  </column>
                                  <column
                                   AffectsFormMode="1"
                                   backcolor="-1"
                                   description=""
                                   disp_desc="0"
                                   editable="1"
                                   font_size="12"
                                   forecolor="-1"
                                   right_just="0"
                                   supp_zeros="0"
                                   text_style="-1"
                                   title="Bemerkungen"
                                   type="16"
                                   uid="Col1"
                                   val_off="N"
                                   val_on="U_REMARKS"
                                   visible="1"
                                   width="180">
                                     <databind
                                      alias="U_REMARKS"
                                      databound="1"
                                      table="@PROJLINE"></databind>
                                  </column>
                               </action>
                            </columns>
                         </Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="19"
                       left="10"
                       linkto=""
                       right_just="0"
                       tab_order="0"
                       to_pane="0"
                       top="349"
                       type="4"
                       uid="1"
                       visible="1"
                       width="65">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          caption="OK"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1"></Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="1"
                       from_pane="0"
                       height="19"
                       left="77"
                       linkto=""
                       right_just="0"
                       tab_order="0"
                       to_pane="0"
                       top="349"
                       type="4"
                       uid="2"
                       visible="1"
                       width="65">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          caption="Abbrechen"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1"></Specific>
                      </Item>
                      <Item
                       description=""
                       disp_desc="0"
                       enabled="0"
                       from_pane="0"
                       height="19"
                       left="144"
                       linkto=""
                       right_just="0"
                       tab_order="0"
                       to_pane="0"
                       top="349"
                       type="4"
                       uid="btnDELETE"
                       visible="1"
                       width="65">
                         <Specific
                          AffectsFormMode="1"
                          backcolor="-1"
                          caption="Löschen"
                          font_size="-1"
                          forecolor="-1"
                          supp_zeros="0"
                          text_style="-1"></Specific>
                      </Item>             
                   </action>
                </items>
             </form>
          </action>
       </forms>
    </Application>
    Any ideas how to solve this problem?
    Regards
    Christian Niehaves

    Hello Christian,
    What PL B1 do you use? Since there since some problem with PL10 (already lots of discussion). If you are using PL10, please upgrade to PL11.
    Otherwise, my suggestion is to add a blank row first, to make sure the basic function is all right. And then try to double check your DBDatasource value and databinding.
    If problem still exist, please let us know.
    Hope this helps,
    Nick

  • Running Sync BPEL process doesn't show any HTML form /XML source for input

    Hi
    I designed,compiled and deployed SYNC BPEL process on to server
    but when I opened console and try to run the process, it doesn't show any form for input
    Actually it has to take input
    Where I am doing wrong...?
    Thanks for any help...

    Hi Praveen,
    That is correct, you're not doing anything wrong. The BPEL Console doesn't show any forms for testing the services if the service is synchronous.
    I test my synchronous webservices with Eviware SoapUI. This is a freeware tool. Check: http://www.soapui.org/
    Just create a new project in soapUI, create a new request from WSDL, copy and paste the WSDL in soapUI. It will generate a default request for you, which you can edit and execute.
    HTH,
    Bas

  • System Tray Program doesn't show a form from the menu

    public SysTrayApp()
    ContextMenu TrayMenu = new ContextMenu();
    TrayMenu.MenuItems.Add("Exit", OnExit);
    TrayMenu.MenuItems.Add("Send Mail", SendMail);
    TrayMenu.MenuItems.Add("Add Exception", AddException);
    TrayIcon.Icon = new Icon(SystemIcons.Application, 40, 40);
    TrayIcon.Text = "RJC Server Services";
    TrayIcon.ContextMenu = TrayMenu;
    TrayIcon.Visible = true;
    NewTimer = new System.Timers.Timer(5 * 60 * 1000);
    NewTimer.Elapsed += NewTimer_Elapsed;
    NewTimer.Start();
    void AddException(Object sender, EventArgs e)
    ExceptionList ExceptionForm = new ExceptionList();
    ExceptionForm.ShowDialog();
    This is the code I am trying to use to show a instance of the Exception form. My application is a system tray application, when right clicked it shows menu items, however clicking the add exception menu item doesn't show the form? I have also tried ExceptionForm.Show()
    to no avail. Any ideas?

    figured it out: ExceptionForm.Visible = true;
    Also I had a long running process on form load that took a while to execute before the form was shown.

  • Former backup with PC Companion doesn't show up in 5.1.1

    I did a backup under Window 10 with PC Companion and at the end the software crashed (--> please check your software). But the  backup did show up in PC Companion.The Sony XPERIA Z3 Compact had Android Lollipop 5.0.2; but I updated it afterwards to 5.1.1. Now the backup doesn't show up in PC Companion. I can't restore it (it doesn't help to select it manually).I tried to downgrade; but this didn't work.  What can I do? BTW: The email support of Sony could be better; it should be common to answer a question within a day.   

     You should call them instead of emailing them, the backup will only work with 5.0.2 not 5.1.1

  • BPM console doesn't shows the deployed application in BPM console

    Hi Friends,
    i developed a BPM process in Jdeveloper and deployed in the weblogic server. Enterprise manager shows that application but in BPM workspace doesn't shows that application to initiate the process form BPM console. any one can you please let me know why the weblogic server shows this peculiar behavior?
    Thanks
    Hari Mandadapu

    Did you create an initiator task with corresponding Task Flow within the BPM Project?
    Only when you add an initiator task it will show up in the BPM Workspace.
    An initiator task differs from a regular human workflow task.
    Otherwise you can only start the process from Enterprise Manager or Webservice Call. Check out if the process show up in Enterprise Manager.
    Regards,
    Martien

  • I purchased a movie from itunes on my ipad but it doesn't show up in my library.  It shows up in my history of purchases when I open that page but it is not noted in the list of purchases with all my other purchases.  Any idea why?

    I purchased a movie from itunes on my regular ipad but it doesn't show up in my library.  I am able to view it via my movies icon on the Ipad I used when purchasing it but it does not show up in my purchases listing to download to my ipad mini.  Also if I access my itunes account it does not show up in the history of purchases listing like all my other purchases but it does show up when i open that page at the very top; separate form the list.  I've tried everything to get it to show up so I can download/view it on my ipad mini.  

    Hi adtsalmon,
    You can only watch the movie on the device you rented it on. Here's a snippet from the Apple Support site (italics mine):
    If you download a rented movie on your computer: You can transfer it to a device such as your Apple TV (1st generation), iPhone, iPad, or iPod if it’s a standard-definition film (movies in HD can only be watched on your computer, iPad, iPhone 4 or later, iPod touch (4th generation or later), or Apple TV). Once you move the movie from your computer to a device, the movie will disappear from your computer's iTunes library. You can move the movie between devices as many times as you wish during the rental period, but the movie can only exist on one device at a time.
    If you download a rented movie on your iPhone 4 or later, iPad, iPod touch (4th generation or later), or Apple TV: It is not transferable to any other device or computer.
    Here's the link to the Movie Rentals FAQs site FYI:
    http://support.apple.com/kb/HT1657
    Hope this helps!
    Cheers,
    GB

  • HT5312 The option to reset security information tab isn't showing up for me, is there I way that I can make it show up. I have a rescue email address and it still doesn't show up. Please help!

    The option to reset my security information tab is not available for me, I have a rescue email address in place and it still doesn't show up. Please help!

    You need to ask Apple to reset your security questions; ways of doing so include clicking here and picking a method for your country, and filling out and submitting this form.
    (96335)

  • So, I made my account a while ago before I had an iPhone so I can get music. The result of that I can't remember my security questions, and it tells me to send a rescue email an alert, but it doesn't show you how to get to that page. Can someone help me?

    So, I made my account a while ago before I had an iPhone so I can get music. The result of that I can't remember my security questions, and it tells me to send a rescue email an alert, but it doesn't show you how to get to that page. I am getting quite annoyed because apples hours arent the best fitted to my scedule since I have school and work, so I cant call and ask how to get fixed. Please help me all I want to do is buy some music...

    Click here and fill out the form.
    (90729)

  • My ipad air calendar doesn't show appointments in year view?

    my ipad air calendar doesn't show appointments in year view?

    Year view is too small. You have to be on at least month view.
    You can view alll your events in list form by tapping the magnifying glass on the top right.

  • TV Show doesn't show all episodes in cloud

    I bought a few episodes of the show Arrow.  In trying to clear up some disk space, I deleted them from itunes.  For some reason, most of them show up in my library with the cloud icon, and are available on my other devices, but at current, it doesn't show in the list on other devices, or in itunes (until I download it as I'm doing in the picture.
    Is there anything I can do to restore it to it's former cloudy self?
    Using iTunes 11 on OSX Lion

    i'm having the same problem with an episode of beavis and butthead I watched it on the computer but then when I synced it to my ipod it won't play just a black screen and I'm not sure what the problem is. I checked the video settings and it didn't help fixing the problem with it. but the podcasts still worked on the 30 gb ipod.

  • Why my form doesn't fit in the navigator window?

    Why my form doesn't fit in the navigator window?.
    When I execute the form from navigator the form appears in but the size is less than the size of the explorer and shows shows vertical and horizontal scrollbars. What can I do to avoid this?, Is there any solution different than modify all my forms?, Is there any way to configure my navigator?
    Sorry if I'm slighty off topic

    We also faced this problem but now we have made changes in formsweb.cfg file by setting SeprateScreen=true value and restarting form server.
    This will open forms in new window instead of same.
    I hope this will work for you also.

Maybe you are looking for