Create columns for HTMLB:TREE

Hi All,
In our appplication we are are using <htmlb:tree />. Using CL_BSP_BEE_TABLE we were able to show checkbox inside the tree node. CL_BSP_BEE_TABLE was of great help.
Now we need columns in tree. Is there a way to create columns using BEE?
Thanks and regards,
Bindiya

I am using a tree with about 2500 nodes and and around 5000 final children (leaves)  and we dont face any problem using the approach i have explained in my weblog.
i guess the best approach would be to just do it and check whether you are having problem.
<i>Do you know of any good alternatives to the htmlb:tree?</i>
there are other javascrip/dhtml trees but you will still face the same kind of issues.
Regards
Raja

Similar Messages

  • How to create column for attachment in SharePoint 2013 Document Library.

    I've created document Library where user can upload the file while click on Upload option (OOTB).
    Now in this Library I want to create one more column where user can put some comment and attach one more file for reference. 
    For comment I can create "Single line of text" type calumn where user can put some comment but for attachment not sure which type of column I have to create.
    Want to know is there OOTB feature/column available which I can use to Add / create a one more column to upload a document for reference.

    Hi,
    For issue 1, please refer 
    To manage the permissions for a Document Set, you must have at least the Design or Full Control permission level.
    On the Welcome Page for the Document Set, click the Manage tab of the Document Set ribbon, and then click Permissions.
    Do one of the following:
    To change the permission settings for the document library itself, click Manage Parent.
    To stop inheriting permissions from the document library and create unique permissions for this Document Set individually, click Stop Inheriting Permissions.
    To view the specific permissions an individual has, click Check Permissions, and then type the name of the user or group you want to check.
    To inherit permissions from the parent document library (if the Document Set was previously configured to stop inheriting them) click Inherit Permissions.
    For more information about working with permissions, see the links under See Also.
    https://support.office.com/en-in/article/Create-and-manage-Document-Sets-c71d5796-d559-48de-b1b3-42383bdd13ea?ui=en-US&rs=en-IN&ad=IN
    For Issue 2:
    You can create a link in the Quick Launch bar
    http://support.sherweb.com/Faqs/Show/how-to-add-a-link-to-the-quick-launch-toolbar-in-sharepoint-sharepoint-2013
    Please don't forget to mark it answered, if your problem resolved or helpful.

  • FRM-41072:Can't create Group (for a tree)

    Hello,
    the following code is trying to refresh data while saving the record which is a child of the child of the Grand parent.
    In Key-commit Trigger..
    The Query was working just fine without the new modification concept to have a child from the child.
    e.g.
    Electrical Equipment
    |_ Computer
           |_ Mother BoardAny way the Query works fine in Toad it displays what i want but in the forms' tree ..!!!
    Getting the following Error:
    --===========================
    FRM-41072:Can't create Group RG_DAL_MED
    FRM-41076 :Error populating Group.
    FRM-41085 :Error getting Group Row count.
    --===========================
    Using Forms 6i Windows XP ..!
    DECLARE
        selektas VARCHAR2(5000);
          rg_name VARCHAR2(4000) := 'RG_DAL_MED';
          rg_id      RecordGroup;
          find_node Ftree.NODE;
          n NUMBER (38);
          htree ITEM := Find_Item('TREE_BLOCK_TEST.TREE13');
          v_WHERE   VARCHAR2(5000);
    BEGIN
      rg_id := Find_Group(rg_name);
       IF NOT Id_null(rg_id) THEN
        DELETE_GROUP(rg_id);
       END IF; 
              V_WHERE := ('PARENT_ID IN ( SELECT   INSP_EQUIPMENT.EQUIPMENT_ID FROM INSP_EQUIPMENT 
         WHERE CLASS_ID IN (1,2,3,4)');
              V_WHERE := V_WHERE || (' AND INSP_EQUIPMENT.EQUIPMENT_TYPE_ID = ' || :INSP_EQUIPMENT.EQUIP_TYPE_ID ||'' );
              V_WHERE := V_WHERE || ( '     AND ( INSP_EQUIPMENT.PARENT_ID= '|| :EQUIP_ID );
              V_WHERE := V_WHERE || ( '   OR INSP_EQUIPMENT.PARENT_ID IS NULL ))');
              V_WHERE := V_WHERE  ||(' CONNECT BY PRIOR INSP_EQUIPMENT.EQUIPMENT_ID = INSP_EQUIPMENT.PARENT_ID START WITH  INSP_EQUIPMENT.PARENT_ID IS NULL ORDER BY EQUIPMENT_id ');
            selektas :=  'SELECT       1       NODE_STATE,                    LEVEL               NODE_DEPTH,
                                                       EQUIPMENT            NODE_LABEL,
                                     NULL                 NODE_ICON,
                        EQUIPMENT_ID         NODE_VALUE                           FROM                 INSP_EQUIPMENT
              WHERE V_WHERE ';
         rg_id := Create_Group_From_Query(rg_name, selektas);         
               n := Populate_Group(rg_id);
                n := Get_Group_Row_Count(rg_id);
    IF n > 0 THEN
       Ftree.set_tree_property(htree,Ftree.record_group,rg_id);
    END IF;
    END;Regards,
    Abdetu..

         selektas := 'SELECT 1 NODE_STATE,                    LEVEL NODE_DEPTH,
                                       EQUIPMENT NODE_LABEL,
    NULL NODE_ICON,
         EQUIPMENT_ID NODE_VALUE           FROM INSP_EQUIPMENT
              WHERE V_WHERE ';You have to add the V_WHERE as a value to your select:
    selektas :=  'SELECT  1       NODE_STATE,
                          LEVEL               NODE_DEPTH,
                          EQUIPMENT            NODE_LABEL,
                          NULL                 NODE_ICON,
                          EQUIPMENT_ID         NODE_VALUE                          
                     FROM INSP_EQUIPMENT
                    WHERE ' || V_WHERE;

  • Query to create XML for a Tree Menu

    Hi,
    How can I generate a hierarchical xml. I have one table with 4 columns with menuid, menuname, parentid, link.
    MenuID    MenuName       ParentID      HREF
    1            File
    12           Open              1
    11           New               1
    21           Program           11
    61           Program2          11
    31           Blank             21
    2            View     
    22           Printer          
    23            Doc
    4            Tools
    5            Win               1Here is the output I am trying to have.
    <menus>
      <menu name="File" id="1">
        <menu name="Open" id="12" href="Open.jsp"/>
        <menu name="New" id="11">
          <menu name="Program" id="21">
            <menu name="Blank" id="31" href="Blank.jsp"/>
          </menu>
          <menu name="Program2" id="61" href="Program2.jsp"/>
        </menu>
        <menu name="Win" id="5" href="Win.jsp"/>
      </menu>
      <menu name="View" id="2">
        <menu name="Printer" id="22" href="Printer.jsp"/>
      </menu>
      <menu name="Doc" id="3" href="Doc.jsp"/>
      <menu name="Tools" id="4" href="Tools.jsp"/>
    </menus>Thanks

    Hi,
    How can I generate a hierarchical xml. I have one table with 4 columns with menuid, menuname, parentid, link.
    MenuID    MenuName       ParentID      HREF
    1            File
    12           Open              1
    11           New               1
    21           Program           11
    61           Program2          11
    31           Blank             21
    2            View     
    22           Printer          
    23            Doc
    4            Tools
    5            Win               1Here is the output I am trying to have.
    <menus>
      <menu name="File" id="1">
        <menu name="Open" id="12" href="Open.jsp"/>
        <menu name="New" id="11">
          <menu name="Program" id="21">
            <menu name="Blank" id="31" href="Blank.jsp"/>
          </menu>
          <menu name="Program2" id="61" href="Program2.jsp"/>
        </menu>
        <menu name="Win" id="5" href="Win.jsp"/>
      </menu>
      <menu name="View" id="2">
        <menu name="Printer" id="22" href="Printer.jsp"/>
      </menu>
      <menu name="Doc" id="3" href="Doc.jsp"/>
      <menu name="Tools" id="4" href="Tools.jsp"/>
    </menus>Thanks

  • How can I resize and reposition the Date Created window for All windows?

    When setting view options for a finder window set to list view, I cannot get column resizing or positioning to hold. When making those changes, the option for "All Windows" automatically shifts to "This window only" and it then does not hold.
    How can I resize and reposition the Date Created column for All WIndows?

    Hi Harmz,
    Try dragging this file to the Îesktop & reboot...
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist

  • How to create  index for a column of a view

    Hi,
    I have created view for a table and then i am trying to create index for a column of that view. i am using the query "CREATE INDEX index_name ON view_name (col)". but Mysql is showing error like "view_name is not a base table".
    How can i do that......

    As mentioned this is a java forum not a mysql forum, but as I know the answer - you can't create an index directly on a view in mysql.

  • Creating a new Column for my list Versus adding it from existing site columns, when to use each approach

    I have created a new issue tracking list inside SharePoint 2013 team site. And it comes with predefined columns, some of them are useful while the other are not . Can anyone help me in figuring out the following:-
    The list come with a field named “Assigned To”, while in my case I want a column named “Approver”. So what is preferred , to re-name the “Assumed to ”column to “Approver”, or create new field name “Approver”.?.
    If I rename an existing column, could this be overridden in any future updates for my SharePoint server?
    Now we want to add a column named “Office location”.so I need to create a new field for this. But seems there are two ways to do so either to add a new Site Column at the site level and then assign it to the list as follow :- 
    , or to directly adding a column to the list, even if it is not available in the site columns , as follow:-
    So what are the differences between the two approaches ? .if I am not wrong defining a site column will allow me to re-use it in another list , but defining the column at the list level, will allow me to add a column even if it is already defined as site
    column.
    So can anyone advice on my three questions please? Thanks

    1) 'Assigned to' has a different meaning then 'Approver' , it will be better if you create a new field for 'Approver'. Assigned to is a Site Column which has managed property for search, so it will be confusing type of data it will return from search in
    future. 
    2) Any rename of fields should not / and will not get modified in SharePoint updates. So, you can rename is without any issue since the internal name will remain the same. But its always better to create your own custom column for business use.
    3) Creating a site column or not depends upon your need, If you create a Site Column - in whole site collection you will be able to add this field in any list - It will be crawled, SharePoint will automatically provide managed property for site column and
    you will be able to get this value via search. These things will not be present in list column, you will need to do specific settings in case its required.
    If these things are needed then you can go for Site Column, usually its good to create a Site Column and use it.
    For Site Columns you can check following links 
    Introduction to Columns
    From site column to managed property - What's up with that?
    Create a site column
    get2pallav
    Please click "Propose As Answer" if this post solves your problem or "Vote As Helpful" if this post has been useful to you.
    thanks a lot for your reply it is really helpful. so as i understand that using site columns will be better in most cases, and there is not any specific reason for not using it? is this right ?
    Second question, do u mean that if i have a list column named "Serial number", then this column will not be searched ? For example if i have serial number such as "12345" and i try searching this text "12345" i will not get
    the item in my search ?
    Thanks

  • In a document library Show time in seconds also for a created column

    HI
    i created a sitecollection with DocumentCenter Template and created documentlibrary,
    after i upload documents i want to see created column should display seconds with created time 
    how it is possible to show seconds also  with time.
    adil

    Create a Calculated column and display it instead of the Created column.
    If it's for display purposes, then the easiest way is to convert the date into any format / pattern you like:
       =TEXT(Created,"MM/DD/YYYY hh:mm:ss AM/PM")
    If you want the column to be sortable by the user, list the year first and leave off the "AM/PM" and display using 24 hours:
       =TEXT(Created,"YYYY/MM/DD hh:mm:ss")
    You could also display the "Created with seconds" column and sort the view on the original Created column.
    Mike Smith TechTrainingNotes.blogspot.com
    Books:
    SharePoint 2007 2010 Customization for the Site Owner,
    SharePoint 2010 Security for the Site Owner

  • How to create New columns for the Internal Table Dynamically?

    HI Guys,
                          In my logic i have to create new columns depending on the logic which i am executing.
    My requirement is .I have to display o/p like this
    Material || Year || Period  ||  Mix ratio || Vendor ||Mix Ratio || Vendor || Mix Ratio Vendor || Mix ratio || Vendor || Mix ratio.............................from table's CKMLMV003 and CKMLMV001.Her i have to display the o/p in the above format and i have to display Vendor and Mix Ratio for 5 columns irrespective of data .If i have more than 5 columns for any record then i have to create a New columns dynamically for Vendor and Mix ratio.If anybody want my code i can Submit But plz tell with example how to do?
                    <b>The O/P must be finally shown in ALV Grid</b>
    Thanks,
    Gopi

    You must create the entire internal table dynamically, you can not add columns to a statically define internal table.  Here is an example of creating a dynamic internal table.
    Creation of internal table dynamically based on the Date Range entered
    Regards,
    Rich Heilman

  • CREATING ITEMS FOR INDIVIDUAL COLUMNS

    HI GUYS!
    i am a new user to HTMLDB. I need help on creating a search item for every single column in the report using pop-up LOV´s(eg:like we have in EXCEL report sheets).
    The pop-up item should display the DISTINCT rows of the column...please give the SQL Query involved in the identification of LOV .

    Hi,
    Let me give you an idea.
    user data dictionery view "user_tab_columns" write a dynamic sql with all of the columns for given table and write another dynamic sql and use the column_name from "user_tab_columns" in the where clause and search the string or number.
    If you need more help I can but I would like you to try yourself.
    Hope this helps
    Ghulam

  • How to create column selection variant for VA05?

    Hi Experts,
    How do I create column selection variant for VA05?
    Thanks,
    Sachin

    Hi,
    Goto SU3, enter user name and press enter
    goto parameters tab, enter parameter ID SD_VARIANT_MAINTAIN and parameter value 'A' and save.
    Now check in VA05, you will get save button in active mode.
    Regards,
    Chandra

  • XLE Tables and columns while creating accounting for AP invoices.

    Dear All,
    Could anybody please tell me what are the columns of the XLE tables gets hitted when i am creating accounting for an AP invoice?
    Also Please let me know from which tables and which columns, i can get all eligible invoices for payment?
    any code snippet is highly appreciated.
    Thanks & Regards,
    BS.

    HI BS,
    Simply run a diagnostic on the respective invoice from the front end, and you will get the required information.
    Thanks &
    Best Regards,

  • Created column not showing in the Document Library View for a Custom Content Type based on Document

    We have a custom content type based of Document Content Type. The OOTB "Created" column does not show up in the view as well as in the Site Settings -> Columns.
    But it shows up in the Display Form and Edit Form of the Item at the bottom "Created at " by " " and "Modified by" at by ""
    Would anyone know how to make this column appear as part of the view ?
    thanks,
    Harsh

    Hi,
    They should by default be possible to add to a view. The only reason they would disappear from the UI if someone has changed the attribute of the Field to hidden = true. You can verify that with PowerShell and if so you can use PowerShell to revert the setting
    to false.
    $w = Get-SPWeb http://dev13$f = $w.Fields.GetFieldByInternalName("Created")$f.Hidden$f.Hidden = $false$f.Update()

  • How to create a column for Qtr1, Qtr2, Qtr3, Qtr4?

    I am building a MetaData, and want to display Quarterly information. How can I build a logical column with that kind of information. For example, Qtr1, Qtr2, Qtr3, Qtr4, along with the Column for Total.
    userQHN

    Hi,
    Using the time series wizard.it will generate all logical column
    Regards,
    devendra

  • How to create table with rows and columns in HTMLB

    Hello All,
    Can any one tell me how to create table in HTMLB?
    Regards,
    Lisa.

    Look at the sample BSP application SBSPEXT_HTMLB
    also you can look at the below Blog..
    /people/brian.mckellar/blog/2003/10/31/bsp-programming-htmlb-tableview-iterator
    <i>*Reward each useful answer</i>
    Raja T

Maybe you are looking for

  • Changing the Material at the time of PO Creation

    Hi All, We have a scenario where user enter the Material-01 in ME21N and while posting the document ,we have to replace the material with Material-02. We tried to do so in BADI ME_PROCESS_PO_CUST method PROCESS_ITEM. But it is not displaying/changing

  • Custom Camera Profile Disables External Editing?

    I'm using Lightroom 5 and Photoshop CS5.  The problem is that if I apply a custom camera color profile created by X-Rite Passport Color Checker, I can no longer use an external editor, such as Photoshop, to edit my photos.  Before I apply the custom

  • Specific doc for Receiving Transaction Processor

    Hi, Can someone please provide me a link for the technical details involved in Receiving Transaction Processor? Thanks, Amit

  • I want to delete all my apps

    Hi I have itunes on a mac and the kids have 408 apps on my computer. Of which things like 4 different types/copies of a battery status are clearly not needed. I want to blitz them all and just delete the lot. However, they both have purchased items t

  • My FaceTime crashes every time i open it

    why overtime i open FaceTime on my iMac it crashes it comes up with loads of waffle like below!!!!!!!!!!!!!! rashed Thread:        0  Dispatch queue: com.apple.main-thread Exception Type:        EXC_CRASH (SIGABRT) Exception Codes:       0x0000000000