Freezing the Name column of the hierarchy when scrolling to the right.

Hi,
In UCMON, the keys of the org hierarchy are frozen when you expand the task columns and scroll to the right. That way I could still see the keys of the organizations when processing the tasks far on the right.
How do I do the same for the names column? Is there a way to have the names column frozen as well so that I could still view the names next to the keys when processing those tasks?
Any advice is appreciated.
Thanks,
Sie-Sing

Do you have an attached display to your Mac?

Similar Messages

  • SSRS Header (Fixed) is displaced when scrolling left to right

    Hi,
    I'm using Report Builder 3.0 for my SSRS.  have a tablix report where I would like to have my row and column header fixed. I fixed the column header using the RowGroups>AdvancedMode>Static> Fixed Data True, KeepGroup After, RepeatHeader True
    then FixedRowHeaders True for my row header. The headers are fixed ihen scrolling down in Report Builder although the row header overlaps when scrolling to the right.
    In the web report, I have no problem scrolling down but when I scroll down then right, the rows in my header are displaced.
    Also I have 2 horizontal and vertical scroll bars which is a pain since I have to scroll down first before I can scroll right. 
    I would really appreciate any help.
    Thanks a lot,
    Cielle

    Hi Cielle,
    Based on my understanding, you design a report on Report Builder 3.0 with fixed row header. When you scroll right, the fixed header works fine in Report Builder 3, however, the fixed header displaced on Report Manager.
    In Reporting Service, if we choose “Header should remain visible while scrolling” option, generally, the column header will be displaced and visible as we scroll right. So please check if you select this item in Tablix Properties. If so, please unselect
    this option then check if issue persists. Besides, as we tested in our environment, fixed row header works fine both on Report Builder 3.0 and Report Manager. Please refer to the screenshots below:
    So in your scenario, I would like to know the detail settings for row headers and your report design. If possible, please provide some screenshots about scroll right results both on Report Builder 3.0 and Report Server.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • TableView - support for frozen columns and rows when scrolling?

    Hi,
    Is there support in JavaFx 2.0 for having certain columns or rows "frozen" when scrolling horizontally/vertically (so that these columns aren't scrolled)? Something similar to Excel's "freeze panes" functionality or Jidesoft's TableScrollPane header/footer rows and columns?
    If not, does anyone have examples of how this could be done?
    Regards,
    Frode

    At present this is not a feature that is offered in JavaFX 2.0. It is something that we do want to support in a future release however.
    For the time being I'm not sure if there is a way to easily implement this, however if you want feel free to email me and I can try to research it further when time permits: [email protected]
    -- Jonathan

  • Names of columns don't appear when I read the report on WebI 6.5 ??

    Names of columns don't appear when I read the report on WebI 6.5
    The report was developped on BO 6.5 and was published on WebI.
    When I read the report with the HTML mode, the names of the colums appear.
    When I read the report with the PDF mode, the names of the columns don't appear.
    I try to read the report with the HTML mode and after, I try to save it in pdf but it doesn't work. (it is the operation of conversion of pdf which doesn't work - it's very long and... nothing appends)

    Hello,
    This is  the default column. I didnu2019t add column heading. But I replaced the name of the column by words.
    I havenu2019t change the property of column heading.
    It is a cross tab.

  • How to freeze the columns in excel exported from SSRS report??

    We have created a report for our client. The client wants the report in excel format. As there are nearly about 30,000 rows in the excel. Client wants us to freeze the column header names in the excel so that even after scrolling down they
    will be able to see the column names.
    can anybody have idea how to achieve this in SSRS?

    Hi Shard,
    Thanks for your post, You can achive your requiremets by using the below logic. hope this will help you.
    Steps to achieve it
    1. Select the tabix and click on Tablix properties.
    2. In the General tab under Column Headers section you can see "Keep header visible while scrolling" checkbox, check it.
    3. Now the header row will be remain fixed in the report.
    OR
    1.    In the grouping pane, make sure to turn on advanced mode (click on the small black down arrow on the far right of the grouping pane) 
    2.  Select the corresponding (Static) item in the row group hierarchy
    3.  In the properties grid, set RepeatOnNewPage to true
    4. KeepwithGroup to After
    OR
    1)Freeze the header of all columns[ Freezing table header ] : To do select static member of table header row from  row groups [ Advanced Mode ] and set  FixedData to true
    2) Freeze the initial 2 columns : To do select static member of columns in column group and set fixedData to true .
    How do you freeze the tablix header row in an Excel export file in SSRS 2008
    Suhas Kudekar
    Mark as Answer if this resolves your problem or "Vote as Helpful" if you find it helpful.
    My Blog
    Follow @SuhasKudekar

  • How to freeze the column edit in Draft document?

    Hi,
    I try the following code and want to freeze the column edit in Item code, Item description and quantity.  However, it just work in Sales Order or PUrchase Order those normal marketing document.  it doesn't work in Draft document.  Anyone can help?
      If BusinessObjectInfo.FormTypeEx = "133" And BusinessObjectInfo.Type = 112 And BusinessObjectInfo.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_LOAD Then
                    If BusinessObjectInfo.BeforeAction = True Then
                        oForm = SBO_Application.Forms.Item(BusinessObjectInfo.FormUID)
                        oboDS = oForm.DataSources.DBDataSources.Item("ODRF")
                        oGenvalue = oboDS.GetValue("U_InvoiceFlag", 0)
                        Dim oOrderMat As SAPbouiCOM.Matrix = oForm.Items.Item("38").Specific  'Content Row'
                        Dim oColumns As SAPbouiCOM.Columns = oOrderMat.Columns
                        Dim oItemColumn As SAPbouiCOM.Column = oColumns.Item("1")       'Item No
                        Dim oItemColumn3 As SAPbouiCOM.Column = oColumns.Item("3")
                        Dim oItemColumn11 As SAPbouiCOM.Column = oColumns.Item("11")
                        If oGenvalue.Trim = "Y" Then
                            'Set Itemcode and Quantity to non-editable
                            oItemColumn3.Editable = False
                            oItemColumn.Editable = False
                            oItemColumn11.Editable = False
                        Else
                            oItemColumn3.Editable = True
                            oItemColumn.Editable = True
                            oItemColumn11.Editable = True
                        End If
                    End If
                End If

    Hi Anna,
    Thanks for posting your code - that helps a lot isolating the issue!
    While your code could work, if the SDK would have been implemented differently, it won't do what you want it to:
    - There is no et_FORM_DATA_LOAD event fired when a draft is loaded (use EventLogger from the B1DE tools - it would have told you that you are looking at an event that doesn't get fired...).
    - Not sure how "BusinessObjectInfo" is defined, but oForm.BusinessObject.Type = "112" does not occurr:
    The business object behind the form is the "real" business object - an Invoice ("13") in your case.
    Thus your code never reaches the lines where you disable the relevant columns... - you could e.g. use .NET Profiler form B1TE to get at least a better idea of what is happening inside the add-on, if you don't like to step through you add-on code.
    - oForm.BusinessObject.Type is a string (remember UDOs!) - not a number.
    - Table "ODRF" is not a datasource behind form "133" - please check the form's XML!
    If you would like to run that check you have to do it differently - using DI API...
    HTH,
    Frank
    Edited by: Frank Moebius on Aug 3, 2009 4:28 PM

  • Creating a Folder Within Form or Document Library & Display the name not in the name column.

    I have created a form library that will used to create folders within that. The folder creation is done using an InfoPath Form that has been uploaded to the Form Library. When the new folder was created the name will be displayed at the Name column within
    the Form Library. I want to change that to another column like documents or suchlike.
    Can it be done using InfoPath 2010 VSTA C# or not? If their are other options available please could you try to inform me!
    Thank You,
    Chiranthaka

    Hi,     
    If you want to show the name of folder in another column, a workaround is that you can create an extra column, then create a SharePoint Designer workflow to set the value of
    this column with the name of folder.
    Here is a link about Create Workflow using SharePoint Designer and set field value for your reference:
    http://www.codeproject.com/Tips/419037/Create-Workflow-using-SharePoint-Designer
    I have seen a similar post from you in the link below:
    http://social.technet.microsoft.com/Forums/en-US/c3ff3f17-dbe2-40f9-86c5-ff7d4b663f09/creating-a-folder-within-form-or-document-library-display-the-name-not-in-the-name-column?forum=sharepointcustomizationprevious
    It's recommended that you post a single question in a single thread which will make it easier to be discussed by others.
    Best regards
    Patrick Liang
    TechNet Community Support

  • Is there any way to do a mass copy and paste of song titles from the "name" column to the "sort name" column? I know it can be done with individual titles but I have over 6,000 titles in my library.

    In iTunes, is there any way to do a mass copy and paste of song titles from the "name" column to the "sort name" column? I know it can be done with individual titles but I have over 6,000 titles in my library.

    Thank you. I have heard of Logic Pro 7, but I have never personally used it. I'm still growing in the world of Composition, and I know that it is something I will be studying in one of my Computer Music classes coming up for my degree. I think it is something I will look into getting once I can justify the price of it. I guess for the time being, I will continue to play and grow in my ability to use and take advantage of GB, and then see what I can do about or with Logic Pro when I'm ready. The thought of spending $1000 for a program is hard to bite, because I've already spent a lot to produce my music, not only electronic music, but also chamber music and so on. I had no idea it would be so expensive to dive deep into the world of composition! lol.
    Finale 2007: $500
    Sibelius 4: $500
    Jam Packs: $400
    Midi Keyboard Interface: $100
    PowerBook: $1700
    Printer for printing scores and analysis: $150
    Logic Pro 7: Oy!
    As you can see it adds up very quickly...that doesn't even include my personal instruments and study materials.
    Thank you for your input, as I haven't really worked much with LP, and therefore didn't know which features are available. I will talk with some of my Composition buddies, and professors and see what they have to say as well, and who knows, I may be able to get the express version through one of them.

  • Song title is incorrect in the "NAME" column in itunes, but correct at the top of the page for the song playing.

    All of a sudden most of the song titles under the "NAME" column in itunes is incorrect.   When I click on the file name it plays a different song but it points to the correct song elsewhere on the list.   Also it shows the correct song name at the top of the screen.  Is it possible to get the files under the NAME column to point to the right song?  This is happening on my PC windows 7.

    Move your mouse to the top of the Firefox window, then right click.
    You will see a menu of the available toolbars. Select '''''Customize'''''.
    In the new window, look for the icon. When you find if, hold down
    the left button on it, and move it to where you want it to be.
    You can move any of the icons you want from here, but some
    icons are locked in place.

  • How to freeze the selection column in the table control of the module pool.

    hi ,
    in my module pool there is a row selection field  <b>w/selcolumn</b> of the table control called as mark.
    how to freeze the selection column where there is no record in the table control row.
    or in other words where wa is initial.
    thanks
    ekta

    Hi all,
    in the PBO of the screen the following code is written.
    say the selection column is MARK and is declared in the data as well.
    thanks
    ekta
    *************************C O D E **************************************************
    MODULE disp_tabctrl1 OUTPUT.
      IF flag_c = 1.
        READ TABLE it_create_data INTO wa_material_data
             INDEX tab_ctrl1-current_line.
      ELSE.
        READ TABLE it_material_data INTO wa_material_data
             INDEX tab_ctrl1-current_line.
        IF sy-subrc = 0.
          IF ok_code_0101 = '&SEL1'.
            mark = 'X'.
          ELSEIF ok_code_0101 = '&DSEL'.
            mark = ' '.
          ENDIF.
        ELSE.
          LOOP AT SCREEN.
            IF screen-name = 'MARK'.
              screen-input = 0.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        ENDIF.
      ENDIF.
      index_t = tab_ctrl1-top_line.
      index_d = tab_ctrl1-top_line + n.
    ENDMODULE.                 " DISP_TABCTRL1  OUTPUT

  • How to assign a unique number to the name column of a document set?

    How can I assign a unique number to the name column of a document set preferably with workflows? (Perhaps this number can increase by one each time a new document set is created)
    When a user attempts to create a new document set, this unique number should be already there as the name of the document set.
    (However, It seems that access and edit the Name column is more tricky than the other columns)

    Hi,
    To use document ID instead of Name column, you can
    Modify View and hide Name column. Then make Document ID to display at the left column.
    By default, document ID will be assigned to both document items and document sets. You may
    experience delay before you can see document ID assigned to existing document items and document sets because the scheduled document ID assignment timer jobs haven't finished yet.
    Miles LI TechNet Community Support

  • How to set the "Name" Column in EM

    I am wondering how I can get the "Name" Column to be a set to a custom text of my choosing when it is set during runtime in my SOA composite.
    Here is a link to a pic of the field I am trying to set
    http://img13.imageshack.us/img13/1491/16823609.png
    Edited by: 960635 on Nov 19, 2012 12:31 PM

    Are you referring to having a checkmark symbol, or an actual checkbox that the user can change its state. If it's the former, then that's done by making symbols visible and writing to the Item Symbols property. If it's the latter, then that's something you have to program yourself. You may want to take a look at this thread, which points to an example on LAVA. There is also this example. All found using a search...

  • Freeze the column headers for htmlb:tableView using CSS

    Hi
    I am using a <htmlb:tableView > in BSP to display data.
    i want to freeze the column headers so that they dont scroll when table data is scrolled.
    Is it possible ?
    Regards
    Rajendra

    Hi Rajendra,
    Have a look at the links below:
    [Freeze tableview header-I|https://forums.sdn.sap.com/click.jspa?searchID=24813847&messageID=3088768]
    [Freeze tableview header-II|Freeze table header in HTMLB Tableview]
    [Freeze Columns of tableview|https://forums.sdn.sap.com/click.jspa?searchID=24813847&messageID=3517748]
    Search the forum and you will find information on this.
    Regards,
    Anubhav

  • Why can't I move the "name" column??

    This is a question that has been bothering me for a very long time. Why can't I move the "Name" column in the library (or playlist) view away from it's left position? It seems to be locked into place. I can move and arrange artist, album, time, bitrate, track #, etc etc etc to any configuration I so desire, but yet the name column remains eternally glued to the left side of that pane, never to be moved.
    The reason I ask, is because when I organize my music, I don't immediately think of track names, I think of artists. Especially in this day of cds I am hard pressed to recall individual song names. At home my albums and cds are filed by artist name, not by song name (physically impossible, obviously). It's a natural tree-like organization... artist->album->song name. I want to configure the library view in iTunes to match this same logical hiearchy but for some reason iTunes will not let me do this one extremly simple thing... argh and double argh!! Is there any reason for this? Is there any way to solve this?

    Chad hello,
    Everybody here has given you good advice so I will explain why the name column can not be moved...
    Your Music library is a data base and a data base has to have at least one totally unique index field for each file... now it can not be the Artist as you can have as many songs as you like by the same artist... same reason for the album, one album can have many songs but the same album name... same for genre etc.
    The only thing that can be unique is the song title... If you put the exact same song by the same artist the program will assign a unique name by adding a number in front of the extension for each duplicate .... example
    Song Name.mp3
    Song Name_1.mp3
    Song Name_2.mp3
    So when you think about it the song name is the only thing that is different... one album by the same Artist may have more than one track of exactly the same length, size, genre, composer etc. moving through all fields except the name....
    Now why can't you move the name column... well all the other fields do not have to be unique so you can move and/or remove these columns but if you could remove the name column you could end up with more than one entry in your library looking exactly the same.... you have to have something that allows you to separate them and that is the unique index field 'Song Name'....it could not work any other way..
    hope you can follow all that.... take care... TP

  • How to freeze the columns in Classical reports using vertical scroll

    Hi All,
    I am facing one problem that when i am scrolling down the page in the report     output ,the columns in the report are moving upward.I want to freeze those columns . Please give me the solution for to freeze the columns in classical report when i scroll vertically.
    With Regards,
    R.P.Sastry

    Put ur colum headers in TOP-OF-PAGE Event.
    this will sole ur problem.
    reward if useful.
    Regards,
    Vimal

Maybe you are looking for

  • Error while simualting a Portal application

    I am trying to create a Portlet thru Portal Builder. So in the 1st step I have created a Portal application, then created a Portlet extending Generic Protlet. Then finally I have tried to simulate into SunONE Portal Server. At that time I am facing j

  • Migration to new Mac from FireWire clone

    Hi. I'm planning to buy a new iMac in a few weeks when the line is refreshed. I'm currently running my 2006 iMac from a FireWire clone as the internal disk went south just before Christmas. What I'm planning to do is use this clone drive to migrate a

  • How to Code SWFObject with Alternate Content

    I've read umpteen tutorials and articles on embedding Flash with alternate content, and they're all too different, confusing, and unsuccessful. All I want to do is insert a JPEG to replace my Flash movie on non-Flash browsers but have no idea how or

  • How to track stolen laptops?

    I lost my Lenovo G580 Laptop last week. It doesn't have any tracking programs installed. But i have the serial number and MAC id of my Laptop. Is there a way that i can be able to track my laptop...

  • 32 bit java

    I am running ubuntu on an AMD 64 bit system. I have installed firefox as part of the distribution. I need to run a 32-bit java app with the 32-bit jre plugin. When I install the 32-bit jre plugin per http://www.oracle.com/technetwork/java/javase/manu