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.

Similar Messages

  • 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

  • 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

  • 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

  • How to get only direct reporting person under MSS

    Hi All,
    We have got a requirement to Display direct reporting under MSS in EP.
    According to standard SAP functionality there could be only one manager in an orgunit(Chief) and if we need other managers under that we need to create a sub orgunit and make that manager as Chief.
    In Standard functionality it only shows all the employees under that Chief, and shows nothing for other managers in the same org unit.
    Our requirement is that it should show only the direct reporting empoyees irrespetive of Chief in the same orgunit.
    for the purpose system uses two rules: MSS_TMV_RULE1, MSS_TMV_RULE5.
    In these rules two evaluation paths are being used SAP_MANG, MSSDIREC.
    I created custom  evaluation paths, but it's not working.
    Could any of you suggest how to solve this.
    thanks & regards,
    Anuraag

    Hello Anurag,
    We are also implementing MSS without chief positions ....were you able to fix your issue ...please help if you can....

  • 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

  • Team viewing in MSS

    Hi gurus,
    in MSS
    Team view should only display the direct reportees of the person who is viewing it.
    For example: If Manager wants to view the list of employees who has applied for leave to him he should only be ableto see his reporteelist and not his peers or the entire HR departments leave.
    please throw some light on this
    Regards
    K Naveen Kishore.

    HI Siddharth,
    the issue is solved,
    i have customized the standard evaluation path SBESX by adding
    S     B       002    Is Line supervisor of    *      S
    and created two rule groups
    Zteamview   --  rule for team view- org unit( i have used SAP_MANG evaluation path)
    Zteamview1 --  rule for team view- target object(i Have used ZSBESX Evaluation Path)
    Thankyou .
    Regards
    K Naveen Kishore.

  • Review Activity Notification to Direct Reports

    We have a workflow, thats creates review activity to manager of useraffected. Works Perfectly.
    But in some cases, aduser have direct reports, and SCSM aggregate this people to reviewers, from a review activity and send email to manager and direct reports.
    I was investigating, y apparently direct reports and manager are "reviewers".
    Is this situation a bug, an error, or it's OK?
    There is anyway to avoid that direct reports are agregated to reviewers?
    Thanks

    Hi,
    How do you determinate direct report users?
    Cheers,
    Marat
    Site: www.scutils.com 
    Twitter: LinkedIn:
    Graveyard:
    from Ad properties. The users in active directory have direct reports

  • 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

  • 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

  • RFC / BAPI for getting Directly Subordinate Employees

    Hi Experts,
    I have a simple query. Do we have any standard RFC or BAPI in ABAP which will take the pernr of Manager as input and return list of all subordinate employees.
    In fact, I am developing one MSS report. In this report, I have to display directly subordinate employees of the manager.
    If standard RFC or BAPI is not available, then kindly let me know how to know the directly subordinate employees of a manager.
    Please help.
    Regards,
    Gary

    Hi Bernd,
    I followed the below mentioned steps:
    1) Read orgeh from pa0001
    2) Passed following parameters in RH_STRUC_GET
    ACT_OTYPE      O
    ACT_OBJID        value obtained from orgeh-pa0001
    ACT_WEGID      o-o-s-p
    ACT_INT_FLAG 
    ACT_PLVAR       01
    ACT_BEGDA       26.04.2011
    ACT_ENDDA       26.04.2011
    ACT_TDEPTH      5
    ACT_TFLAG       x
    ACT_VFLAG       x
    AUTHORITY_CHECK     x
    TEXT_BUFFER_FILL
    BUFFER_MODE
    The RFC is returing 2118 records. The Manager have only 13-14 direct report. I changed the value of act_tdepth to 3 and 4. However the RFC is still giving wrong no of records.
    I am wondering why SAP does not have a standard RFC for getting direct reports. This is a very common functionality needed for any MSS development/
    Regards.
    Gary

  • 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.   

  • EHP5 Team calendar to view direct reports

    Dear All,
    Can anyone help, Currently I have made the settings in IMG and the team view in team calendar is icking up the employees in the Same Organisation unit. The requirement is to pick the Direct reports. In all the help documents it says to select  ESS_LEA_EE_DIR options in the drop down in table "V_ptreq_team" however this option is not avilable in the f4 list. Is there another setting i have to maintain before doing this step?
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=190743879
    Best regards
    keshini

    ESS_LEA_EE_DIR this option comes later in OADP as explained in my WIKI
    In ESS, in standard an employee sees his peers in org unit, only manager sees his direct reports!
    Team calendar works on evaluation path to display the employees
    Please check the table V_ptreq_team for Leave request which uses
    ESS_LEA_EE and which in turn uses ESS_LEA_EE_DIR (V_TWPC_ORGVWGRP)
    In this table you define different rules V_TWPC_OBJSEL
    ESS_LEA_EE_DIR ESS_LEA_RULE1      ESS_LEA_RULE5 Absence: Direct Colleagu
    This table you define the Evaluation path
    V_TWPC_OBJSELRUL
    ie
    use the FM option in the Object Selection rules
    "ESS_LEA_RULE1" and "ESS_LEA_RULE5" to determine the OrgUnit and the
    employees of that Org Unit. In the Object Selection rule, you store the
    name of the function module that can be used as opposed to the evaluatio
    n path to determine the relevant objects. Depending on the type of rule,
    you can use one of the following function modules as the basis for
    creating a function module of your own:
    o   Rules for determining root objects: HRWPC_PATHROOTS
    o   Rules for determining navigation or target objects: HRWPC_ EVAL_PATH
    or use this
    Table V_TWPC_V ESSDIR
    View                                     ESSDIR
    View Name                                ESS: Direct Employees
    Eval. Path for Root Objects         SAP_MANG or ORGASS or WF_ORGUN
    Function Module Root Objects
    Evaluation Path Objects                  ORGASS
    Function Module Object Set
    Initial Evaluation Depth                 0
    you can find documentation related to the OADP Object and Data Provided
    on the next link:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/e7/947e40ec66ce62e1000000
    0a155106/frameset.htm
    Here you can find a detailed explanation about the customizing and there
    is an example on the link:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/de/2fba0f23bc40f6bea53942
    26ef129f/frameset.htm

  • MSS Team Overview - Direct Report

    Dear All,
    We are on EP7 and using the web dynpro Team Calendar. The client have requested that in one of the view, it only display the direct employee for the manager (A002 relationship). Anybody knows how to configure the "evaluation path" and the "rule for target object to cater this request".
    Thanks in advance
    Regards,
    Bryan

    Hi Brian,
    In R/3 navigate to t.code SPRO -> Integration with other mySAP.com Components. -> Business Packages/ Functional Packages -> Manager Self- Service -> Object and Data Provider -> Object Provider -> Define Rules for Object Selection
    For direct reports - you can use the existing evalpath MSSDIREC and a rule already exist with the eval path MSS_TMV_RULE5.
    if you want to use a different eval path create a new rule and include that rule into the object selection.
    And in the iView properties need to mention the ruke you created.
    Hope this helps.
    Cheers-
    Pramod

Maybe you are looking for