BackColor in a matrix

Hi all,
How can i fill the color in single Row
I tried this
oMatrix.Columns("Art").Cells(i).Specific.BackColor = vbRed
but with this code i fill entire columns
Sorry for my English
Best regards
Hany

Hi Hany,
Have a look at this post, where is basically said that this issue will be fixed in 2005.
UI: Changing Row Color in the Matrix
https://www.sdn.sap.com/sdn/collaboration.sdn?node=linkFnode1-12&contenttype=url&content=https://
Regards,
Ibai Peñ

Similar Messages

  • Change Matrix column backcolor in standard form

    Hi, all
    Is it possible to change the Matrix column backcolor in standard form?
    thanks.

    hi,
    yes it is possible.
    oMatrix.Columns.Item("1").BackColor = 16316664 'color codes
    regards,
    varma

  • Problem with checkbox column in matrix

    Hello.
    I have a little problem with checkbox column in matrix.
    Column is binded to the UserData.
    It has ValOn="Y", ValOff="N".
    I use C++. It is wird problem. In matrix I have 10 columns - scrollbar role and if You want see checkbox column, You must role to the right. If this column is on the screen, and I use:
    checkcell->PutChecked(VARIANT_TRUE);
    then the checkbox is cheched, and if the checkbox isn`t on the screen and I use this comment - it nothing happening.
    I tried to use ValOn="Y", PutChecked...
    The problem i solved if the column is on the screen - if the column is first in matrix or second, but if it`s last I have a big problem.
    My column with checkbox is not editable, but I tried to make it editable, check it, and then make it uneditable - the same efect.
    How can I solve it ?
    Sorry for my english.
    Kamil Wydra

    Hello Kamil,
    I am not sure about your problem, but here is an example of how to use checkbox in UI API.
    First, create the matrix with checkbox column in Screen painter, and the output is an xml file, like this. Type as 121 indicates that it is a check box.
    - <column AffectsFormMode="0" backcolor="-1" description="" disp_desc="0" editable="0" right_just="0" title="Rented" type="121" uid="Rented" val_off="N" val_on="Y" visible="1" width="41">
      <databind alias="U_RENTED" databound="1" table="@VIDS" />
      <ExtendedObject />
    Second, bind the column to table from DB. This is a bug of 2004 Screen Painter, so if you are using 2005 Screen Painter, there is no problem.
    Third, when you open the form, you can check and uncheck the cell.
    BTW, please set the editable of the column to true.
    Hope this helps,
    Nick

  • How to change the forecolor of a single row of a matrix

    In a matrix which is displaying list of items like the Sales Order Form, I am trying to change the forecolor to red for only those items where the item's required quantity is lesser than the item's avialable quantity.
    The Code Snippet is as follows:
    ReqQty = oMatrix.Columns.Item("ReqQty").Cells.Item(pval.row).Specific.value
    AvaQty = oMatrix.Columns.Item("AvaQty").Cells.Item(pval.row).Specific.value
    If ReqQty > AvaQty Then
    Dim txtField As SAPbouiCOM.EditText
    oMatrix = oform.Items.Item("cMatrix").Specific
    txtField = oMatrix.Columns.Item("ItemNo").Cells.Item (pval.row).Specific
    txtField.ForeColor = 200
    txtField = oMatrix.Columns.Item("ItemDesc").Cells.Item(pval.row).Specific
    txtField.ForeColor = 200
    oMatrix.Columns.Item("ReqQty").Cells.Item(pval.row).Specific
    txtField.ForeColor = 200
    oMatrix.Columns.Item("AvaQty").Cells.Item(pval.row).Specific
    txtField.ForeColor = 200
    End If
    But the problem is , if this condition applies to any one of the items in the matrix, then all the rows in the matrix change the forecolor to red.
    Has anyone faced this problem and has a solution to it?

    I haven't tested the problems you have for a matrix.
    But I have seen the properties are not exposed for the Cell object...
    Regarding the ForeColor and BackColor on the EditText they are deprecated starting from 2004 BUT you have the same properties now exposed at the <b>Item</b> level.
    For the Column object the ForeColor and BackColor are not market as deprecated.
    Regards
    Trinidad.

  • How can I add a linkbutton in the matrix (XML)

    Hi,Everybody ,I want to add a linkbutton in the matrix ,and the form that the matrix is in was created by using XML ,this is the XML code .
                                                      <column AffectsFormMode="1" backcolor="-1" description="" disp_desc="0" editable="1" font_size="12" forecolor="-1" right_just="0" text_style="0" title="ItemCode" type="16" uid="2" visible="1" width="80">
    <databind alias="U_ItemCode" databound="1" table="@IQM1"/>
                                                           <ExtendedObject linkedObject="4"/>
                                                      </column>
    and How can I do in my code , and I can get the linkbutton.
    thanks .

    Change the type of the column to 116 and then it will display the linked arrow.
    You'll see right now it has made space but not diplaying it.
    Hope this helps

  • A treeview in one of Matrix's columns

    Hi Guys,
    Because this is my first post on this forum, I would like to say "hello" to everybody.
    I would like to ask you about a following matter: is it possible to add a column to a matrix object (or changing an existing column appropriately by setting its relevant properties), which will display the values in a tree-form view?
    It would be great to have the same behavior as the present (SBO 8.8) behavour of the Category column displayed in the User-Defined Fields - Management window's matrix. Below you can find a screenshot of User-Defined Fields Management window, where the Category column is shown:
    Link: [User-Defined Fields - Management screenshot|http://img228.imageshack.us/img228/25/udfm.jpg]
    I'm aware that the grid control can be collapsed/expaneded in a similar way, but I would like to avoid the implementation of the grid control in this case.
    Marcin

    Hi all
    here is the form:
    http://rapidshare.com/files/396518983/Ubicaciones.srf.html
    I used SAPbouiCOM.BoMatrixLayoutType.mlt_Normal.
    I just neded 1 column, but if you need more than one column, all those  equal, maybe is not a great tip, but you can edit by your hand srf file.
    I mean, you can copy all the code for that column and paste it, of curse changing Column Id.
    Something like this:
    <column uid="0" type="16" title="" description="" visible="1" AffectsFormMode="1" width="538" disp_desc="1" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="9671571" forecolor="16711422" text_style="1" font_size="-1"><databind databound="0" table="" alias=""/><ExtendedObject/></column>
    sorry if I can't help you more than this, I hope that you can use it.
    I think that most important here is the way how you use colors combination.
    Hope this helps and sorry for any mistake.

  • Screen Painter - Matrix CellHeight & TitleHeight

    Hi,
    In Screen Painter the Matrix CellHeight & TitleHeight change all the time when I open the Form in Screen Painter. It works when I run the Form, but when I change the Form I always have to change the CellHeight & TitleHeight before I close the fom...puh
    Any suggestion?
    Thank you,
    Rune

    Hai Rune,
              U r change the .srf file to .xml na. So i can able to modify the xml file. I also have the same issue. But i change in xml so its working fine.
    Here is the code
    <item uid="m_Dbond" type="127" left="15" tab_order="0" width="526" top="78" height="228" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="0" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                   <specific SelectionMode="0" layout="0" titleHeight="21" cellHeight="17">
                     <columns>
                       <action type="add">
                         <column uid="v" type="16" title="#" description="" visible="1" AffectsFormMode="1" width="20" disp_desc="0" editable="1" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <databind databound="1" table="@DBOND_DETAIL" alias="LineId" />
                          <ExtendedObject />
                        </column>
    Regards,
    Anitha

  • How to use a link button in a matrix

    Hi, I'm trying to create a matrix with a column that uses a link button to call a Sales order.. how can i do it? i'm new in SBO!

    Hi,
    You can do it in 2 differents ways:
    1. With the ScreenPainter. Set the column property "Type" with the value "et_LINK_BUTTON" and the property "LinkObjectType" with the value of the Business Object (for Sales Orders, the value is "17").
    2. Directly on the XML file. You can see and example below.
    <column uid="col" type="116" title="Parte" description="" visible="1" AffectsFormMode="0" width="55" disp_desc="0" editable="1" right_just="0" val_on="" val_off="" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
          <databind databound="1" table="" alias="col"/>
    <ExtendedObject linkedObject="17" LinkedObjectType="17"/>*
    </column>
    The most important things are the properties "type" (116 for linked button) and "linkedObject" and "LinkedObjectType" (17 for Sales Orders).
    I hope this can help you.
    Regards,
    Cristian Rivero

  • Matrix  with one column browse one photo

    hai everybody
    i am going to  attached  photos in each and every columns ...
    pls....

    I dont know what you mean exactly? In matrix you want to show images or you want to store images through matrix (as attachments)?
    If you want to show images in matrix, the matrix column must be image type as
    <column uid="colPic" type="117" title="" description="" visible="1" AffectsFormMode="1" width="40" disp_desc="0" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1"><databind databound="0" table="" alias=""/><ExtendedObject/></column>
    If you want attach image to matrix, the filed you have binded to matrix must be subtype link as
    oUserFieldsMD.TableName = "ATTACH"
                oUserFieldsMD.Name = "PATH"
                oUserFieldsMD.Description = "path"
                oUserFieldsMD.Type = SAPbobsCOM.BoFieldTypes.db_Memo
                oUserFieldsMD.SubType = SAPbobsCOM.BoFldSubTypes.st_Link
                oUserFieldsMD.EditSize = 250
                lRetCode = oUserFieldsMD.Add
    Then when you dbl click on field, the browse dialog will be shown automaticaly.

  • Add linkbutton to Matrix (Screen Painter)

    Hi All,
    I want to add a link button in a matrix but no success (The form has been developed in Screen Painter).
    Any Idea?
    Best Regards,
    Vangelis
    Edited by: Vangelis Kanellopoulos on Dec 31, 2009 10:48 AM

    Hello ,
    You can have a look a this thread Re: Screen Painter.  How to...
    this is a way to do it a second way is to specify in screen painter  the properties of your colum
    -Type = linkedobject
    -LinkedobjectType = 20
    linked object type takes the BoObjectTypes Enumeration search for it in the sdk
    It will give you something like this in your xml file
    <column uid="C17" type="116" title="Provision Num" description="" visible="1" AffectsFormMode="1" width="102" disp_desc="0" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
    <databind databound="1" table="" alias="DSProvNum"/>
    <ExtendedObject linkedObject="30" LinkedObjectType="30"/>
    </column>
    BR
    Abderrahim BOUKHRIS

  • Make Double Click event on Row, Matrix

    Hi All,
    I'm new in SDK and sorry for my English.
    Please show me how to make double click event on Row of  Matrix, i have created a table contain all Draft which Docstatus is open and order by ObjType(DocType), but i can't using Link Button on DocNum Column to view Object Detail . I think another way to do that is make a double click event on each row of matrix. Can I do like that ? plz show me . Thank for any suggestion.
    Thanks

    Hi Shafi,
    This is my .srf file
    <items><action type="add"><item uid="MTX_Data" type="127" left="15" tab_order="0" width="620" top="41" height="285" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1"><AutoManagedAttribute /><specific SelectionMode="2" layout="0" titleHeight="19" cellHeight="19" TabOrder="0">
    This is my code draw a form with matrix
    Private Sub DrawForm()
            Try
                'Read File interface
                LoadFromXML("DraftOpen.srf")
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End Try
            oForm = SBO_Application.Forms.Item("DRFOPEN")
            ' Add Items       
            ' Add a matrix
            oMatrix = oForm.Items.Item("MTX_Data").Specific
            oMatrix.SelectionMode = SAPbouiCOM.BoMatrixSelect.ms_Single
    This is my event
    Private Sub SBO_Application_ItemEvent(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.ItemEvent
            If pVal.FormUID = "DRFOPEN" And pVal.ItemUID = "MTX_Data" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_DOUBLE_CLICK And pVal.BeforeAction = True Then
                Try
                    oForm = SBO_Application.Forms.Item("DRFOPEN")
                    Dim omatrix As SAPbouiCOM.Matrix
                    omatrix = oForm.Items.Item("MTX_Data").Specific
                    If omatrix.RowCount > 0 Then
                        For i As Integer = 1 To omatrix.RowCount
                            If omatrix.IsRowSelected(i) = True Then
                                MessageBox.Show(omatrix.Columns.Item(1).Cells.Item(pVal.Row).Specific.value)
                                MessageBox.Show(omatrix.Columns.Item(2).Cells.Item(pVal.Row).Specific.value)
                            End If
                        Next
                    End If
                Catch ex As Exception
                    SBO_Application.MessageBox(ex.Message)
                End Try
            End If
    please help me to check this code. i don't know why it's still not working with double click event. sorry to disturb you.
    Edited by: PeterHoang on Aug 30, 2011 10:15 AM

  • Filling matrix with Dummy Data

    I am doing a demo screen for a client and I need to fill a matrix with hard coded data. I followed the sample code and I have the following code but it is not working for me (it throws a matrix-line exists exception):
    // Now get the matrix Item.
    SAPbouiCOM.Item matrixItem  = oForm.Items.Item("v33_Grid");
    theMatrix = (SAPbouiCOM.Matrix) matrixItem.Specific;
    Form.Freeze(true);
    SAPbouiCOM.UserDataSource uds;
    uds = oForm.DataSources.UserDataSources.Add("salesUds",SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 10);
    theMatrix.AddRow(1, theMatrix.RowCount);
    SAPbouiCOM.Column     col      = null;
    // Ready Matrix to populate data
    theMatrix.AutoResizeColumns();
    col = theMatrix.Columns.Item("desc1");
    col.DataBind.SetBound(true, "", "salesUds");
    uds.Value = "Test description";
    // setting the user data source data
    theMatrix.LoadFromDataSource();
    oForm.Freeze(false);
    oForm.Update();     
    I really need to get this working. ANyone got any ideas what I am doing wrong?

    Hi Laura,
    You should use theMatrix.SetLineData() which is the avaiable statement for user matrixes.
    Here is some code that loads a form with a matrix from an XML. This way you can edit form values in the XML, instead of hard coding.
    Dim oXMLDoc1 As Xml.XmlDocument = New Xml.XmlDocument
    oXMLDoc1.Load("C:BaseForm.xml")
    App.LoadBatchActions(oXMLDoc1.InnerXml)
    Dim oForm As SAPbouiCOM.Form = App.Forms.GetForm("ITA0002", 1)
    Dim oMatrix As SAPbouiCOM.Matrix = oForm.Items.Item("5").Specific()
    Dim Informes As SAPbouiCOM.UserDataSource = oForm.DataSources.UserDataSources.Item("Informes")
    Dim ID As SAPbouiCOM.UserDataSource = oForm.DataSources.UserDataSources.Item("ID")
    Dim i As Int16 = 1
    oMatrix.AddRow(ListaInformes.Length)
    For Each Informe As String In NameList
       Informes.ValueEx = Informe
       ID.ValueEx = i.ToString
       oMatrix.SetLineData(i)
       i = i + 1
    Next
    The xml is this one:
    <?xml version="1.0" encoding="UTF-16"?>
    <Application>
         <forms>
              <action type="add">
                   <form AutoManaged="1" BorderStyle="4" FormType="ITA0002" ObjectType="-1" SupportedModes="1" appformnumber="ITA0002" client_height="284" client_width="291" color="0" default_button="1" height="316" left="363" mode="1" pane="1" title="Informes" top="149" type="4" visible="1" width="297">
                        <datasources>
                             <userdatasources>
                                  <action type="add">
                                       <datasource size="254" type="9" uid="Informes"></datasource>
                                  </action>
                                  <action type="add">
                                       <datasource size="10" type="9" uid="ID"></datasource>
                                  </action>
                             </userdatasources>
                        </datasources>
                        <items>
                             <action type="add">
                                  <item AffectsFormMode="1" backcolor="-1" description="" disp_desc="0" enabled="1" font_size="0" forecolor="0" from_pane="0" height="19" left="6" linkto="" right_just="1" supp_zeros="0" tab_order="10" text_style="0" to_pane="0" top="260" type="4" uid="1" visible="1" width="65">
                                       <AutoManagedAttribute></AutoManagedAttribute>
                                       <specific caption="OK"></specific>
                                  </item>
                                  <item AffectsFormMode="1" backcolor="-1" description="" disp_desc="0" enabled="1" font_size="0" forecolor="0" from_pane="0" height="19" left="77" linkto="" right_just="1" supp_zeros="0" tab_order="20" text_style="0" to_pane="0" top="260" type="4" uid="2" visible="1" width="65">
                                       <AutoManagedAttribute></AutoManagedAttribute>
                                       <specific caption="Cancelar"></specific>
                                  </item>
                                  <item AffectsFormMode="1" backcolor="-1" description="" disp_desc="0" enabled="1" font_size="0" forecolor="-1" from_pane="0" height="20" left="5" linkto="" right_just="0" supp_zeros="0" tab_order="0" text_style="0" to_pane="0" top="5" type="99" uid="3" visible="1" width="80">
                                       <AutoManagedAttribute></AutoManagedAttribute>
                                       <specific AffectsFormMode="1" caption="Informes" val_off="0" val_on="1">
                                            <databind alias="Informes" databound="1" table=""></databind>
                                       </specific>
                                  </item>
                                  <item AffectsFormMode="1" backcolor="-1" description="" disp_desc="0" enabled="1" font_size="0" forecolor="-1" from_pane="1" height="224" left="8" linkto="" right_just="0" supp_zeros="0" tab_order="60" text_style="0" to_pane="1" top="28" type="127" uid="5" visible="1" width="276">
                                       <AutoManagedAttribute></AutoManagedAttribute>
                                       <specific SelectionMode="2" layout="0" titleHeight="0">
                                            <columns>
                                                 <action type="add">
                                                      <column AffectsFormMode="1" backcolor="-1" description="" disp_desc="0" editable="0" font_size="12" forecolor="-1" right_just="0" text_style="0" title="2" type="16" uid="2" val_off="N" val_on="Y" visible="1" width="20">
                                                           <databind alias="ID" databound="1" table=""></databind>
                                                           <ExtendedObject></ExtendedObject>
                                                      </column>
                                                      <column AffectsFormMode="1" backcolor="-1" description="" disp_desc="0" editable="0" font_size="12" forecolor="-1" right_just="0" text_style="0" title="Nombre" type="16" uid="1" val_off="" val_on="" visible="1" width="255">
                                                           <databind alias="Informes" databound="1" table=""></databind>
                                                           <ExtendedObject></ExtendedObject>
                                                      </column>
                                                 </action>
                                            </columns>
                                       </specific>
                                  </item>
                             </action>
                        </items>
                        <items>
                             <action type="group">
                                  <item uid="3"></item>
                                  <item uid="4"></item>
                             </action>
                        </items>
                        <FormMenu></FormMenu>
                        <DataBrowser></DataBrowser>
                   </form>
              </action>
         </forms>
    </Application>
    Regards,
    Ibai Peñ

  • HI can u help me to sort out this Matrix Problem

    i ve used the following codes to create matrix in SAP 2007 A Pl 15.
    Set objItem = frmBPMaster.Items.Add("CCMatrix", it_MATRIX)
            Set oMatrixCC = objItem.Specific
            Set oColumns = oMatrixCC.Columns
            oMatrixCC.Layout = mlt_VerticalStaticTitle
    Set objItem = frmBPMaster.Items.Add("CCMatrix", it_MATRIX)
            objItem.Left = 175
            objItem.Width = 230.59
            objItem.Top = 135
            objItem.Height = 150
            objItem.ToPane = 2
            objItem.FromPane = 2
            Set oMatrixCC = objItem.Specific
            Set oColumns = oMatrixCC.Columns
            oMatrixCC.Layout = mlt_VerticalStaticTitle
            Set oColumn = oColumns.Add("#", it_EDIT)
            oColumn.Width = 2
            oColumn.RightJustified = True
            oColumn.Editable = False
            oColumn.DataBind.SetBound True, "", "20_CC"
            Set oColumn = oColumns.Add("CCName", it_EDIT)
            oColumn.TitleObject.Caption = "Credit Card Name"
            oColumn.Width = 16  
            oColumn.Editable = True
            oColumn.DataBind.SetBound True, "", "21_CC"
            oMatrixCC.Clear
            oMatrixCC.AddRow
            oMatrixCC.SetLineData 1      
            oMatrixCC.Columns("#").Visible = False
            oMatrixCC.AutoResizeColumns
    finally It shows multiple of columns in that matrix but i just want like this
    CCname -
    Type      -
    NO        -

    No, I didnt meant it so. Through SDK you arent able to do it with matrix object. The way which is functional I found is create form in screen painter -> you`ll receive srf file (xml) and in this xml is something as
    <action type="add"><item uid="matrixMZ" type="127" left="10" tab_order="0" width="1180" top="53" height="450" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1"><AutoManagedAttribute/><specific SelectionMode="1" layout="0" titleHeight="16" cellHeight="16"><columns>
    and there is cellHeight="16" ...
    The other way is save form as xml (property of form, example is in sdk help) and load it with height property.

  • Column addition in Matrix through XML

    Hi all,
    I am unable to add columns in userdefined matrix in system form through XML.
    After loading the XML in the system form the matrix is appearing without columns. 
    SSPL_FUNCTIONS.Common.ReplaceUIDandLoadToB1("SSPL_FRM4_150", FormUID)    
    <item uid="MTSALHD1" type="127" left="16" tab_order="0" width="210" top="309" height="120" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific SelectionMode="0" layout="0" titleHeight="21" cellHeight="16">
                    <columns>
                      <action type="add">
                        <column uid="col0" type="16" title="#" description="" visible="1" AffectsFormMode="1" width="20" disp_desc="0" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <databind databound="0" table="" alias="" />
                          <ExtendedObject />
                        </column>
                        <column uid="CLSALGR_CD" type="113" title="Salary Group" description="" visible="1" AffectsFormMode="1" width="60" disp_desc="1" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <databind databound="1" table="@SSPL_MR_EMPSALST" alias="U_SALGR_CD" />
                          <ValidValues>
                            <action type="add">
                              <ValidValue value="SG01" description="BASIC" />
                              <ValidValue value="SG02" description="DA" />
                              <ValidValue value="SG03" description="HRA" />
                              <ValidValue value="SG04" description="CONVEYANCE" />
                              <ValidValue value="SG05" description="OTHERS PAY" />
                              <ValidValue value="SG06" description="MISC PAY" />
                              <ValidValue value="SG07" description="PF" />
                              <ValidValue value="SG08" description="ESI" />
                              <ValidValue value="SG09" description="I_TAX" />
                              <ValidValue value="SG10" description="OTHER DEDUCTION" />
                              <ValidValue value="SG11" description="INSURANCE" />
                              <ValidValue value="SG12" description="PERSONAL LOAN" />
                              <ValidValue value="SG13" description="ADVANCE TO EMPLOYEE" />
                              <ValidValue value="SG14" description="TOUR ADVANCE" />
                              <ValidValue value="SG15" description="CONTROL 1" />
                              <ValidValue value="SG16" description="PENSION" />
                              <ValidValue value="SG17" description="CONTRIBUTION" />
                              <ValidValue value="SG18" description="MISC DEDN" />
                              <ValidValue value="SG19" description="CONTROL 2" />
                            </action>
                          </ValidValues>
                          <ExtendedObject />
                        </column>
                        <column uid="CLSALHD_CD" type="113" title="Salary Head" description="" visible="1" AffectsFormMode="1" width="60" disp_desc="1" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <databind databound="1" table="@SSPL_MR_EMPSALST" alias="U_SALHD_CD" />
                          <ValidValues>
                            <action type="add">
                              <ValidValue value="SH01" description="BASIC" />
                              <ValidValue value="SH02" description="DA PAY" />
                              <ValidValue value="SH03" description="HRA PAY" />
                              <ValidValue value="SH04" description="CONVEYANCE" />
                              <ValidValue value="SH05" description="OTHER PAY" />
                              <ValidValue value="SH06" description="MISC PAY" />
                              <ValidValue value="SH07" description="PF" />
                              <ValidValue value="SH08" description="ESI" />
                              <ValidValue value="SH09" description="I_TAX" />
                              <ValidValue value="SH10" description="OTHER DEDN" />
                              <ValidValue value="SH11" description="INSURANCE" />
                              <ValidValue value="SH12" description="PERSONAL LOAN PR" />
                              <ValidValue value="SH22" description="PERSONAL LOAN INT" />
                              <ValidValue value="SH13" description="ADVANCE TO EMPLOYEE" />
                              <ValidValue value="SH14" description="TOUR ADVANCE" />
                              <ValidValue value="SH15" description="GROSS PAY" />
                              <ValidValue value="SH16" description="TOTAL DEDUCTION" />
                              <ValidValue value="SH17" description="NET PAY" />
                              <ValidValue value="SH18" description="PENSION" />
                              <ValidValue value="SH19" description="PF EMPLOYER CONTRIBUTION" />
                              <ValidValue value="SH20" description="ESI EMPLOYER CONTRIBUTION" />
                              <ValidValue value="SH21" description="MISC DEDN" />
                              <ValidValue value="SH23" description="PF GROSS" />
                            </action>
                          </ValidValues>
                          <ExtendedObject />
                        </column>
                        <column uid="CLINDVOPTN" type="121" title="Indv. Opt." description="" visible="1" AffectsFormMode="1" width="50" disp_desc="0" editable="1" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <databind databound="1" table="@SSPL_MR_EMPSALST" alias="U_INDVOPTN" />
                          <ExtendedObject />
                        </column>
                        <column uid="CLSAL_AMT" type="16" title="Rate" description="" visible="1" AffectsFormMode="1" width="60" disp_desc="0" editable="1" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <databind databound="1" table="@SSPL_MR_EMPSALST" alias="U_SAL_AMT" />
                          <ExtendedObject />
                        </column>
                      </action>
                    </columns>
                  </specific>
                </item>
    Thanks
    Chitrita

    Hi Vitor,
    <?xml version="1.0" encoding="UTF-16"?>
    <Application>
      <forms>
        <action type="update">
          <form appformnumber="60100" FormType="60100" type="4" BorderStyle="4" uid="F_86" title="Employee Master Data" visible="1" default_button="" pane="3" color="3" left="148" top="10" width="694" height="501" client_width="686" client_height="467" AutoManaged="1" SupportedModes="15" ObjectType="171" mode="0">
            <datasources>
              <dbdatasources>
                <action type="add">
                  <datasource tablename="@SSPL_MR_EMPSALST" />
                </action>
              </dbdatasources>
              <userdatasources>
                <action type="add">
                 <datasource uid="UDS1" type="8" size="64000" />
                </action>
              </userdatasources>
            </datasources>
            <items>
              <action type="update">
                <!Header>
                <item uid="8" type="8" left="3" tab_order="0" width="124" top="75" height="16" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Position" />
                </item>
                <item uid="9" type="8" left="3" tab_order="0" width="124" top="93" height="16" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="CODESIG_CD" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Job Title" />
                </item>
                <!AdministrationTab>
                <item uid="58" type="4" left="130" tab_order="0" width="96" top="75" height="16" visible="0" enabled="1" from_pane="10" to_pane="10" disp_desc="0" right_just="0" description="" linkto="FRDTL" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="" alias="" />
                  </specific>
                </item>
                <!PersonalTab>
                <item uid="7" type="8" left="10" tab_order="0" width="104" top="259" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Gender" />
                </item>
                <item uid="42" type="113" left="115" tab_order="0" width="116" top="259" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="1" right_just="0" description="" linkto="" forecolor="1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="102" type="8" left="10" tab_order="0" width="104" top="276" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Date of Birth" />
                </item>
                <item uid="113" type="113" left="115" tab_order="0" width="116" top="276" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="103" type="8" left="10" tab_order="0" width="104" top="293" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Country of Birth" />
                </item>
                <item uid="106" type="16" left="115" tab_order="0" width="116" top="293" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="1" right_just="0" description="" linkto="" forecolor="1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="104" type="8" left="10" tab_order="0" width="104" top="310" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Marital Status" />
                </item>
                <item uid="105" type="113" left="115" tab_order="0" width="116" top="310" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="1" right_just="0" description="" linkto="" forecolor="1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="109" type="8" left="242" tab_order="0" width="70" top="314" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="No.of Children" />
                </item>
                <item uid="114" type="16" left="370" tab_order="0" width="20" top="314" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="108" type="8" left="242" tab_order="0" width="104" top="297" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="ID No." />
                </item>
                <item uid="115" type="16" left="370" tab_order="0" width="116" top="297" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="107" type="8" left="242" tab_order="0" width="104" top="246" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Citizenship" />
                </item>
                <item uid="112" type="113" left="370" tab_order="0" width="116" top="246" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="1" right_just="0" description="" linkto="" forecolor="1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="110" type="8" left="242" tab_order="0" width="104" top="263" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Passport No." />
                </item>
                <item uid="116" type="16" left="370" tab_order="0" width="116" top="263" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="111" type="8" left="242" tab_order="0" width="104" top="280" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Passport Expiretion Date" />
                </item>
                <item uid="117" type="16" left="370" tab_order="0" width="116" top="280" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <!Finance>
                <item uid="88" type="8" left="435" tab_order="0" width="126" top="273" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="4" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Bank Details" />
                </item>
                <item uid="89" type="8" left="435" tab_order="100940" width="104" top="305" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="80" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Bank" />
                </item>
                <item uid="80" type="113" left="504" tab_order="100540" width="116" top="305" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="85" type="8" left="435" tab_order="0" width="104" top="369" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="77" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Account No." />
                </item>
                <item uid="77" type="16" left="504" tab_order="0" width="116" top="369" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="87" type="8" left="435" tab_order="100900" width="104" top="321" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="79" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Branch" />
                </item>
                <item uid="79" type="16" left="504" tab_order="100560" width="116" top="321" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
               </item>
              </action>  
              <action type="add">
                <item uid="CODEPT" type="113" left="130" tab_order="0" width="96" top="110" height="15" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_DEPT" />
                  </specific>
                </item>
                <item uid="CODESIG_CD" type="113" left="130" tab_order="0" width="96" top="93" height="16" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_DESIG_CD" />
                  </specific>
                </item>
                <item uid="BTSKILL" type="4" left="376" tab_order="0" width="126" top="345" height="21" visible="1" enabled="1" from_pane="3" to_pane="3" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Skill Details" />
                </item>
                <item uid="STCATEGORY" type="8" left="10" tab_order="0" width="104" top="242" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Category" />
                </item>
                <item uid="COCATEGORY" type="113" left="115" tab_order="0" width="116" top="242" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_CATEGORY" />
                  </specific>
                </item>
                <item uid="STBLDGRP" type="8" left="9" tab_order="0" width="104" top="326" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Blood Group" />
                </item>
                <item uid="COBLDGRP" type="113" left="115" tab_order="0" width="116" top="326" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_BLDGRP" />
                  </specific>
                </item>
                <item uid="STHEIGHT" type="8" left="9" tab_order="0" width="104" top="341" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Height" />
                </item>
                <item uid="ETHEIGHT" type="16" left="115" tab_order="0" width="116" top="341" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_HEIGHT" />
                  </specific>
                </item>
                <item uid="STWEIGHT" type="8" left="9" tab_order="0" width="104" top="356" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Weight" />
                </item>
                <item uid="ETWEIGHT" type="16" left="115" tab_order="0" width="116" top="356" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_WEIGHT" />
                  </specific>
                </item>
                <item uid="STIDMRKS" type="8" left="9" tab_order="0" width="104" top="371" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Identification Marks" />
                </item>
                <item uid="ETIDMRKS" type="16" left="115" tab_order="0" width="116" top="371" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_IDMRKS" />
                  </specific>
                </item>
                <item uid="STMJINJ" type="8" left="9" tab_order="0" width="104" top="386" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Major Injury" />
                </item>
                <item uid="ETMJINJ" type="16" left="115" tab_order="0" width="116" top="386" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_MJINJ" />
                  </specific>
                </item>
                <item uid="STMJSURG" type="8" left="9" tab_order="0" width="104" top="401" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Major Surgery" />
                </item>
                <item uid="ETMJSURG" type="16" left="115" tab_order="0" width="116" top="401" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_MJSURG" />
                  </specific>
                </item>
                <item uid="CBMETRCITY" type="121" left="500" tab_order="0" width="121" top="242" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Metro City (For IT)" AffectsFormMode="1" val_on="Y" val_off="N">
                    <databind databound="1" table="OHEM" alias="U_METRCITY" />
                  </specific>
                </item>
                <item uid="CBPHCHLL" type="121" left="500" tab_order="0" width="121" top="260" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Physically Challenged" AffectsFormMode="1" val_on="Y" val_off="N">
                    <databind databound="1" table="OHEM" alias="U_PHCHLL" />
                  </specific>
                </item>
                <item uid="BTFAMILY" type="4" left="370" tab_order="0" width="121" top="340" height="20" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Family Details" />
                </item>
                <item uid="BTSTATRY" type="4" left="370" tab_order="0" width="121" top="370" height="20" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Statutory Details" />
                </item>
                <item uid="RTUPPER" type="100" left="557" tab_order="0" width="107" top="224" height="1" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific />
                </item>
                <item uid="STPER_CATG" type="8" left="316" tab_order="0" width="99" top="31" height="15" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Person Category" />
                </item>
                <item uid="COPER_CATG" type="113" left="426" tab_order="100031" width="95" top="31" height="14" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="100031">
                    <databind databound="1" table="OHEM" alias="U_PER_CATG" />
                  </specific>
                </item>
                <item uid="STDIVISION" type="8" left="316" tab_order="0" width="99" top="48" height="15" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Division" />
                </item>
                <item uid="CODIVISION" type="113" left="426" tab_order="100031" width="95" top="48" height="14" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="100031">
                    <databind databound="1" table="OHEM" alias="U_DIVISION" />
                  </specific>
                </item>
                <item uid="COPOSITION" type="113" left="130" tab_order="100032" width="96" top="75" height="14" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="100032">
                    <databind databound="1" table="" alias="UDS1" />
                  </specific>
                </item>
                <item uid="STPAY_MODE" type="8" left="16" tab_order="0" width="97" top="289" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Pay Mode" />
                </item>
                <item uid="COPAY_MODE" type="113" left="119" tab_order="0" width="76" top="289" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_PAY_MODE" />
                  </specific>
                </item>
                <!--MatrixColumns Addition Problem -->
                <item uid="MTSALHD1" type="127" left="16" tab_order="0" width="210" top="309" height="120" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific SelectionMode="0" layout="0" titleHeight="21" cellHeight="16">
                    <columns>
                      <action type="add">
                        <column uid="col0" type="16" title="#" description="" visible="1" AffectsFormMode="1" width="20" disp_desc="0" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <AutoManagedAttribute />
                        </column>
                        <column uid="CLSALGR_CD" type="113" title="Salary Group" description="" visible="1" AffectsFormMode="1" width="60" disp_desc="1" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <AutoManagedAttribute />
                        </column>
                        <column uid="CLSALHD_CD" type="113" title="Salary Head" description="" visible="1" AffectsFormMode="1" width="60" disp_desc="1" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <AutoManagedAttribute />
                        </column>
                        <column uid="CLINDVOPTN" type="121" title="Indv. Opt." description="" visible="1" AffectsFormMode="1" width="50" disp_desc="0" editable="1" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <AutoManagedAttribute />
                        </column>
                        <column uid="CLSAL_AMT" type="16" title="Rate" description="" visible="1" AffectsFormMode="1" width="60" disp_desc="0" editable="1" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <AutoManagedAttribute />
                        </column>
                      </action>
                    </columns>
                  </specific>
                </item>
                <!--MatrixColumns Addition Problem -->
                <item uid="STTAX_PAN" type="8" left="435" tab_order="0" width="90" top="255" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="ETTAX_PAN" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Income Tax PAN" />
                </item>
                <item uid="ETTAX_PAN" type="16" left="527" tab_order="0" width="90" top="255" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_TAX_PAN" />
                  </specific>
                </item>
                <item uid="CBSAL_ACC" type="121" left="435" tab_order="0" width="90" top="289" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Salary Account" AffectsFormMode="1" val_on="Y" val_off="N">
                    <databind databound="1" table="OHEM" alias="U_SAL_ACC" />
                  </specific>
                </item>
                <item uid="STBRS_CODE" type="8" left="435" tab_order="0" width="90" top="337" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="ETBRS_CODE" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="BRS Code" />
                </item>
                <item uid="ETBRS_CODE" type="16" left="527" tab_order="0" width="90" top="337" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_BRS_CODE" />
                  </specific>
                </item>
                <item uid="STMICRCODE" type="8" left="435" tab_order="0" width="90" top="353" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="ETMICRCODE" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="MICR Code" />
                </item>
                <item uid="ETMICRCODE" type="16" left="527" tab_order="0" width="90" top="353" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_MICRCODE" />
                  </specific>
                </item>
                <item uid="STDR_CARD" type="8" left="435" tab_order="0" width="90" top="385" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="ETDR_CARD" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Debit Card No." />
                </item>
                <item uid="ETDR_CARD" type="16" left="527" tab_order="0" width="90" top="385" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_DR_CARD" />
                  </specific>
                </item>
                <item uid="STCR_CARD" type="8" left="435" tab_order="0" width="90" top="401" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="ETCR_CARD" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Credit Card No." />
                </item>
                <item uid="ETCR_CARD" type="16" left="527" tab_order="0" width="90" top="401" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_CR_CARD" />
                  </specific>
                </item>
              </action>
            </items>
            <DataBrowser BrowseBy="33" />
          </form>
        </action>
      </forms>
    </Application>
    thanks
    Chitrita

  • 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

Maybe you are looking for