Freeze panes(like in xl) option in basic list

freeze panes(like in xl) option in basic list
thank u in advance
ram

Hi,
I think you are displaying report in ALV format.
You use fix the column by the option
fieldcatalog-key = 'X'.
Now when u scroll right or left then this column will be fixed.
Regards,
Vinod.
Edited by: Vinod Iyer on May 23, 2008 5:16 PM

Similar Messages

  • Freeze panes (like in xl)in basic list

    Hai,
    i need freeze panes(like in xl) option in basic list .
    thank u
    ram

    Hi,
    This option is not available in SAP. Please transport is to excel at there you can prepare your file.
    Reward points if useful,
    Miro

  • Freeze panes, like in Excel?

    Can we have the freeze panes effect in Flex? I like my top
    component staying at the same position in the page while I can
    scroll the bottom part up and down. Thanks

    Sure.
    A Flex app consists of navigators, containers and display
    components. Use two containers, and only enable scrolling in the
    one you want.
    I suggest you set vertical and horizontalScrollPolicy="off"
    for all your containers, including Application. Turn them on where
    you specifically want them. The default behavior,
    scrollPolicy="auto" often works, but also becomes very confusing
    when you have deeply nested containers, and scrollbars start
    popping up all over the place.
    Tracy

  • Can one SPLIT or FREEZE PANES like one can in Excel?

    In Excel one can SPLIT PANES or FREEZE PANES.
    Is it possible to do anything similar to this in Numbers 08?
    Or in any previous version of Numbers?

    Sheer,
    No, we can not freeze or split panes. And, this is the first version of Numbers. Perhaps in a later version...
    By the way, Pages does something very similar to Excel's Print Titles that you may find an acceptable substitute. See 'Using a Table Header Row or Column' in Numbers User Guide, page 69.
    Jerry

  • Apex 4.0, want freeze panes like property for reports header row

    Hello all,
    I have some reports (Interactive, SQL) where when a user moves down to see the bottom rows, I want the header row should also move down with them, means the header row should remain constant in the screen only the data rows move up. Is there a way to do this.
    Is there any option to do this?
    Thanks
    Tauceef
    Edited by: Tauceef on Oct 2, 2010 11:33 AM

    Is this possible? If there's a way to reference the column values for conditional display, I haven't been able to find it. No, this is not possible. If you want to conditionally render individual values rather than entire columns based on the value of other columns, build the logic into the SQL query using <tt>case</tt> or <tt>decode</tt> so that either the value or null is returned depending on the condition, or use a custom report template with conditional column templates, or a custom named column template.

  • Can pp col headings act like freeze pane in excel

    Hi.  We run 2012 enterprise.  Can co headings on my pivot table scroll as freeze pane does in regular excel?  How?

    Hi, your Situation is as follow?:
    You have a powerpivot model, and a pivot-table based on this PP data, created with Excel 2013
    Now you want the Pivot-table columns to freeze if you scroll down the Excel sheet?
    IMHO you can't do this because Excel has no Feature to freeze Pivot-table column, but can freeze columns of Excel table objects
    You can get PP data into a Excel table object by creating a DAX Query, see:
    http://www.sqlbi.com/articles/linkback-tables-in-powerpivot-for-excel-2013

  • JTextArea with freeze pane functionality

    Greetings. I am trying to implement a plain text viewer that has some sort of "freeze pane" functionality (like that found in MS Excel)
    I took the approach of using 4 JTextArea and put them into a JScrollPane, its row header, column header and upper-left corner. All these text areas share the same document.
    Everything works as expected. When I scroll the lower-right pane, the row and column headers scroll correspondingly. The problem I have is that the document in the lower-right pane now shows duplicate portion of the document that is already showing in the row and column headers.
    Knowing that this should merely be a matter of shifting the Viewport on the document, I went through the documentation and java source, and just couldn't find a way to translate the view. SetViewPosition() works to a certain extent, but the scrollbars allow users to scroll back to the origin and reveal the duplicate data, which is undesirable.
    Your help with find out a way to relocate the view to the desired location is much appreciated.
    khsu

    some sample code attached (with a quick hack in attempt to making it work, at least presentation-wise)
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import javax.swing.plaf.*;
    import javax.swing.plaf.basic.*;
    import javax.swing.text.*;
    public class SplitViewFrame extends JFrame {
        int splitX = 100;
        int splitY = 100;
        public static void main(String[] args) {
            // Create application frame.
            SplitViewFrame frame = new SplitViewFrame();
            // Show frame
            frame.setVisible(true);
         * The constructor.
         public SplitViewFrame() {
            JMenuBar menuBar = new JMenuBar();
            JMenu menuFile = new JMenu();
            JMenuItem menuFileExit = new JMenuItem();
            menuFile.setLabel("File");
            menuFileExit.setLabel("Exit");
            // Add action listener.for the menu button
            menuFileExit.addActionListener
                new ActionListener() {
                    public void actionPerformed(ActionEvent e) {
                        SplitViewFrame.this.windowClosed();
            menuFile.add(menuFileExit);
            menuBar.add(menuFile);
            setTitle("SplitView");
            setJMenuBar(menuBar);
            setSize(new Dimension(640, 480));
            // Add window listener.
            this.addWindowListener
                new WindowAdapter() {
                    public void windowClosing(WindowEvent e) {
                        SplitViewFrame.this.windowClosed();
            makeFreezePane();
        void makeFreezePane() {
            Container cp = getContentPane();
            Font font = new Font("monospaced", Font.PLAIN, 14);
            OffsetTextArea ta = new OffsetTextArea();
            ta.setSplit(splitX, splitY);
            ta.setOpaque(false);
            ta.setFont(font);
            // read doc
            readDocIntoTextArea(ta, "..\\afscheck.txt");
            JScrollPane jsp = new JScrollPane(ta);
            jsp.getViewport().setBackground(Color.white);
            Document doc = ta.getDocument();
            // dump doc
            //dumpDocument(doc);
            JViewport ulVP = makeViewport(doc, font, 0, 0, splitX, splitY);
            JViewport urVP = makeViewport(doc, font, splitX, 0, 20, splitY);
            JViewport llVP = makeViewport(doc, font, 0, splitY, splitX, 20);
            jsp.setRowHeader(llVP);
            jsp.setColumnHeader(urVP);
            jsp.setCorner(JScrollPane.UPPER_LEFT_CORNER, ulVP);
            jsp.setCorner(JScrollPane.UPPER_RIGHT_CORNER, new Corner());
            jsp.setCorner(JScrollPane.LOWER_LEFT_CORNER, new Corner());
            jsp.setCorner(JScrollPane.LOWER_RIGHT_CORNER, new Corner());
            cp.setLayout(new BorderLayout());
            cp.add(jsp, BorderLayout.CENTER);
        void readDocIntoTextArea(JTextArea ta, String filename) {
            try {
                File f = new File(filename);
                FileInputStream fis = new FileInputStream(f);
                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                int br = 0;
                byte[] buf = new byte[1024000];
                while ((br = fis.read(buf, 0, buf.length)) != -1) {
                    baos.write(buf, 0, br);
                fis.close();
                ta.setText(baos.toString());
            } catch (Exception e) {
                e.printStackTrace();
                ta.setText("Failed to load text.");
        protected void windowClosed() {
            System.exit(0);
        JViewport makeViewport(Document doc, Font f, int splitX, int splitY, int width, int height) {
            JViewport vp = new JViewport();
            OffsetTextArea ta = new OffsetTextArea();
            ta.setSplit(splitX, splitY);
            ta.setDocument(doc);
            ta.setFont(f);
            ta.setBackground(Color.gray);
            vp.setView(ta);
            vp.setBackground(Color.gray);
            vp.setPreferredSize(new Dimension(width, height));
            return vp;
        static void dumpDocument(Document doc) {
            Element[] elms = doc.getRootElements();
            for (int i = 0; i < elms.length; i++) {
                dumpElement(elms, 0);
    static void dumpElement(Element elm, int level) {
    for (int i = 0; i < level; i++) System.out.print(" ");
    System.out.print(elm.getName());
    if ( elm.isLeaf() && elm.getName().equals("content")) {
    try {
    int s = elm.getStartOffset();
    int e = elm.getEndOffset();
    System.out.println(elm.getDocument().getText(
    s, e-s));
    } catch (Exception e) {
    System.out.println(e.getLocalizedMessage());
    return;
    System.out.println();
    for (int i = 0; i < elm.getElementCount(); i++) {
    dumpElement(elm.getElement(i), level+1);
    class OffsetTextArea extends JTextArea {
    int splitX = 0;
    int splitY = 0;
    public void setSplit(int x, int y) {
    splitX = x;
    splitY = y;
    public void paint(Graphics g) {
    g.translate(-splitX, -splitY);
    super.paint(g);
    g.translate( splitX, splitY);
    /* Corner.java is used by ScrollDemo.java. */
    class Corner extends JComponent {
    protected void paintComponent(Graphics g) {
    // Fill me with dirty brown/orange.
    g.setColor(new Color(230, 163, 4));
    g.fillRect(0, 0, getWidth(), getHeight());

  • Freeze panes in OBIEE 11g

    Hi All,
    Glad to post regarding Freezing panes in OBIEE 11g.
    Since this has got most hits in the search.
    I searched a quite few websites like replies from BI Joe and few others. But couldnt resolve this.
    Would be great help for all those who are looking for workaround regarding the same.
    Also - another feature likely in 11.1.1.6 - freeze panes for rows and columns :-). But need it in 11.1.5
    Regards
    MuRam
    http://obiee10grevisited.blogspot.in/
    Edited by: MuRam on Feb 29, 2012 10:23 AM

    check with oracle support. they might released patches for 11.1.5

  • Freeze Panes Functionality

    I am required to develop a report that has a large number of columns. For readability the first 3 columns must remain frozen during horizontal scrolling (much like excel freeze panes).
    So far I have achieved this with two regions with different column sets from the same report displayed next to each other, This way I can make the right hand report region scroll (<div> tags in the Header & Footer of this region)while leaving the left hand report static.
    This leaves me with a problem where I need to link the pagination of both report regions. I am trying to change the SQL on the right hand report to only return the records displayed in the right hand region, my SQL for the right region Looks something like this but does not work:
    Select * from TABLE_NAME WHERE ID IN (:P3_LEFT_REGION)
    I believe it is because I am trying to reference a region as a list which I cannot do or am doing wrong.
    So my question is "Is there a better way to do this and how?"

    wow, it would cost your company so much less if your users can just download into Excel and do the fancy stuff there.
    Next they are going to ask you for more Excel-like functionality.

  • I cant download anything including Updates, when i try to download a black box appears saying that i have to power off the laptop using the button, and it freezes, so i have no option but to power off. Please HELP

    I cant download anything including Updates, when i try to download a black box appears saying in 4 different languages that i have to power off the laptop using the button, and it freezes, so i have no option but to power off. Please HELP

    Well, at least it's good that there are no hardware issues - that's a relief and one problem area that you can check off.
    OK, so let's summarize so I can get a clear picture of what's going on. If you try to download something from your web browser, what happens? What if you try to download a small utility such as "EasyFind" from the App Store? Or is the problem specifically linked to downloading updates?
    I'm just trying to get a feel for if anything really means anything?
    Usually what you download from, say, a website, goes into your Downloads folder. It's the default folder for things like that. Apps from the App Store are downloaded to your Applications folder. And software updates are generally, I believe, held in a temporary folder so that they can be installed (in many cases) when you're asked to restart.
    It could be something as simple as repairing permissions on your start-up disk. You're running Snow Leopard, right? (That's what your profile says.) Try opening Disk Utility from your Utilities folder, selecting your boot disk and try verifying permissions. If you come up with some errors, try repairing permissions. After that, go ahead and verify your boot disk - you won't be able to repair it at this point, but at least you can see if you have any errors.
    Let me know about the anything and get back to me after you've verified and repaired permissions and verified your boot drive.
    Good luck,
    Clinton

  • Review comments completely hidden by freeze panes in VBA Excel

    Hello
    I have a worksheet with review comments attached to the cell during run time. I use these
    review comments like tool tips to explain the user that the field is a mandatory field and it must be entered .
    I also used the Freeze Panes feature to keep the left side columns say (4 columns)  visible
    as the worksheet is scrolled horizontally. However, the review comments are visible when it is not scrolled but they are hidden under the frozen pane when the worksheet is scrolled horizontally.
    The review comment that overlaps the boundary is no longer visible when scrolled completely.
    Is there any way to prevent this from happening? Please suggest
    Thanks and Regards
    Kamal
    Kamal

    Hello Zhang
    Thanks very much for your response and suggestions
    I have tried increasing the width of the column D but still the review comments are getting hidden under the frozen panes. Dragging of comment window is not possible as these review comments are attached to the cell at run time. 
    Trying the data validation technique will not be a better choice. The reason is i am validating all the fields present in all the rows at once in a single button click  . Correct me if i am wrong...The reason is if the user doesn't enter the
    value for this column for at least (say 10 rows) then it might fire the validation pop up ten times.This will make the user to clear the validation pop ups first and then enter the values for all the left rows. If i add review comments then it will just add
    a red mark at the top right corner of the cell along with the review comments which will help the user to understand that it is a mandatory field.
    So, Please suggest a solution regarding how to handle the case related to the review comments that overlaps the boundary is not longer visible when scrolled completely.
    Thanks and Regards
    Kamal

  • Is there a menu option in basic Adobe Reader than will enable me to check if a PDF is set in RGB or CMYK?

    Is there a menu option in basic Adobe Reader than will enable me to check if a PDF is set in RGB or CMYK?

    No. Acrobat Pro's preflight is the tool for checking this sort of thing but you should be aware that it isn't a simple RGB versus CMYK. A file can contain any mixture of either, as well as other colour spaces (greyscale, Lab, spot colour). So in preflight you are looking to be told not "is this file CMYK" but "does this file contain any non-CMYK elements". Preflight can also check other prepress needs like a minimum resolution.

  • Excel freeze panes on WEB APPLICATIONS

    Hi Experts,
    Does anybody know how to implement something like the "excel freeze panes functionality" (freeze columns headers on top of the pages) for web applications?
    We are using BW 7.0 (SAP Netweaver 2004s BI).
    Thanks in advance.
    Best regards,
    Raphael

    Hi Raphael,
       Did you check the Analysis Item Properties, you should be able to define how many Data Columns to be displayed, I dont have my system now but i think you can set a Web Property for this, or you can simply write javascript function for this
    thanks,
    Deepak
    SAP BI Consultant
    DNTech

  • Split Pane? Freeze Pane?

    Is there a Numbers equivalent to Excel's Split Pane and Freeze Pane commands? ... so, for example, the header row is always visible and scrolling happens to the rows below the header.

    rowster,
    Would you like to try the following? It's quicker to do than to write it all out, so don't be put off by my lengthy step-by-step instructions.
    In Numbers, deselect Show or Hide Print View at the extreme bottom of the window, to hide the Print View page boundaries. Create your blank spreadsheet Table either from scratch or using a Template, and after clicking on the Table to expose the Row and Column Reference Numbers and Letters, drag to the right the 'Handle' at the right hand end of the row of Column Reference Letters which lie along the top of the Table; drag to the right as far as you need to go to add sufficient columns for your needs; the table will scroll to the left if you go off the right hand edge of the window. Do the same to increase the number of Rows by dragging downwards the Handle below the bottom of the column of Row Reference Numbers which are shown down the left hand edge of the Table.
    Enter your data into the Table with any Formatting you require, and make sure you specify a Header and Footer Row and Column in the Table Inspector pane. To do this, select the Table by clicking on it, then click on the Inspector Icon on the Toolbar to open the Inspector pane, and select the Table Icon at the top of the pane. If you want to minimise the size of the Table, auto-adjust the width of the columns and the height of the rows to 'fit' these to the space required by each data. You can also consider reducing the View magnification if this doesn't reduce readability too much.
    With the Table selected, select your paper sheet size and orienatation (Portrait or Landscape) in the Document Inspector and Sheet Inspector panes respectively and also set whether you want successive pages to lie horizontally or vertically adjacent to each other, then click on the Table Icon in the Inspector pane. At the very bottom of the Table Inspector pane, make sure that 'Repeat header cells on each page' is checked.
    Now re-select Show or Hide Print View at the extreme bottom of the window; this will break up the window contents into individual pages corresponding to what you would get if you were to print them. Using the scroll bars at the side and bottom of the window, you can now scroll around the spreadsheet and as you move from one page to another, the Header and Footer Row and Column will always be visible on each page, allowing you to relate data in any cell to these.
    To me, this is the next best thing to Excel's Freeze Panes feature, and in some situations, I think it's preferable.
    The only feature omission is that whilst the row of Column Reference Letters is always visible on every page if the Table is 'selected' by clicking on it, the column of Row Reference Numbers is only visible on the left-most pages; I've used the 'Provide Numbers feedback' feature to request Apple to repeat the column of Row Reference numbers on every page alongside the left-hand Header column.
    Hope this helps,
    Ian Mathieson.
    U.K.

  • Freeze Panes in iWork?

    When using iWorks am I right in thinking you cannot freeze panes in a spread sheet using Numbers. Can anyone please help?

    Hello there Anthony,
    It sounds like you want to freeze the header rows when working with Numbers either on iOS or Mac OS X. You certainly can! On iPhone use this process:
    Add and rearrange table rows and columns - Numbers Help
    You can freeze header rows or columns so they’re always visible as you scroll the spreadsheet.
    You can freeze header rows or columns so they’re always visible as you scroll the spreadsheet.
    Tap the table, tap , then tap Headers.
    Do any of the following:
    Freeze header rows or columns: Turn Freeze Rows or Freeze Columns on or off.
    In Mac OS X:
    Add and rearrange table rows and columns - Numbers Help for Mac
    You can freeze header rows or columns so they’re always visible as you scroll the spreadsheet.
    Click anywhere in the table.
    Do any of the following:
    Freeze header rows or columns: Choose Freeze Header Rows or Freeze Header Columns from the pop-up menu. To unfreeze, deselect Freeze Header Rows or Freeze Header Columns so that the checkmark disappears.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

Maybe you are looking for

  • View for active Incidents related to WI (Problem) with status (Active) works but can't be changed.

    Hi, I wanted to create a view of Incidents which are linked to a Problem (any problem). I did a quick test using the Incident (advanced) class, selected to display Incidents with status Active and [Work Item] Is Related To Work Item and status for Pr

  • Nikon to IPhoto to Snapfish

    I got a new Nikon digital camera (D40) and a macbook pro pretty much at the same time and tried to upload my pictures to snapfish (via iphoto) but for some reasons even thought the quality of the pictures was really good in the camera, by the time it

  • Basic issue with opening Lightroom 1

    I'm a CS3 user. I just purchased Lightroom 1 and uploaded it on my vista pc. I can't open it. A box titled Confirm appears and displays the following error message: The Lightroom Catalog named "Lightroom Catalog" cannot open because it is not valid.

  • Euro sign in Report Query (RTF file)

    Hi all, I configured XML publisher as report server for report queries. All seems to work well, except printing of euro signs. When designing a template locally in word, everything works. When the RTF file is uploaded to apex and tested, the euro sig

  • Disabling Indexes

    Hi, in 10g R2, it is said that the following WHERE clause will disable index : WHERE ''|| column >=valueBut when I use it the explain plan does not change : SQL> EXPLAIN PLAN FOR   2  select EMPLID, NAME FROM sysadm.PS_NAMES WHERE EMPLID >= 'PA001';