How to Default 'Directly reporting employees' in Team Viewer

Hi,
Currently Team viewer in MSS has 'All Employees' by default. We have a request to change it to 'Directly reporting employees'. Can anyone suggest how we can acheive this?
Thanks,
Swapna

Hi Prashant,
We are in 46c and view V_TWPC_ORGVWGRP does not exist in our system. I changed the order in view V_TWPC_VG. Order is changed in Tem viewer, but still defaulting 'All Employees'.
Thanks,
Swapna

Similar Messages

  • Team Viewer - How to default to Directly reporting employees

    Hi,
    May I know is it possible to default the Team Viewer to "Directly reporting employees"?
    Thanks and regards,
    Siew Kuen

    Have you checked if it is possible via configuration? I have not played with it to that level in a while, but I thought I remembered being able to set that in some way...also, I thought you could set the org. limits as well...ie. make it so that ONLY direct reports show up versus all subordinates. I would poke around and check on the backend config first and/or the biz pkg config before looking for a programmatic way of doing it. Just my $0.02. Hope this helps.

  • Direct Reporting Employee

    Hello,
    Our requirement is, we are developing a custom screen on portal(MSS No ESS) . On this we required employee search option. When manager select employee search it will only bring direct report employee not all the employee who belongs to his org unit or sub org unit.
    Evaluation path (MSSDIREC) used by MSS to identify direct employee.
    Can you please put some more light on it to achieve it.
    Thanks
    Shakti

    Shakti,
    There is no standard FM.
    But here you can find the code
    function zhrpm_get_objects.
    ""Local Interface:
    *" IMPORTING
    *" REFERENCE(BEGDA) TYPE BEGDA DEFAULT SY-DATUM
    *" REFERENCE(ENDDA) TYPE ENDDA DEFAULT SY-DATUM
    *" REFERENCE(USER) TYPE SY-UNAME DEFAULT SY-UNAME
    *" TABLES
    *" T_OBJECTS STRUCTURE HRWPC_S_KEYOBJEC
    *" T_OBJECTSTRUCTURE STRUCTURE HRWPC_S_KEYSTRUC
    *" EXCEPTIONS
    *" NOT_VALID_USER
    *" NO_MANAGER
    tables pa0002.
    data litab_objec type table of objec with header line.
    data litab_objec1 type table of objec with header line.
    data litab_struc1 type table of struc with header line.
    DATA litab_objec1_t TYPE TABLE OF objec WITH HEADER LINE.
    data litab_struc1_t type table of struc with header line.
    data litab_struc1_t1 type table of struc with header line.
    data litab_objec1_f type table of objec with header line.
    data litab_struc1_f type table of struc with header line.
    data litab_objec1_m type table of objec with header line.
    data litab_struc1_m type table of struc with header line.
    data l_objid type hrobjid.
    data: begin of litab_low occurs 0,
    seqnr type int4,
    end of litab_low.
    data: begin of litab_low1 occurs 0,
    seqnr type int4,
    end of litab_low1.
    data: l_pup1 type int4,
    l_pup2 type int4,
    l_leader_type type otype,
    l_leader_id type realo,
    l_pernr type persno.
    data: itab_manager like objec occurs 0 with header line,
    l_subrc type sy-subrc.
    validate given user
    select single pernr
    into l_pernr
    from pa0105
    where usrid = user
    and begda le begda
    and endda ge begda.
    if not sy-subrc is initial.
    raise not_valid_user.
    endif.
    get the user managing org id
    call function 'RH_STRUC_GET'
    exporting
    act_otype = 'US'
    act_objid = user
    act_wegid = 'SAP_MANG'
    act_plvar = '01'
    act_begda = begda
    act_endda = endda
    tables
    result_objec = litab_objec
    exceptions
    no_plvar_found = 1
    no_entry_found = 2
    others = 3.
    if not sy-subrc is initial.
    raise no_manager.
    endif.
    loop at litab_objec where otype = 'O'.
    get the below org units and all persons
    call function 'RH_STRUC_GET'
    exporting
    act_otype = 'O'
    act_objid = litab_objec-objid
    act_wegid = 'O-S-P' "
    act_plvar = '01'
    act_begda = begda
    act_endda = endda
    tables
    result_objec = litab_objec1
    result_struc = litab_struc1
    exceptions
    no_plvar_found = 1
    no_entry_found = 2
    others = 3.
    delete litab_objec1 where objid = 'S'.
    delete litab_struc1 where objid = 'S'.
    litab_objec1_T] = litab_objec1[.
    litab_struc1_t] = litab_struc1[.
    litab_struc1_t1] = litab_struc1[.
    append lines of litab_objec1 to litab_objec1_f.
    loop at litab_struc1 where otype = 'O'.
    l_tabix = sy-tabix.
    if litab_struc1-objid = litab_objec-objid.
    move litab_struc1-seqnr to l_pup1.
    move all persons under root
    loop at litab_struc1_t where pup = litab_struc1-seqnr.
    if litab_struc1_t-otype = 'P' and litab_struc1_t-objid ne l_pernr.
    litab_struc1_f = litab_struc1_t.
    append litab_struc1_f.
    endif.
    endloop.
    else.
    if litab_struc1-pup = l_pup1 .
    get manager
    CALL FUNCTION 'ZRH_GET_LEADER'
    EXPORTING
    plvar = '01'
    keydate = begda
    otype = 'O'
    objid = litab_struc1-objid
    IMPORTING
    leader_type = l_leader_type
    leader_id = l_leader_id
    MULTIPLE =
    EXCEPTIONS
    no_leader_found = 1
    no_leading_position_found = 2
    other = 3
    OTHERS = 4
    move litab_struc1-objid to l_objid.
    call function 'HRCM_ORGUNIT_MANAGER_GET'
    exporting
    plvar = '01'
    otype = 'O'
    objid = l_objid
    begda = begda
    endda = begda
    path_id = 'BOSSONLY'
    tables
    manager_info_table = itab_manager
    exceptions
    path_error = 1
    root_error = 2
    nothing_found = 3
    others = 4
    move sy-subrc to l_subrc.
    read table itab_manager with key otype = 'P'.
    if sy-subrc 0 or l_subrc 0.
    CHECK itab_manager-objid ne l_pernr.
    if no leader move all persons
    l_pup2 = litab_struc1-seqnr.
    litab_low-seqnr = litab_struc1-seqnr.
    append litab_low.
    do.
    loop at litab_low.
    loop at litab_struc1_t where pup = litab_low-seqnr.
    if litab_struc1_t-otype = 'P'.
    litab_struc1_f = litab_struc1_t.
    append litab_struc1_f.
    elseif litab_struc1_t-otype = 'O'.
    get manager
    CALL FUNCTION 'ZRH_GET_LEADER'
    EXPORTING
    plvar = '01'
    keydate = begda
    otype = 'O'
    objid = litab_struc1_t-objid
    IMPORTING
    leader_type = l_leader_type
    leader_id = l_leader_id
    MULTIPLE =
    EXCEPTIONS
    no_leader_found = 1
    no_leading_position_found = 2
    other = 3
    OTHERS = 4
    refresh itab_manager.
    clear l_subrc.
    move litab_struc1_t-objid to l_objid.
    call function 'HRCM_ORGUNIT_MANAGER_GET'
    exporting
    plvar = '01'
    otype = 'O'
    objid = l_objid
    begda = begda
    endda = begda
    path_id = 'BOSSONLY'
    tables
    manager_info_table = itab_manager
    exceptions
    path_error = 1
    root_error = 2
    nothing_found = 3
    others = 4
    move sy-subrc to l_subrc.
    read table itab_manager with key otype = 'P'.
    if sy-subrc is initial.
    IF l_leader_type = 'P'.
    read table litab_struc1_t with key objid = itab_manager-objid.
    litab_struc1_f = litab_struc1_t.
    append litab_struc1_f.
    ENDIF.
    IF litab_struc1_t-otype = 'P'.
    litab_struc1_f = litab_struc1_t.
    append litab_struc1_f.
    ENDIF.
    else.
    litab_low1-seqnr = litab_struc1_t-seqnr.
    append litab_low1.
    endif.
    endif.
    endloop.
    endloop.
    refresh litab_low.
    litab_low] = litab_low1[.
    refresh litab_low1.
    if litab_low[] is initial.
    exit.
    endif.
    enddo.
    else.
    move only leader
    IF l_leader_type = 'P'.
    check itab_manager-objid ne l_pernr.
    read table litab_struc1_t with key objid = itab_manager-objid.
    if sy-subrc is initial.
    litab_struc1_f = litab_struc1_t.
    append litab_struc1_f.
    endif.
    ENDIF.
    endif.
    else.
    endif.
    endif.
    endloop.
    endloop.
    loop at litab_struc1_f.
    read table litab_objec1_f with key objid = litab_struc1_f-objid.
    if sy-subrc is initial.
    move-corresponding litab_objec1_f to t_objects.
    append t_objects.
    endif.
    move-corresponding litab_struc1_f to t_objectstructure.
    append t_objectstructure.
    endloop.
    endfunction.
    Thanks
    Bala Duvvuri

  • ECC5 How to read the stored value from Team Viewer

    Hi,
    How can I pick up the stored value from the team viewer from within ECC5?
    I would normally use FM 'HR_ASR_WDA_GET_EMPLOYEE'  to read mem id MSS01 but this doesn't exist in ECC5.
    All help appreciated.
    Rob

    Hi,
    How can I pick up the stored value from the team viewer from within ECC5?
    I would normally use FM 'HR_ASR_WDA_GET_EMPLOYEE'  to read mem id MSS01 but this doesn't exist in ECC5.
    All help appreciated.
    Rob

  • How to know which report is using which view

    Hi all,
    is there any way to get the details of which discoverer report is using which view by using any sql query.
    Thanks in advance

    There is a trigger that update a table whenever a workbook is saved.
    You can start your query from
    select s.workbook_name,
    s.worksheet_name,
    s.sequence_order,
    s.sql_string
    from
    ams.ams_discoverer_sql s
    order by 1,2,3

  • How to create a report out of public view(s) with job errors & e-mail

    I would like to finish nightly OWB jobs with a process that will generate a report out of the public views with any errors and e-mail them. Has anybody done anything like this.
    Thanks!

    yes we have done it
    go through the below link
    http://blogs.oracle.com/warehousebuilder/2007/05/mailing_map_errors.html
    cheers
    Nawneet

  • How to split the report into different versions view 1 agent delivery

    Hello
    I have a scenario where I need to send a dashboard to multiple users. The user information are stored in the table like the following:
    USER    Day     Car                  Pay Type                    Cost   Email
    USER1
    -10
    -2
    Honda
    Customer Pay
    500
    [email protected]
    USER2
    -4
    -1
    AUDI
    Customer Pay + Warranty
    1000
    [email protected]
    USER2
    -4
    -1
    PORSCHE
    Customer Pay + Warranty
    1000
    [email protected]
    Now I have a dashboard call Car, on this dashboard I have prompts like Date, Car, Pay Type, Cost, pretty much the same name as the columns in the above table. I have also set up session variables to pick up users based on the log in.
    Now for user2, he is getting 1 email, which is the dashboard with both Audi and Porsche on there. Instead, he wants to 2 attachments, 1 for Audi and 1 more Porsche. Is there a way to achieve this using 1 agent?
    Please let me know how to split the result sets based on user records in the table
    Thank you

    Hello,
    Thank You very much for the useful hint.
    Regards
    Aloha

  • Eventing in Portal page between Team Viewer and Custom Webdynpro for ABAP

    We are trying to implement a new Portal page that contains a Team Viewer Iview and a custom Webdynpro for ABAP iview.
    The idea is that the when a manager select one of his direct report in the Team Viewer, the custom Webdynpro for ABAP would pick up the selection_changed event and retrieve the data for the selected employee.
    We followed the instruction provided by SAP in note 1112733 and it worked in our development environment. When we moved the iviews to our testing environment it stopped working.
    I also used the Diagnostic Iviews provided by SAP and I get the same result: Works in Dev, does not work in QA or in Prod.
    We also followed the troubleshooting steps of note 945516 and it still did not help us. We can not find a difference in our system set up.
    We are therefore looking for pointers as to what could be our problem.
    Thanks!
    Edited by: Benoit Fortin on Feb 20, 2009 2:28 PM

    Problem was solved internally:
    The reasons the eventing worked in Dev and not in QA or Prod, was that we had a different level of patch for ESS/MSS between instances, which I was not aware of.
    Dev was on ESS/MSS version 600 SP14 and QA and Prod was on a different level. Once we implemented ESS/MSS SP 14 accross the board, everything was good.
    Edited by: Benoit Fortin on Nov 13, 2009 11:57 AM

  • Getting direct reporting and indirect reporting employee

    Hi,
    In one of my development, their is a requirement to have a screen of type Tcode PPMDT.
    My screen will be having tab strip for direct and indirect employee and on both tabs org structure will be displayed.
    I am using function module RH_STRUC_GET to get the org structure details. I need to know the logic of separating direct reporting employee from indirect reporting employee from the data returned from function module.
    Thanks
    Vishal Kapoor

    Hi,
    In one of my development, their is a requirement to have a screen of type Tcode PPMDT.
    My screen will be having tab strip for direct and indirect employee and on both tabs org structure will be displayed.
    I am using function module RH_STRUC_GET to get the org structure details. I need to know the logic of separating direct reporting employee from indirect reporting employee from the data returned from function module.
    Thanks
    Vishal Kapoor

  • Moving The Chief Including Direct Reports to Another Org Unit

    Dear Expertise,
    We have a request to move the manager including his direct reports employees to a different org unit.
    I'm looking for a way to achieve this through function module.
    Can anyone shred some light or if any Standard FM available to reuse?
    Your Sincerely,
    SE

    Hi,
    certainly I do not believe there is any standard code for doing this.
    Are you trying to code up an application that lets you do this? If so, the have a look at the decoupled infotype framework classes (CL_HRBAS_* ) for maintaining OM infotypes - you could use these to delimit the old relationships and create new ones in the target org unit.
    In particular have a look at class - CL_HRBAS_PLAIN_INFOTYPE_ACCESS.
    if you're just looking for an easy way to do it - lots of dragging and dropping in PPOME would probably be the easiest!
    hope that helps,
    Chris

  • Reporting employees of a MSS user

    Hi all,
    My requirement is to find the Direct Reporting & All Reporting employees of a MSS user.
    Can someone tell me what is the evaluation path in HR & the logic to be used to find the direct reporting employees & all reporting employees of a MSS user?
    Edited by: Jessica Rose on Nov 16, 2010 10:18 AM

    If added AAoA is the only or the primary reason for adding her as an AU, you might want to ponder on that unless her score is really low and she is beginning rebuilding. Age of accunts is not a major factor in credit scoring.As soon as you add any account of yours to her credit report, that will automatically make her credit score not representation of her personal risk of repayment.A credtor, upon doing a manual review and seeing presence of an AU, may thus choose to either discount or ignore her score in their evaluation. Adding an AU is good when rebuilding, where the person is appling for low amounts of credit wherein the credtiors dont normally go to the time and expense to do a manual review.  However if she will be apping for normal or higher levels of credit thst traditionally involves a manual review, having an AU could be a detriment even if it produces an artificial score boost.   

  • MSS PCR Team viewer Not working Poeperly when nodata available

    Hi
    We have implemented MSS Business package for Nw04 Sp18 portal and ERP2004 system.
    When using PCR team viewer list, we observed strange problem.
    We have created 4 views in r/3 side using  OADP img .all the views are displaying data correctly ,when each view has data available at back end, for any view if doesn't have data its showing previous view data instead of showing "no data found".
    But it’s working fine in QA portal, in DEV system we found this strange behavior. We compared all the config b/w two systems, not able to find the problem. Any one has any suggestions most welcome.
    Thanks in advance
    Gopal

    Not sure that I understand the issue here - are you saying that there are directly reporting employees who are not appearing in MSS unless the manager has SAP_ALL authorisation?  Are you also using HR structural authorisations?
    You do know how the standard "Direct Reporting" view in MSS is supposed to work?  As in, which employees you should be expecting to appear?
    The "Direct Reports" option uses an evaluation path called MSSDIREC, which references a relationship called B900 "Manager under manager".  Relationship B900 uses program RHDIREPO to find the relevant objects.
    For us at least, the standard "Direct Reports" only returns (1) employees in the same Org Unit as the manager, (2) employees in subordinate Org Units that do not have an occupied Chief position, and (3) managers (i.e. Chiefs) in subordinate Org Units.

  • Customized team view in MSS view.

    Hi
    I am  working  on MSS  for ECC6.  My client has got a requirment  for the mss user to view his direct reportees in the team view. ie B/002 relation ship (Is line supervisor of ) relationship in lieu of  A012 (Manager Relationship)..
    Can anybody help me with the  detailed configuration steps.
    Thanks

    Hi Lakshmi,
    this configuration must be done in the backend ECC6.0.  here are the steps:
    go to transaction SPRO, then navigate to Personnel Management->Employee Self Service->Service-specific settings->Working time->team calendar->select employees.
    add the following entry to this table:
    Rule group: 00000001 (this is the default SAP group)
    start date: 1900/01/01 (or any other date you want)
    end date: 9999/01/01 (or any other date you want)
    mode: Team View Mode
    view/Grp: view group (MSS)
    group of organizational views: MSS_LTV_EE (this is the entry that will allow the manager to see his direct reporting employees)
    good luck!
    Tiberiu

  • MSS: Employee Search: Data View

    Hi All,
    I need a few clarifications regarding the Data View of Employee Search/Team Viewer iview.
    1)"Click"ability of Employee in Data View
    2)"Click"ability of any other object type, like Org Unit or Position in the Data View
    After my trials, I'd like to know the following.
    If I use the delivered object selection rules (in SPRO config), I'm able to click on the employee (i.e there's a link under the employee name in the Data View). If I use any other rule (a custom object selection rule with evaluation path O-S-P) I dont get the "link" under the employee name in the data view. Any reasons for this behaviour? or any rules regarding an object selection rule?
    If I display Positions or Org Units in the Data View, they are not clickable either. Is this not allowed? Is Data View only to display employees?
    If there's any other forum I'm more likey to get an answer, please lead me there.
    Cheers,
    Rajit

    Hi Rajit
    In most of the HR Implementation projects,in front end some of the fields are only displayed to the end user,The Examples of the fields are Position,Org unit,personal area,personal subarea,company code,Functional org unit,job number,some times cost center is also display only to end user.Even I am also in the project of HR Implementation as webdynpro as a front end we generally will not give a chance to enter the above fields by the end user.
    Regards
    Kalyan

  • ARIA Employee Directory -How to Print Multiple Direct Report On a page

    This question goes out to the experts. If we have person that has 10,15 or a large number of direct reports how can we print them on to a page so that they all fit. I am okay if they fall to another line just need to get them all on one page rather than multiple because they fall outside the print parameters?
    All help in this area would be greatly apprecaited
    Steve

    Maybe. Keep in mind HTML was never made for print. It's quite possibly the worst medium you could choose for print. You won't be able to establish page breaks or even draw consistent boxes. In short, I estimate the probability of success in creating an org chart with an HTML template to be somewhere around 1%. I just don't want to see you spend an absurd number of hours trying to build something that's really not possible.
    With that said, here are a few options to consider:
    - Microsoft Word and Visio both have Org Chart functionality, though I'm not sure if you can populate it with data from a database. This would be an offline solution wherein one of the developers would, on a periodic basis, generate a new version of the org chart, export it to PDF, then post it as a static file.
    - Oracle BI Publisher supports Word shapes for templates, including Org Charts per this documentation:
    http://download.oracle.com/docs/cd/E12844_01/doc/bip.1013/e12187/T421739T481157.htm#T481174
    though I think it might take effort to get the template to work. At least the output medium (PDF or RTF) is made for print.
    - GraphViz (http://www.graphviz.org) is the most promising online solution I can think of. It's a command-line tool, so you would need to
    -- generate the data in a file and output that to the file system of the database server (UTL_FILE)
    -- call the command-line utility via a dbms_scheduler job, since you need call an OS utility from inside the database
    -- provide a link to the output of graphviz.
    Take a look at this image, then click on it to see the code that generated it, since that's essentially the format you'll need to output:
    http://www.graphviz.org/Gallery/directed/unix.html
    There's my 2 cents. If someone is asking you to do this all in HTML, please send them a link to this post.
    Tyler

Maybe you are looking for

  • Problem with Javascript form submission

    Would someone correct the following the Javascript function? It should submit the form when test==true, and should give an alert message when test==false. The problem is when the alert message is displayed and closed, the form is still submitted. In

  • I can´t make a new BC site

    When I try to create a new site in Dreamweaver CS6 Business Catalyst get the following message: "There is already an account with the same email in Business Catalyst. To associate the Business Catalyst account with your Adobe ID, log on to the Web ma

  • Using Second Display

    I am in the process of buying a flat panel LCD. It has a PC input. I was curious if it anybody knew if it was possible to use the flat panel as a secondary monitor. The trick is I'd like to use it wirelessly. Something as simple as sticking in a Wire

  • I regret updating my Dreamweaver cc - how do I go backward to the earlier version befor oct. 2014

    I regret updating my Dreamweaver cc - how do I go backward to the earlier version befor oct. 2014

  • IPhoto slideshow, remove some photos

    I've created an elaborate iPhoto slideshow that looks fantastic (custom settings for nearly every slide).  QUESTION:  I'd like to make a DIFFERENT slideshow by removing a few slides from my origonal 'fantastic' slideshow while keeping the origonal on