TimeID column length is wrong - Add a new appln Vs copy an appln

Hi Folks,
We have a requirement to add a new application, which should have the design as of an existing Reporting type finance application.
When we completed this new application creation, by using "Add an application" option from the admin console and checked the tables in the backend SQL Server, we found that the length of the TimeID column in the tblFactXXXX table is 12, whereas the the length of the TimeID column of the original tblFactYYYY table from which the new application was developed is 20.
But when we use "Copy an application" and create a new one, everything is fine.
Can someone tel me if you had come across this issue earlier, and tell us how to resolve this ?
We bumped into this issue when we were trying to do an import data into the fact table of the new application, and then it gave the following warning, though the data load was successful.
Validating (Warning)
Messages
u2022     Warning 0x802092a7: Data Flow Task 1: Truncation may occur due to inserting data from data flow column "TIMEID" with a length of 20 to database column "TIMEID" with a length of 12.
(SQL Server Import and Export Wizard)
Any help or suggestion in this regard is appreciated.
Thanks In Advance.
Edited by: AparnaV on Feb 23, 2012 8:52 AM

Hi Aparna,
When you copy an application, the exact structure is copied to the target application. So, if the size in the source app is 20, then the size in the destination will also be 20.
I dont remember, right now, what's the size in apshell planning fact table. But, as far as I remember, it should be 12. The time type dimension should usually have the size as 12. There might be a possibility that someone might have changed the size.
But, in any case, you can ignore this warning; since, this shouldn't have any impact.
Hope this helps.

Similar Messages

  • How to add a new column to specific position

    Hi,
    How to add a new column to specified position in a existing table.
    I have using the oracle database 10g.
    This below code is not working in oracle 10 g
    example:
    ALTER TABLE EMPLOYEE ADD DEPT NUMBER FIRST:
    ALTER TABLE EMPLOYEE ADD DEPT NUMBER AFTER JOB:
    Please provide the correct syntax.

    Hi,
    When you add a column to the existing table, the column added i.e., for ex updatedon appers in the last. If you want the columns to be
    displayed in Specific order. Just give the column names in the SELECT.. statement.
    For your Information, But it is not good in Table design. Just to give something useful.
    If you want to add a column at a specified position,
    Rename the position column to the new column name
    For Ex: (OLD_COLUMN_NAME-Hiredate)
    ALTER TABLE EMP RENAME COLUMN OLD_COLUMN_NAME TO TEMP_HIREDATE;Add a New Column to Table
    ALTER TABLE EMP ADD LAST_DATE DATE;Then, Alter the Table to rename the new column that is added.
    ALTER TABLE EMP RENAME COLUMN LAST_DATE TO OLD_COLUMN_NAME;And, Rename TEMP_HIREDATE to your actual collumn.
    ALTER TABLE EMP RENAME COLUMN TEMP_HIREDATE TO LAST_DATE;In practise, this won't be a good approach but you can get something useful about renaming the
    column atleast.
    Thanks,
    Shankar

  • How do I add a new row to an AbstractTableModel?

    I'm having an issue with adding new data to a table row. Every row I add contains the same data which is always the last data I grabbed from my database. I'm not sure if my issue has to do with how I set up the data to be passed or the table itself or both... Any help would be appreciated. It seems like the tablemodel is holding the memory spot ArrayList I'm passing. If I have to set up an arraylist of arraylists, to pass how do I do that?
    My output is always:
    1,4,Laser,10,120,100
    1,4,Laser,10,120,100
    1,4,Laser,10,120,100
    1,4,Laser,10,120,100
    Desired output:
    1,1,Beam,10,99,100
    1,2,Canon,10,120,100
    1,3,Missile,10,66,100
    1,4,Laser,10,120,100
         * Extract weaponIDs by hullType from weapon database
    private void setWeapons(int hullType){
    // equpModel is the tableModel
        equipModel.clearTable();
        Weapon tempWeapon = new Weapon();
        ArrayList newData = new ArrayList();
        for (Iterator <Weapon> i = dataBaseManager.weaponList.iterator(); i.hasNext(); ){
            tempWeapon = i.next();
            if (tempWeapon.weaponClass == hullType){
                newData.add(0,1);
                newData.add(1,tempWeapon.weaponID);
                newData.add(2,tempWeapon.weaponName);
                newData.add(3,tempWeapon.weaponCps);
                newData.add(4,tempWeapon.weaponMass);
                newData.add(5,tempWeapon.weaponCost);
                equipModel.insertRow(newData);
    }Here is a snipet from the table class
    public class GenTableModel extends AbstractTableModel {
      private ArrayList data; // Holds the table data
      private String[] columnNames; // Holds the column names.
       * Constructor: Initializes the table structure, including number of columns
       * and column headings. Also initializes table data with default values.
       * @param columnscolumns[] array of column titles.
       * @param defaultvdefaultv array of default value objects, for each column.
       * @param rowsrows number of rows initially.
      public GenTableModel(String[] columns, Object[] defaultv, int rows) {
        // Initialize number of columns and column headings
        columnNames = new String[ columns.length ];
        for(int i = 0; i < columns.length; i++) {
          columnNames [ i ] = new String(columns [ i ]);
        // Instantiate Data ArrayList, and fill it up with default values
        data = new ArrayList();
        for(int i = 0; i < rows; i++) {
          ArrayList cols = new ArrayList();
          for(int j = 0; j < columns.length; j++) {
            cols.add(defaultv [ j ]);
          data.add(cols);
       * Adds a new row to the table.
       * @param newrowArrayList new row data
      public void insertRow(ArrayList newrow) {     
        data.add(newrow);
        super.fireTableDataChanged();
       * Clears the table data.
      public void clearTable() {
        data = new ArrayList();
        super.fireTableDataChanged();
    }

    Hi thanks again for responding
    Here is the Initialization, including the panel and scrollpane it sits on.
          // Table attempt
            JPanel tablePanel = new JPanel(new BorderLayout());
            tablePanel.setBounds(PANEL_X+2*PANEL_DISTANCE, PANEL_Y, PANEL_WIDTH+300, PANEL_HEIGHT);
            title = BorderFactory.createTitledBorder(blackLine, "Table List");
            tablePanel.setBorder(title);
    // This is column tile plus one dummy initilization set.
            String[] columnNames = {"DB", "ID", "Name", "CPS", "Energy", "Mass", "Cost"};
            Object[] data = {new Integer(0),new Integer(0), "Empty", new Integer(0),
                        new Integer(0),new Integer(0),new Integer(0)};
    // here is the GenTableModel creation
            equipModel = new GenTableModel(columnNames, data, 1);
            equipmentTable = new JTable(equipModel);
            equipmentTable.setRowSelectionAllowed(true);
            equipmentTable.setFillsViewportHeight(true);
            equipmentTable.setColumnSelectionAllowed(false);
            TableColumn column = null;
            column = equipmentTable.getColumnModel().getColumn(0);
            column.setPreferredWidth(20);
            column = equipmentTable.getColumnModel().getColumn(1);
            column.setPreferredWidth(20);
            JScrollPane scrollPane = new JScrollPane(equipmentTable);
            tablePanel.add(scrollPane);
            add(tablePanel);
        Here is the full code for GenTableModel. It is as you guessed.
    public class GenTableModel extends AbstractTableModel {
      private ArrayList data; // Holds the table data
      private String[] columnNames; // Holds the column names.
      public GenTableModel(String[] columns, Object[] defaultv, int rows) {
        // Initialize number of columns and column headings
        columnNames = new String[ columns.length ];
        for(int i = 0; i < columns.length; i++) {
          columnNames [ i ] = new String(columns [ i ]);
        // Instantiate Data ArrayList, and fill it up with default values
        data = new ArrayList();
        for(int i = 0; i < rows; i++) {
          ArrayList cols = new ArrayList();
          for(int j = 0; j < columns.length; j++) {
            cols.add(defaultv [ j ]);
          data.add(cols);
      public int getColumnCount() {
        return columnNames.length;
      public int getRowCount() {
        return data.size();
      public String getColumnName(int col) {
        return columnNames [ col ];
      public Object getValueAt(int row, int col) {
        ArrayList colArrayList = (ArrayList) data.get(row);
        return colArrayList.get(col);
      public Class getColumnClass(int col) {
        // If value at given cell is null, return default class-String
        return getValueAt(0, col) == null ? String.class
                                          : getValueAt(0, col).getClass();
      public void setValueAt(Object obj, int row, int col) {
        ArrayList colArrayList = (ArrayList) data.get(row);
        colArrayList.set(col, obj);
      public void insertRow(ArrayList newrow) {     
        data.add(newrow);
        super.fireTableDataChanged();
      public void deleteRow(int row) {
        data.remove(row);
        super.fireTableDataChanged();
      public void deleteAfterSelectedRow(int row) {
        int size = this.getRowCount();
        int n = size - (row + 1);
        for(int i = 1; i <= n; i++) {
          data.remove(row + 1);
        super.fireTableDataChanged();
      public ArrayList getRow(int row) {
        return (ArrayList) data.get(row);
      public void updateRow(ArrayList updatedRow, int row) {
        data.set(row, updatedRow);
        super.fireTableDataChanged();
      public void clearTable() {
        data = new ArrayList();
        super.fireTableDataChanged();
    }

  • How to add a new column as "Warehouse name" in Goods Receipt PO screen?

    Hi, Experts
    I hope to add a new column or just "display" warehouse name besides Whse column in Goods Receipt PO.  How can I do?
    Thanks

    still not work.
    Maybe I did something wrong in UDF definition. Please help to check.   Thanks
    I named UDF as WhseName, and set it as Alphanumeric and lengh is 20, structure is Regular. And all below check-boxes are not ticked.
    And in Goods Receipt PO screen, I marked the UDF as Visible and Active.
    Then I ALTSHIFF2 in the UDF fields, and FMS screen displayed.
    Then I chose the 3rd one: Search in Existing User-defined value According to Saved Query
    T05
    Auto Refresh when field changes is not ticked.

  • How to add a new column in SIM datawarehouse screen

    Hi All,
    Need to add one new column in SIM datawarehouse screen and map that with a database table column.Navigation for the that screen is -Shipping/Receiving->Warehouse Delivery ->select ASN->Select Container ->We get a detail screen.There need to add a new column.How to achive this.

    Hi....
       You can edit it from screen painter.. directly....with edit mode....
    > 1. goto -> secondary window -> dictionary fields or program fields...
    > 2. enter the table or program name... and drag that filed in to your table control header
    > 3. Or you can enter I/O field from tool box and text field from tool box for header of that I/O field
    > 4. You can adjust visible length... for your new field...
    > 5. Save and activate.
    Did you faced any problem with that?
    Thanks,
    Naveen Inuganti.

  • How To Add a new column for ZPR0 price in open sales order report ??

    HI,
    my requirement is To Add a new column for ZPR0 price in open sales order report if the order/scheduling agreement is a cross-company code transaction l(company code of order/scheduling agreement <> company code of delivering plant), price = ZPR0 price as at estimated GI date

    k

  • To Add a new column for ZPR0 prce in open sales order report

    HI,
    my requirement is To Add a new column for ZPR0 prce in open sales order report if the order/scheduling agreement is a cross-company code transaction l(company code of order/scheduling agreement <> company code of delivering plant), price = ZPR0 price as at estimated GI date

    HI,
    my requirement is To Add a new column for ZPR0 prce in open sales order report if the order/scheduling agreement is a cross-company code transaction l(company code of order/scheduling agreement <> company code of delivering plant), price = ZPR0 price as at estimated GI date

  • How to add a new column (Project Number) in the action items table under NPD Module?

    There are two projects with same name and created by same person in NPD.
    So when it is displayed in "Action Items" table, It looks similar.
    To avoid this, I need one more column (Project Number) to be added in the "Action Items" table and " Strategic briefs and projects" table.
    So, How to add a new column (Project Number) in the "Action Items" table and " Strategic briefs and projects" table under NPD Module?
    Please do the needful.

    There is no out of the box configuration available to add columns to NPD action items.   As always we welcome enhancement requests. 
    Thanks
    Kelly

  • How can I add a new column in compress partition table.

    I have a compress partition table when I add a new column in that table it give me an error "ORA-22856: CANNOT ADD COLUMNS TO OBJECT TABLES". I had cretaed a table in this clause. How can I add a new column in compress partition table.
    CREATE TABLE Employee
    Empno Number,
    Tr_Date Date
    COMPRESS PARTITION BY RANGE (Tr_Date)
    PARTITION FIRST Values LESS THAN (To_Date('01-JUL-2006','DD-MON-YYYY')),
    PARTITION JUNK Values LESS THAN (MAXVALUE));
    Note :
    When I create table with this clause it will allow me to add a column.
    CREATE TABLE Employee
    Empno Number,
    Tr_Date Date
    PARTITION BY RANGE (Tr_Date)
    PARTITION FIRST Values LESS THAN (To_Date('01-JUL-2006','DD-MON-YYYY')),
    PARTITION JUNK Values LESS THAN (MAXVALUE));
    But for this I have to drop and recreate the table and I dont want this becaue my table is in online state i cannot take a risk. Please give me best solution.

    Hi Fahed,
    I guess, you are using Oracle 9i Database Release 9.2.0.2 and the Table which you need to alter is in OLTP environment where data is usually inserted using regular inserts. As a result, these tables generally do not get much benefit from using table compression. Table compression works best on read-only tables that are loaded once but read many times. Tables used in data warehousing applications, for example, are great candidates for table compression.
    Reference : http://www.oracle.com/technology/oramag/oracle/04-mar/o24tech_data.html
    Topic : When to Use Table Compression
    Bug
    Reference : http://dba.ipbhost.com/lofiversion/index.php/t147.html
    BUG:<2421054>
    Affects: RDBMS (9-A0)
    NB: FIXED
    Abstract: ENH: Allow ALTER TABLE to ADD/DROP columns for tables using COMPRESS feature
    Details:
    This is an enhancement to allow "ALTER TABLE" to ADD/DROP
    columns for tables using the COMPRESS feature.
    In 9i errors are reported for ADD/DROP but the text may
    be misleading:
    eg:
    ADD column fails with "ORA-22856: cannot add columns to object tables"
    DROP column fails with "ORA-12996: cannot drop system-generated virtual column"
    Note that a table which was previously marked as compress which has
    now been altered to NOCOMPRESS also signals such errors as the
    underlying table could still contain COMPRESS format datablocks.
    As of 10i ADD/SET UNUSED is allowed provided the ADD has no default value.
    Best Regards,
    Muhammad Waseem Haroon
    [email protected]

  • How can I add a new column to Grid view under Tests tab

    I understand in "ORACLE Test manager for web Applications", the Grid view under Tests tab should be customised.
    How can I add a new column to Grid view under Tests tab? Thanks Katherine

    I don't think this is possible.
    Regards,
    Jamie

  • How can I add a new column to an Attachments Table

    How can I add a new column to an Attachments Table??
    And I want to remove the usage column also!
    Thanks!

    I tried to remove the usage column doing this:
    OAAttachmentTableBean attachTable = (OAAttachmentTableBean)webBean.findChildRecursive("attachTable");
    if (attachTable != null)
    attachTable.findChildRecursive("UsageTypeColumn").setRendered(false);
    but I'm getting null pointer exception on "UsageTypeColumn"...
    :(

  • Add a new column to an "Insert Form" created by HTMLDB Wizard throws Error

    Hi,
    My table design has changed and I had to add 2 new columns.
    The corresponding Insert Form/Report/Update Forms created by the HTMLDB should now reflect the new columns that have been added.
    In report and update forms I did not have a problem but in the Insert form, under Edit Page Process I tried to change the sql and I get the below error
    "Encountered the symbol "end-of-file" when expecting one of the following: begin case declare end exception exit for goto if loop mod null pragma raise return select update while with "
    My Edit Page Process SQL is as below-(Last two columns are the NEW columns i.e CDPL and CDPLCA)
    insert into "L2ENTRIES"
    ("AUTONUML2E",
    "ROLLNO",
    "AWARDCODE",
    "ROLLCLASSCODE",
    "SURNAME",
    "FORENAME",
    "SEX",
    "DOB",
    "PPSNO",
    "M1",
    "M2",
    "M3",
    "M4",
    "M5",
    "M6",
    "M7",
    "M8",
    "M9",
    "M10",
    "M11",
    "M12",
    "M13",
    "M14",
    "M15",
    "M16",
    "FEES",
    "CNULLS",
    "CDUPPPS",
    "CROLL",
    "CAWARDS",
    "CMODULES",
    "CHECKCHAR",
    "CHECKNO",
    "VALIDPPS",
    "VALIDPPSUK",
    "PPSNOPAD",
    "CDPL",
    "CDPLCA")
    values (
    :P3_AUTONUML2E,
    :P3_ROLLNO,
    :P3_AWARDCODE,
    :P3_ROLLCLASSCODE,
    :P3_SURNAME,
    :P3_FORENAME,
    :P3_SEX,
    :P3_DOB,
    :P3_PPSNO,
    :P3_M1,
    :P3_M2,
    :P3_M3,
    :P3_M4,
    :P3_M5,
    :P3_M6,
    :P3_M7,
    :P3_M8,
    :P3_M9,
    :P3_M10,
    :P3_M11,
    :P3_M12,
    :P3_M13,
    :P3_M14,
    :P3_M15,
    :P3_M16,
    :P3_FEES,
    :P3_CNULLS,
    :P3_CDUPPPS,
    :P3_CROLL,
    :P3_CAWARDS,
    :P3_CMODULES,
    :P3_CHECKCHAR,
    :P3_CHECKNO,
    :P3_VALIDPPS,
    :P3_VALIDPPSUK,
    :P3_PPSNOPAD,
    :P3_CDPL,
    :P3_CDPLCA)
    It will be great if some one can assist me in this matter.
    Thanks.

    Resolved this by a simple ";" at the end of the insert sql.
    I did not think a ";" will be necessary because when you edit the page process a ";" is not visible.

  • Add a new column for WBS description

    Hi all
    how to Add a new column for WBS description and derive the value as per the FS
    anybody can provide document for this

    Hi ,
    In Table <b>PRPS</b>, alread you have short description field <b>POST1 and POSTU</b> for the WBS element, apart from that still if you want to include a feild for your own requirement , then create a structure and with the description field of your requirement and append that structure into PRPS table.
    Hope This Info Helps YOU.
    <i>Reward Points If It Helps YOU.</i>
    Regards,
    Raghav

  • Add a new column and the value

    I want to add a new column to a table with a single value for all rows of this column. for example, add a new column called 'sid' with the value of 'dbp'. can I use this statement?
    alter table ... add sid varchar(8) 'dbp';
    or I have to add first then update?

    SQL> alter table blah add (sid varchar2(8) default 'dbp');
    Table altered.
    SQL> select * from blah;
                    COL1 SID
                       1 dbp
                       2 dbp
                       3 dbpMessage was edited by: SomeoneElse
    (used OP's column name)

  • Add a new  column in a baseform

    Dear All,
    How do I add a new   matrix column in a baseform for a particular panel .
    kindly suggest me the code.
    Edited by: Sanjoy Paul on Jul 3, 2008 1:33 PM

    Hi Sanjoy,
    This is an example that i'm use to add a matrix and some items into a panel in the Item master data form :
                                    SAPbouiCOM.Item oItem;
                                    SAPbouiCOM.Folder oFolder;
                                    oItem = (SAPbouiCOM.Item)oForm.Items.Add("BULL", SAPbouiCOM.BoFormItemTypes.it_FOLDER);
                                    oItem.Left = 535;
                                    oItem.Width = 67;
                                    oItem.Top = 128;
                                    oItem.Height = 21;
                                    oItem.Visible = true;
                                    oItem.Enabled = true;
                                    oItem.AffectsFormMode = false;
                                    oFolder = (SAPbouiCOM.Folder)oItem.Specific;
                                    oFolder.Caption = "Folder";
                                    oFolder.ValOff = "0";
                                    oFolder.ValOn = "8";
                                    oFolder.DataBind.SetBound(true, "", "IFCFolder");
                                    oFolder.GroupWith("9");
    Création du label "Bulletin répartition" -
                                    oItem = oForm.Items.Add("LAB1", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                                    oItem.Left = 17;
                                    oItem.Height = 19;
                                    oItem.Top = 167;
                                    oItem.Width = 100;
                                    oItem.FromPane = 8;
                                    oItem.ToPane = 8;
                                    oItem.AffectsFormMode = false;
                                    SAPbouiCOM.StaticText oStaticText;
                                    oStaticText = (SAPbouiCOM.StaticText)oItem.Specific;
                                    oStaticText.Caption = "Bulletin répartition";
    Création du label "Total représentation" -
                                    oItem = oForm.Items.Add("LAB2", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                                    oItem.Left = 17;
                                    oItem.Height = 14;
                                    oItem.Top = 335;
                                    oItem.Width = 100;
                                    oItem.FromPane = 8;
                                    oItem.ToPane = 8;
                                    oItem.AffectsFormMode = false;
                                    oStaticText = (SAPbouiCOM.StaticText)oItem.Specific;
                                    oStaticText.Caption = "Total représentation :";
    Création du champ "Total représentation" -
                                    oItem = oForm.Items.Add("EDI1", SAPbouiCOM.BoFormItemTypes.it_EDIT);
                                    oItem.Left = 120;
                                    oItem.Height = 14;
                                    oItem.Top = 335;
                                    oItem.Width = 100;
                                    oItem.FromPane = 8;
                                    oItem.ToPane = 8;
                                    oItem.AffectsFormMode = false;
                                    //oItem.Enabled = false;
                                    SAPbouiCOM.EditText oEdit;
                                    oEdit = (SAPbouiCOM.EditText)oItem.Specific;
                                    oEdit.DataBind.SetBound(true, "", "IFCEDI1");
    Création du label "Total Publication" -
                                    oItem = oForm.Items.Add("LAB3", SAPbouiCOM.BoFormItemTypes.it_STATIC);
                                    oItem.Left = 17;
                                    oItem.Height = 14;
                                    oItem.Top = 350;
                                    oItem.Width = 100;
                                    oItem.FromPane = 8;
                                    oItem.ToPane = 8;
                                    oItem.AffectsFormMode = false;
                                    oStaticText = (SAPbouiCOM.StaticText)oItem.Specific;
                                    oStaticText.Caption = "Total part :";
    Création du champ "Total Publication" -
                                    oItem = oForm.Items.Add("EDI2", SAPbouiCOM.BoFormItemTypes.it_EDIT);
                                    oItem.Left = 120;
                                    oItem.Height = 14;
                                    oItem.Top = 350;
                                    oItem.Width = 100;
                                    oItem.FromPane = 8;
                                    oItem.ToPane = 8;
                                    //oItem.Enabled = false;
                                    oItem.AffectsFormMode = false;
                                    oEdit = (SAPbouiCOM.EditText)oItem.Specific;
                                    oEdit.DataBind.SetBound(true, "", "IFCEDI2");
                                    AddChooseFromList(oForm);
    Matrix Create----
                                    oItem = oForm.Items.Add("MAT_BR", SAPbouiCOM.BoFormItemTypes.it_MATRIX);
                                    oItem.Left = 17;
                                    oItem.Top = 187;
                                    oItem.Width = 500;
                                    oItem.Height = 150;
                                    oItem.FromPane = 8;
                                    oItem.ToPane = 8;
                                    oItem.AffectsFormMode = false;
                                    SAPbouiCOM.Matrix oMatrix;
                                    SAPbouiCOM.Columns oColumns;
                                    SAPbouiCOM.Column oColumn;
                                    oMatrix = (SAPbouiCOM.Matrix)oItem.Specific;
                                    oColumns = oMatrix.Columns;
                                    oColumn = oColumns.Add("#", SAPbouiCOM.BoFormItemTypes.it_EDIT);
                                    oColumn.TitleObject.Caption = "#";
                                    oColumn.Editable = false;
                                    oColumn = oColumns.Add("V_11", SAPbouiCOM.BoFormItemTypes.it_EDIT);
                                    oColumn.TitleObject.Caption = "Nom";
                                    oColumn.Width = 60;
                                    //oColumn.DataBind.SetBound(true, "@IFC_BR", "U_IFC_NO");
                                    oColumn.DataBind.Bind("@IFC_BR", "U_IFC_NO");
                                    oColumn.Visible = false;
                                    oColumn = oColumns.Add("V_10", SAPbouiCOM.BoFormItemTypes.it_EDIT);
                                    oColumn.TitleObject.Caption = "Nom";
                                    oColumn.Width = 60;
                                    //oColumn.DataBind.SetBound(true, "", "IFCEDI4");
                                    oColumn.DataBind.Bind("@IFC_BR", "U_IFC_NOM");
                                    oColumn.ChooseFromListUID = "IFC_CFL";
                                    oColumn.ChooseFromListAlias = "CardName";
                                    oColumn = oColumns.Add("V_2", SAPbouiCOM.BoFormItemTypes.it_COMBO_BOX);
                                    oColumn.TitleObject.Caption = "Fonction";
                                    oColumn.Width = 60;
                                    oColumn.DataBind.Bind("@IFC_BR", "U_IFC_FO");
                                    oColumn.ValidValues.Add("", "");
                                    oColumn.ValidValues.Add("AU", "Auteur");
                                    oColumn.ValidValues.Add("TR", "Traducteur");
                                    oColumn.ValidValues.Add("CO", "Compositeur");
                                    oColumn.ValidValues.Add("ED", "Editeur");
                                    oColumn.DisplayDesc = true;
                                    oColumn = oColumns.Add("V_3", SAPbouiCOM.BoFormItemTypes.it_EDIT);
                                    oColumn.TitleObject.Caption = "Représentation";
                                    oColumn.Width = 60;
                                    oColumn.DataBind.Bind("@IFC_BR", "U_IFC_RE");
                                    oColumn = oColumns.Add("V_4", SAPbouiCOM.BoFormItemTypes.it_EDIT);
                                    oColumn.TitleObject.Caption = "% Aut / Trad";
                                    oColumn.Width = 60;
                                    oColumn.DataBind.Bind("@IFC_BR", "U_IFC_PO");
                                    oColumn = oColumns.Add("V_8", SAPbouiCOM.BoFormItemTypes.it_EDIT);
                                    oColumn.TitleObject.Caption = "Publication";
                                    oColumn.Width = 60;
                                    oColumn.DataBind.Bind("@IFC_BR", "U_IFC_PU");
                                    oColumn.Editable = false;
                                    oColumn = oColumns.Add("V_6", SAPbouiCOM.BoFormItemTypes.it_COMBO_BOX);
                                    oColumn.TitleObject.Caption = "";
                                    oColumn.Width = 15;
                                    oColumn.RightJustified = false;
                                    oColumn.DataBind.Bind("@IFC_BR", "U_IFC_TMP");
                                    oColumn.Editable = true;
                                    oColumn = oColumns.Add("V_5", SAPbouiCOM.BoFormItemTypes.it_EDIT);
                                    oColumn.TitleObject.Caption = "Part";
                                    oColumn.Width = 60;
                                    oColumn.DataBind.Bind("@IFC_BR", "U_IFC_PA");
                                    oColumn = oColumns.Add("V_7", SAPbouiCOM.BoFormItemTypes.it_EDIT);
                                    oColumn.TitleObject.Caption = "Observations";
                                    oColumn.Width = 100;
                                    oColumn.DataBind.Bind("@IFC_BR", "U_IFC_OB");
                                    oColumn = oColumns.Add("V_9", SAPbouiCOM.BoFormItemTypes.it_EDIT);
                                    oColumn.TitleObject.Caption = "";
                                    oColumn.Width = 60;
                                    oColumn.DataBind.Bind("@IFC_BR", "Code");
                                    oColumn.Visible = false;
                                    oMatrix.LoadFromDataSource();
                                    if (oForm.Mode == SAPbouiCOM.BoFormMode.fm_FIND_MODE)
                                        oMatrix.AddRow(1, 1);
                                    else if (oForm.Mode == SAPbouiCOM.BoFormMode.fm_OK_MODE)
                                        oMatrix.AddRow(1, 0);
    Hope it's help you
    Michael

Maybe you are looking for

  • Table has 85 GB data space, zero rows

    This table has only one column. I ran a transaction that inserted more than a billion rows into this table but then rolled it back before completion. This table currently has zero rows but a select statement takes about two minutes to complete, and w

  • Use Of Cashflow In SAP B1

    Hello Expert,    I want to know the functionality of Cashflow used in SAP B1.    I am aware of this concept. Regards, Sandy

  • Log for schedule agreement  division created/modify/delete at MRP (MD04)

    Tables CDHDR and CDPOS were saved when the user changed data manually using the transaction ME31L and  ME32L. When the new schedule divisions  were create direct at MRP, the registries were not saved. I searched for any configuration to activated thi

  • ISE 1.1.4 Patch 5 - Release Notes

    Any word on the availability of the release notes for ISE 1.1.4 Patch 5?  I have a production affecting bug that is supposed to resolved in a future release and I'd like to know if it is resolved in Patch 5. Also, in what case would you release a pat

  • Time machine automatic backup not working.

    I have just setup my time machine backup and it works fine when I initiate manual backups. but i have noticed that, after every hour auto backup doesn't start. i can always do a manual backup, but for some reason next backup time is increased by an h