Leave Calendar employee selection issue

Hi,
If we are having two manages in the same department, when i view team calendar it shows the leave applications irrespective of reporting structure. i.e., both the managers are able to view all the employees applications in the department.
Even though i choose the option in the drop down list as direct reportees the same happens.
How can i limit the employee selection based on the reporting structure?
Thanks,
Uday

You need to use the table V_ptreq_team for the rule group assigned to the manager, where in you define the evaluation path and indicate how you define the employee selection
More information here
https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=190743879

Similar Messages

  • JSF Calendar Component Selection Issue

    Hi,
    I have design a JSF Page using two calendar components, ie
    Start Date
    End Date
    Both of these dates field allow user input but only one of them are on compulsory basis.
    Start Date is a compulsory , whereas End Date is not. What I notice was if the user did not select the End Date , upon clicking submit button, no action would be follow , if the End date was somehow selected , the JSF page perform normally.
    My question is how to resolve this issue as sometime it is not practical to preselect an End date in advance especially if a big project is undertaken, the logic here is , upon completion , the user could either input the date manually or via programme auto update.
    Could anyone provide any hints and solution please
    Thank

    Hi,
    I have design a JSF Page using two calendar
    components, ie
    Start Date
    End Date
    Both of these dates field allow user input but only
    one of them are on compulsory basis.
    Start Date is a compulsory , whereas End Date is
    not. What I notice was if the user did not select
    the End Date , upon clicking submit button, no
    action would be follow , if the End date was
    somehow selected , the JSF page perform normally.
    My question is how to resolve this issue as sometime
    it is not practical to preselect an End date in
    advance especially if a big project is undertaken,
    the logic here is , upon completion , the user could
    either input the date manually or via programme auto
    update.
    Could anyone provide any hints and solution please
    ThankBy "compulsory" I'm guessing you mean the "required" attribute has been set. I think one problem with the built-in calendar is that there isn't a way to specify the value "no-date-was-selected". Maybe you can simulate it by initially setting the value to the maximum date and telling the user to igore this value. Not a good solution. There is a newer popup calendar that I have been working on that has been checked into the bpcatalog tree on java.net which fixes these problems. Unfortunately, it needs to be packaged up as a complib and downloadable some where. I hope to do this soon.
    -Edwin
    http://blogs.sun.com/edwingo/

  • Employee selection table view not opening in MSS while selecting process

    Hello Everyone,
      In MSS, Team->Start Process for Employee Employee selection table view is not visible, so without selecting employee if i click Select Process button its telling employee is not selected.. How make that Employee selection view visible in MSS..

    This may be structural authorization issue. Execute RHBAUS00 for the user then check what happens.
    Sandip

  • HR Administrator Employee Selection

    Hello,
    I am implementing the HR administrator package on the portal.
    In the employee selection, it does not find any employees. "No data found". However if I move the HR administrator into the CEOs position at the top of the Org structure the user can see all the employees in the company.
    The problem appears to be in the Org Structure view of the which is using ASR and class CL_HRASR00_OADP_OBJECTSEARCH.
    Thus there seems to be a requirement for the HR administrators to be sitting in the top level of the Org structure in order to be able to administer all employees in the company. This of course is not the case. They sit in the HR department which is at a much lower level in the structure.
    Am I missing something? Is ASR what I should be using in the OADP?  Is there another relationship we can us to specify that the HR administrator should see the whole of the company? From an authorisation perspective the user has been given access to the whole company.
    We are facing a custom development so any solution to avoid that would be warmly welcomed.
    Thanks

    Check out the following for atleast one part of the answer...
    MSS Related Activity - Leave Request

  • Datagrid select issue

    I am using flex builder 2.01 and have been using datagrids
    for a while now. I have recently ran into a weird situation where I
    have one datagrid out of three that just will not allow a manual
    selection. If I set the index to 0 for instance, the initial view
    of the datagrid shows the first item selected. If I go to select a
    different item, the first item becomes unselected and no other item
    can be selected. If I leave the initial state to be no item
    selected, I can never select an item. All other datagrids are
    working fine. I have tried to set selectable to true but that
    didn't help. This is really odd, any assistance would be greatly
    appreciated.

    Mmmm... Well the good news is I fixed it. The bad news is I
    have no clue why it fixed it. This particular datagrid is in a
    different tab in a tabnavigator panel. Attached is the expanded
    working code. On the line:
    <mx:Canvas label="Archived" width="100%" height="100%"
    id="ArchiveTab">
    I had a click="{GetPropertyArchive()}" to refresh the data on
    tab selection. This was old code that was made unnecessary at a
    later date but I did not remove the code. My guess is the datagrid
    assumed the characteristics of the parent tabnavigator and instead
    of ... wait that can't be right. If that was the case then changing
    the datasource would not have fixed the select issue because the
    'click' definition on the tabnavigator still existed. I would
    really like to understand why this mattered so I could avoid this
    issue in the future. Any ideas??

  • To get the sum of leave an  employee has taken

    hi all
    i have this query
    SELECT   dif.employee_number, dif.full_name employeename,
             TO_CHAR (date_entray, 'DY') DAY, date_entray attendance_date,
             TO_CHAR (start_date, 'dd-Mon-rrrr') doj, dif.dept_name, POSITION,
             tran_name, insert_type, day_desc,
             CASE
                WHEN insert_type = 'AnLv'
                   THEN COUNT
                          (insert_type)
             END days_anlv,
             CASE
                WHEN insert_type = 'SkLv'
                   THEN COUNT (insert_type)
             END days_sklv,
             CASE
                WHEN insert_type = 'BTrp'
                   THEN COUNT (insert_type)
             END days_btrp
        FROM nap_punch_data_emp_list trn, nap_emp_def dif,
             nap_punch_card_eleg ele
       WHERE trn.employee_number = dif.employee_number
         AND ele.employee_number = trn.employee_number
         AND date_entray BETWEEN :p_from_date AND :p_to_date
         AND trn.employee_number BETWEEN NVL (:p_emp_no, trn.employee_number)
                                     AND NVL (:p_emp_no2, trn.employee_number)
    GROUP BY dif.employee_number,
             dif.full_name,
             start_date,
             dif.dept_name,
             POSITION,
             tran_name,
             insert_type,
             date_entray,
             day_desc
    ORDER BY date_entray
    the output of which is
    EMPLOYEE_NUMBER     ATTENDANCE_DATE    INSERT_TYPE                            DAYS_ANLV                              DAYS_SKLV                                   DAYS_BTRP
    686                       04/18/2012          annual leave                          1
    688                        04/18/2012     sick leave                                                                         1
    689                     04/18/2012        annual leave                               1
    686                   04/19/2012        annual leave                                 1
    69                 04/19/2012          businesstrip                                                                                                                       1                         
    69               04/19/2012          businesstrip                                                                                                                         1
                is it possible to obtain
    employee number                                        days_anlv                            days_btrp
    686                                                                  2    
    69                                                                                                             2the sum of the respective leaves each employee has taken
    kindly guide
    thanking in advance
    Edited by: makdutakdu on Jun 24, 2012 2:59 PM
    Edited by: makdutakdu on Jun 24, 2012 3:00 PM
    Edited by: makdutakdu on Jun 24, 2012 3:01 PM
    Edited by: makdutakdu on Jun 24, 2012 3:02 PM
    Edited by: makdutakdu on Jun 24, 2012 3:03 PM
    Edited by: makdutakdu on Jun 24, 2012 3:03 PM
    Edited by: makdutakdu on Jun 24, 2012 3:04 PM
    Edited by: makdutakdu on Jun 24, 2012 3:26 PM
    Edited by: makdutakdu on Jun 24, 2012 3:27 PM
    Edited by: makdutakdu on Jun 24, 2012 3:28 PM
    Edited by: makdutakdu on Jun 25, 2012 9:05 AM

    Hi,
    makdutakdu wrote:
    hi all
    i have this query
    SELECT   dif.employee_number, dif.full_name employeename,
    TO_CHAR (date_entray, 'DY') DAY, date_entray attendance_date,
    TO_CHAR (start_date, 'dd-Mon-rrrr') doj, dif.dept_name, POSITION,
    tran_name, insert_type, day_desc,
    CASE
    WHEN insert_type = 'AnLv'
    THEN COUNT
    (insert_type)
    END days_anlv,
    CASE
    WHEN insert_type = 'SkLv'
    THEN COUNT (insert_type)
    END days_sklv,
    CASE
    WHEN insert_type = 'BTrp'
    THEN COUNT (insert_type)
    END days_btrp
    FROM nap_punch_data_emp_list trn, nap_emp_def dif,
    nap_punch_card_eleg ele
    WHERE trn.employee_number = dif.employee_number
    AND ele.employee_number = trn.employee_number
    AND date_entray BETWEEN :p_from_date AND :p_to_date
    AND trn.employee_number BETWEEN NVL (:p_emp_no, trn.employee_number)
    AND NVL (:p_emp_no2, trn.employee_number)
    GROUP BY dif.employee_number,
    dif.full_name,
    start_date,
    dif.dept_name,
    POSITION,
    tran_name,
    insert_type,
    date_entray,
    day_desc
    ORDER BY date_entray
    the output of which is
    EMPLOYEE_NUMBER     ATTENDANCE_DATE    INSERT_TYPE                DAYS_ANLV                              DAYS_SKLV                                   DAYS_BTRP
    686                       04/18/2012          annual leave                                     1
    688                        04/18/2012     sick leave                                                                                            1
    689                     04/18/2012        annual leave                                         1
    686                   04/19/2012        annual leave                                            1
    69                 04/19/2012          businesstrip                                                                                                                                               1                         
    69               04/19/2012          businesstrip                                                                                                                                                  1
    When posting formatted code, make sure it appears on this site so that people can read and understand it. Does the output above look okay ih your browser? I can;t tell which numbers are supposed to be in which columns. Use the "Preview" tab and edit your message, if necessarry, before posting.
    is it possible to obtain
    employee number days_anlv days_btrp
    686 2
    69 2
    the sum of the respective leaves each employee has takenIt's unclear what you want, but I'm sure you can do it.
    Whenever you have a question, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all the tables involved, and the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say what version of Oracle you're using.
    See the forum FAQ {message:id=9360002}
    If you only want one row of output for each employee_number, then employe_number should be the only thing in the GROUP BY clause.
    You may need to do 2 GROUP BYs; one in a sub-query, and the the other (with employee_number alone in the GROUP BY clause) in the main query.
    Why do the results not include employee_numbers 688 and 689?

  • Remove 'wiki' and 'blog' but leave 'calendar'

    Leopard Server 10.5.7: I'd like to have just a calendar available, not a blog or wiki. This does not seem possible. Workgroup Manager lets you deselect Wiki and Blog but leave Calendar selected for groups. When you do this and try to access via the web, you get the message that no group exists.
    Another possible solution is to just delete 'wiki' and 'blog' from the top of each page. I've found that I can delete 'wiki', 'blog' and 'calendar' by deleting a section in default.xsl, but this has the side effect of also deleting the dates in the calender. I'm not stuck as to how to proceed. The text I was removing was in "class webapptoolbar" and was the three lines beginning with <xsl:for-each select="context/webAppToolbarLinks/item">
    Any suggestions?

    1. That will depend. I'm not sure since you are editing the default template sets. It is recommended that you create a custom theme so any changes you make will be isolated from an update.
    Look at this document: http://images.apple.com/server/macosx/docs/ExtendingYour_WikiServer.pdf
    2. Yes it is the list element with an id attribute of user_button, you could also use:
    .webapptoolbar #users_button {display:none;}
    But the first one a gave you is more specific.
    You can use the Firebug plugin for Firefox to check what styles are being applied to a given element.
    Shannon
    Message was edited by: onisama

  • Using iOS 7 on my iPad, is there a way to put an event into the calendar without having to scroll down to calendar and select "home" every time?  My friend's iPad retains that setting but mine doesn't .

    Using ios7 on my iPad, is there any way to enter a calendar event without having to scroll down to calendar and selecting "home" every time?  My friend's retains that setting, bu mine won't .

    Settings>Mail, Contacts & Calendar
    Scroll till you see calendar and set default calendar to the one you want.

  • Retrieve Java Employee Selection for use in ABAP

    Hi Experts
    I have a case where I need to retrieve the PERNR from the Java Employee Selection iView for use within an ABAP WD iview.
    I'm assuming that this can be handled from FPM...
    Could someone help me in the right direction to get this done?
    Thanks in advance
    Anton Kruse

    Hello Anton Kruse,
    you need to use portal events for communicating between one iview to another. Refer the following documentation for portal events
    http://help.sap.com/saphelp_nw70/helpdata/en/f6/7d6f4151dc5758e10000000a1550b0/frameset.htm
    in your case,
    the java component should raise a portal event whenever there is employee selection and the webdynpro component should register for this event and act accordingly whenever this event is raised.
    BR, Saravanan

  • F4 for employee select options in WD for abap application

    Hi,
    I have defined a select option for employee selection in my WD for abap application. The only problem is that I cannot get a f4 help button to be displayed. I have defined the select option using the following code :
    wd_this->m_wd_select_options = wd_this->wd_cpifc_select_options( ).
    init the select screen
    wd_this->m_handler = wd_this->m_wd_select_options->init_selection_screen( ).
    create a range table that consists of this new data element
    lt_range_table = wd_this->m_handler->create_range_table(
    i_typename = 'PERNR_D' ).
    add a new field to the selection
    wd_this->m_handler->add_selection_field(
    i_id = 'PERNR_D'
    it_result = lt_range_table
    i_read_only = read_only ).
    I have tried adding entries for the parameter help_id but still cannot get a f4 button.
    Thank you in advance for any assistance provided.

    Hi,
    Try this.
    DATA lo_interfacecontroller TYPE REF TO iwci_wdr_select_options .
    lo_interfacecontroller = wd_this->wd_cpifc_select_options( ).
    DATA lo_r_helper_class TYPE REF TO if_wd_select_options.
    lo_r_helper_class = lo_interfacecontroller->init_selection_screen( ).
    Creating range table
    DATA lt_range TYPE REF TO data.
    CALL METHOD lo_r_helper_class->create_range_table
    EXPORTING
    i_typename = ''PERNR_D'
    RECEIVING
    rt_range_table = lt_range.
    Disabling the global options
    CALL METHOD lo_r_helper_class->set_global_options
    EXPORTING
    i_display_btn_cancel = abap_false
    i_display_btn_check = abap_false
    i_display_btn_reset = abap_false
    i_display_btn_execute = abap_false.
    Adding the selection field
    CALL METHOD lo_r_helper_class->add_selection_field
    EXPORTING
    i_id = 'PERNR_D'
    I_OBLIGATORY = ABAP_TRUE
    i_value_help_type = if_wd_value_help_handler=>CO_PREFIX_SEARCHHELP
    I_VALUE_HELP_ID = 'PREM'
    it_result = lt_range.
    Check this artcle for more details which uses VBELN as select option with search help.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/103e43d5-fdb8-2d10-90ab-b5e8532cbc04

  • MSS - team - General Data, Employee selection add Custom col with KM link

    Hi There,
    I am trying to add a custom column for MSS team selection for general data. Which works alright, now i want to make that column click able (like email) and this should direct me to a dynamic Km link based on employee selected.
    I have added custom column and able to display custom content on the team member selection table. I am able to make it clickable if i select "link" option on column configuration. So that also works.. now i want to pass employee number to my custom webdynpro application. Can you suggest anything here.
    Thanks a lot.
    Regards,
    Sudhir

    Hi Sudhir,
    If I understand correctly, though oadp config, you have added new column and attached a service key to make it as a clickable one. Once u er clicks on the link, I believe you want to display the KM doc which takes pernr as url parameter or some thing like that.
    If my understanding is correct then, you have to  create a WD Application, which reads the selected pernr( or org or position). You need to add pcui_gp/xssutils as used DC and then add context nodes of FcObjectSelection to read the selected record details as described in the above wiki which I gave i.e. https://wiki.sdn.sap.com/wiki/display/profile/How-toaddacustomWebDynproiViewtotheMSSEmployeeProfile%28ECC+6.0%29
    You have to pass the value returned by the Selected Object to the KM as url parameter.
    Also use this blog to see the frontend context values of WDJ application. It will help you in understanding the various values of the context nodes.
    /people/yugandhar.reddy/blog/2011/03/26/simple-way-to-debug-ess-and-mss-web-dynpro-java-based-applications--very-useful-technique
    This should wok for you, let me know if your requirement is different.
    Regards
    Yugandhar Reddy

  • Complex selection issue

    Hello,
    Is it possible to tell Pages to select all text with, say, font size 17?
    I have a texte with a bunch of different fonts and font sizes, and would like to apply changes to them. For example, I'd like to change all the text that is 17 to 12 without affecting all the other font sized text.
    I tried with paragraph and character styles to no avail...
    Loa

    "In the end I have to do the first pass manually..."
    Well, sort of, but it's not an arduous process.
    Select all of the text in one paragraph.
    Set the font, size, and any other attributes you want for the desired style.
    Leave the paragraph selected, or just leave the insertion point somewhere in the paragraph.
    Go View > Show Styles Drawer.
    In the styles drawer, you should see Body highlighted, and a red triangle to the right end of the selection highlight. Click the red triangle and select the first item in the menu that appears—Create new paragraph style from selection.
    Name the style.
    You now have a named style contining the attributes you set in the steps above.
    Double click in the next paragraph to which you want to apply this style.
    Press and hold the command key, and double click in each of the other paragraphs to which you want to apply this style.
    (The paragraph is selected if one or more characters in the paragraph are selected.)
    When all are selected (or as many as you feel safe are selected), click the new style name in the Styles Drawer to apply the style to all selected paragraphs.
    If all paragraphs you want do not yet ahve the style applied, repeat the last two steps.
    Regards,
    Barry

  • HCM Processes & Forms without Employee Selection

    We would like to develop a Job Requisition Process using HCMPF.  A Job Requisition does not require an employee selection. The Start Process in the portal begins with the selection of an employee.  I know that the ability to skip employee selection in the Start Process is delivered with EHP4 but we are going to be doing this development with EHP3.  I read in an SDN blog that via configuration you can set a process to "skip selection". In this way, the process actually jumps right to the form screen as if it was in an "edit" task. Would this be a solution for us? Is the configuration done somewhere in the process definition in the ECC System?  Does the process still require an employee selection at the end of the process to complete it? We have heard that an HCM process does not have to do updates, but can just be a fill-in of a form and routing for approvals. I need help understanding how to initiate this type of process when no employee selection is needed.

    Hi Joyce,
    Did you manage to resolve this? We have a similar requirement and are on EnP 3 as well. Is this something that you were able to achieve?
    Thanks.
    Regards,
    Akshay

  • Creating Permission Lists for an Annual Leave Calendar

    Can Someone Help Please:
    I currently have a SharePoint Annual Leave Calendar i have created when users enter the date onto the calendar which then emails the line managers requesting them.
    I wanted to create permissions so all staff with contribute permissions for the calendar List can only edit their own items but the Line Manager who has owner rights to still be able to modify anyones items..
    Is that possible? If so how?
    Thanks in advance

    Hi,
    According to your description, my understanding is that you want to make the users can only be able to edit the events created by themselves in the calendar list.
    I recommend to go to the List settings > Advanced settings > check Create items and edit items that were created by the user in Item-level Permissions.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Menu selection issues in Flash CS4 for Mac

    I'm having a few menu selection issues in Flash. It seems some fields are de-selecting automatically (and quickly). For instance:
    1) When I double-click a layer to change it's name, it highlights then immediately de-selects. I can only rename by right-clicking and bringing up the Properties dialog.
    2) Fields highlight briefly then immediately de-select in the Properties menu when using the Tab button to advance or cycle thru fields. I have to click on each field individually to enter dimensions/characters.
    Possibly related...
    On occasion, I'm having an issue in Photoshop where the tools are off by 30 pixels or so. Examples:
    - Paint brush affects an area approximately 30px to the right and down from the brush head.
    - Selection tool selects an area approximately 30px to the right and down from the arrow head.
    This only happens on occasion and can be fixed by restarting Photoshop. I have not had any luck fixing the problems experienced within Flash.
    I'm experiencing this on two different machines that have CS4 installed. My only guess is a conflict with a Logitech driver OR a Wacom driver, but I have uninstalled the software and unplugged the Logitech mouse and Wacom tablet to no avail.
    Long time Flash/Photoshop user.... never had a problem like this.
    Anyone else have these issues or know a fix?
    Mac OS X 10.5.7
    Macbook Pro & iMac
    Logitech Control Center 2.7.0
    Wacom Driver 6.1.1-2(RC) for Mac OS X v. 10.4 & 10.5

    Hi there,
    This is a known issue, however we have not been able to reproduce it internally. The way to fix it (assuming it's the same problem) is to change your workspace (such as resetting to a default shipping layout, and then modifying from there), as it seems as though something about the workspace is causing the problem. It could be very specific to where its layed out on your monitor(s), some exact pixel size of a panel and/or grouping - and so on. However, we haven't been able to reproduce this internally yet - only reproed and fixed similar problems - so I cannot say for sure, however changing the workspace has fixed it for the other users I've talked to seeing this one.
    If you are able to share the following about one or both of your computers and send it to jdh (at) adobe, greatly appreciated:
    * workspace XML file from the Configuration directory (before changing the workspace!)
    * description monitor layout (ie: primary on left, secondary on right... or "one" )
    * monitor resolution(s)
    * screenshot(s) of your layout exhibiting the problem
    Thanks!

Maybe you are looking for

  • Reading data from an excel file

    Hi, I want to read data from the excel file and display it in jsp page. Iam getting the following error: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connec

  • How to only transfer contacts to my new iPhone from my old iPhone?

    I'm getting a new iPhone 5s soon, and I'm insure how to transfer just the contacts and not all the setting. All I want on there from my old iPhone is the photos and contacts, photos are sorted but contacts aren't. If I use a backup from icloud it wou

  • Illustrator CC 64-bit release 2014.1.0 keeps freezing and "not responding" on windows 8.1

    Every time I return focus to the app it freezes and the app says "not responding".  It starts to work in about 10 seconds. Also, while I'm in the app it will do the same thing, especially it seems when I click in a panel. It seems to help if I go off

  • Sound Effects DURING Slide Transitions?

    Essentially, is there a way to add a sound clip to play between slides, during the transition? I'm creating a Keynote presentation that will be exported into Quicktime with hyperlink-activated transitions, and would like a specific sound to play duri

  • No assignment to org model in PPOME possible

    Hello, When I try to assign in the org model/PPOME (ECC6.0) a person to a position, the system allows that for some persons u2013 for some not. If not, the message u201CNo entry found, 5W800u201C is issued. If I would try to create the relationship A