MSS: Team View Data drop down auto refresh

Hi all,
I'm trying to figure out if it is possible in the Team View for MSS to be able to automatically refresh the Team View when the drop down changes.  Right now, when a user chooses the Display drop down (Employees or Org Units and Positions, in our case), the Data drop down options automatically refresh, BUT, when you choose an option from the Data drop down, nothing changes on the screen.  You have to click on the refresh button on the screen, and it will then update.
We have played around with the C_REFRESH and G_REFRESH options, and we get a refresh button in the Team view, but nothing happens with the drop down. 
Anyone have an idea as to what can be done to force the refresh on the Data drop down option?
Hope this makes sense!
Cheers,
Kevin

Ok, so I have figured out how to get the refresh to work the way I want it to.  I had to call wd_comp_controller->fill_object_node( ) in a post exit and the screen refreshes the way we are looking for. 
Cheers,
Kevin

Similar Messages

  • MSS: Team View data refreshing itself in background

    Hi all,
    I'm running into another issue with the Team View.  I have created a custom routine that takes the information stored in wd_this->mt_hierarchy_data, and removes information that I don't want displayed on the screen.  Right now the routine works when the view loads, and when you change the Display drop down, and when you click the refresh button inside the Team View display.  BUT, when I go to drill down into another org unit, the code somewhere is resetting itself so the fields that I removed from the table are now back in there. 
    Is there somewhere on a Post-Exit that I could add my routine to modify the table.  I have tried numerous Post-Exits, but have had minimal luck. 
    Hope this makes sense.
    Cheers,
    Kevin

    If you are in latest releases we have a OADP buffer to performance optimization since you have enhanced it, i m not sure how its going to work for you 1801637 - MSS Add-On 1.0: Buffer for Organization and Position *& Object          METH CL_HIER_VIS_OADP_MSS_IMPL *&                      IF_HIER_VIS_BUILDER~GET_OBJ_CHILDREN *& Object Header  CLAS CL_HIER_VIS_OADP_MSS_IMPL

  • Employee search in MSS Team view

    Hi,
    Our requirement is to add a new criteria (employee by cost center) to the search criteria drop down in MSS Team view.
    I have done the following steps in Object and Data provider node in spro-
    u2022     Define rules for object selection
    u2022     Define object selection
    u2022     Define organizational structure views
    u2022     Group organizational structure views
    The new criteria is now visible in the dropdown, but on selecting the dropdown value no fields for input of cost center are displayed. Are there any settings that need to be done to define the input fields? If yes, what are these settings and where do I do them?
    TIA.

    Hi Diana,
    Now I see the problem. And I dont think it is possible.
    I recoment you to look at class CL_HRWPC_SEARCH_VIA_SELID. This class used by MSS for employee search. You can see it in IMG Define object selection. Copy and try modify it or find ther class you can use. I hope will work without any modification in NWDS.
    All I did was definition rules for object selection where I put my FM for object selection. I did not enter any values the searsh was in the FM.
    Evgeny

  • MSS Team View evaluation path for non chief positions (s-s)

    Hello,
    We have a problem with display of employees under non chief manager - reporting managers (connection A002). In our organization we have line managers and under them team managers who are leading team of employees. Those managers want to see their employees under MSS Team View iView.
    I have checked forum posts and try to create correct evaluation path but i didn't get results yet. I have created 2 evaluation paths:
    Z_MANG (copy of SAP_MANG):
    10 *     B 008      S
    20 S    B 002      S
    30 US  A 208 P
    Z_S-S (copy of MSSDIREC):
    10 S  A 002     S
    20 S  A 008     P
    30 S  A 008     US
    I also included them into rules so:
    Root rule (rule 1) - Z_MANG
    Target rule (rule 3) - Z_S-S
    I have also done customizing under Object and Data provider and if I choose standard evaluation paths (e.g. SAP_MANG and MSSDIREC), I get employees shown - if I give manager a hat (A012 connection).
    Could you please help me with advice, where am I wrong? I think that first evaluation path (Z_MANG) is ok and it finds non chief manager, maybe is a problem with second one that don't show employees?
    Thank you for answers in advance.
    Best regards,
    David

    My first suggestion was either use Bottoms-up approach or top-down dont use both..like either use either of below
    S A 002 Reports (line) or
    S B 002 Is line supervisor
    but figured u will still have depth issues..so therefore
    you cld experiment like below..i understood your requirement, and i am suggesting this totally off-hand thats on top of my head..as i said experiement doing this way..
    say you have four levels  why dont you use different evalutaion path to link them between each level..
    say 1st to 2nd (reports to A002)
          2nd to 3rd (subordinate to A005)
          3rd to 4th/4th to 3rd (Is line supervisor B 002 )etc
    this way you will not have the depth issue as each one is diffeent Ev path..
    ...oops i can see people laughing at this solution..but well..i tried!

  • How do I configure a dynamic table with Data-Drop Down selections to store separate values?

    I am attempting to use LiveCycle to create an Order Form that uses an ODBC to a SQL database. When a user makes a selection, a separate column in the table references the "Item #" associated in the SQL table, and generates a corresponding barcode.
    My problem is that when I select an Item from the drop down list, all the items in the table change. What am I missing here to separate the rows as different line items? I tried adding a [*] to the end of the connection string, and that allows me to select different options but does not generate the "Item #" or "Barcode" field.
    The screenshot below shows the basic form. When I select any of the data drop downs, all of the Items change.
    I used the auto generated script for the "Add Row +" button shown below. Is this my issue? Or do I need to alter the way I'm setting up the Data Binding in for my Data Drop Down?
    this.resolveNode('Table1._Row1').addInstance(1);
    if (xfa.host.version <8) {
      xfa.form.recalculate(1); }

    package pruebadedates;
    import java.sql.*;
    * @author J?s?
    public class ClaseDeDates {
        /** Creates a new instance of ClaseDeDates */
         * @param args the command line arguments
        public static void main(String[] args) {
            java.sql.Date aDate[] = null;       
            Connection con = null;
            Statement stmt = null;
            ResultSet rs = null;
            try{
                Class.forName("com.mysql.jdbc.Driver").newInstance();
                con = DriverManager.getConnection("jdbc:mysql://localhost/pruebafechas", "root", "picardias");
                    if(!con.isClosed()){
                    stmt = con.createStatement();
                    stmt.executeQuery ("SELECT dates FROM datestable");
                    rs = stmt.getResultSet();
                        while (rs.next())
                        aDate[] = rs.getDate("dates");
            catch(Exception e)
               System.out.println(e);
            //System.out.println(aDate);     
    }Hi, There is my code and the errors that I get are:
    found : java.sql.Date
    required: java.sql.Date[]
    aDate = rs.getDate("dates");
    Actually I have No idea as How to get a Result set into an ArrayList or Collection. Please tell me how to do this Dynamically. I have like 25 records in that Database table, but they will grow, so I would really appreciate to know the code to do this. I suspect my problem is in the bolded part of my code.
    Thank you very much Sir.

  • Data Drop-Down list

    I have a table with 2 columns: code, description and I view the descriptions in the data drop-down list (4 lines). it works.
    I want that if I type a new string in the drop-list (it works) - so it should be added to the table as a new record, so the next time I would
    go in to the form, it would show me 5 lines in the list.
    How can I do it???

    I have a table with 2 columns: code, description and I view the descriptions in the data drop-down list (4 lines). it works.
    I want that if I type a new string in the drop-list (it works) - so it should be added to the table as a new record, so the next time I would
    go in to the form, it would show me 5 lines in the list.
    How can I do it???

  • Can MSS Team Viewer for HR Users to See All Org?

    Hi MSS Expert:
    Our company has modified R/3 MDT scenario that specially give HR users to display all org structure and run reports through PPMDT.  We're now implmenting MSS 60.1, backend ESS 5.0, after configured the objects and data provider that's derived from MDT evalution path, we can not overwrite the team viewer that can give HR user to have full access to entire org structure view.  Is MSS team viewer only limited to line manager who has chief position?  Or can it be configured to adopt both line manager and special HR users?  Any guidance will be greatly appreciated.
    Helen

    Hi Helen,
    being chief is a pre-req for MSS..You can create custom function modules & evaluation paths to bring in different levels of employees in to the Team Viewer.. but cannot give access to a special user... one has to be a chief of an Org Unit to get access to MSS..
    Regards,
    Suresh Datti

  • CSS sheet covers up date drop down, and other Date field issues

    Portland needs a little help once again.
    My CSS stylesheet object acts like it has a higher "zIndex" then the date dropdown on an inputField.  This causes me to only see half the calendar or none of it.  Anyone else seen this and how did you get around it.
    Also, When I test my BSP page the date drop downs, tables, etc all look great.  However when the BSP page is rendered on an iView in EP6.0 they look terrible.  Colors change, etc.  What is happening here and how do I get around it.
    Much Thanks in Advance,
    Anthony

    Please make these corrections in to your system that solves your problem.
    1) Call transaction se80                                               
    2) Click on "MIME Repository"                                          
    3) Goto /SAP/PUBLIC/BC/UR/Design2002/js                                
    4) Open each of these files:                                           
           sapUrMapi_ie5.js                                                 
           sapUrMapi_ie6.js                                                 
           sapUrMapi_nn6.js                                                 
           sapUrMapi_nn7.js                                                 
        and replace 'ur_pop_' with 'ur_'                                    
        and replace 'class=\"urCalArrPrev\"' with                           
        'class=\"urPagHBtnPrevItem\" style=\"background-repeat:no-repeat;   
    background-position:left\"'                                            
        and replace 'class=\"urCalArrNext\"' with                           
        'class=\"urPagHBtnNxtItem\" style=\"background-repeat:no-repeat;    
    background-position:right\"'                                           
        and replace 'class=\"urCalArrNextDsbl\"' with                       
        'class=\"urPagHBtnNxtItemDsbl\" style=\"background-repeat:no-repeat;
    background-position:right\"'

  • Pre-Populating Text fields from a Data drop down list using SQL Server

    I'm currently trying to update some of our internal forms which are word based or a basic PDF form you fill in by yourself.
    I'm connecting to our SQL server as there are databases stored there for an internal bit of software that hold information
    I can use to fill in parts the form.
    I have a data drop down list that is dynamically linked to the SQL databass and allows you to select a Project Number from that database, what
    I want to do after this is selected is to automatically populate some text fields with the Project name, Account handler and other fields held in the
    database.
    I've had a look online to see if there is a solution but haven't really found anythig that is similar (although I am new to LC so may have seen it
    and not realised) and my Java is non existant.
    Has anyone tried this and able to point me in the right directions?
    I'm using LiveCycle ES2 version 9.0.0.2 from Creative Suit 5.5 on Windows 7
    Cheers

    Hi,
    Actually this error does not cause any harm except a presentation inconvenience. In my multi-select prompt I am using variable expression with dynamic repository variable. Dashboard results are correct. Just variable's value does not appear on page (error Error Codes: G689FFB3:SDKE4UTF
    Expression: @{biServer.variables['CUR_CAL_PER_MONTH_NAME']}). Pushing "GO" button on the prompt fixing the error but it's actually second execution of the dashboard.
    Any ideas ??

  • MSS Team View change Bizcard Text

    Hello,
    We are implementing MSS Team View on Portal. And want to change the Home No. text in the Bizcard displayed when the Manager hovers over the employee.
    Any help would be highly Appreciated.
    Please refer to the screen below:

    Hi Rohit,
    there is a customizing activity where you should be able to change the text.
    Go to Personnel Management --> Manager Self-Service (Web Dynpro ABAP) --> Organizational Chart Visualization --> Configure Organizational Chart Visualization
    If you don't have any customer specific entries, the standard customizing can be found under "Check standard organizational chart configuration"
    Select the MSSBIZVIEW entry
    Go to the structure MSS_EMP_HIER:
    And then to the MSS_TMV_BIZ_NAV navigation field group (as you want to change communication settings here)
    If you then open the navigation fields, you should be able to edit the text that is shown:
    Hope this solves your issue and helps.
    Regards,
    Marc

  • Exactly what does the Data Drop-down List do?

    What does the Data Drop-down List do? Is it used to make a drop-down list from certain records in a column in a table of a data base?

    Yes, this is exactly what it does. However, it's a custom control, not a built-in control. JavaScript is used to set it up. In order to use it you have to have a data connection in the document and modify the "Initialize" script, which is were the list is populated from the DB. The "Initialize" code is a good example of how to use XFA JavaScript to access a DB. However, the code is also written in a very general manor and takes the long way around to hooking up to the DB. Much shorter code can be written for a specific DB.
    Thom Parker
    WindJack Solutions
    www.windjack.com

  • Does anyone know how to Add a date drop down list to a pdf file?

    Can someone tell me how to add a Date drop down list in a form

    There's no built-in function that does that in Acrobat, but there are some third-party tools that do.
    The two most known ones are by FormRouter, which is free and based on form fields (but also a bit buggy), and a non-free version created by Max Wyss, which is based on a dialog object.

  • Requesting to add week day view at drop down menu!

    I want you to add a week day view at drop down menu! of A6000 Plus Phone. It only shows the current day and month and years, butit would be easier if it shows the week day view!
    Link to picture
    Admin note; picture >100K converted to link.  About posting pictures in the forums.

    so it would be like 07-09-2015 THU! So lenovo if this modification setting is not included with the phone itself then can you please add this option at your next software updates. Thank you!

  • MSS: Team View Drill Down Capabilities

    Hi all,
    Is there a way that you can be able to drill down through employees in the Team View?  I'm trying to figure out if when employees are loaded, if they are a chief, the little + sign shows up beside the photo, and you can then drill down to see who reports to that manager.
    Hope this makes sense.
    Cheers,
    Kevin

    Hi Siddharth,
    Here is a picture of that screen.  I have covered up the names.  But as you can see, the pictogram for the org chart is coming in.  I did choose the Person pictogram for the employee, but as you can see, it is not there.  Somewhere in the code, the pictogram reference is being deleted.  I'm not sure where, but doesn't make sense to me.  Whe you hover over, information on the employees and the org are coming up.  I would still like to get this to work.
    Cheers,
    Kevin

  • Refresh view , change drop down values dynamically!!

    Hello SDN,
    I have a requirment in PCUI, I have two drop down fields at the view, values for which are all pre-determined as when the application view is loaded.
    My need is if i select a value in field 1( from the drop down list) the values should change accordingly in Field 2(drop down list) hinding or adding some.
    Can anyone help me how i should approach of doing this.
    Many thanks
    Pankaj
    Message was edited by:
            PANKAJ ARORA

    Hi Pankaj,
        You should mark the send request option configuration in the first dropdown and develop code in your class to filter de second dropdown with the value of the first dropdown.
    Regards.
    Manuel
    Reward with points!

Maybe you are looking for