I18n: text label of Table Header of Data Table Component

hi all
JSC Hangs when i try to change text label of Table Header (Column) of Data Table Component to my favorite language for example Arabic or Persian Language.
is this bug!!!

Hi,
Please take a look at the tutorial Internationalization at
http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/index.jsp
may help you
regards

Similar Messages

  • How to hide table header for empty table

    Hi,
    I wanna to hide table header for all tables which doesn't contain any data in my Adobe form. How can I do this? Helpful answers will be rewarded .

    HI Aliaksandr,
    You can use javascript to do this dynamically.
    For example, i used Adobe Designer 7.1 to add a table to a subform.
    Now, i have the object hierchy as:
    Level 1 - form1
    Level 2 - form2
    Level 3 - Table1
               -->HeaderRow
                    --> Cell1
                    --> Cell2
               -->Row1
                    --> Cell1
                    --> Cell2
    Now, i sleect the Table1 element, and write the javascript which is executed on Initialization, as
    if(this.Row1.Cell1.rawValue == "")
    this.HeaderRow.presence = "hidden" ;
    This will check that if the first row is empty, it will hide the header from the layout.
    You can use something similar for your requirement.
    Hope this helps,
    Siddhartha Jain

  • View Customization Table changes and Data  table base changes in a report

    Hi All,
    How to view Customization Table changes and DAta  table base changes in a report ,
    Is it right transactions: SCU3 or RSVTPROT
    Also plz let me know the concept of audit trial,
    Thanks
    SD

    Hi,
    Changes to master data objects must be captured for the For compliance purposes. The auditor allows you to be able to view and print an audit log of changes to master data objects for a chosen period. It is very common for external auditors to focus on what has changed from one year or quarter to the next to help determine the nature, extent, and population for testing. To configure and access your audit log, perform the actions listed with each of the following utilities.
    Audit Trail is used to track the record changes.
    The report RPUAUD00 gives all the changes done to the masterdata by any user anytime.
    But, before using this audit trial, please ensure that the system hardware is well equipped as the audit trials activation would later become a performance issue as this would occupy a lot of space in the coming time.
    Best Regards,
    Venkat.

  • Master data tables and Transaction data Tables

    Hello Gurus,
    Please let me know how to know which table belongs to master data  and which table belongs to transaction data.
    for FICO module.
    Does any one  have specific material relating to master data table and transaction data tables.
    Thanks
    Edited by: Manu Rathore on Jan 18, 2012 4:38 AM

    Hi Manu,
    Find attached table relation diagram by Christopher Solomon. It is one of the very comprehensive chart on this topic.
    deleted
    Warm regards,
    Murukan Arunachalam

  • Text label to show current system date?

    I'm totally new to Flex Builder 2. To help me get off the
    runway, here's a simple question I'm almost embarrassed to ask:
    How can I get a text label to display the current system date
    please? <hides head in shame>

    http://livedocs.adobe.com/flex/2/langref/Date.html

  • Preserve the table header while scrolling table

    Hi,
    How do I preserve the table header (giving details of what column contains what data)-- I mean:   |
                            v
    Name      I-number       department
    to stay on the screen, and have only my table as scrollable?
    currently my table contains a lot of data and the second page on scroll comes with the problem of what each column on each row of data means.
    Thanks,
    Adi

    Hello Thomas,
    I am facing the same problem.To resolve this I made two containers one is transparent type for header column and another scroll container to display table contents.These two containers are inside the root container with the flow layout .
    But the prob is the table that is inside scroll cotainer is displaying in the next row instead of the new row.
    Is there any solution of this.
    Best Regards,
    Shikha

  • Data not going from active data table to new data table -DSO activation iss

    Hi Experts,
    Data is going from DSO1 to DSO2. I see some of the records are getting missed in DSO 2 which are supposed to come.
    There is start routine from DSO1 TO DSO2 and as per the start routine some records should come but they are getting missed.
    Apart from that..to  DSO 2 there are 4 other DSO sending data.
    I tried to send single record and saw that data is going

    Hi Experts,
    Data is going from DSO1 to DSO2. I see some of the records are getting missed in DSO 2 which are supposed to come.
    There is start routine from DSO1 TO DSO2 and as per the start routine some records should come but they are getting missed.
    Apart from that..to  DSO 2 there are 4 other DSO sending data.
    I tried to send single record and saw that data is going to New data table and upon activation it does not go to Active data table.
    Please suggest.
    Regards
    Sudha

  • Join between fact table and master data table

    Is it posible to join a Cube with a Characteristic? This is exactly what i need:
    - In my cube i have date (0CALDAY) and (among others) a characteristic (ZCHAR) and a key figure (ZKEYF).
    - I added a key figure (ZKFAT) as an attribute to ZCHAR. So the tables look something like this:
    Fact table:
    <b>0CALDAY | ZCHAR | ZKEYF</b>
    12.10.2006 | CHAR1 | 10
    12.10.2006 | CHAR2 | 20
    12.10.2006 | CHAR3 | 30
    Master data table for ZCHAR:
    <b>ZCHAR | ZKFAT</b>
    CHAR1 | 1000
    CHAR2 | 2000
    CHAR3 | 1500
    I need to make a query with a table that looks like this:
    <b>0CALDAY | ZCHAR | ZKEYF | ZKFAT</b>
    12.10.2006 | CHAR1 | 10 | 1000
    12.10.2006 | CHAR2 | 20 | 2000
    12.10.2006 | CHAR3 | 30 | 1500
    Finally, the query should result in something like this:
    <b>0CALDAY | ZKEYF | ZKFAT</b>
    12.10.2006 | 10 | 1000
    12.10.2006 | 20 | 2000
    12.10.2006 | 30 | 1500
    Adding KFAT to the fact table is not an option, i need to read this information directly from ZCHAR.
    I've tried using MultiProviders but didn't get the result i need.
    Is there any way to achieve this? Please advice.
    Thank you,

    Thank you Ram C. i've tried your solution and it may be it, but i'm having one problem:
    Since i'm reporting in web, i used the second solution you offered and almost got the desiered result. The problem is that some entries are correct but others ar duplicated! Using same example, my result table looks something like this:
    <b>0CALDAY | ZKEYF | Calculated KF (from ZKFAT)</b>
    12.10.2006 | 10 | 1000
    12.10.2006 | 20 | 4000
    12.10.2006 | 30 | 1500
    Second row should be 2000, but instead it shows 4000. I added ZCHAR's attribute ZKFAT as a display attribute in order to compare the results. I found that the display attribute is correct (2000) but the Calculated KF still showed duplicated data (4000).
    By the way, when i execute the query, i get this warning message:
    "Calculated key figure ZRT_C02_2_CKF004 is not defined correctly"
    Any ideas why this could be happening?
    Thank you for your help.
    Message was edited by: Gerardo Gaona

  • Resizing table header of diffrent table

    hi all,
    i have 3 tables, the first table having the table header.
    if resize the first table header than all other 2 should be resized accordingly.
    i have done this demo, i want to know is this correct way.
    or ony other suggestion.
    the problem with this i am setting the tablecellrender for the first table header, it will cause the problem, because i am setting table header column model for other 2 tables as a column model.
    import java.awt.Component;
    import java.awt.Dimension;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.UIManager;
    import javax.swing.table.DefaultTableCellRenderer;
    public class TableHeaderCellRenderr extends JFrame
        JTable table1 = new JTable(5, 5);
        JTable table2 = new JTable(5, 5);
        JTable table3 = new JTable(5, 5);
        public TableHeaderCellRenderr()
            JPanel pnl = new JPanel();
            pnl.setLayout(new BoxLayout(pnl, BoxLayout.Y_AXIS));
            pnl.add(new JScrollPane(table1));
            pnl.add(Box.createVerticalStrut(10));
            pnl.add(table2);
            pnl.add(Box.createVerticalStrut(10));
            pnl.add(table3);
             table2.setTableHeader(table1.getTableHeader()); // this is what it doing the resizing width of the other tables
             table3.setTableHeader(table1.getTableHeader());
             table2.setColumnModel(table1.getTableHeader().getColumnModel());
             table3.setColumnModel(table1.getTableHeader().getColumnModel());
            cellrenderer leftRenderer = new cellrenderer();
            table1.getTableHeader().setDefaultRenderer(leftRenderer);
            getContentPane().add(pnl);
            setSize(new Dimension(400,400));
            setVisible(true);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
        public class cellrenderer extends DefaultTableCellRenderer
            public cellrenderer()
                super();
                setOpaque(false);
            public Component getTableCellRendererComponent(JTable table, Object value,
                                                           boolean isSelected, boolean hasFocus,
                                                           int row, int col)
                JLabel lbl = (JLabel) super.getTableCellRendererComponent(table, value, isSelected,
                                                                          hasFocus, row, col);
                lbl.setBorder(UIManager.getBorder("TableHeader.cellBorder"));
                lbl.setFont(table.getTableHeader().getFont());
                return lbl;
        public static void main(String[] args)
            new TableHeaderCellRenderr();
    }thanks
    dayananda b v

    if i reload or refresh whole GUI the table header is moving from first table to the next table,
    i know this is because of same table header i am setting for the other table header,
    how can i achive this Functionality some other way, any suggestions.
    thanks
    daya

  • Mapping column names stored in a table to one data table dynamically

    Hi everyone,
    Can someone help me - I am trying to import different file types (CSV, TXT, XLS) into a common table.
    The column mapping for the input files is mapped in a look up table - so file 1.txt can have columns order as 12345 while file 2.csv can have columns order 54321.
    How would I dynamically set up the correct mapping depending on which file I am busy with in my foreach loop. (an example would be much appreciated - I am relatively new to SSIS and have a deadline coming up)
    Thanks,

    Pretty sure not possible with available transformations...
    You can try script tasks/component and standardize the input file one by one by using a bunch of loops/if-else codes and collect your data into one table.
    Otherwise, you would need to create different connections/DF for each types of files.

  • Inlcude the table heading in Pivot Table.

    Hi,
    Can we include the table name in the Pivot tables as well along with the Column names as we can do in the Table view where we can show 'Display Column & Table Headings' as seperate rows.
    Regards,
    Bhavik

    Ok, for example take two columns product and revenue. Consider they are 10 products.
    What I have to display in report is 9 products with revenue and total revenue of those 9 products and then the 10th product and revenue and finally the grand total.
    Product---Revenue
    1---35
    2---45
    9---60
    Total---140
    10---70
    Grand Total---210
    Which can be achieved the same in pivot view (using New calculated item)
    I also need to display the table headings, there I stuck with.

  • Fixing the Table Header in the default JSF Table

    I am using the default JSF Table in Sun JS Creator (Version JSC 2 EA 2) with a
    Scroll Bar Option (instead of Pagination Control). However I have not
    been able to fix the table header and scroll only the data rows in the
    table.
    I have tried to use CSS style for table header, but it has not worked
    either. Where do I set the CSS style - in JSCreator JSF Datatable or
    JSCreator Table component, neither seems to work for me?
    Is there any other way to fix the table header default JSF Table in Sun
    JS Creator?
    Using the scroll bar is critical user requirement for me and fixing the
    table header will ensure that I can use the default JSF Table in Sun JS
    Creator, alternatively we will have to use some other JSF table e.g.
    from myFaces or an HTML Table and lose on the productivity benefit of
    JSCreator.

    Hi,
    There please just replace the If with IIF mentioned in Visakh Post. There is spell mistake
    It should be
    =IIF(CountRows("Dataset") > 0, True,False)
    Regards, PS

  • Keep table header in cfdocument

    Hi,
    I need output a long range of data(about 1500 rows) in
    cfdocument,I want to output 20 row per page. may I keep the table
    header in small tables in each page (like first name,last
    name,phone etc)? how to do that?
    Thanks
    Mark

    Hi Vivek,
    Please refer the following thread.
    may be u get the answer.
    How to freeze header pane in SSRS
    Regards
    msbilearning

  • Table header always visible

    Hi All,
    I have used table in scroll container.when i scroll a vertical scrollbar,table heading are also scrolled.
    Is it possible that the table header is  visible, when i scroll to vertical scroll  in the table?
    Thanks
    Abhilasha.

    Hi,
    Have a workaround to use two tables, one table containing columns as header and set some of the properties of the that table like footer visible = false,row selectable = false etc., and the other table holding the actual data. This is proposed by Armin in the following thread. Hope your requirement will be fullfilled.
    [Re: scroll container UI element]
    and some other related threads
    [Re: Table header always visible]
    [Table header fixed]
    Regards
    Raghu

  • How to View master data & Trasaction data tables for Puchasing Cube

    Hi BW masters,
    How should I check which tables (Master data tables and Transaction data tables) are involved with Business Content Cube(Purchasing data 0PUR_C01). I would like to know this information in order to go to that table and browse the data in that table. Where should we go and check this out.
    I will reward the points for the good answers.:-)
    Thanks
    Syed.

    hi Syed,
    to view tables' content you can use SE16,
    you can try infocube name, dimension tables of cube are store in *d[infocube name]1 to F, fact tables are f[infocube name] and e[infocube name]-compress,
    infocube data are stored in star schema, you can use LISTCUBE to view the content (to see the structure/tables in cube, use LISTSCHEMA),
    master data (not time-dependent) are stored in text table t[infoobject name], attribute - p[infoobject name] and hierarchy - h[infoobject name],
    take a look bw multidimensional data modeling for detail
    http://help.sap.com/bp_biv235/BI_EN/documentation/Multi-dimensional_modeling_EN.doc
    hope this helps.

Maybe you are looking for

  • External hard drive issues. Please help!!!!

    hey everyone! I have a 500GB external hard drive and I've just plugged it in via the USB as I normally do to do some work. I just had a message come up saying *"the disk you inserted was not readable by this computer"* and the options 'intialize' 'ig

  • Balance in Reco.A/c 1.46 mill.AED but the S_ALR_87012172 report is nil

    Hello, There is a 1.46 million AED balance in the Down payments recon a/c - Intercompany (AR) account but the S_ALR_87012172 (Customer balance in local currency)report with this reconciliation account shows as nil balance,we want the break up of this

  • Problems with Import in Cap3

    Hi, I have problems to merge 2 Cap3-files - the option "Datei > Importieren > Folien / Objekte" (sorry, german version) is not working, no file is imported. Is there a known trick or workaround ? Would be happy about every clou. Thanks a lot, Wolvo

  • Why does my Extras window keeps asking me to reload the Firefox window and not uploading my new plug ins even after I've reloaded it already?

    I have installed new versions of my plug ins and reloaded the Firefox page, but I noticed one of them wasn't working (the United States English Spellchecker 5.0.0) so I reinstalled it and rebooted the page once again. But it's not working and no matt

  • Finding PDF file in office

    hi I have a really problem with my lumia 920. I have load some PDF file by usb cable on my phone ( in document folder and root) but no office or adobe acrobat reader can not find them.I mean they can not find any thing on my phone.((