How to link a tree to a ALV table

Hi Experts,
I have a tree node on the left side of my display.
Now according to the user selection on the tree node,
i need to populate the ALV table on the right.
That means selected value by the user is the input parameter
and should fetch the corresponding data accordingly and displays on the ALV table on the right.
Please advise.
Regards,
Chitrasen

Hi,
Define the ON_FUNCTION event in the view controller. This is an event of your ALV.  In the coding of this event handler method put code like:
METHOD on_select .
  DATA: temp TYPE string.
  temp = r_param->id.
  IF temp = 'LBUTTON'.
    wd_comp_controller->get_selected_line_via lead_selection( ).
  ENDIF.
ENDMETHOD.
What also needed is next code to be placed in method wdoinit of the component controller:
METHOD wddoinit .
  DATA: l_ref_cmp_usage           TYPE REF TO if_wd_component_usage,
        l_ref_interfacecontroller TYPE REF TO iwci_salv_wd_table.
  DATA: lr_column TYPE REF TO cl_salv_wd_column.
  l_ref_cmp_usage = wd_this->wd_cpuse_alv( ).
  IF l_ref_cmp_usage->has_active_component( ) IS INITIAL.
    l_ref_cmp_usage->create_component( ).
  ENDIF.
  l_ref_interfacecontroller = wd_this->wd_cpifc_alv( ).
  wd_this->l_value = l_ref_interfacecontroller->get_model( ).
*&- Specify the display type
  wd_this->l_value->if_salv_wd_table_settings~set_display_type(
                      if_salv_wd_c_table_settings=>display_type_hierarchy ).
  wd_this->l_value->if_salv_wd_table_settings~set_enabled( abap_true ).
*&- Specify a hierarchy columns Bucket, RE, PE and AE
  lr_column = wd_this->l_value->if_salv_wd_column_settings~get_column( 'BUCKET' ).
  lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
  lr_column = wd_this->l_value->if_salv_wd_column_settings~get_column( 'RE' ).
  lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
  lr_column = wd_this->l_value->if_salv_wd_column_settings~get_column( 'PE' ).
  lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
  lr_column = wd_this->l_value->if_salv_wd_column_settings~get_column( 'AE' ).
  lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
*&- Display data of the last hierarchy as leaf
  wd_this->l_value->if_salv_wd_table_hierarchy~set_last_hier_column_as_leaf( abap_true ).
*&- Create function in toolbar
  DATA  lr_button TYPE REF TO cl_salv_wd_fe_button.
  DATA  button1 TYPE REF TO cl_salv_wd_function.
  CREATE OBJECT lr_button.
  lr_button->set_text( 'SELECT' ).
  button1 = wd_this->l_value->if_salv_wd_function_settings~create_function( id = 'LBUTTON' ).
  button1->set_editor( lr_button ).
ENDMETHOD.
Cheers, John

Similar Messages

  • How to delete a particular row in ALV table

    Hi,
    How to delete a particular row in ALV table based on some condition(by checking value for one of the columns in a row)
    Thanks
    Bala Duvvuri

    Hello Bala,
    Can you please be a bit more clear as to how you intend to delete the rows from your ALV? By the way deleting rows from an ALV is no different from deleting rows from a normal table. Suppose you have enabled selection property in ALV & then select multiple rows and click up on a button to delete the rows then below would be the coding: (Also keep in mind that you would have to maintain the Selection property of the context node that you are binding to your ALV to 0..n)
    data : lr_table_settings  TYPE REF TO if_salv_wd_table_settings,
                 lr_config          TYPE REF TO cl_salv_wd_config_table.
      lr_table_settings  ?= lr_config.
    ** Setting the ALV selection to multiple selection with no lead selection
      lr_table_settings->set_selection_mode( value = cl_wd_table=>e_selection_mode-multi_no_lead ).
    Next delete the selected rows in the action triggered by the button:
    METHOD onactiondelete_rows .
      DATA:  wd_node TYPE REF TO if_wd_context_node,
             lt_node1 TYPE ig_componentcontroller=>elements_node,
             wa_temp  TYPE REF TO if_wd_context_element,
             lt_temp  TYPE wdr_context_element_set,
             row_number TYPE i VALUE 0.
      wd_node = wd_context->get_child_node( name = 'NODE' ).
      CALL METHOD wd_node->get_selected_elements
        RECEIVING
          set = lt_temp.
      LOOP AT lt_temp INTO wa_temp.
        wd_node->remove_element( EXPORTING element = wa_temp ).
      ENDLOOP.
      CALL METHOD wd_node->get_static_attributes_table
        EXPORTING
          from  = 1
          to    = 2147483647
        IMPORTING
          table = lt_node1.
      wd_node->bind_table( new_items = lt_node1 ).
    ENDMETHOD.
    If in case this isn't your requirement please do let me know so that I can try come up with another analysis.
    Regards,
    Uday

  • How to create a context menu in ALV table cell editor(Webdynpro abap )

    Hello Experts,
    I am having a problem in creating a context menu in a table cell editor in the ALV table output.I have assigned a 'lta' as the cell editor.But befor assigning the lta as cell editor I have assigned the menu to the lta.But when the view is rendered I can see the lta with the actioned assigned to it.But I cannot see the context menu.
    The code snippet below:
      "Create menu for each coloumn
      create OBJECT lo_menu_actions type CL_SALV_WD_VE_MENU EXPORTING
          id = 'MITM_ACTIONS'.
      lo_menu_actions->set_visible( value = abap_true ). 
      lo_menu_actions->set_visible_fieldname( value = 'ACTIONS' ).
      "ADd menu items
      CREATE OBJECT lo_menu_item_create type CL_SALV_WD_VE_MENU
      exporting
        id = 'MITM_CREATE_EXPRESSION'.
      lo_menu_item_create->set_visible( value = abap_true ).
      lo_menu_item_create->set_visible_fieldname( value = 'Create' ).
      "Add item 1
      lo_menu_actions->ADD_ITEM( VALUE = lo_menu_item_create ). 
      "  Set the cell editor for each column cell(link to an action)
      LOOP AT lt_node_dec_tab_cols INTO ls_node_dec_tab_cols .
        lv_column_name = ls_node_dec_tab_cols-object_name.
        lr_column = lr_column_settings->get_column( lv_column_name ).
       "Create 'lta' Ui item
        CREATE OBJECT lo_lta TYPE cl_salv_wd_uie_link_to_action.
        lo_lta->set_menu( value = lo_menu_actions ).
        lo_lta->set_text_fieldname( lv_column_name ).
        lr_column->set_cell_editor( lo_lta ).
        IF ls_node_dec_tab_cols-is_result EQ abap_true.
          lr_column->set_cell_design( value =
                      cl_wd_table_column=>e_cell_design-key_medium ).
        ENDIF.
      ENDLOOP.

    Hi Prakash,
    I have not come across this requirement till now to have context menu in a cell editor of alv.
    Unfortunately  the implementation of method SET_MENU of alv ui elements ( ex: cl_salv_wd_uie_text_view ) is not updating alv configurable table, instead it just stores in a global attribute as string. Hence has no effect on context menu.
    If your user is very particular about this requirement of having context menu in cell editor, you can go for a normal table. Because, normal table's cell editor has the property to set the menuID as we do it for other ui elements.
    Regards,
    Rama

  • How can I change column name in ALV table in WebDynpro ABAP?

    Hi Everyone,
    I have created an ALV table in WebDynpro ABAP. I have created a context node and added the required attributes there - for the ALV display.
    Now I want to change one columnn name of the ALV table.... Currently it is showing the description of the data element, which I don't want to show. I cannot create a new DE only for this purpose.
    Please let me know how can I change the name of the column.
    Regards

    Hi,
    This may help you to define your own column text in the ALV Table of webdynpro.
    see the below code.
    Here 'STATUS_ICON' is the column of the the output display of the ALV Table of webdynpro.
    "change the label of the report.
    DATA: lr_weeknum TYPE REF TO cl_salv_wd_column.
    CALL METHOD l_value->if_salv_wd_column_settings~get_column
    EXPORTING
    id = 'STATUS_ICON'
    RECEIVING
    value = lr_weeknum.
    SET THE LABEL OF THE COLUMN
    DATA: hr_weeknum TYPE REF TO cl_salv_wd_column_header.
    CALL METHOD lr_weeknum->get_header
    RECEIVING
    value = hr_weeknum.
    CALL METHOD lr_weeknum->set_resizable
    EXPORTING
    value = abap_false.
    hr_weeknum->set_prop_ddic_binding_field(
    property = if_salv_wd_c_ddic_binding=>bind_prop_text
    value = if_salv_wd_c_ddic_binding=>ddic_bind_none ).
    set the text of the column
    CALL METHOD hr_weeknum->set_text
    EXPORTING
    value = 'C Form'.
    regarads,
    balu

  • How to handle marked rows in an ALV table

    Hi Experts,
    there is an ALV table in my Web Dynpro. It has a functionality to handle one marked row via lead selection. This is the coding to get the marked row:
    lr_nd_ma_leist = wd_context->get_child_node( name = wd_this->wdctx_tab_ma_leist ).
    lr_el_ma_leist = lr_nd_ma_leist->get_lead_selection( ).
    idx = lr_el_ma_leist->get_index( ).
    My problem is to handle more than one marked row. I changed the contexts' properties to allow to mark more than one row. But how can I get the number and the index of all the marked rows?
    Thanks in advance,
    Tan

    use the method get_element_selected( ) and get_index( ).
    data sel type WDR_CONTEXT_ELEMENT_SET.
    sel = lo_nd_zdealer->get_selected_elements( INCLUDING_LEAD_SELECTION = abap_true ).
    data el type ref to if_wd_context_element.
    data indx type  i.
    loop at sel into el.
      indx = el->get_index( ).
      endloop.
    thanks
    sarbjeet singh

  • How to Link VALUEGUID to SurveyGUID (CRM Survey tables)

    Hi Gurus,
    I want to link table CRMD_ORDERADM_H to table CRM_SVY_DB_SVS
    I can go to CRMD_ORDERADM_H to get the Survey GUID. Someone told me that i can go to CRMD_LINK table to get the Value GUID, but when i enter the Survey Guid, the table only returns three records (objtype_set = 07, 30 & 29; NO 58), so, i am lost. I don't know how to link table crmd_orderadm_h with table crm_svy_db_svs.
    Your help will be highly appriviated.
    Thanks.
    Nadeem.

    hi Nadeem,
    What is the end result that u expect ? do u need the survey details or what ? do u want the survey details that is linked to a particular order ?
    Call the FM as follows
    CRM_ORDER_READ
    EXPORTING
        IT_HEADER_GUID = (your order guid)
    IMPORTING
        ET_SURVEY = (survey table)
    The survey table will give u list of surveys (with their Survey GUID's). I would recommend using this FM, as it would take care of buffers etc. which might not be available if u try a direct select on tables.
    Reward points if this helps.
    Regards,
    Raviraj

  • How to display different icon within WDA alv table base on row data ?

    Hi,
    is that possible to display different icon for every row within ALV table depending on the row data ?
    for instance if the status 'S' display ~Icon/SuccessMessage and 'E' display ~Icon/ErrorMessage ?
    because base on this code below i only can set 1 icon for the whole row data.
    LOOP AT lt_columns ASSIGNING <fs_column>.
        CASE <fs_column>-id.
          WHEN 'ICO'.
            CREATE OBJECT lr_caption.
               lr_caption->set_image_source( value = '~Icon/SuccessMessage').
               <fs_column>-r_column->set_cell_editor( lr_caption ).
        ENDCASE.
      ENDLOOP.
    Thank you in advance.
    Fernand

    Hello,
    Yes it is possible to display different images based on data.
    For that what you can do is create one attribute 'STATUS' of type string in context node which you are mapping to ALV.
    And fill that attribute with the path to image based on your requirement like for status 'S' set the attribute to ~Icon/SuccessMessage and if status is 'E', set it to ~Icon/ErrorMessage at runtime.
    Now in the settings for ALV use the following code:
    * Display icon in column seatsocc
      DATA: lr_column TYPE REF TO cl_salv_wd_column,
            lr_image TYPE REF TO cl_salv_wd_uie_image,
            lv_icon TYPE string.
      lr_column = lv_model->if_salv_wd_column_settings~get_column( 'SEATSOCC' ).
      CREATE OBJECT lr_image.
      lr_image->SET_SOURCE_FIELDNAME( 'STATUS' ).
      lr_column->set_cell_editor( lr_image ).
    in the above code, column 'SEATSOCC' will be displayed as an icon.
    Sample code to fill the attribute 'STATUS'
    LOOP AT lt_flights INTO ls_flight.
        lv_seatsfree = ls_flight-seatsmax - ls_flight-seatsocc.
        IF lv_seatsfree = 0.
          ls_flight-status = 'ICON_RED_LIGHT'.
        ELSEIF lv_seatsfree <= 50.
          ls_flight-status = 'ICON_YELLOW_LIGHT'.
        ELSE.
          ls_flight-status = 'ICON_GREEN_LIGHT'.
        ENDIF.
        MODIFY lt_flights FROM ls_flight.
      ENDLOOP.
    Hope this helps!
    Regards,
    Srilatha
    Edited by: Srilatha M on Jun 25, 2010 12:02 PM

  • How to show a relevant value in alv table, when i press enter key

    I created a alv table. in this table there is a column called user id, and the other column called user name.
    what do I want:
    i wanna input a value in column user id eg. user id = D1111; when i press the enter keyboard, the column user name will be shown the value, which is relevant with user id.

    Hi,
    My first idea :
    Catch the event enter in ALV and select the name using the userid.
    This will be useful:
    Event Handler onEnter in ALV
    ON_DATA_CHECK - Web Dynpro for ABAP - SAP Library
    also this:
    ON_CELL_ACTION - Web Dynpro for ABAP - SAP Library
    Have fun,
    Hancila

  • How to add button ui element in alv table data in web Dynpro ABAP

    Hi Experts,
    I have one requirement,
    Actually I was devloped normal table in web Dynpro ABAP
    in that i have one column Display as a button .
    when i select that button need to display some data.
    same requirement i need to devlope in alv table.
    i am going to attach file please check.
    Thanks in advance.
    Regards,
    Subba Reddy.

    Hi,
    You can create Button in your ALV table column with below code
    DATA lo_button              TYPE REF TO cl_salv_wd_uie_button.
    CREATE OBJECT lo_button.
        CALL METHOD lv_value->if_salv_wd_column_settings~get_column
          EXPORTING
            id    = <your column name>
          RECEIVING
            value = lo_system_select_hdr.
        lo_button->set_enabled( value = abap_true ).
       lo_button->set_text( value = 'Avaliable List'  ).
        lo_button->set_tooltip( value = 'Avaliable List' ).
        lo_system_select_hdr->set_cell_editor( value = lo_button ).
    And for button click action,
    Create a method (say SHOW_DATA( ) ) with on_click event handler.And when you click button on your ALV table, SHOW_DATA( ) method will trigger.
    Thanks
    KH

  • How add links to Tree

    public TreeManagedBean() {
         rootAdmin.setData("Administrator");
         rootAccounts.setData("Accounts");
         rootOther.setData("Other");
         rootChangePwd.setData("Change Password");
         nodes.addChild(0, rootAdmin);
         nodes.addChild(1, rootAccounts);
         nodes.addChild(2, rootOther);
         nodes.addChild(3, rootChangePwd);
         TreeNodeImpl<String> childCompany = new TreeNodeImpl<String>();
         childCompany.setData("Company");
         rootAccounts.addChild(0, childCompany);
         TreeNodeImpl<String> childLicence = new TreeNodeImpl<String>();
         childLicence.setData("Licence Management");
         rootAccounts.addChild(1, childLicence);
         TreeNodeImpl<String> childFunction = new TreeNodeImpl<String>();
         childFunction.setData("Functions");
         rootAccounts.addChild(2, childFunction);
         TreeNodeImpl<String> childRoles = new TreeNodeImpl<String>();
         childRoles.setData("Roles");
         rootAccounts.addChild(3, childRoles);
         TreeNodeImpl<String> childCountry = new TreeNodeImpl<String>();
         childCountry.setData("Country");
         rootOther.addChild(0, childCountry);
        }     <rich:tree value="#{treeManagedBean.nodes}" var="node" adviseNodeOpened="true" >
         <rich:treeNode >
              <a4j:commandLink value=""></a4j:commandLink>
              <h:outputText value="#{node}"  />
         </rich:treeNode>
    </rich:tree>
         My question is how can i make the nodes in the tree links, so i can click on a particular link and load a page,
    Can someone help me on this

    Hi Faissal,
    here is my custom class. nodeName and nodeLink there.
    public class TreeDomain {
        private String nodeName;
        private String nodeLink;
         //  getters and setters goes here
    }and i gave
    <rich:tree value="#{treeManagedBean.rootAccounts}" var="node">
         <rich:treeNode>
                        <h:commandLink action="#{node.treeLink}">
                             <h:outputText value="#{node.nodeName}"></h:outputText>
                        </h:commandLink>
         </rich:treeNode>
    </rich:tree>and in the TreeManagedBean
            rootAdmin.setData("Administrator");
         rootAccounts.setData("Accounts");
         rootOther.setData("Other");
         rootChangePwd.setData("Change Password");
         nodes.addChild(0, rootAdmin);
         nodes.addChild(1, rootAccounts);
         nodes.addChild(2, rootOther);
         nodes.addChild(3, rootChangePwd);
         TreeNodeImpl<TreeDomain> childCompany = new TreeNodeImpl<TreeDomain>();
         treeDomain = new TreeDomain();
         treeDomain.setNodeName("Company");
         treeDomain.setTreeLink("company.faces");
         childCompany.setData(treeDomain);
         rootAccounts.addChild(0, childCompany);but its not working... have i done some mistake here?

  • How to create af:tree from single database Table

    Hi,
    i want to create tree Like this: and also we can add node anywhere.
    Parent01
    ----|parent01-child01
    --------|parent01-child01-child01
    --------|parent01-child01-child02
    -------------|parent01-child01-child02-child01
    Parent02
    ----|parent02-child01
    ----|parent02-child02
    --------|parent02-child02-child01
    and for this i have created Table like this :
    Table name Treetable
    NODEID     NUMBER(38,0) --> Primary Key
    NODENAME     VARCHAR2(50 BYTE) --> This is the name will display as a node
    DESCRIPTION     VARCHAR2(255 BYTE)     
    ROOTIND     CHAR(1 BYTE) --> to decide root node
    SEQUENCENO     NUMBER(38,0)     --> order to display node
    PARENTKEY     NUMBER(38,0) -->FK (refering to NODEID(PK) of this table)
    But when i am creating tree, its showing root node for each row in the table. but my requirement is: The Row marked as ROOTIND='Y' , show that row only as Root (Example in above tree:Parent01 & Parent02 )
    any help highly appreciated :)
    Thanks
    Pratap Rudra
    Edited by: 995114 on Apr 30, 2013 2:50 PM

    Hi,
    check this http://www.oracle.com/technetwork/developer-tools/adf/learnmore/32-tree-table-from-single-vo-169174.pdf
    Frank

  • How to link a marketing characteristic with a table? ( TR CL03 - CT04 - BP)

    Hello,
    I'm trying to link a table (CRM_MKTPL_CAMPAIGN field : EXTERNAL_ID) with a mkt characteristic so that the user could select a value for this characteristic through a matchcode in transaction BP.
    I understood that i had to deassign the characteristic of the echaracteristic  group in TR CL03 in order to change some information in it via TR CT04.
    I managed to set the Table CRM_MKTPL_CAMPAIGN in the "Addnl data" section but when I reassign the characterictic to a group and go to transaction BP, nothing happens with the matchcode button.
    Is it possible to do it? did i do something wrong?
    Many thanks
    Laurent

    I found the answer myself, after posting this, of course!
    I changed:
    <tr spry:repeat="xml_assignments" spry:setrow="xml_assignments" spry:odd="spry_odd" spry:even="spry_even" spry:hover="spry_hover" spry:select="spry_select">
    to
    <tr spry:repeat="xml_assignments" spry:setrow="xml_assignments" spry:odd="spry_odd" spry:even="spry_even" spry:hover="spry_hover" spry:select="spry_select" onclick="window.location.href='./newpage.php?aid={a_id}';">
    Basically just added the onclick parameter...
    And it all just worked!

  • How to process Line Selection on ALV Table in ABAP WebDynpro

    Hi there,
    I have a view with an ALV table whose context node retrieves its data from a Service Call for a method.
    The method provides certain data of a database table which the ALV displays.
    Now I would like to be able to select one row of that ALV table and after pressing a button or doubleclicking on the row or whatever a different view (as for me it is also ok on the same view) should appear to display the details of that selection.
    I only need to know how to retrieve the selected data.
    Or its index within the internal table.
    I am already looking for hours for a useful thread and actually there is one which obviously is about a similar issue apart from the multiple selection part: 
    How to process multiple row selection in ALV table in Wendynpro ABAP? Help!
    but i am afraid that i don't understand it. Or at least I misunderstand it since it does not work with me.
    The system example mentioned in the thread does not help me either because it somehow does not correspond to my needs, does it?
    It would be GREAT if somebody could help me with that. Please keep it simple for I am not an expert in webdynpro yet (obviously ^^) and also please explain in detail what I have to do with the context nodes since I am not sure whether the selection is stored in my already existing node or whether I need a special one for that.
    Thanks!!
    christina

    Hi Christina,
    If you just want to get one column data of the line that user clicked, use the Web Dynpro Code Wizard to Read Context of attibute you needed, then you will get code as follow:
    * Define data for read attribute
        node_alv TYPE REF TO if_wd_context_node,
        elem_alv TYPE REF TO if_wd_context_element,
        stru_alv TYPE if_view_display=>element_alv ,
        item_column_name  LIKE stru_alv-column_name.
    * navigate from <CONTEXT> to <ALV> via lead selection
      node_alv = wd_context->get_child_node( name = if_view_display=>wdctx_alv ).
    * get element via lead selection
      elem_alv = node_alv->get_element(  ).
    * get single attribute
      elem_alv->get_attribute(
        EXPORTING
          name =  `COLUMN_NAME'
        IMPORTING
          value = item_column_name ).
    The value of column_name is stored in item_column_name.
    If you need the index that the user clicked, try this:
    * Definition of field symbol for index
      FIELD-SYMBOLS : <fs_index> TYPE data.
    * Get the selected index
      ASSIGN r_param->index->* TO <fs_index>.
    The index of clicked line is stored in field symbol <fs_index>.
    Hope it will help.
    Best Regards,
    Stephanie

  • How to remove a column from alv table

    Hi All
    How to remove a specific column from alv table.?
    Thanks & Regards
    SUN

    For delete u can follow the above post..
    Fo making invisible :
    data m_col type ref to cl_salv_wd_column.
    m_col = alv_mode->IF_SALV_WD_COLUMN_SETTINGS->GET_COLUMN (' col1' ).
    m_col->SET_VISIBILITY( '01'  ).

  • How to Email POWL Reports / Apply Web Dynpro ALV Table Layout Settings

    Hi all,
    we want to be able to automatically extract POWL reports and email them to users in a batch job.
    We can refresh a POWL report using FM POWL_QUERY_REFRESH, and access the raw report data using method CL_POWL_QUERY_ACCESSOR=>GET_CACHED_RESULTS.
    However this merely gives us a table of raw data.  No view layout (ie. Web Dynpro ALV table layout) settings have been applied, so there is no hiding or arranging of columns, row sorting, calculations or filters.
    Ideally we would like to be able to specify a query and view layout.  The batch job would then refresh and extract the data, and format the data according to the view layout before sending it on as an attachment in an email.
    Does anyone know how to determine and apply Web Dynpro ALV table layout settings to format table data outside of the Web Dynpro environment ?
    Thanks & regards,
    Grogan

    Hi Grogan,
    Did you find out how this works..i also have the same issue.
    Thanks
    Jdsouza

Maybe you are looking for

  • ASU-process POST Upgrade Step on SQL database

    Hi All, To check this message in the right format kindly click on reply first then click on quote original icon (""). I am performing an upgrade from R/3 4.7 to ERP 6.0 SR3, while doing upgrade sapup asking me To perform the manual application specif

  • Getting values from JLabel[] with JButton[] help!

    Hello everyone! My problem is: I have created JPanel, i have an array of JButtons and array of JLabels, they are all placed on JPanel depending from record count in *.mdb table - JLabels have its own value selected from Access table.mdb! I need- each

  • Multiple access to a single library

    Hi Can anyone help me? I have one pc at home with with separate windows user accounts for my kids. We have an ipod shuffle each with all of our music stored in the library under my user account. How do I make the library available to them to use unde

  • Running out of disk space in c drive

    Hi, i'm new to OBIEE, i installed obiee 10.1.3.4 on my computer , i'm doing practice on sample sales. every day i could see message running out of disk space, daily i'm purging cache entries and deleting sessions in UI, and also deleting temp files i

  • Adobe Reader Download Issues

    Hi Could anyone please help me to download adobe reader as the download / installation page is still not working.  I am using Windows 7 o/s & firefox.  Thanks